/* ==========================================================================
   Artux — arkusz stylów
   Autor: Artux (Opole) · Licencja: własna
   Struktura: 1) tokeny  2) reset  3) layout  4) typografia
              5) komponenty  6) sekcje  7) utilities  8) print
   ========================================================================== */

/* 1 ─────────────────────────────────────────────── tokeny projektowe ───── */
:root {
  /* marka
     --brand        : akcenty dekoracyjne (ramki, linie, ikony na jasnym tle)
     --brand-cta    : tła przycisków i pól z białym tekstem — kontrast >= 4.5:1 (WCAG AA)
     --brand-600/700: tekst marki na jasnym tle oraz stany :hover */
  --brand:        #2f7fd1;
  --brand-cta:    #2569ad;
  --brand-700:    #1d5288;
  --brand-100:    #e6f0fb;
  --brand-50:     #f4f9fe;

  /* atrament / powierzchnie */
  --ink:          #101a28;
  --text:         #2c3a4d;
  --text-muted:   #5f7085;
  --line:         #dfe6ee;
  --surface:      #ffffff;
  --surface-alt:  #f6f8fb;

  /* akcenty pomocnicze */
  --accent:       #14b8a6;

  /* skala typograficzna (fluid, clamp) */
  --step--1: clamp(0.84rem, 0.82rem + 0.10vw, 0.90rem);
  --step-0:  clamp(1.00rem, 0.96rem + 0.18vw, 1.09rem);
  --step-1:  clamp(1.16rem, 1.09rem + 0.34vw, 1.38rem);
  --step-2:  clamp(1.38rem, 1.24rem + 0.62vw, 1.80rem);
  --step-3:  clamp(1.65rem, 1.40rem + 1.05vw, 2.35rem);
  --step-4:  clamp(1.95rem, 1.50rem + 1.90vw, 3.20rem);

  /* rytm pionowy */
  --sp-1: 0.375rem;
  --sp-2: 0.75rem;
  --sp-3: 1.25rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4.5rem;

  /* kształt i głębia */
  --r-sm: 6px;
  --r:    12px;
  --r-lg: 18px;
  --shadow-1: 0 1px 2px rgba(16, 26, 40, .06), 0 1px 3px rgba(16, 26, 40, .05);
  --shadow-2: 0 4px 6px -2px rgba(16, 26, 40, .06), 0 12px 24px -6px rgba(16, 26, 40, .10);
  --shadow-3: 0 10px 15px -3px rgba(16, 26, 40, .08), 0 24px 48px -12px rgba(16, 26, 40, .16);

  --wrap:      1180px;
  --wrap-text: 760px;
  --header-h:  4.5rem;

  --ease: cubic-bezier(.4, 0, .2, 1);

  /* typografia systemowa — zero pobierania fontów, natychmiastowy render */
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
               "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", "Cascadia Mono",
               "Liberation Mono", Consolas, monospace;
}

/* 2 ──────────────────────────────────────────────── reset / podstawy ───── */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, picture, video { display: block; max-width: 100%; height: auto; }

/* Ikony ze sprite'a nie mają własnych wymiarów — bez tego przeglądarka
   nadaje im domyślne 300×150 px. Rozmiar dziedziczony z rozmiaru tekstu. */
svg:not([width]):not([height]) { width: 1.5em; height: 1.5em; fill: none; }

button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { padding-left: 1.15em; }

:where(a) { color: var(--brand-600); text-decoration-thickness: 1px; text-underline-offset: .18em; }
:where(a):hover { color: var(--brand-700); }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

::selection { background: var(--brand); color: #fff; }

/* 3 ──────────────────────────────────────────────────────── layout ────── */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.wrap--text { max-width: var(--wrap-text); }

.section { padding-block: clamp(2.75rem, 7vw, var(--sp-6)); }
.section--tight { padding-block: clamp(2rem, 5vw, 3.25rem); }
.section--alt  { background: var(--surface-alt); border-block: 1px solid var(--line-soft); }
.section--ink  { background: var(--ink); color: #cfd9e6; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: .75rem 1.25rem;
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* 4 ───────────────────────────────────────────────────── typografia ───── */
h1, h2, h3, h4 {
  margin: 0 0 var(--sp-2);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -.02em;
  text-wrap: stable;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); letter-spacing: -.01em; }

p { margin: 0 0 var(--sp-3); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--text-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 var(--sp-2);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-600);
}
.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.section--ink .eyebrow { color: #7db4e8; }

.section-head { max-width: 90%; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.section--ink :is(h2, h3) { color: #fff; }

/* 5 ─────────────────────────────────────────────────── komponenty ────── */

/* — nagłówek / nawigacja — */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
@supports not (backdrop-filter: blur(1px)) {
  .site-header { background: #fff; }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  min-height: var(--header-h);
}

.logo { display: inline-flex; align-items: center; color: var(--brand); }
.logo:hover { color: var(--brand-600); }
.logo svg, .logo img { width: auto; height: clamp(2rem, 5vw, 2.5rem); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle:hover { background: var(--brand-50); border-color: var(--brand); }
.nav-toggle svg { width: 1.35rem; height: 1.35rem; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-open  { display: none; }

.icon {width: 36px;height:36px;display: inline-block;vertical-align: middle;}

.nav__list {
  display: flex;
  align-items: center;
  gap: .15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__link {
  display: block;
  padding: .55rem .9rem;
  border-radius: var(--r-sm);
  color: var(--text);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: .01em;
  text-decoration: none;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.nav__link:hover { background: var(--brand-50); color: var(--brand-700); }
.nav__link[aria-current="page"] { color: var(--brand-700); background: var(--brand-100); }

.nav__cta { margin-left: .5rem; }
.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .7rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: .04em;
}
.nav__lang:hover { border-color: var(--brand); color: var(--brand-700); background: var(--brand-50); }
.nav__lang svg { width: 1.05rem; height: 1.05rem; }

/* — przyciski — */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s var(--ease), border-color .18s var(--ease),
              color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn--primary { background: var(--brand-cta); color: #fff; box-shadow: var(--shadow-1); }
.btn--primary:hover { background: var(--brand-700); color: #fff; box-shadow: var(--shadow-2); }
.btn--light { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

/* — hero — */
.hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(3.5rem, 10vw, 7rem);
  background: linear-gradient(160deg, var(--ink) 0%, #16304f 55%, var(--brand-700) 100%);
  color: #d7e2ee;
  overflow: hidden;
}
.hero::after {                       /* delikatna siatka techniczna */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(120% 90% at 78% 20%, #000 0%, transparent 72%);
}
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: #7db4e8; }
.hero .lead { color: #b9c8da; max-width: 56ch; }
.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 62rem) {
  .hero__grid { grid-template-columns: 1.15fr .85fr; }
}
.hero__figure {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  border: 1px solid rgba(255,255,255,.14);
}
.hero__figure img { width: 100%; }

/* — pasek zaufania — */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255,255,255,.14);
  list-style: none;
  padding-left: 0;
}
.trust li { display: flex; align-items: baseline; gap: .5rem; font-size: var(--step--1); color: #b9c8da; }
.trust b { display: block; font-size: var(--step-2); color: #fff; letter-spacing: -.02em; line-height: 1.1; }

/* — siatki — */
.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.6rem); }
/* Elementy siatki domyślnie mają min-width:auto — treść typu „nowrap”
   potrafiłaby wtedy rozepchnąć całą kolumnę. */
.grid > * { min-width: 0; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }

/* — karta — */
.card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: clamp(1.25rem, 2.6vw, 1.85rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-1);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.card:hover { border-color: #bcd4ec; box-shadow: var(--shadow-2); }
.card h3 { font-size: var(--step-1); margin-bottom: 0; }
.card p  { color: var(--text-muted); margin-bottom: 0; }
.card__icon {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 10px;
  background: var(--brand-100);
  color: var(--brand-600);
}
/* .card__icon svg { width: 1.5rem; height: 1.5rem; } */
.card--flat { box-shadow: none; background: var(--surface-alt); }
/* lista z „ptaszkami” */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.checks li { display: flex; gap: .65rem; align-items: flex-start; }
.checks svg { width: 1.15rem; height: 1.15rem; flex: none; margin-top: .28em; color: var(--brand); }
.section--ink .checks svg { color: var(--accent); }

/* — kroki procesu — */
.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-3); }
@media (min-width: 48rem) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li {
  counter-increment: step;
  position: relative;
  padding-top: var(--sp-3);
  border-top: 3px solid var(--line);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: .35rem;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--brand);
  letter-spacing: .08em;
}
.steps li:first-child { border-top-color: var(--brand); }
.steps h3 { font-size: var(--step-1); margin-bottom: .35rem; }
.steps p { font-size: var(--step--1); color: var(--text-muted); margin: 0; }

/* — portfolio — */
.work { list-style: none; margin: 0; padding: 0; }
.work-item {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-1);
  transition: box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.work-item:hover { box-shadow: var(--shadow-2); border-color: #bcd4ec; }
.work-item a { display: block; text-decoration: none; color: inherit; }
.work-item__media { aspect-ratio: 4 / 3; background: var(--surface-alt); border-bottom: 1px solid var(--line-soft); }
.work-item__media img { width: 100%; height: 100%; object-fit: cover; }
.work-item__body { padding: 1rem 1.15rem 1.15rem; }
.work-item__body h3 { font-size: var(--step-0); margin-bottom: .1rem; }
.work-item__body p { font-size: var(--step--1); color: var(--text-muted); margin: 0; }

/* — stos technologiczny — */
.stack { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.stack li {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--ink);
}
.stack img { height: 1.5rem; width: auto; }
.stack svg { width: 1.35rem; height: 1.35rem; color: var(--brand); }

/* — FAQ (details/summary, bez JS) — */
.faq { display: grid; gap: .75rem; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-1);
}
.faq details[open] { border-color: #bcd4ec; }
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  cursor: pointer;
  font-weight: 700;
  font-size: var(--step-0);
  color: var(--ink);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: .7rem;
  height: .7rem;
  margin-top: .45em;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(45deg);
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq summary:hover { color: var(--brand-700); }
.faq__body { padding: 0 1.25rem 1.25rem; color: var(--text); }
.faq__body > :first-child { margin-top: 0; }

/* — formularz — */
.form { display: grid; gap: var(--sp-3); }
.field { display: grid; gap: .4rem; }
.field label { font-size: var(--step--1); font-weight: 700; color: var(--ink); }
.field .hint { font-size: var(--step--1); color: var(--text-muted); font-weight: 400; }
.field :is(input, textarea, select) {
  width: 100%;
  padding: .7rem .85rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--text);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field :is(input, textarea):focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-100);
}
.field :is(input, textarea)[aria-invalid="true"] { border-color: #dc2626; }
.field textarea { min-height: 9rem; resize: vertical; }
.req { color: #dc2626; }

.alert {
  padding: .9rem 1.1rem;
  border-radius: var(--r-sm);
  border-left: 4px solid;
  font-size: var(--step--1);
}
.alert--ok   { background: #ecfdf5; border-color: #059669; color: #065f46; }
.alert--err  { background: #fef2f2; border-color: #dc2626; color: #991b1b; }
.alert ul { margin: .4rem 0 0; }

/* — kafle kontaktowe — */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-2); }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list svg { width: 1.35rem; height: 1.35rem; flex: none; margin-top: .2em; color: var(--brand); }
.contact-list .label { display: block; font-size: var(--step--1); color: var(--text-muted); }
.contact-list a { font-weight: 700; color: var(--ink); text-decoration: none; }
.contact-list a:hover { color: var(--brand-700); text-decoration: underline; }

/* — CTA — */
.cta {
  display: grid;
  gap: var(--sp-3);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: linear-gradient(135deg, var(--brand-700), var(--brand-cta));
  border-radius: var(--r-lg);
  color: #eaf2fb;
  box-shadow: var(--shadow-2);
}
@media (min-width: 52rem) { .cta { grid-template-columns: 1fr auto; } }
.cta h2 { color: #fff; margin-bottom: .35rem; }
.cta p { margin: 0; color: #e8f1fa; }

/* — stopka — */
.site-footer {
  padding-block: var(--sp-5) var(--sp-3);
  background: var(--ink);
  color: #9fb0c4;
  font-size: var(--step--1);
}
.site-footer h2 { font-size: var(--step-0); color: #fff; letter-spacing: 0; margin-bottom: var(--sp-2); }
.site-footer a { color: #cfdcea; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__grid { display: grid; gap: var(--sp-4); }
@media (min-width: 48rem) { .site-footer__grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.site-footer .logo { color: #fff; margin-bottom: var(--sp-2); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
/* WCAG 2.2 (2.5.8): wygodny cel dotykowy także w stopce */
.site-footer li { display: flex; align-items: center; min-height: 1.75rem; }
.site-footer li a { display: inline-flex; align-items: center; min-height: 1.75rem; }
.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-3);
  justify-content: space-between;
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8rem;
  color: #8496ab;
}

/* — cookie settings banner — */
.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 300;
  padding-block: var(--sp-3);
  background: rgba(255, 255, 255, .98);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(16, 26, 40, .12);
}
.cookie-banner__content { max-width: 980px; }
.cookie-banner h2 { font-size: var(--step-1); margin-bottom: var(--sp-1); }
.cookie-banner p { max-width: 72ch; margin-bottom: var(--sp-2); font-size: var(--step--1); }
.cookie-banner__buttons { display: flex; flex-wrap: wrap; gap: var(--sp-2); align-items: center; }
.cookie-banner__reject { background: var(--surface-alt); border-color: var(--line); color: var(--ink); }
.cookie-banner__reject:hover { background: var(--brand-50); border-color: var(--brand); }
.cookie-banner__settings-toggle {
  padding: .5rem .25rem;
  border: 0;
  background: transparent;
  color: var(--brand-700);
  font-size: var(--step--1);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: .18em;
  cursor: pointer;
}
.cookie-settings {
  max-width: 72ch;
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line);
}
.cookie-option { margin-bottom: var(--sp-2); }
.cookie-option label { font-size: var(--step--1); font-weight: 700; }
.cookie-option p { margin: var(--sp-1) 0 0 1.7rem; color: var(--text-muted); }

/* 6 ────────────────────────────────────────────────────── utilities ───── */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--text-muted); }
/* 7 ─────────────────────────────────── nawigacja na małych ekranach ───── */
@media (max-width: 61.9375rem) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    inset: var(--header-h) 0 auto;
    display: none;
    padding: var(--sp-2) clamp(1rem, 4vw, 2rem) var(--sp-3);
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-2);
  }
  .nav[data-open="true"] { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: .2rem; }
  .nav__link { padding: .75rem .85rem; font-size: var(--step-0); }
  .nav__cta { margin: .5rem 0 0; }
  .nav__cta .btn { width: 100%; }
  .nav__lang { justify-content: center; }
}
/* bez JS menu pozostaje dostępne */
@media (max-width: 61.9375rem) {
  .no-js .nav { display: block; position: static; box-shadow: none; padding-inline: 0; }
  .no-js .nav-toggle { display: none; }
  .no-js .site-header__inner { flex-wrap: wrap; }
}

/* 8 ──────────────────────────────────────────────────────────── print ─── */
@media print {
  .site-header, .nav-toggle, .cta, .skip-link, .hero::after { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .hero { background: #fff !important; color: #000; padding-block: 1rem; }
  .hero h1, .hero .lead, .trust b, .trust li { color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; word-break: break-all; }
  .card, .work-item { box-shadow: none; border-color: #999; break-inside: avoid; }
  .section { padding-block: 1rem; }
}
