/* ============================================================
   BARBER Z PASJĄ — design system
   Vibe: Ethereal Glass / OLED black · electric blue · deep red
   ============================================================ */

:root {
  --bg: #050506;
  --bg-2: #0a0a0d;
  --bg-3: #101014;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f4f6;
  --text-2: #a7a9b3;
  --text-3: #6b6d78;
  --blue: #3b82f6;
  --blue-soft: rgba(59, 130, 246, 0.35);
  --red: #dc2626;
  --red-soft: rgba(220, 38, 38, 0.30);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --r-xl: 2rem;
  --r-core: calc(2rem - 0.4rem);
  --font-head: "Space Grotesk", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--blue); color: #fff; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typografia ---------- */
.eyebrow {
  display: inline-block;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 500;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.03);
}
.h2 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.lead { font-size: 1.13rem; color: var(--text-2); max-width: 56ch; }

/* ---------- Double-bezel ---------- */
.bezel {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 7px;
}
.bezel__core {
  background: linear-gradient(180deg, #0e0e12 0%, #09090c 100%);
  border-radius: var(--r-core);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.07);
  padding: 30px;
  height: 100%;
}

/* ---------- Przyciski ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  padding: 13px 10px 13px 24px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), background 0.6s var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn__ico {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s var(--ease);
}
.btn:hover .btn__ico { transform: translate(2px, -1px) scale(1.06); }
.btn--primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.4), 0 18px 50px -12px var(--blue-soft);
}
.btn--primary:hover { box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.6), 0 22px 60px -10px var(--blue-soft); transform: translateY(-2px); }
.btn--xl { padding: 17px 12px 17px 30px; font-size: 1.05rem; }
.btn--nav {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: 9px 8px 9px 18px;
  font-size: 0.85rem;
}
.btn--nav:hover { background: rgba(59, 130, 246, 0.15); }
.btn--nav .btn__ico { width: 26px; height: 26px; background: var(--blue); }

/* ---------- Nav — floating pill ---------- */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(10, 10, 14, 0.55);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 10px 9px 22px;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.8);
  transition: transform 0.7s var(--ease), background 0.7s var(--ease);
}
.nav__logo {
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.nav__logo strong { font-weight: 700; }
.nav__logo-pole {
  width: 14px; height: 14px;
  border-radius: 999px;
  background: repeating-linear-gradient(135deg, var(--red) 0 3px, #fff 3px 6px, var(--blue) 6px 9px);
  box-shadow: 0 0 12px var(--blue-soft);
  flex: none;
}
.nav__logo-img {
  width: 30px; height: 30px;
  flex: none;
  filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.35));
}
.footer__logo-img {
  width: 44px; height: 44px;
  flex: none;
}
.nav__links { display: flex; gap: 22px; }
.nav__links a {
  font-size: 0.86rem;
  color: var(--text-2);
  font-weight: 400;
  transition: color 0.5s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-strong);
  cursor: pointer;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.55s var(--ease), top 0.55s var(--ease);
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 22px; }
.nav__burger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { top: 19px; transform: rotate(-45deg); }

/* ---------- Menu overlay ---------- */
.menu-overlay {
  position: fixed; inset: 0;
  z-index: 90;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.menu-overlay.is-open { opacity: 1; visibility: visible; }
.menu-overlay__links { display: flex; flex-direction: column; gap: 26px; text-align: center; }
.menu-overlay__links a {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 6vw, 2.4rem);
  font-weight: 600;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), color 0.4s;
  transition-delay: 0s;
}
.menu-overlay.is-open .menu-overlay__links a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--d);
}
.menu-overlay__links a:hover { color: var(--blue); }
.menu-overlay__tel { color: var(--blue); }

/* ---------- HERO — scrollytelling ---------- */
.hero { height: 520vh; position: relative; }
.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* studio jak w klatkach wideo: czerń + snop światła z góry — kadr staje się częścią tła */
  background:
    radial-gradient(ellipse 15vh 58vh at 50% -22vh, rgba(230, 233, 242, 0.95), rgba(230, 233, 242, 0.36) 55%, transparent 78%),
    linear-gradient(180deg, #000 0%, #000 90%, var(--bg) 100%);
}
.hero__glow {
  position: absolute;
  width: 56vmax; height: 56vmax;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
  pointer-events: none;
}
.hero__glow--blue { background: radial-gradient(circle, var(--blue), transparent 60%); top: -18vmax; left: -14vmax; }
.hero__glow--red { background: radial-gradient(circle, var(--red), transparent 60%); bottom: -20vmax; right: -14vmax; opacity: 0.12; }

/* Dym — nieustanny, GPU-safe (transform + opacity) */
.hero__smoke {
  position: absolute;
  left: 50%;
  bottom: 4vh;
  width: 120vmin;
  height: 52vmin;
  margin-left: -60vmin;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}
.hero__smoke--1 {
  background: radial-gradient(ellipse 55% 45% at 42% 62%, rgba(148, 163, 184, 0.32), transparent 72%);
  animation: smokeA 9s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}
.hero__smoke--2 {
  background: radial-gradient(ellipse 50% 40% at 62% 55%, rgba(110, 140, 195, 0.28), transparent 70%);
  animation: smokeB 14s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
  animation-delay: -7s;
}
.hero__smoke--3 {
  z-index: 2;
  bottom: 2vh;
  background: radial-gradient(ellipse 60% 42% at 50% 68%, rgba(175, 185, 205, 0.26), transparent 74%);
  animation: smokeC 11s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
  animation-delay: -3s;
}
.hero__smoke--4 {
  z-index: 2;
  bottom: -8vh;
  width: 160vmin;
  margin-left: -80vmin;
  background: radial-gradient(ellipse 60% 38% at 50% 60%, rgba(150, 162, 185, 0.24), transparent 72%);
  animation: smokeB 18s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
  animation-delay: -11s;
}
@keyframes smokeA {
  0%   { transform: translate3d(-12%, 3%, 0) scale(1) rotate(-3deg); opacity: 0.6; }
  50%  { transform: translate3d(5%, -8%, 0) scale(1.2) rotate(2deg); opacity: 1; }
  100% { transform: translate3d(14%, -14%, 0) scale(1.38) rotate(4deg); opacity: 0.55; }
}
@keyframes smokeB {
  0%   { transform: translate3d(13%, 2%, 0) scale(1.05) rotate(3deg); opacity: 0.5; }
  50%  { transform: translate3d(-6%, -9%, 0) scale(1.24) rotate(-2deg); opacity: 1; }
  100% { transform: translate3d(-15%, -15%, 0) scale(1.42) rotate(-4deg); opacity: 0.5; }
}
@keyframes smokeC {
  0%   { transform: translate3d(-7%, 0%, 0) scale(1); opacity: 0.55; }
  50%  { transform: translate3d(8%, -10%, 0) scale(1.26); opacity: 1; }
  100% { transform: translate3d(-4%, -17%, 0) scale(1.44); opacity: 0.5; }
}

.hero__stage {
  position: relative;
  z-index: 1;
  height: min(88vh, 900px);
  aspect-ratio: 1 / 1;
  max-width: 94vw;
}
.hero__stage canvas,
.hero__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  /* wtapia kadr klatki w tło strony — brak widocznego prostokąta */
  -webkit-mask-image: radial-gradient(ellipse 74% 72% at 50% 50%, #000 46%, transparent 74%);
  mask-image: radial-gradient(ellipse 74% 72% at 50% 50%, #000 46%, transparent 74%);
}
.hero__stage canvas { opacity: 0; transition: opacity 0.8s var(--ease); }
.hero__stage.frames-ready canvas { opacity: 1; }
.hero__stage.frames-ready .hero__poster { opacity: 0; transition: opacity 0.8s var(--ease); }

/* sceny — opacity/transform ustawiane w JS (scrub) */
.hero__scene { position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0; }
.hero__scene .hero__corner, .hero__scene .hero__center { pointer-events: auto; }

.hero__corner {
  position: absolute;
  max-width: min(340px, 38vw);
}
.hero__corner--tl { top: clamp(90px, 14vh, 150px); left: clamp(20px, 6vw, 90px); }
.hero__corner--tr { top: clamp(90px, 14vh, 150px); right: clamp(20px, 6vw, 90px); text-align: right; }
.hero__corner--bl { bottom: clamp(36px, 9vh, 110px); left: clamp(20px, 6vw, 90px); }
.hero__corner--br { bottom: clamp(36px, 9vh, 110px); right: clamp(20px, 6vw, 90px); text-align: right; }
.hero__corner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.9);
}
.hero__corner p { font-size: 0.95rem; color: var(--text-2); }
.hero__corner .eyebrow { margin-bottom: 12px; }
.hero__stars { color: var(--blue); letter-spacing: 0.2em; font-size: 1.05rem; margin-bottom: 6px; }

.hero__center {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: min(92vw, 900px);
}
.hero__center--title { top: 46%; }
.hero__h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 60px rgba(0, 0, 0, 0.85);
}
.hero__h1 span {
  background: linear-gradient(100deg, var(--blue) 10%, #93b8f9 45%, var(--red) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  margin-top: 18px;
  color: #fff;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: clamp(0.68rem, 1.6vw, 0.85rem);
}
.hero__cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 30px;
  text-shadow: 0 4px 44px rgba(0, 0, 0, 0.9);
}
.hero__scroll-hint {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: hint 2.6s var(--ease) infinite;
}
@keyframes hint {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
  50% { transform: translate(-50%, 7px); opacity: 1; }
}
.hero__progress {
  position: absolute;
  right: 26px; top: 50%;
  transform: translateY(-50%);
  width: 2px; height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.hero__progress span {
  display: block;
  width: 100%; height: 0%;
  background: linear-gradient(180deg, var(--blue), var(--red));
  border-radius: 2px;
}

/* ---------- Pasek zaufania ---------- */
.trust { padding: 0 0 24px; }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}
.trust__item { text-align: center; }
.trust__item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.trust__item span { color: var(--text-3); font-size: 0.85rem; }

/* ---------- O mnie ---------- */
.about { padding: 88px 0; }
.about__split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: start;
}
.about__text p { margin-bottom: 18px; color: var(--text-2); }
.about__text p strong { color: var(--text); font-weight: 500; }
.about__text p em { color: var(--text); font-style: italic; }
.about__text .lead { color: var(--text); margin-bottom: 24px; }
.about__quote {
  margin-top: 34px;
  border-left: 2px solid var(--blue);
  padding: 6px 0 6px 24px;
}
.about__quote p { color: var(--text); font-size: 1.05rem; font-style: italic; margin-bottom: 10px; }
.about__quote cite { color: var(--text-3); font-style: normal; font-size: 0.85rem; }
.about__media { position: sticky; top: 110px; }
.about__photo { padding: 0; overflow: hidden; aspect-ratio: 4 / 5; position: relative; }
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about__badge { margin-top: 16px; }
.about__badge .bezel__core {
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about__badge strong { font-family: var(--font-head); letter-spacing: 0.04em; }
.about__badge span { color: var(--text-3); font-size: 0.82rem; }

/* placeholder zdjęć */
.ph {
  display: none;
  position: absolute; inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  color: var(--text-3);
  font-size: 0.78rem;
  line-height: 1.5;
  background:
    radial-gradient(60% 60% at 50% 30%, rgba(59, 130, 246, 0.09), transparent),
    radial-gradient(50% 50% at 70% 90%, rgba(220, 38, 38, 0.07), transparent),
    #0b0b0f;
}
.ph code { font-size: 0.7rem; color: var(--text-2); }
.is-empty img { display: none; }
.is-empty .ph { display: flex; }

/* ---------- Usługi ---------- */
.services { padding: 88px 0; background: var(--bg-2); }
.services__head { max-width: 640px; margin-bottom: 44px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.card .bezel__core { display: flex; flex-direction: column; gap: 12px; padding: 34px; }
.card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.card h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; }
.card__price {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}
.card p { color: var(--text-2); font-size: 0.97rem; }
.card__for { font-size: 0.88rem; color: var(--text-3); border-top: 1px solid var(--line); padding-top: 14px; margin-top: auto; }
.card--featured { background: linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(220, 38, 38, 0.08)); }
.card--featured .bezel__core { background: linear-gradient(180deg, #10131c 0%, #0a0a10 100%); }
.card__flag {
  align-self: flex-start;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--red));
  border-radius: 999px;
  padding: 4px 12px;
  font-weight: 600;
}
.services__cta { margin-top: 50px; text-align: center; }

/* ---------- Galeria ---------- */
.gallery { padding: 88px 0; }
.gallery__head { max-width: 640px; margin-bottom: 44px; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.g-item {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.7s var(--ease), border-color 0.7s var(--ease);
}
.g-item:hover { transform: translateY(-6px); border-color: var(--blue-soft); }
.g-item img { width: 100%; height: 100%; object-fit: cover; }
.g-item .ph span { padding: 0 12px; }

/* ---------- Blog ---------- */
.blog { padding: 88px 0; background: var(--bg-2); }
.blog__head { max-width: 640px; margin-bottom: 44px; }
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.post { display: block; transition: transform 0.7s var(--ease); }
.post:hover { transform: translateY(-6px); }
.post .bezel__core { display: flex; flex-direction: column; gap: 14px; padding: 30px; }
.post__tag {
  align-self: flex-start;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 999px;
  padding: 4px 11px;
}
.post h3 {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.3;
}
.post p { color: var(--text-2); font-size: 0.92rem; }
.post__more {
  margin-top: auto;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.5s var(--ease);
}
.post:hover .post__more { color: var(--blue); }

/* ---------- Opinie ---------- */
.reviews { padding: 88px 0; }
.reviews__head { margin-bottom: 44px; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review .bezel__core { display: flex; flex-direction: column; gap: 14px; }
.review__stars { color: var(--blue); letter-spacing: 0.22em; }
.review p { color: var(--text-2); font-size: 0.97rem; font-style: italic; }
.review cite { color: var(--text-3); font-style: normal; font-size: 0.8rem; margin-top: auto; }

/* ---------- Opinie CTA + FAQ ---------- */
.reviews__cta { margin-top: 44px; text-align: center; }
.reviews__cta p { color: var(--text-2); margin-bottom: 18px; }
.faq { padding: 88px 0; }
.faq__head { max-width: 640px; margin-bottom: 44px; }
.faq__list { display: grid; gap: 12px; max-width: 820px; }
.faq__item {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  overflow: hidden;
  transition: border-color 0.5s var(--ease);
}
.faq__item[open] { border-color: rgba(59, 130, 246, 0.4); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 52px 20px 24px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.02rem;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 0.5s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 24px 20px; color: var(--text-2); font-size: 0.95rem; }
.faq__item a { color: var(--blue); }

.skip-link {
  position: absolute;
  top: -48px; left: 12px;
  z-index: 200;
  background: var(--blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Kontakt ---------- */
.contact { padding: 88px 0 104px; background: var(--bg-2); }
.contact__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.contact__tel {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.01em;
  margin: 26px 0 34px;
  background: linear-gradient(100deg, var(--blue), #93b8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 0.6s var(--ease);
}
.contact__tel:hover { transform: translateY(-2px); }
.contact__list { list-style: none; display: grid; gap: 20px; }
.contact__list strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
  font-weight: 500;
}
.contact__list span { color: var(--text-2); }
.contact__socials { display: flex; gap: 14px; margin-top: 34px; }
.contact__socials a {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 0.85rem;
  color: var(--text-2);
  transition: border-color 0.5s var(--ease), color 0.5s var(--ease), transform 0.5s var(--ease);
}
.contact__socials a:hover { border-color: var(--blue); color: var(--text); transform: translateY(-2px); }
.contact__map { min-height: 420px; }
.contact__map .bezel__core { padding: 0; overflow: hidden; }
.contact__map iframe { min-height: 420px; filter: grayscale(1) invert(0.92) contrast(0.9) hue-rotate(180deg); }

/* ---------- Stopka ---------- */
.footer { border-top: 1px solid var(--line); padding: 70px 0 30px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__logo {
  font-family: var(--font-head);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer__tag { color: var(--text-3); font-size: 0.88rem; }
.footer__nav { display: grid; gap: 10px; align-content: start; }
.footer__nav a { color: var(--text-2); font-size: 0.9rem; transition: color 0.4s; }
.footer__nav a:hover { color: var(--text); }
.footer__contact { display: grid; gap: 8px; align-content: start; color: var(--text-2); font-size: 0.9rem; }
.footer__contact a { font-family: var(--font-head); font-weight: 600; color: var(--text); font-size: 1.1rem; }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  color: var(--text-3);
  font-size: 0.78rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(46px);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: translateY(0); filter: blur(0); }

/* ---------- Mobile ---------- */
@media (max-width: 920px) {
  .services__grid, .contact__split, .about__split { grid-template-columns: 1fr; }
  .blog__grid, .reviews__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .about__media { position: static; max-width: 360px; margin: 0 auto; }
}
@media (max-width: 768px) {
  body { font-size: 15.5px; }
  .nav__links { display: none; }
  .nav .btn--nav { display: none; }
  .nav__burger { display: block; }
  .nav { gap: 16px; padding: 8px 8px 8px 18px; }
  .blog__grid, .reviews__grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr 1fr; gap: 26px 10px; }
  .about, .services, .gallery, .blog, .reviews { padding: 62px 0; }
  .contact { padding: 62px 0 84px; }
  .hero { height: 460vh; }
  .hero__stage { height: min(64vh, 96vw); }
  .hero__corner {
    max-width: 74vw;
  }
  .hero__corner--tl, .hero__corner--tr { top: 96px; }
  .hero__corner--tr { text-align: right; }
  .hero__corner--bl, .hero__corner--br { bottom: 30px; }
  .hero__progress { right: 12px; height: 90px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- Artykuł (blog) ---------- */
.article-page { padding: 150px 0 110px; }
.article { max-width: 760px; margin: 0 auto; }
.article__crumbs { font-size: 0.8rem; color: var(--text-3); margin-bottom: 26px; }
.article__crumbs a { color: var(--text-2); }
.article__crumbs a:hover { color: var(--text); }
.article h1 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.article__meta { color: var(--text-3); font-size: 0.85rem; margin-bottom: 36px; display: flex; gap: 18px; flex-wrap: wrap; }
.article__lead { font-size: 1.16rem; color: var(--text-2); margin-bottom: 36px; }
.article__toc { margin-bottom: 44px; }
.article__toc .bezel__core { padding: 24px 28px; }
.article__toc strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
  font-weight: 500;
}
.article__toc ol { list-style: none; counter-reset: toc; display: grid; gap: 8px; }
.article__toc li { counter-increment: toc; }
.article__toc a { color: var(--text-2); font-size: 0.94rem; transition: color 0.4s; }
.article__toc a::before { content: counter(toc, decimal-leading-zero) " · "; color: var(--blue); font-family: var(--font-head); font-size: 0.8rem; }
.article__toc a:hover { color: var(--text); }
.article h2 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 44px 0 16px;
  scroll-margin-top: 110px;
}
.article h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; margin: 30px 0 10px; }
.article p { color: var(--text-2); margin-bottom: 16px; }
.article p strong { color: var(--text); font-weight: 500; }
.article ul, .article ol { margin: 0 0 18px 22px; color: var(--text-2); display: grid; gap: 8px; }
.article li::marker { color: var(--blue); }
.article table { width: 100%; border-collapse: collapse; margin: 10px 0 24px; font-size: 0.93rem; }
.article th, .article td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); color: var(--text-2); }
.article th { color: var(--text); font-family: var(--font-head); font-weight: 500; font-size: 0.85rem; }
.article .tip {
  border-left: 2px solid var(--blue);
  background: rgba(59, 130, 246, 0.06);
  border-radius: 0 1rem 1rem 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.article .tip p { margin: 0; color: var(--text); font-size: 0.97rem; }
.article__cta { margin-top: 56px; text-align: center; }
.article__cta .bezel__core { padding: 44px 30px; }
.article__cta h2 { margin: 0 0 10px; }
.article__cta p { margin-bottom: 24px; }
.article__nav { max-width: 760px; margin: 40px auto 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.article__nav a { color: var(--text-2); font-size: 0.9rem; transition: color 0.4s; }
.article__nav a:hover { color: var(--blue); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .hero { height: auto; }
  .hero__sticky { position: relative; height: 100vh; }
  .hero__scene { opacity: 1 !important; }
  .hero__scene:not([data-scene="0"]) { display: none; }
  .hero__scroll-hint { animation: none; }
  .hero__smoke { animation: none; opacity: 0.5; }
}
