/* =========================================================
   El-Chromat — Usługi Elektryczne Krosno
   Kierunek: "Trust & Authority" — industrialna precyzja
   Fonty: Space Grotesk (display) + Spline Sans (body) + JetBrains Mono (tech)
   ========================================================= */

:root {
  /* Marka */
  --ink: #0E1A2B;        /* głęboki granat */
  --ink-2: #15263d;      /* granat jaśniejszy (sekcja dark) */
  --ink-3: #1d3252;      /* karty na dark */
  --steel: #5b6b80;      /* stalowy szary */
  --slate: #334155;      /* tekst pomocniczy */
  --paper: #f6f7f9;      /* tło sekcji */
  --paper-2: #eef1f5;    /* tło wtórne */
  --white: #ffffff;
  --line: #d8dee7;       /* obramowania na jasnym */
  --line-dark: rgba(255,255,255,0.12); /* obramowania na ciemnym */

  /* Akcent — elektryczny bursztyn (sygnał napięcia) */
  --amber: #F5A524;
  --amber-deep: #C97B0C; /* ciemniejszy do tekstu na jasnym tle (kontrast AA) */
  --amber-soft: rgba(245,165,36,0.12);

  /* Tekst */
  --fg: #0E1A2B;
  --fg-muted: #4a5b71;
  --fg-on-dark: #eaf0f7;
  --fg-on-dark-muted: #aab9cb;

  /* Typografia */
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Spline Sans", "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Promienie i cienie */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(14,26,43,0.06), 0 4px 12px rgba(14,26,43,0.05);
  --shadow-md: 0 8px 30px rgba(14,26,43,0.10);

  /* Układ */
  --wrap: 1120px;
  --gutter: clamp(1.1rem, 4vw, 2.2rem);
  --header-h: 70px;
}

/* ---------- Reset / podstawy ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: var(--ink);
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ikony — bazowy rozmiar (siatka bezpieczeństwa) */
.ico {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* focus widoczny globalnie */
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Przyciski ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn .ico { width: 1.15em; height: 1.15em; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(245,165,36,0.30);
}
.btn-primary:hover { background: #ffb840; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--paper); }

.btn-call {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-mono);
  letter-spacing: -0.01em;
}
.btn-call:hover { background: var(--ink-2); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: auto;
}
.brand-mark { border-radius: 11px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-sub {
  font-size: 0.72rem;
  color: var(--steel);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.main-nav { display: flex; align-items: center; }
.nav-list {
  list-style: none;
  display: flex;
  gap: 0.4rem;
  padding: 0;
}
.nav-list a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--slate);
  white-space: nowrap;
  transition: background-color .18s ease, color .18s ease;
}
.nav-list a:hover { background: var(--paper); color: var(--ink); }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle-bars {
  position: relative;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: background-color .2s ease;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute; left: 0;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

.header-call .ico { width: 1.05em; height: 1.05em; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 88% -10%, rgba(245,165,36,0.18), transparent 55%),
    radial-gradient(90% 80% at 0% 0%, rgba(29,50,82,0.55), transparent 60%),
    linear-gradient(160deg, var(--ink) 0%, #0b1623 70%);
  color: var(--fg-on-dark);
}
/* subtelny grid napięciowy w tle (czysto dekoracyjny, nie udaje zdjęcia) */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding-block: clamp(3.2rem, 9vw, 6rem);
  max-width: 880px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--amber);
  text-transform: uppercase;
  background: rgba(245,165,36,0.10);
  border: 1px solid rgba(245,165,36,0.30);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(245,165,36,0.20);
}
.hero-title {
  color: var(--white);
  font-weight: 700;
  font-size: clamp(2.3rem, 6.2vw, 4.1rem);
  letter-spacing: -0.025em;
  margin-top: 1.3rem;
}
.hero-title .accent { color: var(--amber); }
.hero-lead {
  margin-top: 1.3rem;
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  color: var(--fg-on-dark-muted);
  max-width: 60ch;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}
.hero-cta .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
}
.hero-cta .btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.trust-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.6rem;
  margin-top: 2.4rem;
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line-dark);
}
.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--fg-on-dark);
}
.trust-strip .ico { color: var(--amber); width: 1.15em; height: 1.15em; }

/* ---------- Sekcje ogólne ---------- */
.section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background: var(--white);
}
.section + .section { border-top: 1px solid var(--line); }
.section-head { max-width: 64ch; margin-bottom: clamp(2rem, 5vw, 3rem); }
.kicker {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 0.7rem;
}
.section-title {
  font-size: clamp(1.7rem, 4.2vw, 2.6rem);
  font-weight: 600;
}
.section-intro {
  margin-top: 1rem;
  color: var(--fg-muted);
  font-size: 1.08rem;
}

/* ---------- Karty usług ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #c2cbd8;
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--amber-soft);
  color: var(--amber-deep);
  margin-bottom: 1.1rem;
}
.card-icon .ico { width: 24px; height: 24px; stroke-width: 1.7; }
.card-title { font-size: 1.18rem; font-weight: 600; }
.card-text { margin-top: 0.6rem; color: var(--fg-muted); font-size: 0.99rem; }

.services-note {
  margin-top: 1.8rem;
  color: var(--fg-muted);
  font-size: 1rem;
}
.services-note a { color: var(--amber-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Sekcja dark: Dlaczego my ---------- */
.section-dark {
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(245,165,36,0.10), transparent 50%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--fg-on-dark);
  border-top: none;
}
.section-dark .kicker { color: var(--amber); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-intro { color: var(--fg-on-dark-muted); }

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.reason {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  padding: 1.5rem 1.4rem;
}
.reason-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: rgba(245,165,36,0.14);
  color: var(--amber);
  margin-bottom: 1rem;
}
.reason-icon .ico { width: 23px; height: 23px; stroke-width: 1.7; }
.reason-title { color: var(--white); font-size: 1.1rem; }
.reason-text { margin-top: 0.55rem; color: var(--fg-on-dark-muted); font-size: 0.97rem; }

.reasons-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-dark);
  border-left: 3px solid var(--amber);
  border-radius: var(--r-sm);
  color: var(--fg-on-dark-muted);
  font-size: 0.95rem;
}
.reasons-disclaimer .ico { color: var(--amber); margin-top: 2px; }
.reasons-disclaimer a { color: var(--amber); font-weight: 600; white-space: nowrap; }

/* ---------- Galeria / strefa zdjęć ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.photo-slot {
  border-radius: var(--r-md);
  overflow: hidden;
}
.photo-slot-inner {
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1.2rem;
  background:
    repeating-linear-gradient(45deg, var(--paper) 0 12px, var(--paper-2) 12px 24px);
  border: 2px dashed var(--line);
  border-radius: var(--r-md);
  color: var(--steel);
  transition: border-color .2s ease, color .2s ease;
}
.photo-slot:hover .photo-slot-inner { border-color: var(--amber); color: var(--amber-deep); }
.photo-slot-ico { width: 34px; height: 34px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.photo-slot-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--slate);
}
.photo-slot-cap {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.gallery-note {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.8rem;
  color: var(--fg-muted);
  font-size: 1rem;
}
.gallery-note .ico { color: var(--amber-deep); }

/* ---------- Kontakt ---------- */
.section-contact { background: var(--paper); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
.contact-list { list-style: none; padding: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--ink);
  color: var(--amber);
  flex: none;
}
.contact-ico .ico { width: 21px; height: 21px; }
.contact-meta { display: flex; flex-direction: column; }
.contact-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--steel);
}
.contact-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
}
a.contact-value:hover { color: var(--amber-deep); text-decoration: underline; text-underline-offset: 3px; }
.contact-value-static { font-size: 1.02rem; font-weight: 500; }

.contact-call { margin-top: 1.6rem; width: 100%; }

.map-slot {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.map-slot-ico { width: 30px; height: 30px; flex: none; stroke: var(--amber-deep); fill: none; stroke-width: 1.6; }
.map-slot figcaption { display: flex; flex-direction: column; }
.map-slot strong { font-family: var(--font-display); color: var(--ink); font-size: 1.05rem; }
.map-slot span { color: var(--fg-muted); font-size: 0.9rem; }

/* Formularz */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 4vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.form-note { font-size: 0.88rem; color: var(--fg-muted); margin-bottom: 1.2rem; }
.req { color: var(--amber-deep); }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.75rem 0.9rem;
  min-height: 46px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: auto; resize: vertical; line-height: 1.55; }
.field input::placeholder,
.field textarea::placeholder { color: #9aa7b6; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-soft);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #d23b3b;
  box-shadow: 0 0 0 3px rgba(210,59,59,0.12);
}
.field-hint { display: block; margin-top: 0.35rem; font-size: 0.82rem; color: var(--steel); }
.field-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #c52b2b;
  min-height: 0;
}
.field-error:not(:empty) { min-height: 1.2em; }

.form-submit { width: 100%; margin-top: 0.4rem; }
.form-status { margin-top: 0.9rem; font-size: 0.95rem; font-weight: 600; }
.form-status.ok { color: #1d7a44; }
.form-status.err { color: #c52b2b; }
.form-fallback { margin-top: 0.9rem; font-size: 0.9rem; color: var(--fg-muted); }
.form-fallback a { color: var(--amber-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--fg-on-dark-muted);
  padding-top: clamp(2.5rem, 6vw, 3.5rem);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  padding-bottom: 2rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.8rem; }
.footer-name { font-family: var(--font-display); font-weight: 600; color: var(--white); font-size: 1.05rem; }
.footer-owner { font-size: 0.9rem; color: var(--fg-on-dark-muted); }
.footer-nap { font-style: normal; display: grid; gap: 0.5rem; }
.footer-nap p { font-size: 0.97rem; }
.footer-nap-label {
  display: inline-block;
  min-width: 56px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--steel);
}
.footer-nap a { color: var(--white); }
.footer-nap a:hover { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; }
.footer-nav a { font-size: 0.97rem; color: var(--fg-on-dark-muted); }
.footer-nav a:hover { color: var(--amber); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-block: 1.3rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.85rem;
  color: var(--steel);
}
.footer-credit strong { color: var(--fg-on-dark); }

/* ---------- Floating call (mobile) ---------- */
.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  width: 56px; height: 56px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  color: var(--ink);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(245,165,36,0.45);
}
.floating-call .ico { width: 24px; height: 24px; stroke-width: 2; }
.floating-call:active { transform: scale(0.95); }

/* ---------- Reveal on scroll (enhancement, z safety-net w JS) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* =========================================================
   RESPONSYWNOŚĆ
   ========================================================= */

/* >= 600px : karty i galeria w 2 kolumny */
@media (min-width: 600px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1.3fr 1fr 0.8fr; align-items: start; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .contact-call { width: auto; }
}

/* >= 880px : kontakt 2 kolumny, usługi 3 kolumny */
@media (min-width: 880px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { grid-template-columns: 0.95fr 1.05fr; align-items: start; }
}

/* Bardzo małe ekrany — ukryj sub-line marki, by header został w 1-2 liniach */
@media (max-width: 430px) {
  .brand-sub { display: none; }
}

/* Mobile nav (< 820px) */
@media (max-width: 819px) {
  .header-call span { display: none; }
  .header-call { padding: 0.6rem 0.75rem; }
  .nav-toggle { display: inline-flex; }
  .main-nav { position: relative; }
  .nav-list {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    flex-direction: column;
    gap: 0.15rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    padding: 0.6rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
  }
  .nav-list.open { opacity: 1; visibility: visible; transform: none; }
  .nav-list a { display: block; padding: 0.7rem 0.9rem; }
  .floating-call { display: inline-flex; }
}

/* duże ekrany — ukryj toggle na pewno */
@media (min-width: 820px) {
  .nav-toggle { display: none; }
  .nav-list { opacity: 1 !important; visibility: visible !important; transform: none !important; }
}

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