/* =============================================================
   NVS Motors — warsztat samochodowy, Poznań
   Vanilla CSS. Kolejność: tokeny → reset → utilities → komponenty
   → breakpointy → prefers-reduced-motion.
   Uwaga: modyfikatory sekcji (.services, .honesty …) celowo stoją
   PO regule .section, żeby nadpisać padding bez !important.
   ============================================================= */

/* ---------------------------- TOKENY ---------------------------- */
:root {
  /* paleta marki */
  --ink:      #0B0B0D;
  --surface:  #17151A;
  --crimson:  #B5192B;
  --gold:     #B8933F;
  --steel:    #8A93A3;
  --ice:      #5FB8C9;   /* WYŁĄCZNIE sekcja/karta klimatyzacji */
  --bone:     #EDEBE6;

  /* odcienie pochodne (te same barwy, inne jasności — bez nowych kolorów) */
  --ink-2:      #121016;
  --surface-2:  #201D24;
  --crimson-dp: #7C1220;
  --line:       #2C2833;
  --line-soft:  #221F28;

  --focus: var(--gold);

  --ff-display: 'Big Shoulders Display', 'Oswald', 'Arial Narrow', system-ui, sans-serif;
  --ff-body:    'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ff-mono:    'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --gutter: clamp(20px, 5vw, 56px);
  --maxw: 1240px;
  --nav-h: 62px;
}

/* ---------------------------- RESET ---------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ziarno — nocny warsztat, nie gradient */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, iframe { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 900;
  line-height: .92;
  margin: 0;
  letter-spacing: .002em;
  text-transform: uppercase;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

button, input, select, textarea { font: inherit; color: inherit; }

table { border-collapse: collapse; width: 100%; }

/* ---------------------------- FOCUS ---------------------------- */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 1px;
}
/* na czerwonych wypełnieniach złoty pierścień ma za mały kontrast — kość słoniowa */
.btn--call:focus-visible,
.phone-pill:focus-visible { outline-color: var(--bone); }

.skip-link {
  position: fixed;
  top: 8px; left: 8px;
  z-index: 200;
  transform: translateY(-160%);
  background: var(--crimson);
  color: var(--bone);
  padding: 12px 18px;
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--crimson-dp);
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

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

.mono {
  font-family: var(--ff-mono);
  font-size: .82em;
  letter-spacing: .04em;
}

.eyebrow {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 18px;
  display: flex;
  align-items: flex-start; /* przy zawinięciu do 2 linii kreska trzyma się pierwszej */
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  margin-top: .62em;
  background: var(--crimson);
  flex: none;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--gold::before { background: var(--gold); }

.section { padding-block: clamp(64px, 8vw, 108px); }

.section__head { max-width: 46ch; margin-bottom: clamp(40px, 5vw, 64px); }

.section__title {
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  margin-bottom: .38em;
}

.section__lead { color: var(--steel); font-size: 1.02rem; }

/* przycisk telefoniczny — płaska czerwień, twarda krawędź, efekt wciśnięcia */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  padding: 14px 26px 15px;
  border: 2px solid var(--crimson-dp);
  background: var(--crimson);
  color: var(--bone);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--crimson-dp);
  transition: background-color .14s linear, box-shadow .14s linear, transform .14s linear;
}
.btn__kicker {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .92;
}
.btn__num {
  font-family: var(--ff-mono);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  letter-spacing: .02em;
  line-height: 1.15;
}
.btn:hover { background: #9d1626; box-shadow: 2px 2px 0 var(--crimson-dp); transform: translate(3px, 3px); }
.btn:active { background: #8d1322; box-shadow: 0 0 0 var(--crimson-dp); transform: translate(5px, 5px); }

/* na wąskim ekranie wraca do układu pionowego, żeby kicker się nie łamał */
.btn--block { display: flex; gap: 2px; }
.btn--block .btn__kicker { font-size: 12px; }
@media (min-width: 480px) {
  .btn--block { flex-direction: row; align-items: center; justify-content: space-between; gap: 18px; }
}
.btn--xl { padding: 20px 34px 22px; }
.btn--xl .btn__num { font-size: clamp(1.6rem, 4vw, 2.3rem); }

.btn--ghost {
  flex-direction: row;
  align-items: center;
  background: transparent;
  border: 2px solid var(--steel);
  color: var(--bone);
  box-shadow: 4px 4px 0 var(--line);
  font-family: var(--ff-mono);
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 24px;
}
.btn--ghost:hover { background: var(--surface-2); border-color: var(--bone); box-shadow: 2px 2px 0 var(--line); transform: translate(2px, 2px); }
.btn--ghost:active { box-shadow: 0 0 0 var(--line); transform: translate(4px, 4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bone);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color .16s linear, border-color .16s linear;
}
.link-arrow::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
  transition: transform .16s ease;
}
.link-arrow:hover { color: var(--gold); }
.link-arrow:hover::after { transform: rotate(-45deg) translate(2px, 2px); }

/* ---------------------------- PIECZĄTKA ---------------------------- */
.stamp {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 9px 16px 8px;
  background: var(--crimson);
  color: var(--bone);
  border: 2px solid var(--bone);
  outline: 1px solid var(--crimson);
  outline-offset: 2px;
  transform: rotate(-6deg);
}
.stamp__word {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.32rem;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.stamp__mark {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-top: 1px solid currentColor;
  padding-top: 3px;
  opacity: .95;
}
.ticket--ice .stamp { background: var(--ice); color: var(--ink); border-color: var(--ink); outline-color: var(--ice); }
.stamp--gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  outline-color: var(--gold);
  transform: rotate(-3.5deg);
}

/* ---------------------------- NAGŁÓWEK / NAWIGACJA ---------------------------- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  transition: border-color .2s linear;
}
.masthead.is-stuck { border-bottom-color: var(--line); }

.masthead__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start; /* bez tego ścieżki „auto” rozciągają się na całą szerokość (stopka) */
  align-items: baseline;
  column-gap: 7px;
  text-decoration: none;
  margin: 0;
  margin-right: auto;
  line-height: 1;
}
.logo__nvs {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 27px;
  letter-spacing: .01em;
  color: var(--bone);
}
/* „MOTORS” w czerwieni marki daje 2,94:1 na --ink (próg dla dużego tekstu to 3,0),
   dlatego logotyp jest monochromatyczny — czerwień zostaje kolorem akcji (przycisk telefonu). */
.logo__motors {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 27px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--steel);
}
.logo__sub {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 4px;
}
.logo__sub::before {
  content: "";
  width: 16px; height: 2px;
  background: var(--crimson);
  flex: none;
}

.nav { display: none; }
.nav__list {
  display: flex;
  gap: clamp(18px, 2.6vw, 34px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list a {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .16s linear, border-color .16s linear;
}
.nav__list a:hover { color: var(--bone); border-bottom-color: var(--crimson); }

.phone-pill {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7px 13px;
  background: var(--crimson);
  border: 2px solid var(--crimson-dp);
  color: var(--bone);
  text-decoration: none;
  line-height: 1.1;
  transition: background-color .14s linear, transform .14s linear;
}
.phone-pill:hover { background: #9d1626; transform: translateY(1px); }
.phone-pill__label {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .9;
}
.phone-pill__num {
  font-family: var(--ff-mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .01em;
}

.burger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--steel);
  padding: 9px 11px;
  cursor: pointer;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.burger__bars { display: grid; gap: 3px; }
.burger__bars i { display: block; width: 17px; height: 2px; background: var(--bone); }
.burger__text { display: none; }
.burger:hover { border-color: var(--steel); color: var(--bone); }

/* ---------------------------- MENU MOBILNE (brama) ---------------------------- */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(11, 11, 13, .72);
}
.sheet-backdrop[hidden] { display: none; }

.sheet {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  background: var(--surface);
  border-top: 2px solid var(--crimson-dp);
  transform: translateY(101%);
  visibility: hidden;
  transition: transform .42s cubic-bezier(.16, .84, .28, 1), visibility 0s linear .42s;
}
.sheet.is-open {
  transform: translateY(0);
  visibility: visible;
  transition: transform .42s cubic-bezier(.16, .84, .28, 1), visibility 0s linear 0s;
}

/* prowadnica bramy — ta sama lamela co roleta serwisowa */
.sheet__rail {
  height: 22px;
  position: relative;
  background-color: #1a171d;
  background-image:
    repeating-linear-gradient(180deg,
      rgba(237, 235, 230, .07) 0 1px,
      rgba(237, 235, 230, .02) 1px 3px,
      rgba(0, 0, 0, 0) 3px 8px,
      rgba(0, 0, 0, .5) 8px 10px);
  border-bottom: 1px solid var(--line);
}
.sheet__handle {
  position: absolute;
  left: 50%; top: 8px;
  width: 58px; height: 5px;
  transform: translateX(-50%);
  background: var(--ink);
  border: 1px solid var(--line);
}

.sheet__body { padding: 22px var(--gutter) calc(22px + env(safe-area-inset-bottom)); }
.sheet__list { list-style: none; margin: 22px 0 18px; padding: 0; }
.sheet__list a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  text-decoration: none;
  color: var(--bone);
}
.sheet__list a:hover { color: var(--gold); }
.sheet__hours { color: var(--steel); margin-bottom: 18px; }
.sheet__close {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--steel);
  padding: 12px;
  cursor: pointer;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.sheet__close:hover { color: var(--bone); border-color: var(--steel); }

/* ---------------------------- HERO ---------------------------- */
.hero {
  position: relative;
  padding-block: clamp(38px, 6vw, 64px) 0;
  display: grid;
  gap: 0;
}

/* na wąskim ekranie najpierw obietnica i telefon, zdjęcie pod spodem */
.hero__copy {
  order: 1;
  max-width: var(--maxw);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hero__title {
  font-size: clamp(3.2rem, 13.5vw, 8.4rem);
  line-height: .85;
  letter-spacing: -.005em;
  margin-bottom: .34em;
}
.hero__title em {
  font-style: normal;
  position: relative;
  z-index: 0; /* własny kontekst układania, żeby podkreślenie zostało POD tekstem, nie pod tłem strony */
  display: inline-block;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: -.02em; right: -.02em;
  bottom: .1em;
  height: .085em;
  background: var(--crimson);
  z-index: -1;
}

.hero__lead {
  max-width: 40ch;
  font-size: clamp(1.02rem, 2vw, 1.16rem);
  color: var(--steel);
  margin-bottom: 34px;
}
.hero__lead strong { color: var(--bone); font-weight: 600; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
}

.hero__status {
  margin-top: 26px;
  color: var(--steel);
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero__status::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--steel);
  flex: none;
}
.hero__status.is-open::before { background: var(--gold); }

.hero__media {
  order: 2;
  position: relative;
  margin-top: clamp(38px, 7vw, 56px);
}
.hero__media img {
  width: 100%;
  height: clamp(280px, 62vw, 460px);
  object-fit: cover;
  object-position: center 35%;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  filter: grayscale(.24) contrast(1.06) brightness(.86);
}
.hero__plate {
  position: absolute;
  left: var(--gutter);
  bottom: 16px;
  margin: 0;
  padding: 7px 12px;
  background: rgba(11, 11, 13, .82);
  border-left: 2px solid var(--crimson);
  color: var(--steel);
  font-size: 10px;
  letter-spacing: .16em;
}

/* ---------------------------- ROLETA SERWISOWA ---------------------------- */
.gate { --p: .84; }

.gate__frame {
  position: relative;
  overflow: hidden;
  height: clamp(190px, 34vw, 420px);
  background: var(--ink-2);
  border-block: 1px solid var(--line-soft);
}
.gate__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: grayscale(.2) contrast(1.05) brightness(.8);
}
.gate__caption {
  position: absolute;
  left: var(--gutter);
  bottom: 18px;
  margin: 0;
  color: var(--bone);
  font-size: 10px;
  letter-spacing: .18em;
  background: rgba(11, 11, 13, .8);
  padding: 7px 12px;
  border-left: 2px solid var(--ice);
}

.gate__door {
  position: absolute;
  inset: 0;
  transform: translate3d(0, calc(var(--p) * -100%), 0);
  background-color: #191720;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, 0) 16%, rgba(0, 0, 0, 0) 84%, rgba(0, 0, 0, .55) 100%),
    repeating-linear-gradient(180deg,
      rgba(237, 235, 230, .085) 0 1px,
      rgba(237, 235, 230, .025) 1px 3px,
      rgba(0, 0, 0, 0) 3px 17px,
      rgba(0, 0, 0, .55) 17px 20px,
      rgba(0, 0, 0, .3) 20px 22px);
}
.gate__rail {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 18px;
  background: linear-gradient(180deg, #2e2b34 0%, #17151a 62%, #0d0c10 100%);
  border-top: 1px solid rgba(184, 147, 63, .3);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .85);
}
.gate__grip {
  position: absolute;
  left: 50%; top: 7px;
  width: 76px; height: 5px;
  transform: translateX(-50%);
  background: var(--ink);
  border: 1px solid #3a3642;
}

/* ---------------------------- KARTY ZLECEŃ ---------------------------- */
.services { padding-top: 0; }
.services .wrap { padding-top: clamp(56px, 7vw, 96px); }

.tickets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(30px, 4vw, 38px);
}

.tickets__slot { filter: drop-shadow(7px 9px 0 rgba(0, 0, 0, .55)); }

.ticket {
  position: relative;
  background: var(--surface);
  padding: 26px 24px 0;
  box-shadow: inset 0 0 0 1px var(--line);
  transform: rotate(-.9deg);
  transition: transform .22s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* perforacja górnej krawędzi — kartka oderwana z bloczka zleceń */
@supports (mask-image: radial-gradient(#000, #000)) {
  .ticket {
    -webkit-mask-image:
      radial-gradient(circle 9px at 50% 0, #0000 98%, #000 100%),
      linear-gradient(#000, #000);
    -webkit-mask-size: 26px 9px, 100% calc(100% - 9px);
    -webkit-mask-position: 0 0, 0 9px;
    -webkit-mask-repeat: repeat-x, no-repeat;
    mask-image:
      radial-gradient(circle 9px at 50% 0, #0000 98%, #000 100%),
      linear-gradient(#000, #000);
    mask-size: 26px 9px, 100% calc(100% - 9px);
    mask-position: 0 0, 0 9px;
    mask-repeat: repeat-x, no-repeat;
  }
}

.ticket:hover, .ticket:focus-within { transform: rotate(0deg) translateY(-6px); }

.ticket__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  color: var(--steel);
}
.ticket__kind {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.ticket__no {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--bone);
  border: 1px solid var(--line);
  padding: 2px 8px;
  background: var(--surface-2);
}
.ticket--ice .ticket__no { color: var(--ice); border-color: rgba(95, 184, 201, .4); }

.ticket__perf {
  height: 1px;
  margin: 18px -24px 20px;
  border-top: 1px dashed var(--line);
}

.ticket__title {
  font-size: clamp(2rem, 4.4vw, 2.6rem);
  margin-bottom: 10px;
}
.ticket--ice .ticket__title { color: var(--ice); }

.ticket__tags {
  color: var(--steel);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.checklist {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 11px;
  font-size: .96rem;
}
.checklist li {
  position: relative;
  display: grid;
  grid-template-columns: 17px 1fr;
  column-gap: 12px;
  row-gap: 0;
  align-items: start;
  line-height: 1.42;
}
.checklist li::before {           /* kratka */
  content: "";
  width: 15px; height: 15px;
  margin-top: 4px;
  border: 1.5px solid var(--steel);
}
.checklist li::after {            /* ptaszek — kanciasty, rysowany krawędziami */
  content: "";
  position: absolute;
  left: 3px; top: 8px;
  width: 9px; height: 5px;
  border-left: 2px solid var(--crimson);
  border-bottom: 2px solid var(--crimson);
  transform: rotate(-45deg);
}
.ticket--ice .checklist li::after { border-color: var(--ice); }

/* adnotacja na karcie pracy — własna linia pod pozycją listy.
   grid-column: 2 jest konieczne: bez tego span ląduje w kolumnie kratki (17px)
   i łamie się po jednym słowie. */
.tag-free {
  display: block;
  grid-column: 2;
  margin-top: 2px;
  font-family: var(--ff-mono);
  font-weight: 500;
  font-size: .78em;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

.ticket__note {
  color: var(--steel);
  font-size: .94rem;
  margin-bottom: 20px;
}

.ticket__stamp-row {
  margin-top: auto;
  padding-block: 10px 28px;
  display: flex;
  justify-content: flex-end;
}

.ticket__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-inline: -24px;
  padding: 15px 24px;
  border-top: 1px dashed var(--line);
  background: var(--ink-2);
  color: var(--steel);
  text-decoration: none;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background-color .16s linear, color .16s linear;
}
.ticket__foot .mono {
  font-size: 15px;
  font-weight: 600;
  color: var(--bone);
  letter-spacing: .02em;
}
.ticket__foot:hover { background: var(--crimson); color: var(--bone); }
.ticket__foot:hover .mono { color: var(--bone); }

/* ---------------------------- OBJAWY ---------------------------- */
/* nie kafelki — rejestr usterek: wiersze rozdzielone włosową linią */
.symptoms__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  column-gap: clamp(28px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.symptom {
  padding: 20px 0 22px 20px;
  border-bottom: 1px solid var(--line);
  border-left: 2px solid transparent;
  transition: border-color .16s linear, background-color .16s linear;
}
.symptom:hover { border-left-color: var(--crimson); background: rgba(32, 29, 36, .5); }
.symptom--ac:hover { border-left-color: var(--ice); }

.symptom__tag {
  margin: 0 0 8px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--steel);
}
.symptom--ac .symptom__tag { color: var(--ice); }

.symptom__name {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.36;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 7px;
}

.symptom__desc { color: var(--steel); font-size: .94rem; line-height: 1.55; margin: 0; }

.symptoms__cta,
.season__cta {
  margin: clamp(30px, 4vw, 42px) 0 0;
  color: var(--steel);
  font-size: .98rem;
}
.symptoms__cta .link-arrow,
.season__cta .link-arrow { margin-top: 14px; display: inline-flex; }

/* ---------------------------- UCZCIWOŚĆ ---------------------------- */
.honesty {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.honesty__grid { display: grid; gap: clamp(44px, 6vw, 72px); }

.honesty__title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  margin-bottom: .4em;
}

.honesty__quote {
  margin: 0 0 34px;
  padding-left: clamp(18px, 3vw, 30px);
  border-left: 3px solid var(--crimson);
  max-width: 56ch;
}
.honesty__quote p {
  font-size: clamp(1.08rem, 2.2vw, 1.32rem);
  line-height: 1.56;
  margin-bottom: 14px;
}
.honesty__attrib {
  color: var(--steel);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.pledges__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 26px);
  align-content: start;
}
.pledges__list li { display: flex; }

.pledges__cta {
  margin: clamp(28px, 4vw, 40px) 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: .95rem;
}
.pledges__cta .link-arrow { margin-top: 12px; display: inline-flex; }

/* ---------------------------- PROCES 01–05 ---------------------------- */
/* numeracja jest tu uzasadniona: to realna kolejność, nie ozdobnik */
.process__grid { display: grid; gap: clamp(36px, 5vw, 64px); }
.process__intro .btn { margin-top: clamp(24px, 3vw, 32px); }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.step {
  counter-increment: step;
  position: relative;
  margin-left: 17px;
  padding: 0 0 clamp(28px, 3.5vw, 38px) clamp(30px, 4vw, 46px);
  border-left: 1px solid var(--line);
}
.step:last-child { border-left-color: transparent; padding-bottom: 0; }
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: -17px;
  top: -4px;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--gold);
  font-family: var(--ff-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .02em;
}
.step__name { font-size: clamp(1.4rem, 3vw, 1.85rem); margin-bottom: 8px; }
.step__desc { color: var(--steel); font-size: .98rem; margin: 0; max-width: 46ch; }

/* ---------------------------- SEZON ---------------------------- */
.season {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.season__grid { display: grid; gap: clamp(20px, 3vw, 30px); }

.season__card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: clamp(24px, 3.4vw, 34px);
}
.season__when {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--steel);
}
.season__title { font-size: clamp(1.9rem, 4vw, 2.5rem); margin-bottom: 22px; }
.season__card .checklist { margin-bottom: 0; }
.season__card .checklist li.is-ac::after { border-color: var(--ice); }

.tag-note,
.tag-ac {
  display: block;
  grid-column: 2;
  margin-top: 3px;
  font-family: var(--ff-mono);
  font-size: .78em;
  letter-spacing: .08em;
  color: var(--steel);
}
.tag-ac { color: var(--ice); }

/* ---------------------------- GALERIA ---------------------------- */
.gallery__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(12px, 1.6vw, 20px);
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 2;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.35) contrast(1.05) brightness(.82);
  transition: filter .25s linear, transform .35s ease;
}
.gallery__item:hover img { filter: grayscale(0) contrast(1.05) brightness(.94); transform: scale(1.03); }
.gallery__cap {
  position: absolute;
  left: 0; bottom: 0;
  margin: 0;
  padding: 7px 12px;
  background: rgba(11, 11, 13, .84);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--bone);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* ---------------------------- FAQ ---------------------------- */
.faq {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.faq__grid { display: grid; gap: clamp(32px, 4.5vw, 60px); }
.faq__list { border-top: 1px solid var(--line); }
.faq__cta { margin: clamp(26px, 3.4vw, 36px) 0 0; color: var(--steel); font-size: .98rem; }
.faq__cta .link-arrow { margin-top: 14px; display: inline-flex; }

.qa { border-bottom: 1px solid var(--line); }
.qa summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover .qa__q { color: var(--gold); }
.qa__q {
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.4;
  transition: color .16s linear;
}
/* znacznik +/− rysowany dwiema kreskami — bez bibliotek ikon */
.qa__mark {
  position: relative;
  flex: none;
  width: 15px; height: 15px;
  margin-top: 5px;
}
.qa__mark::before,
.qa__mark::after {
  content: "";
  position: absolute;
  background: var(--crimson);
}
.qa__mark::before { left: 0; right: 0; top: 6.5px; height: 2px; }
.qa__mark::after {
  top: 0; bottom: 0; left: 6.5px; width: 2px;
  transition: transform .2s ease;
}
.qa[open] .qa__mark::after { transform: scaleY(0); }
.qa__a { padding: 0 0 22px; }
.qa__a p { color: var(--steel); max-width: 60ch; margin: 0; }

/* ---------------------------- PASEK TELEFONU (mobile) ---------------------------- */
.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 9px var(--gutter) calc(9px + env(safe-area-inset-bottom));
  transform: translateY(101%);
  transition: transform .3s cubic-bezier(.16, .84, .28, 1);
}
.callbar.is-visible { transform: translateY(0); }
body.menu-open .callbar { transform: translateY(101%); }

.callbar__status {
  margin: 0 0 7px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  letter-spacing: .1em;
  color: var(--steel);
}
.callbar__status::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--steel);
  flex: none;
}
.callbar__status.is-open::before { background: var(--gold); }
.callbar__status[hidden] { display: none; }

.callbar__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--crimson);
  border: 2px solid var(--crimson-dp);
  color: var(--bone);
  text-decoration: none;
  padding: 11px 16px;
  transition: background-color .14s linear;
}
.callbar__btn:hover, .callbar__btn:active { background: #9d1626; }
.callbar__btn:focus-visible { outline-color: var(--bone); }
/* nowrap: pasek ma zostać jednowierszowy nawet przy 320px */
.callbar__kicker {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.callbar__num {
  font-family: var(--ff-mono);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: .02em;
  white-space: nowrap;
}

/* ---------------------------- O WARSZTACIE ---------------------------- */
.about__grid { display: grid; gap: clamp(34px, 5vw, 60px); align-items: center; }

.about__media { margin: 0; position: relative; }
.about__media img {
  width: 100%;
  height: clamp(240px, 46vw, 420px);
  object-fit: cover;
  filter: grayscale(.3) contrast(1.05) brightness(.85);
  border: 1px solid var(--line);
}
.about__media figcaption {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--crimson);
  color: var(--bone);
  padding: 8px 14px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about__lead {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.2vw, 2.05rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: .7em;
}
.about__copy p:not(.eyebrow):not(.about__lead) { color: var(--steel); }
.about__copy .link-arrow { margin-top: 14px; }

/* ---------------------------- GODZINY / TABLICZKA ---------------------------- */
.hours__grid { display: grid; gap: clamp(34px, 5vw, 56px); align-items: stretch; }

/* tabliczka warsztatowa: szczotkowany metal + nity w rogach */
.plate {
  position: relative;
  margin-bottom: 30px;
  padding: 26px clamp(20px, 3vw, 30px) 24px;
  background-color: #201E24;
  /* każda warstwa musi kończyć się przezroczystością, inaczej zasłania nity pod spodem */
  background-image:
    radial-gradient(circle at 13px 14px, #757c8a 0 3px, #121016 3px 4.6px, transparent 4.7px),
    radial-gradient(circle at calc(100% - 13px) 14px, #757c8a 0 3px, #121016 3px 4.6px, transparent 4.7px),
    radial-gradient(circle at 13px calc(100% - 14px), #757c8a 0 3px, #121016 3px 4.6px, transparent 4.7px),
    radial-gradient(circle at calc(100% - 13px) calc(100% - 14px), #757c8a 0 3px, #121016 3px 4.6px, transparent 4.7px),
    repeating-linear-gradient(90deg, rgba(237, 235, 230, .022) 0 1px, transparent 1px 4px),
    linear-gradient(180deg, #26232b, #1a181d);
  background-repeat: no-repeat;
  border: 1px solid #35313c;
}

.plate__table { font-family: var(--ff-mono); }
.plate__table th,
.plate__table td { padding: 11px 0; border-bottom: 1px solid var(--line); text-align: left; }
.plate__table tr:last-child th,
.plate__table tr:last-child td { border-bottom: 0; }
.plate__table th {
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .18em;
  color: var(--steel);
  text-transform: uppercase;
}
.plate__table td {
  font-weight: 600;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  letter-spacing: .04em;
  text-align: right;
  color: var(--bone);
}

.plate__addr {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1.06;
  text-transform: uppercase;
}
.plate__status {
  margin: 14px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--steel);
}
.plate__status::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--steel);
  flex: none;
}
.plate__status.is-open::before { background: var(--gold); }

.hours__map {
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 300px;
  height: 100%;
}
.hours__map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  filter: grayscale(.55) invert(.92) hue-rotate(180deg) contrast(.92);
}

/* ---------------------------- KONTAKT ---------------------------- */
.contact__grid { display: grid; gap: clamp(40px, 5vw, 64px); align-items: start; }

.contact__title {
  font-size: clamp(2.8rem, 7.5vw, 5rem);
  margin-bottom: .32em;
}
.contact__lead {
  color: var(--steel);
  max-width: 34ch;
  font-size: 1.05rem;
  margin-bottom: 30px;
}
.contact__hours { color: var(--steel); margin-top: 20px; }

.callback {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(24px, 3.4vw, 34px);
}
.callback__title {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1.06rem;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 6px;
}
.callback__lead { color: var(--steel); font-size: .93rem; margin-bottom: 24px; }

.form { display: grid; gap: 18px; }
.form .btn--ghost { justify-self: start; }
.form__row { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel);
}
.field__opt { text-transform: none; letter-spacing: .04em; opacity: .8; }

.field input,
.field textarea,
.select select {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  color: var(--bone);
  padding: 12px 13px;
  font-size: .97rem;
  border-radius: 0;
  transition: border-color .16s linear, background-color .16s linear;
}
.field textarea { resize: vertical; min-height: 84px; font-family: var(--ff-body); }
.field input::placeholder,
.field textarea::placeholder { color: var(--steel); opacity: .85; }
.field input:hover,
.field textarea:hover,
.select select:hover { border-color: var(--steel); }
.field input:focus,
.field textarea:focus,
.select select:focus { border-bottom-color: var(--gold); }

.field input[aria-invalid="true"] { border-color: var(--crimson); border-bottom-color: var(--crimson); }
.field__err {
  margin: 0;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: .03em;
  color: #E8737F; /* rozjaśniona czerwień marki — kontrast 6.4:1 na ciemnym tle */
}
.field__err[hidden] { display: none; }

.select { position: relative; }
.select select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  font-family: var(--ff-body);
}
.select__chev {
  position: absolute;
  right: 16px; top: 50%;
  width: 9px; height: 9px;
  margin-top: -7px;
  border-right: 2px solid var(--steel);
  border-bottom: 2px solid var(--steel);
  transform: rotate(45deg);
  pointer-events: none;
}

.form__status {
  margin: 0;
  font-family: var(--ff-mono);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--gold);
}
.form__status:empty { display: none; }
.form__note { color: var(--steel); font-size: 11px; line-height: 1.55; margin: 0; }

/* ---------------------------- STOPKA ---------------------------- */
.footer {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding-block: clamp(48px, 6vw, 72px) 28px;
}
.footer__grid {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-soft);
}
.logo--footer .logo__nvs,
.logo--footer .logo__motors { font-size: 34px; }
.footer__tag {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 10px;
}
.footer__h {
  font-family: var(--ff-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer__col address,
.footer__col p {
  font-style: normal;
  color: var(--steel);
  font-size: 13px;
  line-height: 1.85;
}
.footer__col a { color: var(--bone); text-decoration: none; border-bottom: 1px solid var(--line); }
.footer__col a:hover { border-bottom-color: var(--crimson); }
.footer__base {
  max-width: var(--maxw);
  margin: 22px auto 0;
  padding-inline: var(--gutter);
  color: var(--steel);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ============================ BREAKPOINTY ============================ */

/* miejsce na pasek telefonu, żeby nie zasłaniał końca stopki */
@media (max-width: 959px) {
  .footer { padding-bottom: 110px; }
}

/* najwęższe telefony (320px): nagłówek musi zmieścić logo + telefon + menu */
@media (max-width: 400px) {
  :root { --gutter: 16px; }
  .masthead__inner { gap: 9px; }
  .logo__nvs, .logo__motors { font-size: 23px; }
  .logo__sub { font-size: 8px; letter-spacing: .16em; }
  .phone-pill { padding: 6px 9px; }
  .phone-pill__num { font-size: 13px; }
  .burger { padding: 8px 9px; }
}

@media (min-width: 480px) {
  .burger__text { display: inline; }
  .phone-pill__num { font-size: 15px; }
}

@media (min-width: 720px) {
  .tickets { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: .85fr 1fr; }
  .hours__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }

  .symptoms__list { grid-template-columns: 1fr 1fr; }
  .season__grid { grid-template-columns: 1fr 1fr; }
  .faq__grid { grid-template-columns: .8fr 1.2fr; }

  /* galeria: stałe wiersze + różne rozpiętości = asymetria bez liczenia proporcji */
  .gallery__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: clamp(190px, 23vw, 310px);
  }
  .gallery__item { aspect-ratio: auto; }
  .gallery__item:nth-child(1) { grid-column: span 3; }
  .gallery__item:nth-child(2) { grid-column: span 3; }
  .gallery__item:nth-child(3) { grid-column: span 2; }
  .gallery__item:nth-child(4) { grid-column: span 4; }
}

@media (min-width: 960px) {
  :root { --nav-h: 78px; }

  .nav { display: block; margin-right: clamp(20px, 3vw, 40px); }
  .burger { display: none; }
  .logo { margin-right: clamp(24px, 5vw, 72px); }
  .logo__nvs, .logo__motors { font-size: 31px; }

  /* HERO: asymetryczny — zdjęcie po lewej ścięte po przekątnej,
     treść po prawej dosunięta do dołu, ale w całości nad linią zgięcia */
  .hero {
    --hero-h: min(calc(100vh - var(--nav-h)), 720px);
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    align-items: stretch;
    gap: 0;
    padding-top: 0;
    min-height: var(--hero-h);
  }
  .hero__media {
    grid-column: 1;
    grid-row: 1;
    margin-top: 0;
  }
  /* absolutnie, żeby proporcje zdjęcia nie rozpychały wysokości hero */
  .hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, calc(100% - 108px) 100%, 0 100%);
    object-position: 42% 40%;
  }
  .hero__plate { left: auto; right: 128px; bottom: 34px; }

  .hero__copy {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    max-width: none;
    margin: 0;
    padding: 0 var(--gutter) clamp(40px, 6vh, 76px) clamp(30px, 3.6vw, 56px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  /* Big Shoulders 900: „Twój samochód.” zajmuje 6,72 × font-size.
     Prawa kolumna ma 0,49vw − 108px, więc 5,5vw trzyma tekst w dwóch
     liniach na całym zakresie 960–1920px z zapasem. Nie zwiększać bez pomiaru. */
  .hero__title { font-size: clamp(3rem, 5.5vw, 6.6rem); }

  /* nagłówek sekcji: tytuł po lewej, lead dosunięty do jego linii bazowej po prawej */
  .section__head {
    max-width: none;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(30px, 4vw, 64px);
    align-items: end;
  }
  .section__head .eyebrow { grid-column: 1 / -1; }
  .section__head .section__lead { max-width: 40ch; padding-bottom: .55em; }

  .tickets {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(22px, 2.4vw, 34px);
    align-items: start;
  }
  .tickets__slot--a { transform: translateY(0); }
  .tickets__slot--b { transform: translateY(34px); }
  .tickets__slot--c { transform: translateY(12px); }
  .ticket { transform: rotate(-1.5deg); }
  .tickets__slot--b .ticket { transform: rotate(1.1deg); }
  .tickets__slot--c .ticket { transform: rotate(-.5deg); }
  .tickets__slot--b .ticket:hover, .tickets__slot--b .ticket:focus-within,
  .tickets__slot--c .ticket:hover, .tickets__slot--c .ticket:focus-within,
  .tickets__slot--a .ticket:hover, .tickets__slot--a .ticket:focus-within {
    transform: rotate(0deg) translateY(-8px);
  }

  .honesty__grid { grid-template-columns: 1.45fr .55fr; align-items: start; }
  .pledges { padding-top: 46px; }
  .pledges__list { flex-direction: column; }

  .contact__grid { grid-template-columns: 1.05fr .95fr; }
  .form__row { grid-template-columns: 1fr 1fr; }

  .process__grid { grid-template-columns: .82fr 1.18fr; align-items: start; }
  .process__intro { position: sticky; top: calc(var(--nav-h) + 34px); }

  .callbar { display: none; }
}


/* ============================ REDUCED MOTION ============================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  /* roleta zostaje statycznym pasem lameli — bez ruchu przy scrollu */
  .gate { --p: .88; }
  .gate__door { transform: translate3d(0, -88%, 0); }

  /* menu i pasek telefonu pojawiają się bez „podnoszenia” */
  .sheet { transition: none; }
  .callbar { transition: none; }
  .gallery__item:hover img { transform: none; }

  .btn:hover, .btn:active,
  .btn--ghost:hover, .btn--ghost:active,
  .phone-pill:hover,
  .ticket:hover, .ticket:focus-within,
  .tickets__slot--a .ticket:hover, .tickets__slot--b .ticket:hover, .tickets__slot--c .ticket:hover,
  .tickets__slot--a .ticket:focus-within, .tickets__slot--b .ticket:focus-within, .tickets__slot--c .ticket:focus-within {
    transform: none;
  }
  .link-arrow:hover::after { transform: rotate(-45deg); }
}
