/* =====================================================================
   Schützenverein-Template — Stylesheet
   ===================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; margin: 0; letter-spacing: -.01em; }
p { margin: 0 0 1rem; }

/* ---- Layout ---- */
.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }

/* ---- Eyebrow + Zielscheiben-Marker (Signature) ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--step--1); text-transform: uppercase; letter-spacing: .16em;
  color: var(--brass-600); margin: 0 0 1.1rem;
}
.eyebrow--on-dark { color: var(--brass); }
.target-mark { flex: none; width: 15px; height: 15px; }
.target-mark circle { fill: none; stroke: currentColor; }

/* ---- Buttons ---- */
.btn {
  --btn-bg: var(--green-800); --btn-fg: var(--on-dark);
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: var(--step--1);
  letter-spacing: .02em; text-decoration: none; cursor: pointer;
  padding: .82rem 1.4rem; border: 1px solid transparent; border-radius: var(--radius);
  background: var(--btn-bg); color: var(--btn-fg);
  transition: transform .12s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--brass { --btn-bg: var(--brass); --btn-fg: #26200C; }
.btn--brass:hover { background: var(--brass-600); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--on-dark); border-color: var(--line-dk); }
.btn--ghost:hover { background: rgba(255,255,255,.08); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--green-800); border-color: var(--green-800); }
.btn--outline:hover { background: var(--green-800); color: var(--on-dark); }
.btn__arrow { transition: transform .18s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* =====================================================================
   bytekonform — Demo-Balken (Anbieter-Branding)
   Sitzt über der gesamten Website. Zum Entfernen: buildBykBar() in js/site.js.
   ===================================================================== */
.byk-bar {
  position: relative; z-index: 60;
  background: linear-gradient(180deg, var(--byk-bg) 0%, var(--byk-bg-alt) 100%);
  color: var(--byk-ink);
  font-family: var(--font-display);
  border-bottom: 1px solid var(--byk-line);
}
.byk-bar::after { /* Holo-Kante als Marken-Signatur */
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--byk-holo-gradient); background-size: 200% 100%;
  animation: byk-holo 9s linear infinite;
}
@keyframes byk-holo { to { background-position: 200% 0; } }

.byk-bar__inner {
  display: flex; align-items: center; gap: 1rem 1.4rem; flex-wrap: wrap;
  min-height: 46px; padding: .5rem 0;
}
.byk-bar__brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; flex: none; }
.byk-bar__logo { height: 15px; width: auto; filter: invert(1); } /* schwarzes Original → weiß */
.byk-bar__tag {
  font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .2rem .45rem; border-radius: 99px; color: #000826;
  background: var(--byk-holo-gradient); background-size: 200% 100%;
  animation: byk-holo 9s linear infinite;
}
.byk-bar__text { font-size: .8rem; line-height: 1.45; color: var(--byk-muted); margin: 0; }
.byk-bar__text strong { color: var(--byk-ink); font-weight: 600; }
.byk-bar__note { color: var(--byk-muted-dim); }
.byk-bar__actions { margin-left: auto; display: inline-flex; gap: .5rem; align-items: center; flex-wrap: wrap; }
.byk-bar__link {
  font-size: .74rem; font-weight: 600; letter-spacing: .02em; text-decoration: none;
  color: var(--byk-ink); border: 1px solid var(--byk-line); background: var(--byk-surface);
  padding: .4rem .8rem; border-radius: 99px; white-space: nowrap; transition: border-color .18s, color .18s;
}
.byk-bar__link:hover { border-color: var(--byk-holo-3); color: var(--byk-holo-3); }
.byk-bar__link--icon { display: inline-flex; align-items: center; gap: .4rem; }
.byk-bar__link--icon svg { width: 13px; height: 13px; flex: none; }
.byk-bar__link--pop { border-color: transparent; color: #000826; background: var(--byk-holo-gradient);
  background-size: 200% 100%; animation: byk-holo 9s linear infinite; }
.byk-bar__link--pop:hover { color: #000826; filter: brightness(1.08); }
.byk-bar :focus-visible { box-shadow: 0 0 0 3px var(--byk-holo-3); }

@media (max-width: 860px) {
  .byk-bar__inner { padding: .6rem 0; }
  .byk-bar__actions { margin-left: 0; width: 100%; }
  .byk-bar__note { display: none; }
}

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar { display: flex; align-items: center; gap: 1.5rem; height: 78px; }
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; margin-right: auto; }
.brand__crest { width: 44px; height: 52px; flex: none; }
.crest-box { background: #fff; border-radius: 10px; flex: none; display: inline-flex;
  align-items: center; justify-content: center; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,.06); }
.crest-box img { display: block; width: 100%; height: 100%; object-fit: contain; }
.crest-box--head { width: 56px; height: 56px; padding: 5px; border-radius: 9px; }
.crest-box--foot { width: 92px; height: 92px; padding: 8px; border-radius: 12px; margin-bottom: 1rem; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; color: var(--green-800); letter-spacing: -.01em; }
.brand__sub { font-family: var(--font-display); font-weight: 600; font-size: .66rem; text-transform: uppercase; letter-spacing: .17em; color: var(--brass-600); }

.site-header__nav { display: flex; align-items: center; gap: 1.1rem; }
.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  font-family: var(--font-display); font-weight: 600; font-size: .93rem;
  text-decoration: none; color: var(--ink-2); padding: .5rem .7rem; border-radius: var(--radius);
  position: relative;
}
.nav a:hover { color: var(--green-800); }
.nav a[aria-current="page"] { color: var(--green-800); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .28rem; height: 2px; background: var(--brass);
}
.header-cta { display: inline-flex; gap: .6rem; align-items: center; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper-2); cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--green-800); transition: .2s;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg) translateY(-1px); }

/* =====================================================================
   Hero
   ===================================================================== */
.hero { position: relative; background: var(--green-900); color: var(--on-dark); overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: center;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3.5rem, 8vw, 5.5rem); }
.hero h1 { font-size: var(--step-4); font-weight: 800; color: #fff; margin: .4rem 0 1.1rem; }
.hero h1 em { font-style: normal; color: var(--brass); }
.hero__lead { font-size: var(--step-1); color: var(--on-dark-mut); max-width: 34ch; margin-bottom: 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__stats { display: flex; gap: 2.2rem; margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line-dk); }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: #fff; line-height: 1; }
.stat__lab { font-size: var(--step--1); color: var(--on-dark-mut); margin-top: .35rem; }

/* Banner-Grafik im weißen Container (Startseite) */
.hero__banner { justify-self: center; width: min(100%, 460px); background: #fff;
  border-radius: 16px; padding: 20px; box-shadow: var(--shadow-lg); }
.hero__banner img { width: 100%; height: auto; border-radius: 4px; }
.hero__lockup { text-align: center; }
.hero__lockup .hero__logo { width: auto; height: 168px; margin: 0 auto .9rem; border-radius: 0; }
.hero__lockup-text strong { display: block; font-family: var(--font-display); font-weight: 800;
  font-size: 1.45rem; color: var(--green-800); letter-spacing: -.01em; }
.hero__lockup-text span { display: block; font-family: var(--font-display); font-weight: 600;
  font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--brass-600); margin-top: .25rem; }
.hero__lockup figcaption { border-top: 1px solid var(--line); padding-top: .8rem; margin-top: 1rem; }
.hero__banner figcaption { font-family: var(--font-display); font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted); text-align: center; margin-top: .7rem; }

/* Zielscheibe als Hero-Signature */
.hero__target { position: relative; justify-self: center; width: min(100%, 400px); aspect-ratio: 1; }
.hero__target svg { width: 100%; height: 100%; }
.hero__target .ring { fill: none; stroke: rgba(255,255,255,.14); }
.hero__target .ring--brass { stroke: var(--brass); }
.hero__target .bull { fill: var(--brass); }
.hero__target .hit { fill: #fff; stroke: var(--green-900); stroke-width: 2; }
.hero__glow { position: absolute; inset: -30% -10% auto auto; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(198,162,76,.25), transparent 68%); pointer-events: none; }

/* =====================================================================
   Section headers
   ===================================================================== */
.sec-head { max-width: 60ch; margin-bottom: 2.6rem; }
.sec-head h2 { font-size: var(--step-3); font-weight: 800; color: var(--green-800); }
.sec-head p { color: var(--muted); font-size: var(--step-1); margin-top: .8rem; }
.sec-head--split { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; max-width: none; }
.link-more { font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--green-800);
  text-decoration: none; white-space: nowrap; display: inline-flex; gap: .4rem; align-items: center; }
.link-more:hover { color: var(--brass-600); }

/* =====================================================================
   Abteilungs-Karten
   ===================================================================== */
.grid { display: grid; gap: 1.4rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.dept-card {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.7rem; box-shadow: var(--shadow); transition: transform .16s ease, box-shadow .16s ease, border-color .16s;
}
.dept-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--brass); }
.dept-card__icon { width: 46px; height: 46px; color: var(--green-700); margin-bottom: 1.1rem; }
.dept-card h3 { font-size: var(--step-1); font-weight: 700; color: var(--green-800); }
.dept-card p { color: var(--muted); font-size: .96rem; margin: .5rem 0 1.1rem; }
.dept-card__foot { margin-top: auto; font-family: var(--font-display); font-weight: 600; font-size: .85rem;
  color: var(--brass-600); display: inline-flex; gap: .4rem; align-items: center; }
.dept-card__foot .badge { margin-left: auto; }
.badge { font-family: var(--font-display); font-weight: 600; font-size: .68rem; text-transform: uppercase;
  letter-spacing: .1em; padding: .22rem .5rem; border-radius: 99px; background: var(--brass-100); color: var(--brass-600); }

/* =====================================================================
   News-Karten
   ===================================================================== */
.news-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: transform .16s ease, box-shadow .16s ease; }
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.news-card__media { aspect-ratio: 16/10; position: relative; }
.news-card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.news-card__meta { font-family: var(--font-display); font-weight: 600; font-size: .74rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--brass-600); display: flex; gap: .7rem; }
.news-card__meta .dot { color: var(--line); }
.news-card h3 { font-size: 1.22rem; font-weight: 700; color: var(--green-800); }
.news-card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* dekorative Motiv-Flächen statt Fotos (Clickdummy-Platzhalter) */
.motif { background: var(--green-800); position: relative; overflow: hidden; }
.motif--alt { background: var(--green-700); }
.motif--brass { background: linear-gradient(135deg, var(--brass-600), var(--brass)); }
.motif::after { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 78% 26%, rgba(255,255,255,.14) 0 8%, transparent 8.5% 15%, rgba(255,255,255,.1) 15.5% 21%, transparent 21.5% 30%, rgba(255,255,255,.07) 30.5% 40%, transparent 41%);
}
.motif__label { position: absolute; left: 1.1rem; bottom: 1rem; z-index: 1; font-family: var(--font-display);
  font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.82); }

/* =====================================================================
   Bänder (Volksfest, Haltung)
   ===================================================================== */
.band { background: var(--green-800); color: var(--on-dark); border-radius: var(--radius-lg); overflow: hidden; }
.band__inner { display: grid; grid-template-columns: 1.3fr 1fr; }
.band__text { padding: clamp(2.2rem, 5vw, 3.4rem); }
.band__text h2 { font-size: var(--step-2); color: #fff; font-weight: 800; margin-bottom: .8rem; }
.band__text p { color: var(--on-dark-mut); }
.band__media { background: var(--green-700); position: relative; min-height: 240px; }

.stance { border: 1px solid var(--line); border-left: 4px solid var(--brass); background: var(--paper-2);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--shadow); }
.stance .eyebrow { margin-bottom: .8rem; }
.stance p { font-size: var(--step-1); color: var(--ink-2); margin: 0; max-width: 62ch; }

/* =====================================================================
   Page header (Unterseiten)
   ===================================================================== */
.page-head { background: var(--green-900); color: var(--on-dark); }
.page-head__inner { padding: clamp(2.8rem, 6vw, 4.4rem) 0 clamp(2.4rem, 5vw, 3.4rem); }
.page-head h1 { font-size: var(--step-3); font-weight: 800; color: #fff; margin: .6rem 0 .8rem; }
.page-head p { color: var(--on-dark-mut); max-width: 60ch; font-size: var(--step-1); }
.crumbs { font-family: var(--font-display); font-size: .8rem; color: var(--on-dark-mut); font-weight: 600; letter-spacing: .04em; }
.crumbs a { color: var(--on-dark-mut); text-decoration: none; }
.crumbs a:hover { color: var(--brass); }
.crumbs span { color: var(--brass); }

/* =====================================================================
   Termine
   ===================================================================== */
.term-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.term { display: grid; grid-template-columns: 92px 1fr auto; gap: 1.4rem; align-items: center;
  padding: 1.3rem .4rem; border-bottom: 1px solid var(--line); transition: background .15s; }
.term:hover { background: var(--paper-2); }
.term__date { text-align: center; background: var(--green-800); color: #fff; border-radius: var(--radius); padding: .5rem 0; }
.term__day { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; line-height: 1; }
.term__mon { font-family: var(--font-display); font-weight: 600; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--brass-100); margin-top: .2rem; }
.term__title { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--green-800); }
.term__meta { color: var(--muted); font-size: .9rem; margin-top: .2rem; }
.term__tag { font-family: var(--font-display); font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .09em;
  padding: .3rem .65rem; border-radius: 99px; border: 1px solid var(--line); color: var(--ink-2); white-space: nowrap; }

/* =====================================================================
   Prose (Beitrag / Verein / Detail)
   ===================================================================== */
.layout { display: grid; grid-template-columns: 1fr 300px; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.prose { max-width: 68ch; }
.prose h2 { font-size: var(--step-2); color: var(--green-800); margin: 2.4rem 0 1rem; font-weight: 800; }
.prose h3 { font-size: var(--step-1); color: var(--green-800); margin: 1.8rem 0 .6rem; font-weight: 700; }
.prose p, .prose li { color: var(--ink-2); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .5rem; }
.prose blockquote { margin: 1.6rem 0; padding: 1rem 1.4rem; border-left: 4px solid var(--brass);
  background: var(--paper-2); font-style: italic; color: var(--ink); border-radius: 0 var(--radius) var(--radius) 0; }
.lead { font-size: var(--step-1); color: var(--ink); }
.figure { margin: 1.8rem 0; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; }
.figcap { font-family: var(--font-display); font-size: .8rem; color: var(--muted); padding: .6rem .2rem 0; }

.aside-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow); position: sticky; top: 98px; }
.aside-card h4 { font-family: var(--font-display); font-weight: 700; color: var(--green-800); font-size: 1.05rem; margin-bottom: .8rem; }
.aside-card ul { list-style: none; padding: 0; margin: 0; }
.aside-card li { padding: .5rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.aside-card li:last-child { border: 0; }
.aside-card a { color: var(--ink-2); text-decoration: none; display: flex; justify-content: space-between; gap: 1rem; }
.aside-card a:hover { color: var(--green-800); }

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin: 1.6rem 0; }
.info-row { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.info-row dt { font-family: var(--font-display); font-weight: 600; color: var(--green-800); font-size: .95rem; }
.info-row dd { margin: 0; color: var(--ink-2); text-align: right; }

/* =====================================================================
   Formular (nicht funktional)
   ===================================================================== */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--green-800); }
.field input, .field textarea, .field select {
  font: inherit; font-size: 1rem; padding: .75rem .9rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper-2); color: var(--ink); width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px var(--brass-100); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.demo-note { display: flex; gap: .7rem; align-items: flex-start; background: var(--brass-100); border: 1px solid var(--brass);
  border-radius: var(--radius); padding: .8rem 1rem; font-family: var(--font-display); font-size: .86rem; color: #4a3c12; }
.demo-note svg { flex: none; width: 18px; height: 18px; margin-top: 1px; }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: var(--green-900); color: var(--on-dark-mut); margin-top: 2rem; }
.site-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding: clamp(3rem,6vw,4.5rem) 0 3rem; }
.site-footer h4 { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: .95rem; margin-bottom: 1.1rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .6rem; }
.site-footer a { color: var(--on-dark-mut); text-decoration: none; font-size: .95rem; }
.site-footer a:hover { color: var(--brass); }
.foot-brand__name { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.05rem; }
.foot-brand p { font-size: .92rem; margin-top: .8rem; max-width: 32ch; }
.site-footer__bottom { border-top: 1px solid var(--line-dk); padding: 1.3rem 0; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; font-size: .82rem; }
.social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.social a { width: 38px; height: 38px; border: 1px solid var(--line-dk); border-radius: var(--radius); display: grid; place-items: center; }
.social a:hover { border-color: var(--brass); }
.social svg { width: 18px; height: 18px; }

/* =====================================================================
   Accessibility & Motion
   ===================================================================== */
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: var(--radius); }
.skip { position: absolute; left: -999px; top: 0; background: var(--brass); color: #26200C; padding: .6rem 1rem;
  font-family: var(--font-display); font-weight: 600; z-index: 100; border-radius: 0 0 var(--radius) 0; }
.skip:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* =====================================================================
   Reveal-Animation
   ===================================================================== */
[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-in { opacity: 1; transform: none; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__target { max-width: 320px; order: -1; }
  .hero__banner { max-width: 360px; order: -1; }
  .band__inner { grid-template-columns: 1fr; }
  .band__media { min-height: 160px; }
  .layout { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header__nav {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: 1rem var(--gutter) 1.6rem; gap: .2rem;
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: .2s;
    max-height: calc(100vh - 90px); overflow-y: auto;
  }
  .site-header__nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .site-header__nav .nav { display: flex; flex-direction: column; align-items: stretch; }
  .site-header__nav .nav a { padding: .8rem .4rem; border-bottom: 1px solid var(--line); }
  .site-header__nav .nav a[aria-current="page"]::after { display: none; }
  .site-header__nav .header-cta { display: flex; margin-top: 1rem; }
  .site-header__nav .header-cta .btn { display: inline-flex; width: 100%; justify-content: center; }
  .hero__stats { gap: 1.4rem; flex-wrap: wrap; }
  .info-grid, .form__row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; }
  .term { grid-template-columns: 68px 1fr; }
  .term__tag { grid-column: 2; justify-self: start; }
  .sec-head--split { flex-direction: column; align-items: flex-start; }
}
