@charset "UTF-8";
/* ==========================================================================
   FreshGarage — wariant „NOC → DZIEŃ"
   Osobny arkusz. Nie rusza starej strony (main.css).

   Zasada: pomarańcz jest ŚWIATŁEM, nie farbą. Rdzeń blasku wypala się do bieli,
   cienie idą w chłód, typografia nigdy nie świeci. Strona przechodzi przez
   cztery stany światła: NOC → WARSZTAT → BLASK → DZIEŃ.
   ========================================================================== */

/* --------------------------------------------------------------- 1. TOKENY */
:root {
  /* Noc — chłodna czerń. Pomarańcz krzyczy głośniej na zimnym cieniu. */
  --noc: #07080b;
  --noc-2: #0d1016;
  --noc-3: #161b23;
  --noc-4: #232a35;

  /* Dzień */
  --dzien: #ffffff;
  --beton: #eae9e7;
  --beton-2: #f4f3f1;

  /* Tekst */
  --tekst: #0b0d10;
  --mgla: #8f9aa8; /* drugorzędny na ciemnym — 6,4:1 */
  --grafit: #545d68; /* drugorzędny na jasnym — 5,4:1 */

  /* ŚWIATŁO. Wartości P3 są poza gamą sRGB — na nowszych ekranach realnie
     żywsze niż jakikolwiek zapis szesnastkowy. */
  --hot: #ff6a00;
  --hot-deep: #e03c00;
  --hot-core: #ffd2a8;
  --zar: #b23a00; /* jedyny wariant czytelny jako tekst na bieli — 5,6:1 */
  --zimne: #a8c4dc; /* przeciwświatło lampy inspekcyjnej, małe dawki */

  --font-display: "Archivo", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;

  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --container: 1560px;
  --sekcja: clamp(5rem, 10vw, 10rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 76px;
}

@supports (color: color(display-p3 1 0 0)) {
  :root {
    --hot: color(display-p3 1 0.38 0);
    --hot-deep: color(display-p3 0.85 0.2 0);
    --hot-core: color(display-p3 1 0.82 0.66);
  }
}

/* ---------------------------------------------------------------- 2. BAZA */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--noc);
  color: var(--dzien);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg,
canvas {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p,
figure,
blockquote,
ul,
ol,
dl {
  margin: 0;
}
ul[class],
ol[class] {
  list-style: none;
  padding: 0;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--hot);
  outline-offset: 3px;
}
::selection {
  background: var(--hot);
  color: #1a0800;
}

.vh {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip {
  position: absolute;
  left: var(--gutter);
  top: 0;
  z-index: 200;
  transform: translateY(-120%);
  background: var(--hot);
  color: #1a0800;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}
.skip:focus-visible {
  transform: translateY(0);
}

/* --------------------------------------------------------- 3. TYPOGRAFIA */
/* Wąska, ciężka groteska wersalikami — język oznaczeń warsztatowych i tablic
   rejestracyjnych, nie korporacyjnego nagłówka. */
.d1,
.d2,
.d3 {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 80;
  font-weight: 800;
  text-transform: uppercase;
  /* 0.88 wyglądało lepiej, ale akcenty nad Ó, Ś i Ż wchodziły w wiersz wyżej.
     Polska typografia potrzebuje tu więcej miejsca niż angielska. */
  line-height: 0.96;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.d1 {
  font-size: clamp(3rem, 11vw, 9.5rem);
}
.d2 {
  font-size: clamp(2.25rem, 6.5vw, 5.5rem);
}
.d3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-variation-settings: "wdth" 88;
}

h3,
.h4 {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hot);
}
.na-jasnym .tag {
  color: var(--zar);
}

.lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.3125rem);
  line-height: 1.55;
  color: var(--mgla);
  max-width: 54ch;
  text-wrap: pretty;
}
.na-jasnym .lead {
  color: var(--grafit);
}

/* ------------------------------------------------------------- 4. UKŁAD */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.sekcja {
  padding-block: var(--sekcja);
  position: relative;
}

/* Pole świetlne sekcji — zdjęcie pod spodem, fotony odtwarzają je na canvasie.
   isolation domyka kontekst układania: bez niego warstwa z ujemnym z-index
   przebiłaby się pod tło strony i zniknęła. */
[data-pole] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.pole {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.pole img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ledwo widoczne. Zdjęcie jest tu materiałem dla światła, nie ilustracją —
     to fotony mają je odtworzyć, a nie ono samo się pokazać. */
  opacity: 0.07;
  filter: grayscale(1) contrast(1.25);
}
.pole canvas {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.na-jasnym {
  background: var(--dzien);
  color: var(--tekst);
}
.beton {
  background: var(--beton);
  color: var(--tekst);
}

/* Nagłówek sekcji: numer, tytuł, lead — z gorącą kreską zamiast linii */
.naglowek {
  display: grid;
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 46rem;
}
.naglowek .tag::before {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 2px;
  margin-right: 0.9rem;
  vertical-align: 0.28em;
  background: currentColor;
}

/* ---------------------------------------------------------- 5. PRZYCISKI */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 54px;
  padding: 0.9rem 1.9rem;
  border: 0;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s var(--ease), box-shadow 0.24s var(--ease),
    background 0.2s var(--ease), color 0.2s var(--ease);
}

/* Przycisk główny sam jest źródłem światła — świeci w otoczenie. */
.btn--hot {
  background: var(--hot);
  color: #1a0800;
  box-shadow: 0 8px 30px -14px rgba(255, 106, 0, 0.55);
}
.btn--hot:hover {
  background: var(--hot-core);
  box-shadow: 0 0 20px -6px rgba(255, 106, 0, 0.4), 0 12px 40px -14px rgba(255, 106, 0, 0.65);
}
.btn--hot:active {
  transform: translateY(1px);
}

.btn--kontur {
  background: transparent;
  color: currentColor;
  box-shadow: inset 0 0 0 1px currentColor;
  opacity: 0.85;
}
.btn--kontur:hover {
  opacity: 1;
  box-shadow: inset 0 0 0 1px var(--hot);
  color: var(--hot);
}
.na-jasnym .btn--kontur:hover {
  color: var(--zar);
  box-shadow: inset 0 0 0 1px var(--zar);
}

.btn-rzad {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.strzalka {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--hot);
}
.na-jasnym .strzalka {
  color: var(--zar);
}
.strzalka svg {
  transition: transform 0.3s var(--ease);
}
.strzalka:hover svg {
  transform: translateX(5px);
}

/* --------------------------------------------------------- 6. NAGŁÓWEK */
.top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--noc), transparent);
  opacity: 0.9;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.top.przyklejony {
  background: rgba(7, 8, 11, 0.86);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07);
}
.top.przyklejony::before {
  opacity: 0;
}
.top.schowany {
  transform: translateY(-100%);
}
.top__in {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-variation-settings: "wdth" 80;
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.logo b {
  color: var(--hot);
  font-weight: inherit;
}
.logo__punkt {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 12px 2px rgba(255, 106, 0, 0.9);
  flex: none;
}

.menu-desktop {
  display: none;
}
.menu-desktop ul {
  display: flex;
  gap: clamp(1rem, 2.4vw, 2.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-desktop a {
  position: relative;
  display: block;
  padding: 0.4rem 0;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mgla);
  transition: color 0.2s var(--ease);
}
.menu-desktop a:hover,
.menu-desktop a[aria-current] {
  color: var(--dzien);
}
.menu-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--hot);
  box-shadow: 0 0 10px 1px rgba(255, 106, 0, 0.8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.menu-desktop a:hover::after {
  transform: scaleX(1);
}

.top__akcje {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.top .btn {
  min-height: 44px;
  padding: 0.55rem 1.2rem;
  font-size: 0.75rem;
}
.top__tel {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-decoration: none;
  white-space: nowrap;
}

.burger {
  position: relative;
  width: 46px;
  height: 46px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  cursor: pointer;
}
.burger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  margin-left: -9px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.15s linear;
}
.burger span:nth-child(1) {
  transform: translateY(-6px);
}
.burger span:nth-child(3) {
  transform: translateY(6px);
}
.burger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

@media (min-width: 1100px) {
  .menu-desktop,
  .top__tel {
    display: flex;
  }
  .burger {
    display: none;
  }
}

.panel {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--noc);
  padding: calc(var(--header-h) + 2rem) var(--gutter) 2rem;
  overflow-y: auto;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path 0.55s var(--ease), visibility 0s linear 0.55s;
}
.panel.otwarty {
  clip-path: inset(0 0 0 0);
  visibility: visible;
  transition: clip-path 0.55s var(--ease), visibility 0s;
}
.panel ul {
  display: grid;
  gap: 0;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}
.panel a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--noc-3);
  font-family: var(--font-display);
  font-variation-settings: "wdth" 80;
  font-weight: 800;
  font-size: clamp(2rem, 9vw, 3rem);
  text-transform: uppercase;
  text-decoration: none;
}
.panel .nr {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--hot);
}

/* ------------------------------------------------------- 7. HERO — NOC */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  isolation: isolate;
}

/* Skan — chmura punktów świetlnych odtwarzająca powierzchnię */
.skan {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.skan canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.skan__zapas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: grayscale(1) contrast(1.2);
}
/* Kurtyna pod tekstem. Światło ma być po prawej i u góry, a nie wszędzie —
   inaczej nagłówek nie ma na czym usiąść. */
.skan::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(76deg, var(--noc) 6%, rgba(7, 8, 11, 0.86) 34%, rgba(7, 8, 11, 0.1) 78%),
    linear-gradient(to top, var(--noc) 2%, rgba(7, 8, 11, 0.4) 26%, transparent 62%);
  pointer-events: none;
}

/* Blask lampy sodowej z góry po prawej — rdzeń wypalony do bieli */
.zarowka {
  position: absolute;
  z-index: -1;
  top: -22%;
  right: -8%;
  width: min(62vw, 780px);
  aspect-ratio: 1;
  pointer-events: none;
  background: radial-gradient(
    closest-side,
    rgba(255, 210, 168, 0.2) 0%,
    rgba(255, 106, 0, 0.12) 24%,
    rgba(224, 60, 0, 0.05) 50%,
    transparent 72%
  );
  filter: blur(12px);
}

.hero__in {
  position: relative;
  width: 100%;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.hero h1 {
  max-width: 14ch;
}
/* Jedno słowo w kolorze światła — pozostałe zostają matowe */
.hero h1 em {
  font-style: normal;
  color: var(--hot);
}
.hero__lead {
  color: rgba(255, 255, 255, 0.78);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* Pasek zaufania na dole hero */
.zaufanie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2.75rem);
  padding-top: 1.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--mgla);
}
.zaufanie b {
  color: var(--dzien);
  font-weight: 500;
}

/* --------------------------------------------- 8. KAFELKI PROMOCYJNE */
.promo {
  position: relative;
  z-index: 2;
  margin-top: calc(var(--sekcja) * -0.35);
  padding-bottom: var(--sekcja);
}
.promo__siatka {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .promo__siatka {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  /* Sześć kolumn: pierwszy kafelek zajmuje trzy, pozostałe po jednej.
     Jeden rząd, nierówny rytm — bez osieroconego kafelka pod spodem. */
  .promo__siatka {
    grid-template-columns: repeat(5, 1fr);
  }
  .promo__siatka > :first-child {
    grid-column: span 2;
  }
}

.kafel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.6rem;
  min-height: 15rem;
  padding: clamp(1.25rem, 2.5vw, 1.9rem);
  background: var(--noc-2);
  border-radius: 3px;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s var(--ease);
}
.kafel:hover {
  transform: translateY(-4px);
}
/* Obraz w duotonie: cienie wpadają w noc, światła w pomarańcz */
.kafel__foto {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--noc);
}
/* Zdjęcia są prawie monochromatyczne. Ciepło wchodzi tylko w światła, bo tam
   pada lampa — cienie zostają chłodne. sepia + hue-rotate daje ten rozkład
   jedną deklaracją, a saturate() jest pokrętłem intensywności. */
.kafel__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) sepia(1) hue-rotate(-24deg) saturate(var(--ciep, 0.4))
    contrast(1.12) brightness(0.8);
  transform: scale(1.04);
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
}
.kafel:hover .kafel__foto img {
  transform: scale(1);
  filter: grayscale(1) sepia(1) hue-rotate(-24deg) saturate(calc(var(--ciep, 0.4) * 2.4))
    contrast(1.12) brightness(0.92);
}
/* Tylko kafelek z realną promocją dostaje pełną temperaturę. Reszta jest chłodna,
   więc oko samo idzie tam, gdzie chcemy. */
.kafel--duzy {
  --ciep: 2.2;
}
.kafel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(7, 8, 11, 0.92) 8%, rgba(7, 8, 11, 0.25) 62%, transparent);
}
/* Gorąca krawędź zapala się przy najechaniu */
.kafel__krawedz {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--hot);
  box-shadow: 0 0 16px 1px rgba(255, 106, 0, 0.9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.kafel:hover .kafel__krawedz,
.kafel:focus-visible .kafel__krawedz {
  transform: scaleX(1);
}
.kafel__gora {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: auto;
}
.kafel--duzy .kafel__gora .kafel__cena {
  text-align: right;
  line-height: 0.9;
}
/* W wąskich kafelkach plakietka i cena nie zmieszczą się obok siebie. */
.kafel:not(.kafel--duzy) .kafel__gora {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}
.kafel:not(.kafel--duzy) .kafel__cena {
  font-size: clamp(1.35rem, 1.6vw, 1.75rem);
  white-space: nowrap;
}
.kafel__cena {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 85;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1;
  text-transform: uppercase;
}
.kafel h3 {
  font-size: clamp(1.125rem, 1.7vw, 1.375rem);
}
.kafel p {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--mgla);
}
.kafel--duzy h3 {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 82;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  line-height: 1.02;
  text-transform: uppercase;
}
.kafel--duzy {
  min-height: 19rem;
}

/* Plakietka „promocja" */
.plakietka {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
  background: var(--hot);
  color: #1a0800;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.plakietka--cichy {
  background: transparent;
  color: var(--hot);
  box-shadow: inset 0 0 0 1px currentColor;
}

/* ------------------------------------------- 9. TAŚMA USŁUG (poziom) */
.tasma {
  overflow: hidden;
  padding-bottom: var(--sekcja);
}
.tasma__tor {
  display: flex;
  gap: 1rem;
  padding-inline: var(--gutter);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tasma__tor::-webkit-scrollbar {
  display: none;
}
.usluga {
  position: relative;
  flex: 0 0 auto;
  width: min(78vw, 22rem);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  aspect-ratio: 3 / 4;
  padding: 1.4rem;
  border-radius: 3px;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
}
.usluga__foto {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--noc);
}
.usluga__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) sepia(1) hue-rotate(-24deg) saturate(0.4) contrast(1.15) brightness(0.78);
  transition: transform 0.8s var(--ease), filter 0.5s var(--ease);
}
/* Ciepło zapala się dopiero pod kursorem — jakby lampa przesunęła się na ten kafelek. */
.usluga:hover .usluga__foto img {
  transform: scale(1.05);
  filter: grayscale(1) sepia(1) hue-rotate(-24deg) saturate(1.9) contrast(1.12) brightness(0.9);
}
.usluga::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(7, 8, 11, 0.94) 12%, transparent 65%);
}
.usluga__nr {
  position: absolute;
  top: 1.2rem;
  left: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
}
.usluga__spec {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--hot);
}
.usluga h3 {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 84;
  font-weight: 800;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.04;
  text-transform: uppercase;
}
.usluga p {
  font-size: 0.9375rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}

.tasma__stopka {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
}
.tasma__wskaznik {
  flex: 1;
  min-width: 8rem;
  max-width: 22rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  position: relative;
}
.tasma__wskaznik span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 22%;
  background: var(--hot);
  box-shadow: 0 0 12px 1px rgba(255, 106, 0, 0.85);
  transition: transform 0.1s linear;
}

/* ------------------------------------------ 10. WARSZTAT — proces */
.proces {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--noc-3);
}
@media (min-width: 900px) {
  .proces {
    grid-template-columns: repeat(4, 1fr);
  }
}
.krok {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2vw, 1.75rem);
  border-bottom: 1px solid var(--noc-3);
  display: grid;
  gap: 0.7rem;
  align-content: start;
  position: relative;
}
@media (min-width: 900px) {
  .krok + .krok {
    border-left: 1px solid var(--noc-3);
  }
}
.krok__nr {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 80;
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--hot);
}
.krok p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--mgla);
}

/* ------------------------------------------------ 11. BLASK — pasmo */
.blask {
  position: relative;
  background: var(--hot);
  color: #1a0800;
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.blask .tag {
  color: #4a1600;
}
.blask .d2 {
  max-width: 20ch;
}
.liczby {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 900px) {
  .liczby {
    grid-template-columns: repeat(4, 1fr);
  }
}
.liczba b {
  display: block;
  font-family: var(--font-display);
  font-variation-settings: "wdth" 78;
  font-weight: 800;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 0.85;
  letter-spacing: -0.01em;
}
.liczba span {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mgla);
  max-width: 20ch;
}
.blask .liczba span {
  color: #5c1c00;
}
/* Na ciemnym liczba jest biała, a pomarańcz zostaje tylko na znaku plus —
   jeden gorący punkt zamiast czterech wielkich. */
.liczba b em {
  font-style: normal;
  color: var(--hot);
}

/* --------------------------------------------------- 12. DZIEŃ — pakiety */
.pakiety {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .pakiety {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pakiet {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--beton-2);
  border-radius: 3px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pakiet:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px -34px rgba(11, 13, 16, 0.5);
}
.pakiet--hot {
  background: var(--noc);
  color: var(--dzien);
}
.pakiet--hot li {
  color: var(--mgla);
}
.pakiet__cena {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-variation-settings: "wdth" 82;
  font-weight: 800;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1;
}
.pakiet__cena small {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--grafit);
}
.pakiet--hot .pakiet__cena small {
  color: var(--mgla);
}
.pakiet ul {
  flex: 1;
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--grafit);
}
.pakiet li {
  position: relative;
  padding-left: 1.35rem;
}
.pakiet li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 9px;
  height: 2px;
  background: var(--hot);
}

/* --------------------------------------------------- 13. OPINIE */
.opinie {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 880px) {
  .opinie {
    grid-template-columns: repeat(3, 1fr);
  }
}
.opinia {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  background: var(--beton);
  border-radius: 3px;
}
.opinia blockquote {
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
}
.opinia figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(11, 13, 16, 0.12);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--grafit);
}
.gwiazdki {
  color: var(--zar);
  letter-spacing: 0.1em;
}

/* --------------------------------------------------- 14. STOPKA */
.stopka {
  background: var(--noc);
  color: var(--dzien);
  padding-block: clamp(4rem, 8vw, 6rem) 2rem;
}
.stopka__siatka {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .stopka__siatka {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}
.stopka h2 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mgla);
  margin-bottom: 1rem;
}
.stopka ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9375rem;
}
.stopka a {
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.stopka a:hover {
  color: var(--hot);
}
.stopka__dol {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--noc-3);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--mgla);
}

/* Pasek kontaktu na telefonie */
.pasek {
  position: fixed;
  z-index: 90;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--noc-2);
  border-top: 1px solid var(--noc-3);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(110%);
  transition: transform 0.3s var(--ease);
}
.pasek.widoczny {
  transform: translateY(0);
}
.pasek a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
.pasek a + a {
  background: var(--hot);
  color: #1a0800;
}
@media (min-width: 1100px) {
  .pasek {
    display: none;
  }
}
@media (max-width: 1099px) {
  .stopka {
    padding-bottom: calc(2rem + 58px);
  }
}

/* ---------------------------------------------- 15. RUCH I DOSTĘPNOŚĆ */
/* Stany startowe włącza dopiero JS — bez niego strona jest w całości widoczna. */
.anim [data-in] > *,
.anim [data-in]:not([data-in-dzieci]) {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.anim [data-in].jest > *,
.anim [data-in].jest:not([data-in-dzieci]) {
  opacity: 1;
  transform: none;
}
.anim [data-in].jest > *:nth-child(2) { transition-delay: 0.08s; }
.anim [data-in].jest > *:nth-child(3) { transition-delay: 0.16s; }
.anim [data-in].jest > *:nth-child(4) { transition-delay: 0.24s; }
.anim [data-in].jest > *:nth-child(n + 5) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .anim [data-in] > *,
  .anim [data-in] {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ------------------------------- 22. PASMO BLASKU (jedyna pełna płachta) */
.blask .lead {
  color: #5c1c00;
}
.blask__in {
  max-width: 72rem;
}
/* Na pomarańczu przycisk główny musi być ciemny — pomarańcz na pomarańczu znika. */
.btn--ciemny {
  background: var(--noc);
  color: var(--dzien);
}
.btn--ciemny:hover {
  background: #16191f;
}
.blask .btn--kontur {
  color: #2a0d00;
  box-shadow: inset 0 0 0 1px rgba(42, 13, 0, 0.45);
  opacity: 1;
}
.blask .btn--kontur:hover {
  box-shadow: inset 0 0 0 1px #2a0d00;
  color: #2a0d00;
}


/* ================================================= 23. LAMPA WARSZTATOWA */
/* Fizyczne źródło światła u góry hero. Wszystko, co świeci na tej stronie,
   ma pochodzić stąd — dlatego lampa jest widoczna, a nie domyślna. */
.lampa {
  position: absolute;
  z-index: -1;
  top: clamp(84px, 12vh, 150px);
  left: 58%;
  transform: translateX(-50%);
  pointer-events: none;
  display: grid;
  justify-items: center;
}
.lampa__belka {
  width: min(44vw, 560px);
  height: 5px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 210, 168, 0.5) 10%,
    #fff 48%,
    rgba(255, 210, 168, 0.5) 88%,
    transparent 100%
  );
  box-shadow: 0 0 26px 3px rgba(255, 106, 0, 0.45), 0 0 90px 24px rgba(255, 106, 0, 0.16);
}
/* Snop światła pod belką. Świadomie bez clip-path: przeglądarka nakłada
   przycięcie PO filtrach, więc rozmycie nie zmiękczyłoby krawędzi trapezu
   i snop wyglądałby jak wycięty nożyczkami. Elipsa jest miękka z natury. */
.lampa__stozek {
  width: min(150vw, 1700px);
  height: min(76vh, 900px);
  margin-top: -4px;
  background:
    radial-gradient(ellipse 34% 96% at 50% -2%, rgba(255, 190, 130, 0.16), transparent 68%),
    radial-gradient(ellipse 68% 82% at 50% 0%, rgba(255, 106, 0, 0.075), transparent 72%);
}
@media (max-width: 700px) {
  .lampa {
    left: 50%;
  }
  .lampa__belka {
    width: 70vw;
  }
}

/* ==================================================== 24. PRZEJŚCIA SEKCJI */
/* Krawędź między sekcjami nie jest prostą poziomą kreską, tylko łagodnym
   łukiem — jak brama garażowa, spod której wchodzi światło dnia. */
.przejscie {
  position: relative;
  line-height: 0;
  height: clamp(64px, 8vw, 130px);
  overflow: hidden;
}
.przejscie svg {
  display: block;
  width: 100%;
  height: 100%;
}
.przejscie--swit {
  background: var(--noc);
}
.przejscie--swit .plama {
  fill: var(--dzien);
}
/* Rozżarzona krawędź: to nią wlewa się dzień */
.przejscie--swit .krawedz {
  fill: none;
  stroke: var(--hot);
  stroke-width: 2.5;
  filter: drop-shadow(0 0 10px rgba(255, 106, 0, 0.85))
    drop-shadow(0 0 26px rgba(255, 106, 0, 0.4));
}
.przejscie--blask {
  background: var(--dzien);
}
.przejscie--blask .plama {
  fill: var(--hot);
}
.przejscie--blask .krawedz {
  display: none;
}
.przejscie--zmierzch {
  background: var(--hot);
}
.przejscie--zmierzch .plama {
  fill: var(--noc);
}
.przejscie--zmierzch .krawedz {
  display: none;
}
