/* ================= HADODA — הדודה שמסבירה כסף ================= */
/* Editorial redesign 2026 — white / black / red / lime / purple / yellow */

@font-face{
  font-family:"Secular One";
  src:url("/fonts/SecularOne.woff2") format("woff2");
  font-weight:400;font-style:normal;font-display:swap;
}
@font-face{
  font-family:"Heebo";
  src:url("/fonts/Heebo-var.woff2") format("woff2");
  font-weight:100 900;font-style:normal;font-display:swap;
}
@font-face{
  font-family:"Amatic SC";
  src:url("/fonts/AmaticSC-Bold.woff2") format("woff2");
  font-weight:700;font-style:normal;font-display:swap;
}

:root{
  /* ---- new editorial palette ---- */
  --color-background:#FFFFFF;
  --color-text:#111111;
  --color-primary:#FF3535;
  --color-primary-dark:#E92323;
  --color-green:#C7F13A;
  --color-green-soft:#DDF8D6;
  --color-purple:#5C55F5;
  --color-purple-soft:#EEEEFF;
  --color-yellow:#FFE36A;
  --color-yellow-soft:#FFF4C9;
  --color-border:#E5E5E5;
  --color-muted:#74747D;
  --maxw:1280px;
  --pad:32px;
  --r-sm:12px;
  --r-md:16px;
  --r-lg:18px;

  /* ---- legacy tokens (kept for the article template + index) ---- */
  --plum:#4B1430;
  --burgundy:#7B0D3A;
  --cream:#FFF8EF;
  --pink:#F5D4D8;
  --yellow:#F4C95D;
  --mint:#A8E6CB;
  --ink:#26191F;
  --radius-lg:28px;
  --radius-md:18px;

  --font-body:"Heebo",system-ui,sans-serif;
  --font-display:"Secular One",var(--font-body);
  --font-hand:"Amatic SC",cursive;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--color-text);
  background:var(--color-background);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit}
/* legacy heading defaults — used by the article template & index */
h1,h2,h3{font-family:var(--font-display);font-weight:400;line-height:1.15;margin:0;color:var(--plum)}

.container{max-width:var(--maxw);margin-inline:auto;padding-inline:var(--pad)}

.visually-hidden{
  position:absolute;width:1px;height:1px;margin:-1px;padding:0;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;
}
.skip-link{
  position:absolute;top:-60px;right:16px;z-index:300;
  background:var(--color-text);color:#fff;padding:10px 18px;border-radius:8px;
  transition:top .2s;
}
.skip-link:focus{top:10px}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:48px;padding:10px 26px;border:none;border-radius:var(--r-sm);
  font-family:var(--font-body);font-weight:700;font-size:1.02rem;
  text-decoration:none;cursor:pointer;color:var(--color-text);line-height:1.1;
  transition:transform .12s ease,filter .12s ease,box-shadow .12s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn:active{transform:translateY(0)}
.btn:focus-visible{outline:3px solid var(--color-text);outline-offset:2px}
.btn-mint{background:var(--color-green);color:var(--color-text)}      /* primary lime CTA */
.btn-mint:hover{filter:brightness(.96)}
.btn-plum,.btn-dark{background:var(--color-text);color:#fff}          /* dark button (articles + newsletter) */
.btn-plum:hover,.btn-dark:hover{filter:brightness(1.35)}
.btn-red{background:var(--color-primary);color:#fff}
.btn-red:hover{background:var(--color-primary-dark)}
.btn-big{min-height:56px;padding:12px 44px;font-size:1.12rem}

/* ================= HEADER ================= */
.site-header{
  position:sticky;top:0;z-index:100;background:#fff;
  border-bottom:1px solid transparent;
  transition:border-color .2s ease,box-shadow .2s ease;
}
.site-header.is-scrolled{border-bottom-color:var(--color-border);box-shadow:0 2px 10px rgba(17,17,17,.04)}
.header-bar{
  max-width:var(--maxw);margin-inline:auto;
  display:flex;align-items:center;gap:20px;
  padding:14px clamp(20px,4vw,48px);min-height:72px;
  position:relative;
}
.logo{display:flex;align-items:center;gap:10px;text-decoration:none;color:var(--color-text);flex:none}
.logo-emblem{width:38px;height:38px;flex:none;display:grid;place-items:center;background:none;border-radius:0;overflow:visible}
.logo-emblem img{width:100%;height:100%;object-fit:contain;margin:0}
.logo-text{display:flex;flex-direction:column;line-height:1}
.logo-word{font-family:var(--font-body);font-weight:800;font-size:1.35rem;letter-spacing:.05em;color:var(--color-text)}
.site-header .logo-tag{display:none}

.main-nav{margin-inline:auto}
.nav-menu{list-style:none;display:flex;align-items:center;gap:2px;margin:0;padding:0}
.nav-menu a:not(.btn){
  display:inline-flex;align-items:center;min-height:44px;padding:6px 14px;
  text-decoration:none;font-weight:500;font-size:1rem;color:var(--color-text);
  border-radius:10px;transition:background .12s,color .12s;
}
.nav-menu a:not(.btn):hover{background:#f4f4f5;color:var(--color-primary)}
.nav-cta-item{display:none}
.nav-toggle{display:none}
.header-cta{flex:none}

/* ================= HERO ================= */
.hero{padding:clamp(40px,6vw,72px) 0 clamp(32px,4vw,48px);overflow:hidden}
.hero-grid{display:grid;grid-template-columns:1.02fr .98fr;gap:clamp(24px,4vw,56px);align-items:center}
.hero-eyebrow{
  display:inline-block;color:var(--color-primary);font-weight:700;font-size:1rem;
  letter-spacing:.02em;padding-bottom:6px;margin-bottom:18px;position:relative;
}
.hero-eyebrow::after{content:"";position:absolute;inset-inline-start:0;bottom:0;width:56px;height:3px;border-radius:2px;background:var(--color-primary)}
.hero-copy h1{
  font-family:var(--font-body);font-weight:800;color:var(--color-text);
  font-size:clamp(44px,7vw,112px);line-height:.98;letter-spacing:-.01em;
  margin:0 0 22px;
}
.hero-copy h1 .dot{color:var(--color-primary)}
.hero-sub{font-size:clamp(1.05rem,1.4vw,1.3rem);color:var(--color-muted);margin:0 0 30px;max-width:30ch}

.hero-search{position:relative;max-width:560px}
.hero-search input{
  width:100%;height:72px;padding:0 24px;padding-inline-end:72px;
  border:none;border-radius:14px;background:var(--color-primary);
  font-family:var(--font-body);font-size:1.15rem;font-weight:500;color:#fff;
}
.hero-search input::placeholder{color:rgba(255,255,255,.85)}
.hero-search input:focus{outline:3px solid var(--color-text);outline-offset:2px}
.hero-search-btn{
  position:absolute;inset-inline-end:12px;top:50%;transform:translateY(-50%);
  width:48px;height:48px;border:none;border-radius:10px;cursor:pointer;
  background:rgba(255,255,255,.16);color:#fff;display:grid;place-items:center;
  transition:background .12s;
}
.hero-search-btn:hover{background:rgba(255,255,255,.28)}
.hero-search-btn:focus-visible{outline:3px solid #fff;outline-offset:2px}
.hero-search-btn svg{width:24px;height:24px}

.hero-figure{display:grid;place-items:center}
.hero-circle{
  position:relative;width:min(460px,100%);aspect-ratio:1/1;
  background:var(--color-primary);border-radius:50%;overflow:hidden;
  display:grid;place-items:end center;
}
.hero-character{width:94%;margin-bottom:-1%;transform:translateY(2%)}

/* ================= TOPICS ================= */
.topics{padding:8px 0 clamp(24px,4vw,40px)}
.topic-list{
  list-style:none;margin:0;padding:0;
  display:grid;grid-template-columns:repeat(6,1fr);gap:14px;
}
.topic-list a{
  display:flex;align-items:center;justify-content:center;gap:10px;
  min-height:60px;padding:10px 12px;
  background:#fff;border:1px solid var(--color-border);border-radius:var(--r-sm);
  text-decoration:none;font-weight:600;font-size:1.02rem;color:var(--color-text);
  transition:border-color .12s,transform .12s,background .12s;
}
.topic-list a:hover{border-color:var(--color-text);transform:translateY(-2px);background:#fafafa}
.topic-icon{width:24px;height:24px;flex:none;color:var(--color-text)}
.topic-icon svg{width:100%;height:100%}

/* ================= FEATURED — editorial asymmetric grid ================= */
.ed{padding:clamp(48px,7vw,72px) 0 0}
.ed-grid{
  display:grid;grid-template-columns:1fr 1.42fr;grid-template-rows:1fr 1fr;
  gap:20px;
}
.ed-card{
  position:relative;display:flex;text-decoration:none;color:var(--color-text);
  border-radius:var(--r-lg);overflow:hidden;border:1px solid var(--color-border);
  transition:transform .15s ease,box-shadow .15s ease;
}
.ed-card:hover{transform:translateY(-3px);box-shadow:0 14px 30px rgba(17,17,17,.08)}
.ed-large{grid-column:2;grid-row:1/3;background:var(--color-purple-soft);border-color:#e2e1ff;
  flex-direction:column;justify-content:space-between;padding:clamp(28px,3vw,40px)}
.ed-small{grid-column:1;flex-direction:column;justify-content:space-between;padding:26px 28px}
.ed-yellow{grid-row:1;background:var(--color-yellow-soft);border-color:#f4e6ac}
.ed-green{grid-row:2;background:var(--color-green-soft);border-color:#c9edbf}

.ed-cat{display:inline-block;font-weight:700;font-size:.82rem;letter-spacing:.04em;
  color:var(--color-muted);margin-bottom:12px}
.ed-large .ed-cat{color:var(--color-purple)}
.ed-yellow .ed-cat{color:#9a7b12}
.ed-green .ed-cat{color:#3c7a35}
.ed-title{font-family:var(--font-body);font-weight:800;color:var(--color-text);line-height:1.12}
.ed-large .ed-title{font-size:clamp(1.9rem,3vw,2.7rem);max-width:14ch}
.ed-small .ed-title{font-size:clamp(1.3rem,2vw,1.7rem)}
.ed-sub{margin:12px 0 0;color:var(--color-muted);font-size:1rem;max-width:34ch}
.ed-small .ed-sub{font-size:.95rem}
.ed-more{display:inline-flex;align-items:center;gap:6px;margin-top:18px;font-weight:700;color:var(--color-text)}
.ed-large .ed-more{color:var(--color-purple)}
.ed-more .arrow{display:inline-block;transition:transform .15s}
.ed-card:hover .ed-more .arrow{transform:translateX(-4px)}

.ed-art{display:grid;place-items:center;margin-top:18px}
.ed-large .ed-art{margin-top:auto;padding-top:20px}
.ed-large .mag{width:min(280px,72%);height:auto}
.ed-figure{position:absolute;inset-block:0;inset-inline-end:0;inset-inline-start:auto;width:40%;overflow:hidden;pointer-events:none;display:grid;align-items:end;justify-items:center}
.ed-figure img{width:96%;max-width:220px;transform:translateY(6%);opacity:.96}
.ed-small{padding-inline-end:40%}

.ed-more-row{text-align:center;margin:40px 0 0}

/* ================= MORE ARTICLES ================= */
.more{padding:clamp(56px,8vw,96px) 0 0}
.more-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.more-card{
  display:flex;flex-direction:column;background:#fff;overflow:hidden;
  border:1px solid var(--color-border);border-radius:var(--r-lg);
  text-decoration:none;color:var(--color-text);
  transition:transform .15s ease,box-shadow .15s ease,border-color .15s ease;
}
.more-card:hover{transform:translateY(-4px);box-shadow:0 14px 30px rgba(17,17,17,.1);border-color:#d4d4d8}
.more-thumb{aspect-ratio:16/10;overflow:hidden;background:#f2f2f4}
.more-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.more-card:hover .more-thumb img{transform:scale(1.045)}
.more-body{display:flex;flex-direction:column;flex:1;padding:22px 24px 22px}
.more-cat{font-weight:700;font-size:.8rem;letter-spacing:.04em;color:var(--color-muted);margin-bottom:10px}
.more-title{font-family:var(--font-body);font-weight:800;font-size:1.24rem;line-height:1.22;color:var(--color-text);margin:0}
.more-meta{display:flex;align-items:center;gap:6px;color:var(--color-muted);font-size:.85rem;margin:14px 0 0}
.more-meta svg{width:15px;height:15px;flex:none}
.more-link{margin-top:auto;padding-top:18px;font-weight:700;color:var(--color-text);display:inline-flex;align-items:center;gap:6px}
.more-link .arrow{display:inline-block;transition:transform .15s}
.more-card:hover .more-link .arrow{transform:translateX(-4px)}

/* ================= CATEGORY PAGES ================= */
.nav-menu a.is-current{color:var(--color-primary);font-weight:700}
.cat-hero{padding:clamp(40px,6vw,72px) 0 clamp(28px,4vw,48px);border-bottom:1px solid var(--color-border)}
.cat-hero .container{display:grid;grid-template-columns:1fr auto;gap:clamp(24px,4vw,56px);align-items:center}
.cat-eyebrow{display:inline-block;font-weight:700;font-size:1rem;padding-bottom:6px;margin-bottom:16px;position:relative}
.cat-eyebrow::after{content:"";position:absolute;inset-inline-start:0;bottom:0;width:52px;height:3px;border-radius:2px;background:currentColor}
.cat-hero h1{font-family:var(--font-body);font-weight:800;color:var(--color-text);font-size:clamp(42px,6.2vw,88px);line-height:1;margin:0 0 18px}
.cat-lead{margin:0 0 12px;color:var(--color-muted);font-size:clamp(1.1rem,1.5vw,1.35rem);max-width:52ch;line-height:1.6}
.cat-lead:last-of-type{margin-bottom:0}
.cat-badge{width:clamp(120px,13vw,176px);height:clamp(120px,13vw,176px);border-radius:34px;display:grid;place-items:center;flex:none}
.cat-badge svg{width:46%;height:46%}
.acc-red .cat-eyebrow{color:var(--color-primary)} .acc-red .cat-badge{background:#ffe1e1;color:var(--color-primary)}
.acc-purple .cat-eyebrow{color:var(--color-purple)} .acc-purple .cat-badge{background:var(--color-purple-soft);color:var(--color-purple)}
.acc-green .cat-eyebrow{color:#3c7a35} .acc-green .cat-badge{background:var(--color-green-soft);color:#3c7a35}
.acc-yellow .cat-eyebrow{color:#9a7b12} .acc-yellow .cat-badge{background:var(--color-yellow-soft);color:#9a7b12}

/* category hero photo strip */
.cat-photo-section{padding:clamp(28px,4vw,44px) 0 0}
.cat-photo-frame{border-radius:var(--r-lg);overflow:hidden;border:1px solid var(--color-border);aspect-ratio:21/8;background:#f2f2f4}
.cat-photo-frame img{width:100%;height:100%;object-fit:cover}

.cat-section{padding:clamp(48px,6vw,84px) 0 0}
.concept-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.concept-card{background:#fff;border:1px solid var(--color-border);border-radius:var(--r-lg);padding:28px 30px;display:flex;gap:18px;align-items:flex-start}
.concept-num{flex:none;width:34px;height:34px;border-radius:50%;display:grid;place-items:center;font-weight:700;font-size:1rem;background:var(--color-text);color:#fff}
.acc-red .concept-num{background:var(--color-primary)} .acc-purple .concept-num{background:var(--color-purple)}
.acc-green .concept-num{background:#5ba64f} .acc-yellow .concept-num{background:#e9c23f;color:var(--color-text)}
.concept-card h3{font-family:var(--font-body);font-weight:800;font-size:1.2rem;margin:0 0 6px;color:var(--color-text)}
.concept-card p{margin:0;color:var(--color-muted);font-size:1rem;line-height:1.6}

.cat-checklist{list-style:none;margin:0 auto;padding:0;max-width:840px;display:grid;gap:12px}
.cat-checklist li{display:flex;gap:14px;align-items:flex-start;background:#fff;border:1px solid var(--color-border);border-radius:14px;padding:16px 20px}
.cat-check-ic{flex:none;width:26px;height:26px;border-radius:50%;background:var(--color-green);color:var(--color-text);display:grid;place-items:center;font-weight:700;font-size:.9rem;margin-top:1px}
.cat-checklist p{margin:0;font-size:1.02rem;line-height:1.55}

.cat-faq{max-width:840px;margin:0 auto}
.cat-faq details{background:#fff;border:1px solid var(--color-border);border-radius:14px;margin-bottom:12px;overflow:hidden}
.cat-faq summary{list-style:none;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:14px;padding:18px 22px;font-weight:700;font-size:1.06rem;color:var(--color-text)}
.cat-faq summary::-webkit-details-marker{display:none}
.cat-faq summary::after{content:"";flex:none;width:10px;height:10px;border-inline-end:2.5px solid var(--color-muted);border-bottom:2.5px solid var(--color-muted);transform:rotate(45deg);transition:transform .2s;margin-top:-4px}
.cat-faq details[open] summary::after{transform:rotate(-135deg);margin-top:3px}
.cat-faq p{margin:0;padding:0 22px 18px;color:var(--color-muted);font-size:1rem;line-height:1.65}

.cat-cta{margin-top:clamp(48px,6vw,84px);border-radius:22px;padding:clamp(30px,4vw,48px);display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.acc-red .cat-cta{background:#ffe1e1} .acc-purple .cat-cta{background:var(--color-purple-soft)}
.acc-green .cat-cta{background:var(--color-green-soft)} .acc-yellow .cat-cta{background:var(--color-yellow-soft)}
.cat-cta p{margin:0;font-family:var(--font-body);font-weight:800;font-size:clamp(1.3rem,2.2vw,1.8rem);color:var(--color-text);max-width:24ch;line-height:1.25}
.cat-cta .btn{flex:none}
.cat-disclaimer{max-width:840px;margin:clamp(40px,5vw,64px) auto 0;color:var(--color-muted);font-size:.9rem;line-height:1.6;text-align:center}

/* ================= METHOD — flow of 4 ================= */
.method{padding:clamp(64px,9vw,120px) 0}
.method-title,.h-sec{
  font-family:var(--font-body);font-weight:800;color:var(--color-text);
  font-size:clamp(1.8rem,3vw,2.6rem);text-align:center;margin:0 0 48px;position:relative;
}
.method-title::after,.h-sec::after{content:"";display:block;width:52px;height:4px;border-radius:2px;
  background:var(--color-text);margin:16px auto 0}

.flow{list-style:none;margin:0 auto;padding:0;max-width:1040px;display:flex}
.flow-step{flex:1;padding:4px clamp(16px,2.4vw,34px);text-align:start}
.flow-step + .flow-step{border-inline-start:1px solid var(--color-border)}
.flow-num{
  display:grid;place-items:center;width:30px;height:30px;border-radius:50%;
  font-weight:700;font-size:.95rem;margin-bottom:18px;
}
.flow-step.s1 .flow-num{background:var(--color-primary);color:#fff}
.flow-step.s2 .flow-num{background:var(--color-purple);color:#fff}
.flow-step.s3 .flow-num{background:var(--color-green-soft);color:var(--color-text)}
.flow-step.s4 .flow-num{background:var(--color-green);color:var(--color-text)}
.flow-word{display:block;font-weight:800;font-size:clamp(1.2rem,1.9vw,1.75rem);
  line-height:1.15;color:var(--color-text);margin-bottom:10px;min-height:2.3em}
.flow-word .flow-dot{color:var(--color-text)}
.flow-step.s1 .flow-word .flow-dot{color:var(--color-primary)}
.flow-step.s2 .flow-word .flow-dot{color:var(--color-purple)}
.flow-step.s4 .flow-word .flow-dot{color:#93b81f}
.flow-sub{color:var(--color-muted);font-size:.98rem;line-height:1.45}

/* ================= QUOTE BANNER ================= */
.quote{background:var(--color-primary);color:#fff}
.quote-inner{position:relative;display:flex;align-items:center;gap:24px;
  padding:clamp(44px,6vw,72px) var(--pad);min-height:230px}
.quote-text{flex:1;font-weight:800;color:#fff;margin:0;
  font-size:clamp(1.7rem,3.4vw,2.9rem);line-height:1.22;max-width:18ch;z-index:2}
.quote-mark{position:absolute;inset-inline-end:clamp(20px,10vw,150px);top:50%;
  transform:translateY(-58%);font-family:var(--font-display);
  font-size:clamp(9rem,20vw,17rem);line-height:0;color:#fff;opacity:.9;z-index:1;pointer-events:none}
.quote-char{position:relative;z-index:2;flex:none;align-self:flex-end;display:flex;flex-direction:column;align-items:center;gap:8px;margin-bottom:-2px}
.quote-char img{width:clamp(96px,12vw,150px)}
.quote-tag{background:var(--color-text);color:#fff;font-weight:700;font-size:.9rem;padding:4px 16px;border-radius:4px}

/* ================= ASK SECTION ================= */
.ask-section{padding:clamp(64px,9vw,120px) 0}
.ask-grid{display:grid;grid-template-columns:1fr 1.15fr;gap:clamp(28px,4vw,56px);align-items:center}
.ask-copy{display:grid;grid-template-columns:auto 1fr;gap:22px;align-items:center}
.ask-char{width:clamp(96px,10vw,140px);flex:none}
.ask-title{font-family:var(--font-body);font-weight:800;color:var(--color-text);
  font-size:clamp(1.9rem,3vw,2.6rem);line-height:1.1;margin:0 0 10px;display:inline-block;position:relative}
.ask-title::after{content:"";display:block;width:70px;height:4px;border-radius:2px;background:var(--color-primary);margin-top:12px}
.ask-lead{margin:0;color:var(--color-muted);font-size:1.12rem}
.ask-form2{display:flex;flex-direction:column;gap:16px}
.ask-form2 textarea{
  width:100%;min-height:150px;resize:vertical;
  border:1.5px solid var(--color-green);border-radius:var(--r-md);
  padding:18px 20px;font-family:var(--font-body);font-size:1.05rem;color:var(--color-text);background:#fff;
}
.ask-form2 textarea::placeholder{color:#9a9aa2}
.ask-form2 textarea:focus{outline:3px solid var(--color-green);outline-offset:1px;border-color:var(--color-green)}
.ask-row{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.ask-row .btn{min-width:160px}
.ask-attach{display:inline-flex;align-items:center;gap:8px;font-size:.92rem;color:var(--color-muted);cursor:pointer;min-height:44px}
.ask-attach:hover{color:var(--color-text)}
.ask-attach svg{width:18px;height:18px}
.ask-attach input{position:absolute;width:1px;height:1px;opacity:0}
.ask-privacy{display:flex;align-items:center;gap:8px;margin:0;font-size:.9rem;color:var(--color-muted)}
.ask-privacy svg{width:16px;height:16px;flex:none}

/* ================= NEWSLETTER STRIP ================= */
.nl-strip{background:var(--color-purple);color:#fff}
.nl-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;
  padding:clamp(26px,3vw,38px) var(--pad);flex-wrap:wrap}
.nl-copy{display:flex;align-items:center;gap:16px;color:#fff}
.nl-copy svg{width:40px;height:40px;flex:none;color:#fff}
.nl-copy strong{display:block;font-size:1.15rem;font-weight:700}
.nl-copy span{font-size:.95rem;color:rgba(255,255,255,.82)}
.nl-form{display:flex;gap:12px;flex:1;min-width:280px;max-width:520px;justify-content:flex-end}
.nl-form input{
  flex:1;min-width:0;height:52px;border:none;border-radius:12px;padding:0 18px;
  font-family:var(--font-body);font-size:1rem;background:#fff;color:var(--color-text);
}
.nl-form input:focus{outline:3px solid var(--color-text);outline-offset:2px}
.nl-form .btn{flex:none}

/* ================= FOOTER ================= */
.site-footer{background:#fff;border-top:1px solid var(--color-border);padding:clamp(40px,5vw,64px) 0 28px}
.footer-panel{max-width:var(--maxw);margin-inline:auto;background:none;color:var(--color-text);padding:0 var(--pad)}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:32px;padding-bottom:34px}
.footer-brand{display:flex;align-items:center;gap:14px}
.footer-emblem,.footer-emblem-img{width:52px;height:52px;flex:none;background:none;border-radius:0;overflow:visible;display:grid;place-items:center}
.footer-emblem img,.footer-emblem-img{width:100%;height:100%;object-fit:contain;margin:0}
.footer-logo-he{display:block;font-family:var(--font-body);font-weight:800;font-size:1.4rem;letter-spacing:.05em;color:var(--color-text);line-height:1.1}
.footer-tagline{font-size:.85rem;color:var(--color-muted)}
.footer-col h3{font-family:var(--font-body);font-weight:700;font-size:1rem;color:var(--color-text);margin:0 0 14px}
.footer-col{display:flex;flex-direction:column}
.footer-col a{color:var(--color-muted);text-decoration:none;font-size:.95rem;padding:7px 0;min-height:auto;transition:color .12s}
.footer-col a:hover{color:var(--color-text)}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;gap:18px;
  border-top:1px solid var(--color-border);padding-top:22px;flex-wrap:wrap}
.footer-social{display:flex;gap:10px}
.footer-social a{width:38px;height:38px;border-radius:50%;border:1px solid var(--color-border);
  display:grid;place-items:center;color:var(--color-text);transition:background .12s,border-color .12s}
.footer-social a:hover{background:#f4f4f5;border-color:var(--color-text)}
.footer-social svg{width:19px;height:19px}
.footer-copy{margin:0;font-size:.9rem;color:var(--color-muted)}
/* legacy flat footer-links row (article pages) */
.footer-links{display:flex;flex-wrap:wrap;gap:8px 24px;justify-content:center;padding-top:10px}
.footer-links a{color:var(--color-muted);text-decoration:none;font-size:.95rem;font-weight:500;min-height:44px;display:inline-flex;align-items:center}
.footer-links a:hover{color:var(--color-text)}

/* ================= SHARED: section title, underline, cards (index & articles) ================= */
.u-underline{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 14' preserveAspectRatio='none'%3E%3Cpath d='M4 9 C 60 3, 150 3, 296 7' fill='none' stroke='%237B0D3A' stroke-width='4.5' stroke-linecap='round'/%3E%3Cpath d='M10 12 C 80 8, 180 7, 290 10' fill='none' stroke='%237B0D3A' stroke-width='2.5' stroke-linecap='round' opacity='.85'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:center calc(100% + 2px);
  background-size:100% .34em;padding-bottom:.28em;
}
.u-underline-thin{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 12' preserveAspectRatio='none'%3E%3Cpath d='M4 7 C 70 2, 170 2, 296 6' fill='none' stroke='%237B0D3A' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:center 100%;background-size:100% .22em;padding-bottom:.22em;
}
.hand-note{font-family:var(--font-hand);font-weight:700;color:var(--plum);line-height:1.05;text-align:center}
.section-title{font-size:clamp(1.9rem,3vw,2.5rem);display:table;margin:0 auto 44px;text-align:center}
.featured{padding:44px 0 30px}
.card-row{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.card{
  background:#fff;border-radius:var(--radius-md);border:1.5px solid var(--color-border);
  overflow:hidden;display:flex;flex-direction:column;position:relative;
  transition:transform .15s ease,box-shadow .15s ease;
}
.card:hover{transform:translateY(-4px);box-shadow:0 14px 34px rgba(17,17,17,.1)}
.card-art{height:210px;display:grid;place-items:center;position:relative;overflow:hidden}
.card-art img{height:135%;width:auto;flex:none}
.card-body{padding:20px 22px 22px;display:flex;flex-direction:column;gap:12px;flex:1}
.card-body h3{font-size:1.35rem}
.card-body h3 a{text-decoration:none}
.card-body h3 a::after{content:"";position:absolute;inset:0}
.card-body h3 a:hover{color:var(--burgundy)}
.card-meta{display:flex;justify-content:space-between;align-items:center;gap:10px;margin:0;font-size:.88rem;color:#6d5a63}
.meta-time{display:inline-flex;align-items:center;gap:6px}
.meta-time svg{width:15px;height:15px}
.card-more{margin-top:auto;font-weight:700;color:var(--burgundy);font-size:.98rem}
.card .arrow{display:inline-block;transition:transform .15s}
.card:hover .arrow{transform:translateX(-4px)}
.articles-index{padding:44px 0 70px}
.index-sub{text-align:center;margin:-26px 0 36px;font-size:1.05rem;color:#544049}
.index-grid{grid-template-columns:repeat(3,1fr);flex-wrap:wrap}
.art-photo{padding:0;background:var(--pink)}
.art-photo img{width:100%;height:100%;object-fit:cover;margin:0}
.home-more{text-align:center;margin-top:30px}

/* ================= ARTICLE TEMPLATE (preserved) ================= */
.tarticle{padding:26px 0 60px}
.tarticle .container{max-width:900px}
.crumbs{font-size:.92rem;color:#6d5a63;margin-bottom:10px}
.crumbs a{color:var(--burgundy);text-decoration:none;font-weight:600}
.crumbs a:hover{text-decoration:underline}

.t-head{display:grid;grid-template-columns:1fr 300px;gap:24px;align-items:start;margin-bottom:34px}
.t-title h1{font-size:clamp(2rem,4vw,3rem);margin-bottom:12px}
.t-title .t1{font-size:1.15em}
.t-sub{font-size:1.15rem;font-weight:600;color:var(--ink);margin:0 0 8px}
.t-meta{display:flex;align-items:center;gap:6px;font-size:.9rem;color:#6d5a63;margin:0 0 20px}
.t-meta svg.mi{width:15px;height:15px;color:var(--burgundy)}
.t-figure{position:relative;order:2;text-align:center}
.t-char{width:100%;max-width:290px;margin-inline:auto}
.t-note{font-size:1.6rem;rotate:-6deg;display:inline-block;margin-top:2px;position:relative;font-family:var(--font-hand);font-weight:700;color:var(--plum)}
.t-note::after{content:"";display:block;height:5px;margin-top:2px;border-radius:3px;background:#c2373f;opacity:.85}

.bottomline{position:relative;background:var(--yellow);border:2.5px solid var(--plum);border-radius:16px;padding:20px 24px 22px;box-shadow:4px 5px 0 rgba(75,20,48,.9)}
.bottomline .tape{position:absolute;top:-11px;inset-inline-start:34px;left:auto;margin-left:0;width:74px;height:20px;rotate:-4deg;background:rgba(255,248,239,.75);border:1px solid rgba(75,20,48,.15)}
.bottomline h2{font-size:1.35rem;margin-bottom:8px;text-align:center}
.bottomline .q{color:var(--burgundy);font-size:1.2em;vertical-align:-2px}
.bottomline p{margin:0;font-size:1.12rem;font-weight:600;text-align:center;line-height:1.55}
.bottomline::after{content:"";position:absolute;bottom:-2px;inset-inline-end:-2px;width:110px;height:70px;background-image:radial-gradient(rgba(75,20,48,.35) 2px,transparent 2.4px);background-size:11px 11px;border-radius:0 0 14px 0;-webkit-mask-image:radial-gradient(circle at 100% 100%,#000 0 55%,transparent 62%);mask-image:radial-gradient(circle at 100% 100%,#000 0 55%,transparent 62%)}

.sec-card{position:relative;background:#fff;border:2px solid rgba(75,20,48,.55);border-radius:18px;padding:28px 30px;margin-bottom:26px}
.sec-num{position:absolute;top:-16px;inset-inline-start:26px;width:44px;height:44px;border-radius:50%;background:var(--plum);color:var(--cream);display:grid;place-items:center;font-family:var(--font-display);font-size:1.25rem;border:3px solid var(--cream)}
.sec-card>h2{font-size:1.5rem;margin:0 0 16px;text-align:center}
.sec-card .tach{font-size:1.12rem;line-height:1.8;margin:0;text-align:center}
mark{background:var(--yellow);color:inherit;padding:1px 4px;border-radius:3px;font-weight:600}

.hw-steps{display:flex;align-items:stretch;justify-content:center;gap:6px;margin-bottom:18px}
.hw-step{flex:1;max-width:210px;display:flex;flex-direction:column;align-items:center;gap:8px;text-align:center;padding:6px 10px;position:relative}
.hw-step+.hw-step,.hw-step:not(:first-of-type){border-inline-start:2px dotted rgba(75,20,48,.3)}
.hw-dot{width:24px;height:24px;border-radius:50%;background:var(--plum);color:var(--cream);font-size:.85rem;font-weight:700;display:grid;place-items:center}
.hw-step p{margin:0;font-size:.95rem;font-weight:600}
.hw-icon{width:64px;height:64px;color:var(--plum);margin-top:auto}
.hw-icon svg{width:100%;height:100%}
.step-arrow{align-self:center;font-size:1.5rem;color:var(--plum);font-weight:700}
.hw-ribbon{display:table;margin:0 auto;background:var(--yellow);color:var(--plum);font-weight:800;padding:8px 22px;font-size:1.02rem;clip-path:polygon(0 0,100% 0,97% 50%,100% 100%,0 100%,3% 50%)}

.doda-says{position:relative;background:var(--plum);color:var(--cream);border-radius:60px;padding:20px 28px;padding-inline-start:110px;margin:30px 0;display:flex;align-items:center;min-height:88px}
.doda-says p{margin:0;font-size:1.15rem;line-height:1.6}
.doda-says strong{color:var(--yellow)}
.doda-says u{text-underline-offset:4px}
.says-char{position:absolute;inset-inline-start:14px;bottom:0;width:96px;height:96px;overflow:hidden}
.says-char img{width:100%;object-fit:cover;object-position:top}

.cmp-wrap{overflow-x:auto}
.cmp{width:100%;border-collapse:collapse;font-size:.98rem;min-width:520px}
.cmp th,.cmp td{padding:12px 14px;border-bottom:1.5px dashed rgba(75,20,48,.2);text-align:center;vertical-align:middle}
.cmp tbody tr:last-child th,.cmp tbody tr:last-child td{border-bottom:none}
.cmp thead th{font-family:var(--font-display);font-weight:400;font-size:1.05rem;border-bottom:none;padding-bottom:8px}
.cmp .head-right{background:var(--yellow);border-radius:10px 10px 0 0;border:1.5px solid rgba(75,20,48,.4);border-bottom:none}
.cmp .head-left{background:var(--mint);border-radius:10px 10px 0 0;border:1.5px solid rgba(75,20,48,.4);border-bottom:none}
.cmp .cmp-right{border-inline:1.5px solid rgba(75,20,48,.4);background:#fffdf8}
.cmp .cmp-left{border-inline:1.5px solid rgba(75,20,48,.4);background:#fbfffc}
.cmp tbody th{font-weight:700;color:var(--plum);white-space:nowrap}
.cmp-ic{display:block;width:22px;height:22px;margin:0 auto 3px;color:var(--burgundy)}
.cmp-ic svg{width:100%;height:100%}
.cmp tbody tr:last-child .cmp-right{border-bottom:1.5px solid rgba(75,20,48,.4);border-radius:0 0 10px 10px}
.cmp tbody tr:last-child .cmp-left{border-bottom:1.5px solid rgba(75,20,48,.4);border-radius:0 0 10px 10px}

.sec-duo{display:grid;grid-template-columns:1fr 1fr;gap:26px;margin-bottom:26px}
.sec-duo .sec-card{margin-bottom:0}
.sec-mint{background:#eafaf1;border-color:rgba(75,20,48,.35)}
.sec-mint h2,.sec-calc h2{text-align:start;padding-inline-start:52px;font-size:1.3rem}
.checks{list-style:none;margin:0;padding:0}
.checks li{display:flex;gap:10px;align-items:flex-start;padding:9px 0;border-bottom:1.5px dashed rgba(75,20,48,.18)}
.checks li:last-child{border-bottom:none}
.checks p{margin:0;font-size:.98rem}
.chk{flex:none;width:22px;height:22px;border-radius:50%;background:#2e9e63;color:#fff;display:grid;place-items:center;font-size:.8rem;font-weight:700;margin-top:2px}
.calc-hint{font-size:.95rem;color:#544049;margin:0 0 14px}
.calc-form{display:flex;flex-direction:column;gap:12px;align-items:center}
.calc-form input{width:100%;max-width:260px;min-height:52px;border:2px solid var(--plum);border-radius:12px;background:#fff;font-family:var(--font-body);font-size:1.15rem;font-weight:700;color:var(--ink);text-align:center}
.calc-form input:focus{outline:3px solid var(--yellow);outline-offset:2px}
.calc-btn{min-width:220px}
.sparkle{width:16px;height:16px;margin-inline:8px;opacity:.9;flex:none}
.calc-out{min-height:1.4em;margin:4px 0 0;font-weight:700;color:var(--plum);text-align:center;font-size:1rem}

.warn-strip{position:relative;display:flex;align-items:center;gap:14px;background:#fbd8dc;border:2px solid rgba(123,13,58,.5);border-radius:14px;padding:16px 20px;margin-bottom:26px;overflow:hidden}
.warn-strip::before{content:"";position:absolute;top:-20px;inset-inline-start:-20px;width:120px;height:90px;background-image:radial-gradient(rgba(123,13,58,.3) 2px,transparent 2.4px);background-size:11px 11px;-webkit-mask-image:radial-gradient(circle at 0 0,#000 0 55%,transparent 62%);mask-image:radial-gradient(circle at 0 0,#000 0 55%,transparent 62%)}
.warn-strip p{margin:0;font-size:1.05rem;position:relative}
.warn-strip strong{color:var(--burgundy)}
.warn-ic{flex:none;width:34px;height:34px;color:var(--burgundy);position:relative}
.warn-ic svg{width:100%;height:100%}

.faq-item{border:1.5px solid rgba(75,20,48,.35);border-radius:10px;margin-bottom:10px;background:#fffdf8}
.faq-item summary{cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:12px;padding:13px 18px;font-weight:700;font-size:1rem;min-height:48px}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"⌄";font-size:1.2rem;color:var(--burgundy);transition:transform .15s}
.faq-item[open] summary::after{transform:rotate(180deg)}
.faq-item p{margin:0;padding:0 18px 15px;font-size:.98rem;color:#3d2c34}

.close-banner{display:flex;align-items:center;gap:26px;background:var(--yellow);border-radius:20px;padding:28px 34px;margin:34px 0 10px}
.close-char{order:2;flex:none;width:130px;height:130px;border-radius:50%;background:var(--plum);overflow:hidden;display:grid;place-items:center}
.close-char img{width:88%;margin-top:16%;filter:none}
.close-banner>div{flex:1}
.close-banner h2{font-size:1.7rem;margin-bottom:4px}
.close-banner p{margin:0 0 14px;font-size:1.05rem;font-weight:600}
.disclaimer{font-size:.88rem;color:#6d5a63;text-align:center;margin:18px 0 0}

/* ================= ACCESSIBILITY WIDGET ================= */
.a11y{position:fixed;bottom:18px;inset-inline-start:18px;z-index:200}
.a11y-btn{width:54px;height:54px;border-radius:50%;border:2.5px solid #fff;background:var(--color-text);color:#fff;cursor:pointer;display:grid;place-items:center;box-shadow:0 6px 18px rgba(17,17,17,.35)}
.a11y-btn svg{width:30px;height:30px}
.a11y-btn:hover{background:var(--color-primary)}
.a11y-btn:focus-visible{outline:3px solid var(--color-primary);outline-offset:2px}
.a11y-panel{position:absolute;bottom:64px;inset-inline-start:0;width:238px;background:#fff;border:2px solid var(--color-text);border-radius:16px;padding:14px;box-shadow:0 16px 40px rgba(17,17,17,.28);max-height:min(72vh,540px);overflow:auto}
.a11y-panel h2{font-size:1.15rem;margin:2px 4px 10px;font-family:var(--font-body);font-weight:800;color:var(--color-text)}
.a11y-panel button,.a11y-panel a{display:flex;align-items:center;gap:10px;width:100%;min-height:44px;background:#f6f6f7;border:1.5px solid var(--color-border);border-radius:10px;margin-bottom:8px;padding:8px 12px;cursor:pointer;font-family:var(--font-body);font-size:.95rem;font-weight:500;color:var(--color-text);text-decoration:none;text-align:start}
.a11y-panel button:hover,.a11y-panel a:hover{border-color:var(--color-text)}
.a11y-panel button[aria-pressed="true"]{background:var(--color-text);color:#fff;border-color:var(--color-text)}
.a11y-panel button:focus-visible,.a11y-panel a:focus-visible{outline:3px solid var(--color-primary);outline-offset:1px}
.a11y-panel a{margin-bottom:0;color:var(--color-primary);font-weight:700}

/* ---- accessibility modes ---- */
html.a11y-font1{font-size:112.5%}
html.a11y-font2{font-size:127%}
html.a11y-dark :is(.site-header,main,.nl-strip,.site-footer){background:#fff;filter:invert(1) hue-rotate(180deg)}
html.a11y-dark :is(.site-header,main,.nl-strip,.site-footer) img{filter:invert(1) hue-rotate(180deg)}
html.a11y-gray :is(.site-header,main,.nl-strip,.site-footer){filter:grayscale(1)}
html.a11y-links main a,html.a11y-links .footer-links a,html.a11y-links .footer-col a,html.a11y-links .nav-menu a{text-decoration:underline !important;text-underline-offset:3px;text-decoration-thickness:2px}
html.a11y-readable body,html.a11y-readable body *{font-family:Arial,Helvetica,system-ui,sans-serif !important}
html.a11y-nomotion *,html.a11y-nomotion *::before,html.a11y-nomotion *::after{transition:none !important;animation:none !important;scroll-behavior:auto !important}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{transition:none !important;animation:none !important}
  html{scroll-behavior:auto}
}

/* ================= REVEAL ON SCROLL (JS-gated: content is visible without JS) ================= */
html.js .reveal{opacity:0;transform:translateY(16px);transition:opacity .5s ease,transform .5s ease}
html.js .reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){html.js .reveal{opacity:1;transform:none;transition:none}}

/* ================= TABLET ================= */
@media (max-width:1024px){
  :root{--pad:28px}
  .hero-grid{gap:32px}
  .hero-copy h1{font-size:clamp(40px,8vw,80px)}
  .topic-list{grid-template-columns:repeat(3,1fr)}
  .ed-grid{grid-template-columns:1fr 1.3fr}
  .more-grid{grid-template-columns:repeat(2,1fr)}
  .flow-step{padding:4px 18px}
  .flow-word{font-size:clamp(1.4rem,3vw,1.9rem)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .footer-brand{grid-column:1/-1;margin-bottom:6px}
  .card-row{grid-template-columns:repeat(3,1fr);gap:18px}
  .index-grid{grid-template-columns:repeat(2,1fr);display:grid}
  .nav-menu a:not(.btn){padding:6px 10px;font-size:.95rem}
}

/* ================= MOBILE ================= */
@media (max-width:760px){
  :root{--pad:20px}

  /* header -> hamburger */
  .header-bar{gap:14px;min-height:64px}
  .header-cta{display:none}
  .nav-cta-item{display:block;margin-top:10px}
  .main-nav{margin-inline-start:auto;margin-inline-end:0}
  .nav-toggle{display:grid;place-items:center;width:48px;height:48px;background:transparent;border:none;cursor:pointer;color:var(--color-text)}
  .nav-toggle-bars i{display:block;width:24px;height:2.6px;background:currentColor;border-radius:2px;margin:5px 0;transition:transform .2s,opacity .2s}
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(1){transform:translateY(7.6px) rotate(45deg)}
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(2){opacity:0}
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(3){transform:translateY(-7.6px) rotate(-45deg)}
  .nav-menu{display:none;position:absolute;top:calc(100% + 8px);inset-inline:12px;z-index:50;background:#fff;border:1px solid var(--color-border);border-radius:16px;padding:12px 14px;flex-direction:column;align-items:stretch;box-shadow:0 18px 40px rgba(17,17,17,.14)}
  .nav-menu.open{display:flex}
  .nav-menu a:not(.btn){min-height:48px;font-size:1.05rem}
  .nav-cta-item .btn{width:100%}

  /* hero: single column, headline first */
  .hero{padding:22px 0 8px}
  .hero-grid{grid-template-columns:1fr;gap:26px}
  .hero-copy{text-align:start}
  .hero-eyebrow{margin-bottom:14px}
  .hero-copy h1{font-size:clamp(36px,11.5vw,54px);line-height:1.02;margin-bottom:16px}
  .hero-sub{max-width:36ch;margin-bottom:22px;font-size:1.08rem}
  .hero-search{max-width:none}
  .hero-search input{height:62px;font-size:1.05rem}
  .hero-figure{order:2}
  .hero-circle{width:min(320px,82%)}

  /* topics: horizontal chip scroll */
  .topic-list{display:flex;overflow-x:auto;gap:10px;padding:2px 20px 10px;margin-inline:-20px;scrollbar-width:none}
  .topic-list::-webkit-scrollbar{display:none}
  .topic-list li{flex:none}
  .topic-list a{min-height:48px;padding:8px 18px;border-radius:12px;font-size:.95rem;white-space:nowrap}
  .topic-icon{width:20px;height:20px}

  /* featured: stack cards vertically */
  .ed{padding:44px 0 0}
  .ed-grid{grid-template-columns:1fr;grid-template-rows:none;gap:16px}
  .ed-large,.ed-yellow,.ed-green{grid-column:1;grid-row:auto}
  .ed-large{padding:26px 22px}
  .ed-large .ed-title{max-width:none;font-size:1.6rem}
  .ed-large .mag{width:min(220px,64%)}
  .ed-small{padding:22px 22px;padding-inline-end:40%;min-height:172px}
  .ed-small .ed-title{font-size:1.32rem}
  .ed-figure{width:36%}
  .ed-figure img{max-width:150px;transform:translateY(4%)}

  /* more articles: single column */
  .more{padding:48px 0 0}
  .more-grid{grid-template-columns:1fr;gap:14px}
  .more-card{padding:22px 22px 20px}
  .more-title{font-size:1.18rem}
  .h-sec{margin-bottom:30px}

  /* method: vertical list */
  .method{padding:56px 0}
  .method-title{margin-bottom:32px}
  .flow{flex-direction:column;max-width:420px;gap:8px}
  .flow-step{padding:16px 4px}
  .flow-step + .flow-step{border-inline-start:none;border-top:1px solid var(--color-border)}
  .flow-num{margin-bottom:10px}
  .flow-word{font-size:1.5rem;margin-bottom:6px;min-height:0}

  /* quote */
  .quote-inner{flex-direction:column;align-items:flex-start;gap:14px;padding:40px 20px 32px;min-height:0}
  .quote-text{font-size:1.6rem;line-height:1.28;max-width:none;padding-top:30px}
  .quote-mark{font-size:6rem;inset-inline-end:8px;top:0;transform:none;opacity:.8}
  .quote-char{align-self:flex-start;flex-direction:row;align-items:center;gap:12px;margin-top:2px}
  .quote-char img{width:88px}

  /* ask */
  .ask-section{padding:52px 0}
  .ask-grid{grid-template-columns:1fr;gap:24px}
  .ask-copy{grid-template-columns:auto 1fr;gap:16px}
  .ask-char{width:84px}
  .ask-row{gap:12px}
  .ask-row .btn{width:100%}
  .ask-attach{width:100%;justify-content:center}

  /* newsletter */
  .nl-inner{flex-direction:column;align-items:stretch;gap:16px}
  .nl-form{max-width:none;justify-content:stretch}
  .nl-form input{width:100%}

  /* footer */
  .footer-grid{grid-template-columns:1fr 1fr;gap:24px}
  .footer-brand{flex-direction:row}
  .footer-bottom{flex-direction:column-reverse;align-items:flex-start;gap:14px}

  /* category pages */
  .cat-hero .container{grid-template-columns:1fr;gap:20px}
  .cat-badge{order:-1;width:92px;height:92px;border-radius:22px}
  .cat-hero h1{font-size:clamp(38px,11vw,52px)}
  .cat-lead{max-width:none}
  .cat-photo-frame{aspect-ratio:16/10}
  .concept-grid{grid-template-columns:1fr}
  .concept-card{padding:22px}
  .cat-cta{flex-direction:column;align-items:flex-start;gap:18px}
  .cat-cta .btn{width:100%}

  /* a11y button clear */
  .a11y{bottom:14px;inset-inline-start:14px}
  .a11y-btn{width:50px;height:50px}
  .a11y-panel{width:min(238px,calc(100vw - 40px))}

  /* ---- article/index mobile (preserved) ---- */
  .section-title{margin-bottom:30px}
  .card-row{display:flex;flex-direction:column;gap:14px}
  .card{flex-direction:row;min-height:126px}
  .card-art{display:block;width:126px;height:auto;flex:none}
  .art-photo img{width:100%;height:100%;object-fit:cover}
  .card-body{padding:14px 16px;gap:7px}
  .card-body h3{font-size:1.06rem;line-height:1.35}
  .card-meta{font-size:.8rem;gap:6px;flex-wrap:wrap}
  .card-more{font-size:.9rem}
  .home-more .btn{width:100%}
  .index-grid{display:flex}
  .t-head{grid-template-columns:1fr;gap:8px}
  .t-figure{order:0;max-width:230px;margin-inline:auto}
  .t-title h1{text-align:center}
  .t-sub,.t-meta{text-align:center;justify-content:center}
  .sec-card{padding:24px 18px}

  /* comparison table -> stacked comparison blocks (no horizontal scroll) */
  .cmp-wrap{overflow:visible}
  .cmp{min-width:0;width:100%;display:block;font-size:.94rem}
  .cmp thead{display:block;margin-bottom:10px}
  .cmp thead tr{display:grid;grid-template-columns:1fr 1fr;gap:8px}
  .cmp thead th[scope="col"]:not(.head-right):not(.head-left){display:none}
  .cmp thead th{padding:9px 8px !important;font-size:.92rem}
  .cmp .head-right,.cmp .head-left{border-radius:10px !important;border:1.5px solid rgba(75,20,48,.4) !important}
  .cmp tbody{display:block}
  .cmp tbody tr{
    display:grid;grid-template-columns:1fr 1fr;grid-template-areas:"crit crit" "vr vl";
    gap:8px;border:1.5px solid rgba(75,20,48,.22);border-radius:14px;padding:12px;margin-bottom:12px;
  }
  .cmp tbody tr:last-child{margin-bottom:0}
  .cmp tbody th[scope="row"]{
    grid-area:crit;display:flex;align-items:center;justify-content:center;gap:8px;
    background:#faf5ec;border-radius:9px;padding:9px 10px !important;
    white-space:normal !important;border:none !important;font-size:1rem;
  }
  .cmp .cmp-ic{margin:0}
  .cmp td{
    border:1px solid var(--color-border) !important;border-radius:9px !important;
    padding:11px 8px !important;text-align:center;white-space:normal;background:#fff !important;
  }
  .cmp td.cmp-right{grid-area:vr;background:#fffdf5 !important}
  .cmp td.cmp-left{grid-area:vl;background:#f6fbf7 !important}
  .hw-steps{flex-direction:column;align-items:center;gap:14px}
  .hw-step:not(:first-of-type){border-inline-start:none;border-top:2px dotted rgba(75,20,48,.3);padding-top:14px}
  .step-arrow{transform:rotate(90deg)}
  .hw-icon{width:52px;height:52px}
  .sec-duo{grid-template-columns:1fr}
  .doda-says{border-radius:24px;padding:18px 20px 64px;padding-inline-start:20px}
  .says-char{inset-inline-start:10px;width:78px;height:78px}
  .close-banner{flex-direction:column;text-align:center;padding:26px 20px}
  .close-banner .btn{width:100%}
}
