/* ЧХ main stylesheet — Accessible & Ethical style, Minimal Single Column. */
@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&family=Noto+Sans:wght@400;500;600;700&display=swap");
@import url("./tokens.css");

* { box-sizing: border-box; }
html { font-size: var(--cx-fs-base); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--cx-font-body); line-height: var(--cx-lh);
  color: var(--cx-text); background: var(--cx-bg);
}
h1, h2, h3, h4 { font-family: var(--cx-font-head); line-height: 1.2; margin: 0 0 var(--cx-s4); }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 var(--cx-s4); max-width: 70ch; }
a { color: var(--cx-red-ink); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--cx-red-dark); }
img { max-width: 100%; height: auto; display: block; }

/* Accessibility */
:focus-visible { outline: 3px solid var(--cx-red); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--cx-red); color: #fff;
  padding: var(--cx-s3) var(--cx-s4); z-index: 1000; border-radius: 0 0 var(--cx-radius-sm) 0;
}
.skip-link:focus { left: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.container { width: min(100% - 2*var(--cx-s4), var(--cx-container)); margin-inline: auto; }
.container--narrow { max-width: 760px; }
.section { padding-block: var(--cx-s7); }
.section--alt { background: var(--cx-bg-alt); }
.eyebrow { color: var(--cx-red-ink); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: .8rem; }

/* Header + emblem */
.site-header {
  position: sticky; top: 0; z-index: var(--cx-z-header);
  background: var(--cx-bg); border-bottom: 1px solid var(--cx-border);
}
.site-header__inner { display: flex; align-items: center; gap: var(--cx-s4); padding-block: var(--cx-s3); }
.brand { display: flex; align-items: center; gap: var(--cx-s3); text-decoration: none; color: var(--cx-text); }
.brand__emblem { width: 40px; height: 40px; flex: 0 0 auto; }
.brand__logo { width: 52px; height: 52px; flex: 0 0 auto; display: block; }
.brand__name { font-family: var(--cx-font-head); font-weight: 700; font-size: 1.05rem; line-height: 1.1; }
.brand__name span { display: block; font-size: .75rem; font-weight: 500; color: var(--cx-text-muted); }
.nav { margin-left: auto; }
.nav__list { display: flex; gap: var(--cx-s2); list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav__link {
  display: inline-block; padding: var(--cx-s2) var(--cx-s3); border-radius: var(--cx-radius-sm);
  text-decoration: none; color: var(--cx-text); font-weight: 500; min-height: 44px; line-height: 28px;
}
.nav__link:hover { background: var(--cx-red-tint); color: var(--cx-red-dark); }
.nav__link[aria-current="page"] { color: var(--cx-red-ink); font-weight: 600; }
.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--cx-border); border-radius: var(--cx-radius-sm); color: var(--cx-text); cursor: pointer;
}
.nav-toggle:hover { background: var(--cx-red-tint); color: var(--cx-red-dark); border-color: var(--cx-red); }

/* Grouped nav dropdowns */
.nav__item { position: relative; }
.nav__group-btn { display: inline-flex; align-items: center; gap: .25em; background: none; border: 0; font: inherit; font-weight: 500; cursor: pointer; }
.nav__group-btn.is-active { color: var(--cx-red-ink); font-weight: 600; }
.nav__caret { transition: transform var(--cx-ease); flex: 0 0 auto; }
.nav__item--group:hover .nav__caret,
.nav__item--group:focus-within .nav__caret,
.nav__group-btn[aria-expanded="true"] .nav__caret { transform: rotate(180deg); }
.nav__submenu {
  list-style: none; margin: 0; padding: var(--cx-s2); position: absolute; top: calc(100% + 4px); left: 0;
  min-width: 230px; background: var(--cx-surface); border: 1px solid var(--cx-border);
  border-radius: var(--cx-radius); box-shadow: var(--cx-shadow-lg); display: none; z-index: 20;
}
.nav__item--group:hover > .nav__submenu,
.nav__item--group:focus-within > .nav__submenu,
.nav__group-btn[aria-expanded="true"] + .nav__submenu { display: block; }
.nav__sublink {
  display: block; padding: var(--cx-s2) var(--cx-s3); border-radius: var(--cx-radius-sm);
  text-decoration: none; color: var(--cx-text); font-weight: 500; min-height: 40px; line-height: 24px; white-space: nowrap;
}
.nav__sublink:hover { background: var(--cx-red-tint); color: var(--cx-red-dark); }
.nav__sublink[aria-current="page"] { color: var(--cx-red-ink); font-weight: 600; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--cx-s2);
  min-height: 48px; padding: var(--cx-s3) var(--cx-s5); border-radius: var(--cx-radius);
  font: inherit; font-weight: 600; cursor: pointer; text-decoration: none; border: 2px solid transparent;
  transition: background var(--cx-ease), color var(--cx-ease), border-color var(--cx-ease);
}
.btn--primary { background: var(--cx-red); color: #fff; }
.btn--primary:hover { background: var(--cx-red-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--cx-red-ink); border-color: var(--cx-red); }
.btn--ghost:hover { background: var(--cx-red-tint); }
.btn--lg { min-height: 56px; font-size: 1.05rem; }

/* Hero */
.hero { padding-block: var(--cx-s8) var(--cx-s7); }
.hero__title { max-width: 16ch; }
.hero__subtitle { font-size: 1.15rem; color: var(--cx-text-muted); max-width: 55ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--cx-s3); margin-top: var(--cx-s5); }

/* Cards */
.grid { display: grid; gap: var(--cx-s5); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: var(--cx-surface); border: 1px solid var(--cx-border); border-radius: var(--cx-radius);
  padding: var(--cx-s5); box-shadow: var(--cx-shadow);
}
.card h3 { margin-bottom: var(--cx-s2); }
.card__icon { width: 40px; height: 40px; color: var(--cx-red); margin-bottom: var(--cx-s3); }

/* Forms */
.field { margin-bottom: var(--cx-s4); }
.field label { display: block; font-weight: 600; margin-bottom: var(--cx-s2); }
.field .req { color: var(--cx-red-ink); }
.field input, .field textarea, .field select {
  width: 100%; min-height: 48px; padding: var(--cx-s3); font: inherit;
  border: 1.5px solid var(--cx-border); border-radius: var(--cx-radius-sm); background: #fff; color: var(--cx-text);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--cx-red); outline: none; box-shadow: 0 0 0 3px var(--cx-red-tint); }
.field__help { color: var(--cx-text-muted); font-size: .85rem; margin-top: var(--cx-s1); }
.field__error { color: var(--cx-red-ink); font-size: .9rem; margin-top: var(--cx-s1); display: none; }
.field--invalid .field__error { display: block; }
.field--invalid input, .field--invalid textarea { border-color: var(--cx-red-ink); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; } /* honeypot */
.hp input { height: 1px; padding: 0; border: 0; } /* keep the spam-trap field truly zero-footprint */

/* Form state regions */
.form-state { border-radius: var(--cx-radius-sm); padding: var(--cx-s4); margin-bottom: var(--cx-s4); display: none; }
.form-state[data-state="success"] { display: block; background: #ECFDF3; color: #05603A; border: 1px solid #ABEFC6; }
.form-state[data-state="error"] { display: block; background: var(--cx-red-tint); color: var(--cx-red-ink); border: 1px solid #F4C2C2; }
.form-state[data-state="empty"] { display: block; background: var(--cx-bg-alt); color: var(--cx-text-muted); border: 1px dashed var(--cx-border); }
.is-loading [data-loading] { display: inline-flex; }
[data-loading] { display: none; }

/* Footer */
.site-footer { background: #1A1A1A; color: #EDEDED; padding-block: var(--cx-s7); margin-top: var(--cx-s8); }
.site-footer a { color: #fff; }
.site-footer__grid { display: grid; gap: var(--cx-s5); grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.site-footer h4 { color: #fff; }
.legal-note { font-size: .8rem; color: #B8B8B8; border-top: 1px solid #333; margin-top: var(--cx-s5); padding-top: var(--cx-s4); }
.req-block { font-size: .9rem; color: #DADADA; }
.req-block code { color: #fff; background: #2A2A2A; padding: 2px 6px; border-radius: 4px; }

/* Donation widget */
.donate-layout { display: grid; gap: var(--cx-s7); grid-template-columns: 1.1fr .9fr; align-items: start; }
.progress { margin-top: var(--cx-s5); }
.progress__bar { height: 14px; background: var(--cx-bg-alt); border-radius: 999px; overflow: hidden; border: 1px solid var(--cx-border); }
.progress__fill { display: block; height: 100%; background: var(--cx-red); border-radius: 999px; transition: width var(--cx-ease); }
.progress__meta { margin-top: var(--cx-s2); color: var(--cx-text-muted); }
.donate-widget { background: var(--cx-surface); border: 1px solid var(--cx-border); border-radius: var(--cx-radius); padding: var(--cx-s5); box-shadow: var(--cx-shadow-lg); }
.donate-tabs { display: flex; gap: var(--cx-s2); border-bottom: 2px solid var(--cx-border); margin-bottom: var(--cx-s5); }
.donate-tab { flex: 1; background: none; border: 0; border-bottom: 3px solid transparent; padding: var(--cx-s3); font: inherit; font-weight: 600; color: var(--cx-text-muted); cursor: pointer; margin-bottom: -2px; min-height: 44px; }
.donate-tab.is-active { color: var(--cx-red-ink); border-bottom-color: var(--cx-red); }
.donate-sub-note { color: var(--cx-text-muted); margin: 0 0 var(--cx-s2); }
.donate-amount { display: flex; align-items: baseline; gap: var(--cx-s3); border-bottom: 2px dashed var(--cx-border); padding-bottom: var(--cx-s3); margin-bottom: var(--cx-s4); }
.donate-amount input { border: 0; font-family: var(--cx-font-head); font-size: 2.5rem; font-weight: 700; width: 100%; color: var(--cx-text); padding: 0; }
.donate-amount input:focus { outline: none; }
.donate-amount__cur { color: var(--cx-text-muted); font-weight: 600; }
.donate-chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--cx-s2); margin-bottom: var(--cx-s5); }
.chip { min-height: 48px; border: 1.5px solid var(--cx-red); background: #fff; color: var(--cx-red-ink); border-radius: var(--cx-radius-sm); font: inherit; font-weight: 600; cursor: pointer; }
.chip:hover { background: var(--cx-red-tint); }
.donate-cta { width: 100%; }
.donate-slogan { text-align: center; color: var(--cx-red-ink); font-weight: 600; margin: var(--cx-s3) 0; }
.donate-save { display: flex; align-items: center; gap: var(--cx-s2); width: 100%; justify-content: center; background: none; border: 1px solid var(--cx-border); border-radius: var(--cx-radius-sm); padding: var(--cx-s3); font: inherit; cursor: pointer; color: var(--cx-text-muted); min-height: 44px; }
.donate-save[aria-pressed="true"] { color: var(--cx-red-ink); border-color: var(--cx-red); background: var(--cx-red-tint); }
.donate-finenote { font-size: .82rem; color: var(--cx-text-muted); margin-top: var(--cx-s3); }
.donate-gated { font-size: .9rem; color: var(--cx-red-ink); background: var(--cx-red-tint); border: 1px solid #F4C2C2; border-radius: var(--cx-radius-sm); padding: var(--cx-s3); margin-top: var(--cx-s3); }
.req-card code { background: var(--cx-bg-alt); padding: 2px 6px; border-radius: 4px; }
@media (max-width: 880px) { .donate-layout { grid-template-columns: 1fr; } }

/* News feed — magazine layout */
.news-feed { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: var(--cx-s5); margin-top: var(--cx-s5); }
.news-feed--list { margin-top: var(--cx-s6); }

.news-card { position: relative; background: var(--cx-surface); border: 1px solid var(--cx-border); border-radius: var(--cx-radius); overflow: hidden; box-shadow: var(--cx-shadow); display: flex; flex-direction: column; transition: transform var(--cx-ease), box-shadow var(--cx-ease), border-color var(--cx-ease); }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--cx-shadow-lg); border-color: var(--cx-red-tint); }
.news-card__media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--cx-bg-alt); }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--cx-ease); }
.news-card:hover .news-card__media img { transform: scale(1.05); }
.news-card__tag, .news-hero__tag { display: inline-block; background: var(--cx-red); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: .32em .7em; border-radius: 999px; }
.news-card__tag { position: absolute; left: var(--cx-s3); top: var(--cx-s3); box-shadow: 0 2px 8px rgba(0,0,0,.18); }
.news-card__tag--inline { position: static; margin-bottom: var(--cx-s3); }
.news-card__body { padding: var(--cx-s4) var(--cx-s5) var(--cx-s5); display: flex; flex-direction: column; gap: var(--cx-s2); flex: 1; }
.news-card__date, .news-hero__date { color: var(--cx-text-muted); font-size: .8rem; font-weight: 600; letter-spacing: .02em; }
.news-card__body h3 { margin: 0; font-size: 1.16rem; line-height: 1.28; letter-spacing: -.01em; }
.news-card__body h3 a { color: var(--cx-text); text-decoration: none; }
.news-card:hover .news-card__body h3 a { color: var(--cx-red-ink); }
.news-card__body p { margin: 0; color: var(--cx-text-muted); display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card__more { margin-top: auto; padding-top: var(--cx-s2); display: inline-flex; align-items: center; gap: .4em; color: var(--cx-red-ink); font-weight: 700; font-size: .92rem; }
.news-card__more svg { transition: transform var(--cx-ease); }
.news-card:hover .news-card__more svg, .news-hero:hover .news-card__more svg { transform: translateX(4px); }

/* Featured hero */
.news-hero { display: grid; grid-template-columns: 1.15fr 1fr; margin-top: var(--cx-s6); background: var(--cx-surface); border: 1px solid var(--cx-border); border-radius: var(--cx-radius); overflow: hidden; box-shadow: var(--cx-shadow); text-decoration: none; transition: transform var(--cx-ease), box-shadow var(--cx-ease), border-color var(--cx-ease); }
.news-hero:hover { transform: translateY(-4px); box-shadow: var(--cx-shadow-lg); border-color: var(--cx-red-tint); }
.news-hero__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--cx-bg-alt); }
.news-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--cx-ease); }
.news-hero:hover .news-hero__media img { transform: scale(1.04); }
.news-hero__body { padding: var(--cx-s6); display: flex; flex-direction: column; gap: var(--cx-s3); justify-content: center; }
.news-hero__body h3 { margin: 0; font-size: 1.7rem; line-height: 1.18; letter-spacing: -.02em; color: var(--cx-text); }
.news-hero:hover .news-hero__body h3 { color: var(--cx-red-ink); }
.news-hero__body p { margin: 0; color: var(--cx-text-muted); font-size: 1.02rem; }
.news-hero__tag { align-self: flex-start; }
@media (max-width: 720px) { .news-hero { grid-template-columns: 1fr; } .news-hero__body { padding: var(--cx-s5); } .news-hero__body h3 { font-size: 1.35rem; } }

/* Article page */
.article { padding-block: var(--cx-s7); }
.article__wrap { max-width: 760px; }
.article__date { display: block; color: var(--cx-text-muted); font-weight: 600; font-size: .9rem; margin-bottom: var(--cx-s2); }
.article-hero { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--cx-radius); margin: var(--cx-s4) 0 var(--cx-s6); box-shadow: var(--cx-shadow); }
.article__body { font-size: 1.05rem; }
.article__body h2 { margin-top: var(--cx-s6); }
.article__back { margin-top: var(--cx-s6); }
.lead--muted { color: var(--cx-text-muted); font-size: 1.05rem; max-width: 60ch; }

/* Home — "coming soon" cards */
.soon__badge { display: inline-block; background: var(--cx-red-tint); color: var(--cx-red-ink); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; padding: 4px 10px; border-radius: 999px; margin-bottom: var(--cx-s2); }

/* Home — rich sections */
.hero__trust { margin-top: var(--cx-s5); color: var(--cx-text-muted); font-size: .95rem; }

/* Photo hero */
.hero--photo { position: relative; padding: 0; min-height: 540px; display: flex; align-items: center; overflow: hidden; }
.hero--photo .hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero--photo .hero__scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,10,10,.86) 0%, rgba(40,15,15,.72) 42%, rgba(183,28,28,.45) 100%); }
.hero--photo .hero__content { position: relative; padding-block: var(--cx-s8); }
.hero--photo .hero__title, .hero--photo .hero__subtitle, .hero--photo .hero__trust { color: #fff; }
.hero--photo .hero__subtitle { color: rgba(255,255,255,.92); }
.hero--photo .hero__trust { color: rgba(255,255,255,.8); }
.eyebrow--light { color: #fff; }
.btn--white { background: #fff; color: var(--cx-red-ink); }
.btn--white:hover { background: var(--cx-red-tint); color: var(--cx-red-dark); }

/* Photo band */
.photo-band { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.photo-band__media { min-height: 340px; }
.photo-band__media img { width: 100%; height: 100%; object-fit: cover; }
.photo-band__text { background: var(--cx-bg-alt); padding: var(--cx-s7); display: flex; flex-direction: column; justify-content: center; }
.photo-band__text h2 { margin-bottom: var(--cx-s3); }
.photo-band__text .btn { align-self: flex-start; margin-top: var(--cx-s4); }
@media (max-width: 820px) { .photo-band { grid-template-columns: 1fr; } .photo-band__media { min-height: 240px; } }

.section__head { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--cx-s4); flex-wrap: wrap; margin-bottom: var(--cx-s5); }
.section__head h2 { margin: 0; }

.stats-band { background: var(--cx-red); color: #fff; padding-block: var(--cx-s6); }
.stats { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--cx-s4); grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat__num { display: block; font-family: var(--cx-font-head); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.stat__label { display: block; opacity: .92; font-size: .9rem; }

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--cx-s5); grid-template-columns: repeat(3, 1fr); counter-reset: s; }
.step { background: var(--cx-surface); border: 1px solid var(--cx-border); border-radius: var(--cx-radius); padding: var(--cx-s5); }
.step__n { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 50%; background: var(--cx-red); color: #fff; font-family: var(--cx-font-head); font-weight: 700; margin-bottom: var(--cx-s3); }
.step h3 { margin-bottom: var(--cx-s2); }

.cta-band { background: var(--cx-red-tint); padding-block: var(--cx-s7); }
.cta-band--dark { background: #1A1A1A; color: #fff; }
.cta-band--dark h2, .cta-band--dark p { color: #fff; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--cx-s5); flex-wrap: wrap; }
.cta-band__inner h2 { margin: 0 0 var(--cx-s2); }
.cta-band__inner p { margin: 0; max-width: 60ch; }
.cta-band__btn { background: var(--cx-red); color: #fff; }
.cta-band__btn:hover { background: var(--cx-red-dark); color: #fff; }
.cta-band__ghost { border-color: #fff; color: #fff; }
.cta-band__ghost:hover { background: rgba(255,255,255,.12); }

.testimonial { margin: 0; background: var(--cx-surface); border: 1px solid var(--cx-border); border-left: 4px solid var(--cx-red); border-radius: var(--cx-radius); padding: var(--cx-s5); }
.testimonial blockquote { margin: 0 0 var(--cx-s3); font-size: 1.05rem; }
.testimonial figcaption { color: var(--cx-text-muted); font-weight: 600; }

.faq { border: 1px solid var(--cx-border); border-radius: var(--cx-radius-sm); padding: var(--cx-s3) var(--cx-s4); margin-bottom: var(--cx-s3); background: var(--cx-surface); }
.faq summary { font-weight: 600; cursor: pointer; }
.faq[open] summary { color: var(--cx-red-ink); margin-bottom: var(--cx-s2); }
.faq p { margin: 0; }

@media (max-width: 820px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
}

/* Support hotlines — notices + helplines */
.notice { border-radius: var(--cx-radius-sm); padding: var(--cx-s4); margin: var(--cx-s4) 0; border: 1px solid var(--cx-border); }
.notice--info { background: var(--cx-bg-alt); color: var(--cx-text); }
.notice--crisis { background: var(--cx-red-tint); border-color: #F4C2C2; color: var(--cx-red-ink); font-weight: 500; }
.notice--crisis a { color: var(--cx-red-dark); font-weight: 700; }
.helplines { list-style: none; padding: 0; margin: var(--cx-s4) 0 0; display: grid; gap: var(--cx-s3); }
.helpline { display: flex; gap: var(--cx-s4); align-items: baseline; background: var(--cx-surface); border: 1px solid var(--cx-border); border-radius: var(--cx-radius-sm); padding: var(--cx-s3) var(--cx-s4); }
.helpline__phone { font-family: var(--cx-font-head); font-weight: 700; font-size: 1.15rem; color: var(--cx-red-ink); text-decoration: none; white-space: nowrap; min-width: 7ch; }
.helpline__body { display: flex; flex-direction: column; }
.helpline__name { font-weight: 600; }
.helpline__meta { color: var(--cx-text-muted); font-size: .88rem; }

@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%; margin: 0;
    background: var(--cx-bg); border-bottom: 1px solid var(--cx-border);
    box-shadow: var(--cx-shadow); display: none;
  }
  .site-header__inner.is-open .nav { display: block; max-height: calc(100vh - 80px); overflow-y: auto; }
  .nav__list { flex-direction: column; gap: 0; padding: var(--cx-s2); }
  .nav__link { display: flex; width: 100%; padding: var(--cx-s3) var(--cx-s4); border-radius: var(--cx-radius-sm); }
  .nav__group-btn { justify-content: space-between; }
  .site-header__inner { position: relative; }
  /* Mobile accordion: submenu stacks inline; opens via aria-expanded (JS) or focus-within (no-JS fallback) */
  .nav__item { position: static; }
  .nav__submenu { position: static; box-shadow: none; border: 0; min-width: 0;
    padding: 0 0 var(--cx-s2) var(--cx-s4); background: transparent; }
  .nav__sublink { white-space: normal; padding: var(--cx-s3) var(--cx-s4); min-height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
