/* =============================================
   Self Storage — magazyny w kontenerach morskich (v7 "Manifest" — industrial)
   Estetyka cargo-manifest / brutalist: ostre kąty,
   mono-font do numeracji, narożne celowniki,
   pełnoekranowe menu, przewijane szpule kart,
   pasek tickera.
   ============================================= */

:root {
  --bg: #0a0a0b;
  --bg-alt: #141416;
  --card: #1a1a1d;
  --ink: #f5f5f7;
  --muted: #9a9aa1;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #f02028;
  --accent-hover: #ff3b42;
  --accent-soft: rgba(240, 32, 40, 0.16);
  --nav-bg: rgba(18, 18, 20, 0.72);
  --font: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --container: 1080px;
  --container-wide: 1280px;
  --header-h: 68px;
  --radius: 4px;
  --radius-lg: 4px;
  --shadow-sm: 6px 6px 0 rgba(0, 0, 0, 0.35);
  --shadow-md: 10px 10px 0 rgba(0, 0, 0, 0.4);
  --shadow-lg: 16px 16px 0 rgba(0, 0, 0, 0.45);
  --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section--alt { background: var(--bg-alt); }
section { position: relative; z-index: 1; }

/* ---- Linki tekstowe ---- */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  transition: gap var(--transition);
}
.text-link:hover { gap: 0.6rem; }

/* ---- Przyciski: kanciaste ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.9rem;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-hover); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

.btn--sm { padding: 0.45rem 1.1rem; font-size: 0.9rem; }
.btn--full { width: 100%; }

/* ---- Header: zawsze czytelny (tło + rozmycie), wzmacnia się po scrollu ---- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(8, 8, 9, 0.6);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition), border-color var(--transition);
}
.header--scrolled {
  background: rgba(10, 10, 11, 0.9);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line);
}
.admin-bar .header { top: 32px; }
.admin-bar .nav { top: 32px; height: calc(100% - 32px); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.logo { display: flex; align-items: center; }
.logo__img { height: 26px; width: auto; max-width: 200px; display: block; }
.logo--footer .logo__img { height: 24px; }

.header__actions { display: flex; align-items: center; gap: 0.65rem; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.lang-switch a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.38rem 0.52rem;
  color: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}
.lang-switch a:hover { color: #fff; }
.lang-switch a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

/* ---- Menu w headerze: widoczne domyślnie, hamburger tylko na mobile ---- */
.nav-inline { display: flex; flex: 1; justify-content: center; }
.nav-inline__list { display: flex; align-items: center; gap: 0.2rem; }
.nav-inline .nav__link {
  display: block;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-inline .nav__link:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.nav-inline .nav__link.active { color: #fff; background: var(--accent); }

/* Hamburger — tylko na mobile, otwiera pełnoekranowe menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block; width: 16px; height: 1.5px;
  margin: 0 auto;
  background: #fff; border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- Nawigacja: pełnoekranowe overlay menu ---- */
.nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  background: var(--bg);
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--transition), visibility var(--transition);
}
.nav--open { visibility: visible; opacity: 1; }
.nav__grid {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  pointer-events: none;
}
.nav__grid span { border-right: 1px solid var(--line); }
.nav__grid span:last-child { border-right: none; }
.nav__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.5rem;
  width: 100%;
}
.nav__list { display: flex; flex-direction: column; }
.nav__list li {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}
.nav__list li:first-child { border-top: 1px solid var(--line); }
.nav__num {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  color: var(--accent);
}
.nav .nav__link {
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition), padding-left var(--transition);
}
.nav .nav__link:hover,
.nav .nav__link.active { color: #fff; }
.nav__meta {
  display: flex;
  gap: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  color: var(--muted);
}
.nav__meta a:hover { color: var(--accent); }

/* ---- Nagłówki sekcji ---- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-header--left { text-align: left; max-width: 640px; margin: 0 0 3rem; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-tag::before { content: '//'; opacity: 0.6; }
.section-title {
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: clamp(1.05rem, 2vw, 1.1875rem);
  color: var(--muted);
  letter-spacing: -0.01em;
}
.section-desc p,
.hero__subtitle p,
.trust__desc p,
.about__text p,
.about__quote p,
.about-feature__desc p,
.pricing__note p,
.timeline__desc p,
.service-row__desc p,
.preview-card__desc p {
  margin: 0 0 0.65em;
}
.section-desc p:last-child,
.hero__subtitle p:last-child,
.trust__desc p:last-child,
.about__text p:last-child,
.about__quote p:last-child,
.about-feature__desc p:last-child,
.pricing__note p:last-child,
.timeline__desc p:last-child,
.service-row__desc p:last-child,
.preview-card__desc p:last-child {
  margin-bottom: 0;
}
.section-desc a,
.hero__subtitle a,
.trust__desc a,
.about__text a,
.about__quote a,
.pricing__note a,
.timeline__desc a,
.service-row__desc a,
.preview-card__desc a,
.section-title a,
.hero__title a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.section-desc ul,
.section-desc ol,
.hero__subtitle ul,
.hero__subtitle ol,
.trust__desc ul,
.trust__desc ol,
.about__text ul,
.about__text ol,
.pricing__note ul,
.pricing__note ol {
  margin: 0.4em 0 0.4em 1.15em;
}

/* ---- Hero: pełnoekranowy, kompozycja przy dole, celowniki ---- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #0c0c0c;
}
.hero__slider { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.1s ease, transform 6s ease;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.15) contrast(1.05); }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(6, 6, 7, 0.95) 0%, rgba(6, 6, 7, 0.35) 42%, rgba(6, 6, 7, 0.15) 100%);
}

.hero__corners { position: absolute; inset: 1.25rem; z-index: 2; pointer-events: none; }
.hero__corners span { position: absolute; width: 26px; height: 26px; }
.hero__corners span:nth-child(1) { top: 0; left: 0; border-top: 2px solid rgba(255,255,255,0.6); border-left: 2px solid rgba(255,255,255,0.6); }
.hero__corners span:nth-child(2) { top: 0; right: 0; border-top: 2px solid rgba(255,255,255,0.6); border-right: 2px solid rgba(255,255,255,0.6); }
.hero__corners span:nth-child(3) { bottom: 0; left: 0; border-bottom: 2px solid rgba(255,255,255,0.6); border-left: 2px solid rgba(255,255,255,0.6); }
.hero__corners span:nth-child(4) { bottom: 0; right: 0; border-bottom: 2px solid rgba(255,255,255,0.6); border-right: 2px solid rgba(255,255,255,0.6); }

.hero__side {
  position: absolute;
  top: 50%; left: 1.75rem;
  transform: translateY(-50%) rotate(180deg);
  z-index: 2;
  writing-mode: vertical-rl;
}
.hero__side span {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.55);
}

.hero__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: calc(var(--header-h) + 1.5rem);
  flex-wrap: wrap;
}
.hero__tag {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
}
.hero__sliderctl { display: flex; align-items: center; gap: 0.75rem; }
.hero__arrow {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; line-height: 1;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.hero__arrow:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }
.hero__dots { display: flex; gap: 0.4rem; }
.hero__dots button {
  width: 6px; height: 6px; padding: 0;
  background: rgba(255, 255, 255, 0.4);
  border: none; border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}
.hero__dots button.is-active { width: 20px; border-radius: 999px; background: var(--accent); }

.hero__bottom {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 2.5rem;
}
.hero__title {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 920px;
  margin-bottom: 1.75rem;
}
.hero__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.01em;
  max-width: 480px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hero__stat {
  position: relative;
  padding: 1.1rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat:last-child { border-right: none; padding-right: 0; }
.hero__stat-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.hero__stats dt {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  display: inline;
}
.hero__stats dd {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.2rem;
}

/* ---- Ticker ---- */
.marquee {
  overflow: hidden;
  background: var(--accent);
  border-top: 1px solid rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
.marquee__track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee__group { display: flex; align-items: center; flex-shrink: 0; }
.marquee__group span {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 0.85rem 0.4rem;
  white-space: nowrap;
}
.marquee__sep { padding: 0.85rem 1.2rem !important; opacity: 0.7; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Trust: karta specyfikacji ---- */
.trust { padding: 0; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.trust__grid {
  display: grid;
  grid-template-columns: 220px 1fr;
}
.trust__mark {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--line);
}
.trust__index { font-family: var(--font-mono); font-size: 0.8125rem; color: var(--muted); }
.trust__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-top: 1.5rem;
}
.trust__copy { padding: 2.5rem 2.5rem 2.5rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.trust__title {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.trust__desc { font-size: 1rem; color: var(--muted); max-width: 640px; }

/* ---- Trzy powody: pozioma szpula ---- */
.preview { padding: 6rem 0; }
.preview__strip {
  display: flex;
  justify-content: safe center;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0 1.5rem 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.preview__strip::-webkit-scrollbar { display: none; }
.preview-card {
  position: relative;
  flex: 0 0 auto;
  width: min(76vw, 420px);
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  scroll-snap-align: start;
}
.preview-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.preview-card:hover img { transform: scale(1.05); }
.preview-card__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,7,0.94) 0%, rgba(6,6,7,0.35) 45%, transparent 75%);
}
.preview-card__num {
  position: absolute; top: 1.25rem; left: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: #fff;
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.3);
}
.preview-card__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.preview-card__body h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; color: #fff; }
.preview-card__body p,
.preview-card__desc { font-size: 0.9375rem; color: rgba(255,255,255,0.75); }

/* ---- Standardy: manifest / tabela z inwersją ---- */
.services { padding: 6rem 0; }
.services__intro {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem;
  padding: 1.1rem 0;
  margin-bottom: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.services__intro-sub {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted);
}
.services__table { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 56px 56px 1fr 1.5fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid var(--line);
  transition: background var(--transition), color var(--transition);
}
.service-row:hover { background: var(--accent); }
.service-row__num {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  color: var(--accent);
  transition: color var(--transition);
}
.service-row:hover .service-row__num { color: rgba(255,255,255,0.7); }
.service-row__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: color var(--transition);
}
.service-row:hover .service-row__icon { color: #fff; }
.service-row__title {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.service-row__desc { font-size: 0.9375rem; color: var(--muted); line-height: 1.5; transition: color var(--transition); }
.service-row:hover .service-row__desc { color: rgba(255,255,255,0.85); }

/* ---- Etapy: pozioma listwa, duże cyfry, naprzemienny offset ---- */
.process { padding: 6rem 0 7.5rem; }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.timeline__item {
  position: relative;
  padding: 2rem 1.75rem 1.5rem;
  border-right: 1px solid var(--line);
}
.timeline__item:last-child { border-right: none; }
.timeline__item:nth-child(even) { transform: translateY(1.75rem); }
.timeline__num {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  margin-bottom: 1rem;
}
.timeline__title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.timeline__desc { font-size: 0.9375rem; color: var(--muted); }

/* ---- Cennik: dwie karty rozmiarów ---- */
.pricing { padding: 6.5rem 0; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-alt);
}
.pricing-card--accent {
  background: var(--card);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.pricing-card__ribbon {
  position: absolute;
  top: 0;
  right: 1.75rem;
  transform: translateY(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius);
}
.pricing-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.pricing-card__size {
  font-family: var(--font-mono);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.pricing-card__price { text-align: right; }
.pricing-card__price-num {
  display: block;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.pricing-card__price-unit {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
}
.pricing-card__dims, .pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: var(--muted);
}
.pricing-card__features li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink);
}
.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pricing-card .btn { margin-top: auto; }
.pricing__note {
  margin-top: 1.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ---- O nas: dwutonowy panel + chipy ---- */
.about { padding-bottom: 6rem; }
.about__banner {
  display: flex;
  min-height: 56vh;
}
.about__banner-panel {
  flex: 0 0 42%;
  background: var(--accent);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
  padding: 3rem 3rem 3rem 1.5rem;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
  position: relative;
  z-index: 1;
}
.about__banner-panel .section-tag { color: rgba(10,10,11,0.75); }
.about__banner-panel .section-tag::before { content: '//'; }
.about__quote {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.02em;
  border: none;
  padding: 0;
  background: none;
  max-width: 380px;
}
.about__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}
.about__badge-num {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.about__badge-label { font-size: 0.8125rem; opacity: 0.85; }

.about__banner-photo { flex: 1; margin-left: -6%; position: relative; }
.about__banner-photo img { width: 100%; height: 100%; object-fit: cover; }

.about__content {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2.5rem 3rem;
  align-items: start;
  padding-top: 3.5rem;
}
.about__title {
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.about__text { font-size: 1.0625rem; color: var(--muted); }

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1rem;
  padding-top: 0.85rem;
}
.about-feature {
  position: relative;
  background: #ececee;
  color: #141416;
  border: 1px solid #d8d8dc;
  border-radius: 8px;
  padding: 2.1rem 0.85rem 1.15rem;
  text-align: center;
}
.about-feature__icon {
  position: absolute;
  top: 0;
  left: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  transform: translate(-50%, -50%);
}
.about-feature__title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 0.45rem;
  color: #111;
}
.about-feature__desc {
  font-size: 0.78rem;
  line-height: 1.4;
  color: #3a3a40;
  margin: 0;
}

.about__chips { display: flex; flex-wrap: wrap; gap: 0.75rem; align-content: flex-start; }
.about__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
}
.about__chip::before { content: '▹'; color: var(--accent); font-size: 0.9em; }

/* ---- Galeria: slider na całą szerokość ---- */
.gallery { padding: 6rem 0; overflow: hidden; }
.gallery .section-header { margin-bottom: 2rem; }
.gallery__slider {
  position: relative;
  width: 100%;
  padding: 0 1.5rem;
}
.gallery__viewport {
  overflow: hidden;
  width: 100%;
}
.gallery__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}
.gallery__item {
  position: relative;
  flex: 0 0 calc((100% - 4rem) / 5);
  aspect-ratio: 3/4;
  border: none; padding: 0; cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}
.gallery__item::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 22px; height: 22px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  opacity: 0.85;
}
.gallery__num {
  position: absolute; bottom: 0.9rem; left: 0.9rem; z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: #fff;
  padding: 0.25rem 0.55rem;
  background: rgba(0,0,0,0.45);
  border-radius: 2px;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem; line-height: 1;
  color: #fff;
  background: rgba(10, 10, 11, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), opacity var(--transition);
  z-index: 3;
}
.gallery__arrow--prev { left: 0.75rem; }
.gallery__arrow--next { right: 0.75rem; }
.gallery__arrow:hover:not(:disabled) {
  border-color: #fff;
  background: rgba(10, 10, 11, 0.92);
}
.gallery__arrow:disabled {
  opacity: 0.28;
  cursor: default;
}
.gallery__arrow[hidden],
.gallery__dots[hidden] { display: none; }

.gallery__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.35rem;
  padding: 0 1.5rem;
}
.gallery__dots button {
  width: 8px; height: 8px; padding: 0;
  background: rgba(255, 255, 255, 0.32);
  border: none; border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}
.gallery__dots button.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--accent);
}
.gallery__slider--single .gallery__item { flex-basis: min(320px, 100%); }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  padding: 2rem;
  animation: fadeIn 0.25s ease;
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: 90vw; max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox__close,
.lightbox__nav {
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  font-size: 1.6rem; line-height: 1;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  font-size: 1.9rem; line-height: 1;
}
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---- Kontakt: dokument z celownikami ---- */
.contact { padding: 6rem 0 7rem; }
.contact__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  border: 1px solid var(--line);
  position: relative;
}
.contact__inner::before,
.contact__inner::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  pointer-events: none;
}
.contact__inner::before { top: -1px; left: -1px; border-top: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.contact__inner::after { bottom: -1px; right: -1px; border-bottom: 2px solid var(--accent); border-right: 2px solid var(--accent); }

.contact__info {
  padding: 3rem 2.75rem;
  background: var(--bg-alt);
  border-right: 1px solid var(--line);
}
.contact__info .section-desc { margin-bottom: 0; }
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.contact__details li {
  display: flex; align-items: center; gap: 0.85rem;
  color: var(--muted);
  font-size: 1rem;
}
.contact__ic {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact__details a { color: var(--ink); font-weight: 500; transition: color var(--transition); }
.contact__details a:hover { color: var(--accent); }

.contact-form { margin: 0; padding: 3rem 2.75rem; }
.contact-form-wrap { padding: 3rem 2.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.form-group label::after { content: ' _'; color: var(--accent); }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.85rem 1.05rem;
  font-family: var(--font); font-size: 1rem; color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input[type="file"] { display: none; }
.file-label {
  display: flex !important; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.05rem;
  background: var(--bg);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--muted) !important;
  font-size: 0.9375rem !important;
  font-weight: 400 !important;
  transition: border-color var(--transition), color var(--transition);
}
.file-label:hover { border-color: var(--accent); color: var(--ink) !important; }
.file-label svg { color: var(--accent); flex-shrink: 0; }
.form-hint { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 0.45rem; }
.form-error { display: block; font-size: 0.8125rem; color: var(--accent-hover); margin-top: 0.3rem; min-height: 1.1rem; }
.form-success {
  margin-top: 1rem; padding: 1rem;
  background: rgba(52, 199, 89, 0.12);
  border-radius: var(--radius);
  color: #34c759; font-size: 0.9375rem; font-weight: 500; text-align: center;
}

/* ---- Stopka: kolumny + gigantyczny watermark ---- */
.footer { background: var(--bg-alt); border-top: 1px solid var(--line); color: rgba(255, 255, 255, 0.85); overflow: hidden; }
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 3.5rem 0 2.5rem;
  flex-wrap: wrap;
}
.footer__tagline {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.6rem;
  max-width: 320px;
}
.footer__nav { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer__nav a {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--accent); }

.footer__giant {
  font-size: clamp(3.5rem, 16vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.8;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
  white-space: nowrap;
  user-select: none;
  padding: 0 1rem 0.5rem;
}

.footer__bottom {
  padding: 1.5rem 0 2.25rem;
  border-top: 1px solid var(--line);
}
.footer__copy {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---- Animacje przy scrollu ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsywność ---- */
@media (max-width: 880px) {
  .nav-inline { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 980px) {
  .hero__title { font-size: clamp(2.1rem, 7vw, 3.2rem); }
  .hero__foot { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .hero__side { display: none; }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stat { border-right: none; padding-left: 0; padding-right: 0; }
  .gallery__item { flex-basis: calc((100% - 3rem) / 4); }

  .trust__grid { grid-template-columns: 1fr; }
  .trust__mark { flex-direction: row; align-items: center; border-right: none; border-bottom: 1px solid var(--line); }
  .trust__icon { margin-top: 0; }
  .trust__copy { padding: 2rem; }

  .service-row { grid-template-columns: 40px 1fr; row-gap: 0.5rem; }
  .service-row__title { grid-column: 2; }
  .service-row__desc { grid-column: 2; }
  .service-row__icon { display: none; }

  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline__item:nth-child(even) { transform: none; }
  .timeline__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .timeline__item:nth-child(even) { border-right: none; }

  .about__banner { flex-direction: column; min-height: 0; }
  .about__banner-panel { clip-path: none; flex: none; padding: 2.5rem 1.5rem; }
  .about__banner-photo { margin-left: 0; aspect-ratio: 16/9; }

  .contact__inner { grid-template-columns: 1fr; }
  .contact__info { border-right: none; border-bottom: 1px solid var(--line); }
}

@media (max-width: 720px) {
  .header__actions { gap: 0.5rem; }
  .nav__meta { flex-direction: column; gap: 0.5rem; }
  .nav .nav__link { font-size: clamp(1.8rem, 10vw, 2.6rem); }

  .hero__top { padding-top: calc(var(--header-h) + 1rem); }
  .hero__tag { font-size: 0.7rem; padding: 0.35rem 0.65rem; }
  .hero__sliderctl { display: none; }
  .hero__corners { display: none; }

  .trust__mark { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.75rem; }
  .trust__copy { padding: 0 1.75rem 1.75rem; }

  .pricing__grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 1.75rem; }

  .timeline { grid-template-columns: 1fr; }
  .timeline__item { border-right: none; border-bottom: 1px solid var(--line); padding: 1.75rem; }
  .timeline__item:last-child { border-bottom: none; }

  .preview-card { width: 82vw; }
  .gallery__item { flex-basis: calc((100% - 1rem) / 2); }
  .gallery__arrow { width: 36px; height: 36px; font-size: 1.25rem; }
  .preview__strip { justify-content: flex-start; }

  .about__quote { max-width: none; }
  .about__content { grid-template-columns: 1fr; gap: 2.25rem; }
  .about__chips { flex-direction: column; align-items: stretch; }
  .about__features { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact__info, .contact-form, .contact-form-wrap { padding: 2rem 1.5rem; }

  .footer__top { flex-direction: column; }
  .footer__nav { gap: 1rem 1.5rem; }
  .btn--sm.btn--primary { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .gallery__track { transition: none; }
}

/* ---- Zgodność z edytorem blok\u00f3w WP ---- */
.wp-site-blocks > * { position: relative; }
