/* =====================================================================
   Marktvergleich Notizen — tradewindfinan.it.com
   Self-contained stylesheet. System fonts only, no remote assets.
   Design system: CSS Grid feature+list (2fr/1fr), data/figure tiles,
   8px spacing rhythm, neutral base + muted electric-blue functional
   accent (<80% saturation), zinc-900 text, mono/tabular figures.
   ===================================================================== */

/* ---- Design tokens ---- */
:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --surface-2: #eef1f5;
  --surface-3: #e3e8ef;
  --border: #d3d9e2;
  --border-strong: #b6bfcd;
  --text: #18181b;          /* zinc-900 */
  --text-2: #3f434c;        /* muted zinc */
  --text-3: #5b616c;        /* meta text */
  --accent: #2b6fb3;        /* muted electric blue, sat < 80% */
  --accent-strong: #205487;
  --accent-soft: #e6eef6;
  --accent-contrast: #ffffff;
  --focus: #1e5aa0;
  --shield: #47526b;
  --radius: 6px;
  --radius-lg: 10px;
  --maxw: 1120px;
  --measure: 70ch;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, .08);
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SFMono-Regular', 'Cascadia Mono', Consolas, 'Liberation Mono', monospace;
}

/* ---- Reset / base ---- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  line-height: 1.25;
  color: var(--text);
  font-weight: 700;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 2.55rem); }
h2 { font-size: clamp(1.4rem, 1.1rem + 1.1vw, 1.65rem); }
h3 { font-size: clamp(1.15rem, 1rem + .6vw, 1.3rem); }
p { margin: 0 0 1rem; }

code, .mono, .num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* tabular numbers helper for data tiles */
.tabular { font-variant-numeric: tabular-nums; font-family: var(--font-mono); }

/* ---- Utilities / layout ---- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 16px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 8px; top: -48px;
  background: var(--accent);
  color: var(--accent-contrast);
  padding: 10px 16px;
  border-radius: var(--radius);
  z-index: 1200;
  transition: top .15s ease;
}
.skip-link:focus { top: 8px; }

:where(a, button, input, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---- Header / navigation (mega_topic_nav) ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding-block: 8px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.brand__mark {
  width: 34px; height: 34px;
  flex: none;
  color: var(--accent);
}
.brand__name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.brand__tag {
  display: block;
  font-weight: 500;
  font-size: .72rem;
  color: var(--text-3);
  letter-spacing: .02em;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.main-nav a {
  display: block;
  padding: 12px 14px;
  min-height: 44px;
  text-decoration: none;
  color: var(--text-2);
  border-radius: var(--radius);
  font-weight: 600;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

/* Mobile disclosure: nav hidden until toggled */
@media (max-width: 899px) {
  .main-nav {
    display: none;
    width: 100%;
    padding-bottom: 10px;
  }
  .main-nav.is-open {
    display: block;
    max-height: var(--mobile-nav-max-height, 100dvh);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .site-header__inner { flex-wrap: wrap; }
  body.mobile-nav-open { overflow: hidden; }
  body.mobile-nav-open .cmp:not([hidden]) { display: none; }
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .main-nav ul { flex-direction: row; align-items: center; gap: 4px; }
}

/* ---- Hero (data-story auftakt with kennzahl tile) ---- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background-color: #10233a; /* fallback while image pending */
  background-image: linear-gradient(180deg, rgba(9, 20, 34, .78), rgba(12, 27, 45, .88)),
                    url('../img/home-hero.jpg');
  background-size: cover;
  background-position: center;
  color: #f2f5f9;
  padding-block: 96px 64px;
}
.hero__grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #a9c6e6;
  margin-bottom: 12px;
}
.hero h1 { color: #ffffff; max-width: 18ch; }
.hero__lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: #d7e0eb;
  max-width: 56ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.hero__tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.kennzahl {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  padding: 16px;
  backdrop-filter: blur(2px);
}
.kennzahl__label {
  font-size: .78rem;
  color: #b6c7dc;
  letter-spacing: .02em;
}
.kennzahl__value {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 4px;
}
.kennzahl__note { font-size: .72rem; color: #9fb3ca; margin-top: 2px; }

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.4fr 1fr; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, transform .15s ease;
}
.btn svg { flex: 0 0 auto; }
@media (min-width: 768px) { .btn { white-space: nowrap; } }
.btn:hover { transform: translateY(-1px); }
.btn--solid {
  background: var(--accent);
  color: var(--accent-contrast);
  border-color: var(--accent);
}
.btn--solid:hover { background: var(--accent-strong); color: #fff; }
.btn--ghost { background: transparent; color: var(--text); }
.btn--on-dark {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
}
.btn--on-dark.btn--solid { background: #fff; color: var(--accent-strong); border-color: #fff; }
.btn:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }

/* ---- Sections ---- */
.section { padding-block: clamp(40px, 6vw, 72px); }
.section--alt { background: var(--surface); border-block: 1px solid var(--border); }
.section__head { max-width: var(--measure); margin-bottom: 28px; }
.section__eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 8px;
}
.section__intro { color: var(--text-2); font-size: 1.05rem; }

/* ---- Feature + list grid (card_grid_variant: featured_plus_list) ---- */
.feature-list {
  display: grid;
  gap: 16px;
}
@media (min-width: 900px) {
  .feature-list { grid-template-columns: 2fr 1fr; align-items: start; }
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
}
.feature-card__cover {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background-color: var(--surface-3);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
}
.feature-card h3 { margin: 0; font-size: 1.35rem; }
.feature-card p { margin: 0; color: var(--text-2); }

.list-stack { display: grid; gap: 12px; }
.list-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: grid;
  gap: 6px;
}
.list-card h3 { margin: 0; font-size: 1.08rem; }
.list-card h3 a { text-decoration: none; }
.list-card h3 a:hover { text-decoration: underline; }
.list-card p { margin: 0; font-size: .95rem; color: var(--text-2); }

/* meta line (date + reading time + chips) */
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
  font-size: .8rem;
  color: var(--text-3);
}
.card-meta time { font-variant-numeric: tabular-nums; }

/* ---- Topic chips ---- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.chip {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  border: 1px solid #cfe0f0;
  text-decoration: none;
}
a.chip:hover { background: #d8e7f5; }

/* ---- Data tiles grid (source_method / directory) ---- */
.tile-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .tile-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: grid;
  gap: 8px;
}
.tile__icon {
  width: 34px; height: 34px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 8px;
  padding: 6px;
}
.tile h3 { margin: 0; font-size: 1.1rem; }
.tile p { margin: 0; color: var(--text-2); font-size: .95rem; }
.tile__data {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-strong);
}

/* ---- Directory / resource list ---- */
.dir-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.dir-list li {
  display: flex; gap: 12px; align-items: baseline;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.dir-list a { font-weight: 600; text-decoration: none; }
.dir-list a:hover { text-decoration: underline; }
.dir-list span { color: var(--text-3); font-size: .9rem; }

/* ---- Trust / boundary callout ---- */
.callout {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.callout h3 { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }

/* ---- Article layout ---- */
.article {
  background: var(--surface);
  border-block: 1px solid var(--border);
  padding-block: clamp(28px, 5vw, 56px);
}
.article__inner { max-width: 760px; margin-inline: auto; }

.breadcrumb { font-size: .85rem; color: var(--text-3); margin-bottom: 16px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.breadcrumb li::after { content: "›"; margin-left: 6px; color: var(--border-strong); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { text-decoration: none; }

.article__header { margin-bottom: 24px; }
.article__header h1 { margin-bottom: 12px; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
  font-size: .85rem;
  color: var(--text-3);
  margin-bottom: 12px;
}
.article-meta time { font-variant-numeric: tabular-nums; }
.byline {
  font-size: .88rem;
  color: var(--text-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 12px;
  margin-block: 20px;
}
.byline strong { color: var(--text-2); }

.article__body { font-size: 1.05rem; }
.article__body h2 { margin-top: 2em; }
.article__body h3 { margin-top: 1.6em; }
.article__body p { max-width: var(--measure); }
.article__body ul, .article__body ol { max-width: var(--measure); padding-left: 1.3em; }
.article__body li { margin-bottom: .4em; }
.lead { font-size: 1.15rem; color: var(--text-2); line-height: 1.7; }

/* figure with concept diagram */
figure.concept {
  margin: 28px 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
}
figure.concept img {
  width: 100%;
  border-radius: var(--radius);
  background-color: var(--surface-3);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
figure.concept figcaption {
  font-size: .82rem;
  color: var(--text-3);
  margin-top: 10px;
  line-height: 1.5;
}

/* comparison table (concept, non-realtime) */
.table-wrap { overflow-x: auto; margin: 20px 0; border: 1px solid var(--border); border-radius: var(--radius); }
table.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
  min-width: 480px;
}
table.compare caption {
  text-align: left;
  font-size: .82rem;
  color: var(--text-3);
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
table.compare th, table.compare td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
table.compare thead th { background: var(--surface-2); font-size: .85rem; }
table.compare td.num, table.compare th.num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
table.compare tbody tr:last-child td { border-bottom: none; }

/* article-level disclaimer aside */
aside.note {
  background: #fbfaf4;
  border: 1px solid #e6e0c8;
  border-left: 4px solid #c9b877;
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: .9rem;
  color: var(--text-2);
  margin: 24px 0;
}
aside.note strong { color: var(--text); }
aside.note p:last-child { margin-bottom: 0; }

/* related reading */
.related {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.related h2 { font-size: 1.2rem; }
.related ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.related a { font-weight: 600; }

/* prev / next nav */
.pager {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
@media (min-width: 640px) { .pager { grid-template-columns: 1fr 1fr; } }
.pager a {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  background: var(--surface);
}
.pager a:hover { border-color: var(--accent); }
.pager .dir { font-size: .78rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; }
.pager .ttl { font-weight: 600; color: var(--text); }
.pager .next { text-align: right; }
.back-link { margin-top: 20px; }

/* ---- Contact page ---- */
.contact-grid { display: grid; gap: 24px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.contact-lines { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.contact-lines li { display: flex; gap: 12px; align-items: flex-start; }
.contact-lines svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 2px; }
.contact-lines a { text-decoration: none; }

form.mailto-form { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: .92rem; }
.field input, .field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font: inherit;
  background: var(--surface);
  color: var(--text);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--focus); outline-offset: 1px; }
.form-note { font-size: .85rem; color: var(--text-3); }

.map-box {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
}
.map-placeholder { padding: 24px; text-align: center; }
.map-box iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---- Prose blocks (legal / editorial) ---- */
.prose { max-width: var(--measure); }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .4em; }
.doc-meta { color: var(--text-3); font-size: .9rem; margin-bottom: 24px; }
.toc-simple { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 6px; }
.toc-simple a { font-weight: 600; text-decoration: none; }

/* ---- Footer (resource_directory variant) ---- */
.site-footer {
  background: #12141a;
  color: #c4cad4;
  padding-block: 40px 28px;
  margin-top: 48px;
}
.site-footer a { color: #cdd6e2; }
.footer-grid { display: grid; gap: 24px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand__name { font-weight: 700; color: #fff; font-size: 1.05rem; }
.footer-brand p { font-size: .9rem; color: #99a2b0; margin-top: 8px; max-width: 42ch; }
.footer-col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 12px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-col a { text-decoration: none; font-size: .92rem; }
.footer-col a:hover { text-decoration: underline; }
.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #262a33;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: #8b93a1;
}
.footer-bottom p { margin: 0; }
.footer-disclaimer { font-size: .82rem; color: #8b93a1; line-height: 1.6; margin-top: 16px; max-width: 78ch; }
.cmp-reopen {
  background: none; border: none; color: #cdd6e2; text-decoration: underline;
  cursor: pointer; min-height: 44px; font: inherit; padding: 0;
}

/* ---- CMP (necessary_only two-state) ---- */
.cmp {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(15, 23, 42, .12);
  padding: 16px; max-height: 85dvh; overflow: auto;
}
.cmp__bar { display: grid; gap: 12px; max-width: var(--maxw); margin: 0 auto; }
@media (min-width: 768px) { .cmp__bar { grid-template-columns: 1fr auto; align-items: center; } }
.cmp__text { margin: 0; font-size: .92rem; line-height: 1.6; color: var(--text); max-width: 74ch; }
.cmp__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cmp__panel { max-width: var(--maxw); margin: 0 auto; display: grid; gap: 12px; }
.cmp__bar[hidden], .cmp__panel[hidden] { display: none; }
.cmp__title { font-size: 1.15rem; margin: 4px 0 0; }
.cmp__row { border-top: 1px solid var(--border); padding-top: 12px; display: grid; gap: 8px; }
.cmp__rowhead { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.cmp__cat { font-weight: 600; }
.cmp__state { font-size: .85rem; color: var(--text-3); }
.cmp__toggle { width: 46px; height: 26px; }
.cmp__more summary { cursor: pointer; font-size: .88rem; color: var(--accent-strong); }
.cmp__more p { font-size: .88rem; color: var(--text-2); margin: 8px 0 0; }
.cmp code { font-size: .85em; background: var(--surface-2); padding: 1px 5px; border-radius: 4px; }

/* ---- Scroll reveal (progressive enhancement) ----
   Content is visible by default. Only when JS runs and the browser
   supports it (.js-enabled on <html>) do we set the pre-reveal state.
   prefers-reduced-motion disables the effect entirely. */
.js-enabled .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-enabled .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* footer heading compliance (audit: footer allows only simple tags) */
.site-footer .footer-title{font-weight:700;font-size:.8rem;letter-spacing:.04em;text-transform:uppercase;margin:0 0 .6rem;line-height:1.3;opacity:.9}
.site-footer .footer-strong{font-weight:700}
.site-footer p{margin:.25rem 0}

/* No-JS fallback: keep mobile navigation reachable without JavaScript */
html:not(.js-enabled) .main-nav,
html:not(.js-enabled) .primary-nav{display:block !important}
html:not(.js-enabled) .nav-toggle{display:none !important}
