/* ==========================================================================
   PAUL DECOR — grawerowana plakieta
   Grafit wizytówki + srebrne kapitaliki + biały pasek. Mosiądz tylko w CTA.
   ========================================================================== */

/* Fonty self-hosted (bez zapytań do fonts.googleapis.com — krótszy łańcuch LCP).
   Archivo to font zmienny: jeden plik obsługuje wagi 100–900. */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/archivo-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/archivo-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Marcellus";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/marcellus-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Marcellus";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/marcellus-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: oklch(0.16 0.004 260);
  --bg-deep: oklch(0.115 0.004 260);
  --surface: oklch(0.195 0.005 260);
  --ink: oklch(0.945 0.003 260);
  --muted: oklch(0.74 0.008 260);
  --steel: oklch(0.85 0.012 260);
  --brass: oklch(0.78 0.09 85);
  --brass-bright: oklch(0.84 0.1 85);
  --on-brass: oklch(0.2 0.05 85);
  --strip-bg: oklch(0.97 0 0);
  --strip-ink: oklch(0.13 0 0);
  --line: oklch(1 0 0 / 0.13);
  --line-soft: oklch(1 0 0 / 0.07);

  --font-display: "Marcellus", "Times New Roman", serif;
  --font-body: "Archivo", "Segoe UI", sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.55s;

  --z-nav: 10;
  --z-skip: 20;

  --space-section: clamp(5.5rem, 12vh, 9rem);
  --container: 72rem;
}

/* Fallback dla przeglądarek bez obsługi oklch() — inaczej wszystkie kolory
   przepadają przy podstawianiu var() i strona traci całą paletę. */
@supports not (color: oklch(0.5 0 0)) {
  :root {
    --bg: #17181b;
    --bg-deep: #0e0f11;
    --surface: #212226;
    --ink: #eeeef0;
    --muted: #a9abb1;
    --steel: #cdced4;
    --brass: #cfae6e;
    --brass-bright: #e0be79;
    --on-brass: #362c12;
    --strip-bg: #f6f6f6;
    --strip-ink: #111113;
    --line: rgba(255, 255, 255, 0.13);
    --line-soft: rgba(255, 255, 255, 0.07);
  }
}

/* ---------- Base ---------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

a { color: var(--ink); }

strong { font-weight: 500; color: var(--ink); }

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

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

.skip-link {
  position: fixed;
  top: 0.75rem; left: 0.75rem;
  z-index: var(--z-skip);
  padding: 0.6rem 1.1rem;
  background: var(--strip-bg);
  color: var(--strip-ink);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transform: translateY(-200%);
}
.skip-link:focus-visible { transform: none; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section { padding-block: var(--space-section); }

.section__title {
  margin: 0 0 clamp(2rem, 5vh, 3.25rem);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--steel);
}

/* ---------- Pasek wizytówki (motyw marki) ---------- */

.strip {
  margin: 0;
  background: var(--strip-bg);
  color: var(--strip-ink);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 0.55em 1.4em 0.55em 1.75em; /* prawy mniejszy: tracking dodaje odstęp po ostatniej literze */
}

/* ---------- Przyciski ---------- */

.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur) var(--ease-out), background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--brass {
  background: var(--brass);
  color: var(--on-brass);
}
.btn--brass:hover { background: var(--brass-bright); }

.btn--ghost {
  border-color: rgba(205, 206, 212, 0.5);
  border-color: oklch(0.85 0.012 260 / 0.5);
  color: var(--ink);
  background: rgba(14, 15, 17, 0.25);
  background: oklch(0.115 0.004 260 / 0.25);
}
.btn--ghost:hover { border-color: var(--steel); background: rgba(14, 15, 17, 0.5); background: oklch(0.115 0.004 260 / 0.5); }

/* ---------- Nawigacja ---------- */

.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: var(--z-nav);
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}
.nav.is-scrolled {
  background: rgba(14, 15, 17, 0.88);
  background: oklch(0.115 0.004 260 / 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-soft);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.1rem clamp(1.25rem, 4vw, 2.5rem);
}
.nav.is-scrolled .nav__inner { padding-block: 0.7rem; }

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  color: var(--steel);
  text-decoration: none;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 1.9rem);
}

.nav__link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ink);
  padding-block: 0.3rem;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--brass);
  transition: right var(--dur) var(--ease-out);
}
.nav__link:hover::after, .nav__link:focus-visible::after { right: 0; }

.nav__tel {
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--brass);
  border: 1px solid rgba(207, 174, 110, 0.45);
  border-color: oklch(0.78 0.09 85 / 0.45);
  padding: 0.42rem 0.95rem;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.nav__tel:hover { border-color: var(--brass); background: rgba(207, 174, 110, 0.1); background: oklch(0.78 0.09 85 / 0.1); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 48px; height: 48px;
  padding: 12px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav__toggle-bar {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:last-child { transform: translateY(-4.25px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute;
    top: 100%;
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
    background: rgba(14, 15, 17, 0.97);
    background: oklch(0.115 0.004 260 / 0.97);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line-soft);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.35s var(--ease-out), visibility 0s linear 0.35s;
  }
  .nav__menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }
  .nav__link { padding-block: 0.85rem; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); }
  .nav__link::after { content: none; }
  .nav__tel { margin-top: 1.1rem; text-align: center; padding-block: 0.8rem; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__media picture, .hero__img {
  width: 100%; height: 100%;
}
.hero__img {
  object-fit: cover;
  object-position: 50% 35%;
  transform: scale(1);
  will-change: transform;
}
.js .hero__img { animation: hero-settle 2.4s var(--ease-out) both; }
@keyframes hero-settle {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(14, 15, 17, 0.94) 0%, rgba(14, 15, 17, 0.55) 34%, rgba(14, 15, 17, 0.12) 62%, rgba(14, 15, 17, 0.25) 100%);
  background:
    linear-gradient(to top, oklch(0.115 0.004 260 / 0.94) 0%, oklch(0.115 0.004 260 / 0.55) 34%, oklch(0.115 0.004 260 / 0.12) 62%, oklch(0.115 0.004 260 / 0.25) 100%);
}

.hero__content {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(4rem, 11vh, 7.5rem);
}

.hero__wordmark {
  margin: 0 0 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0.14em;
  color: var(--steel);
  text-shadow: 0 2px 30px rgba(14, 15, 17, 0.65);
  text-shadow: 0 2px 30px oklch(0.115 0.004 260 / 0.65);
}
.hero__word {
  display: block;
  overflow: hidden;
}
.hero__word span { display: inline-block; }
.js .hero__word span {
  animation: word-rise 1.1s var(--ease-out) both;
}
.js .hero__word:nth-child(2) span { animation-delay: 0.14s; }
@keyframes word-rise {
  from { transform: translateY(110%); }
  to   { transform: none; }
}

.hero__strip {
  display: inline-block;
  margin-bottom: 1.75rem;
}
.js .hero__strip {
  animation: strip-wipe 0.9s var(--ease-out) 0.5s both;
}
@keyframes strip-wipe {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}

.hero__title {
  margin: 0 0 0.65rem;
  max-width: 32ch;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.4;
  color: var(--ink);
}
.hero__lead {
  margin: 0 0 2.1rem;
  max-width: 46ch;
  color: #d3d4d9;
  color: oklch(0.86 0.006 260);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
}
.js .hero__title, .js .hero__lead, .js .hero__actions {
  animation: hero-fade 1s var(--ease-out) 0.75s both;
}
.js .hero__lead { animation-delay: 0.87s; }
.js .hero__actions { animation-delay: 1s; }
@keyframes hero-fade {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__scroll {
  position: absolute;
  right: clamp(1.25rem, 4vw, 2.5rem);
  bottom: 2.2rem;
  width: 1px;
  height: 64px;
  background: rgba(255, 255, 255, 0.35);
  background: oklch(1 0 0 / 0.35);
  overflow: hidden;
}
.hero__scroll::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: -40%;
  height: 40%;
  background: var(--brass);
}
.js .hero__scroll::after { animation: scroll-drip 2.2s cubic-bezier(0.65, 0, 0.35, 1) 1.6s infinite; }
@keyframes scroll-drip {
  from { top: -40%; }
  to   { top: 110%; }
}
@media (max-width: 640px) { .hero__scroll { display: none; } }

/* ---------- O firmie ---------- */

.about { border-bottom: 1px solid var(--line-soft); }

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
@media (max-width: 780px) { .about__grid { grid-template-columns: 1fr; } }

.about__heading {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0.015em;
  color: var(--steel);
}

.about__body { max-width: 62ch; }
.about__body p { margin: 0 0 1.2rem; color: var(--muted); }
.about__body p strong { color: var(--ink); }

.about__facts {
  margin: 2.4rem 0 0;
  border-top: 1px solid var(--line);
}
.about__fact {
  display: grid;
  grid-template-columns: minmax(9rem, 1fr) 2fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.about__fact dt {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: center;
}
.about__fact dd { margin: 0; color: var(--ink); font-weight: 400; }

/* ---------- Usługi ---------- */

.services__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.service {
  position: relative;
  display: grid;
  grid-template-columns: minmax(12rem, 2fr) 3fr auto;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 3rem);
  padding: 1.6rem clamp(0.5rem, 1.5vw, 1.25rem);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.3s ease;
}
.service:hover { background: var(--surface); }

.service__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  letter-spacing: 0.02em;
  color: var(--steel);
}
.service__desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 52ch;
}
.service__arrow {
  color: var(--brass);
  font-size: 1.2rem;
  transition: transform var(--dur) var(--ease-out);
}
.service:hover .service__arrow { transform: translateX(8px); }

@media (max-width: 700px) {
  .service { grid-template-columns: 1fr auto; }
  .service__desc { grid-column: 1 / -1; }
}

/* ---------- Portfolio ---------- */

.portfolio { background: var(--bg-deep); }

.portfolio__intro {
  margin: -1.5rem 0 2.75rem;
  color: var(--muted);
}

/* Przesuwana galeria: scroll-snap + pasek postępu, krawędź wyrównana do kontenera */

.slider__track {
  list-style: none;
  counter-reset: slide;
  margin: 0;
  display: flex;
  gap: clamp(1rem, 2.2vw, 1.75rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  cursor: grab;
  scrollbar-width: none;
  --slider-pad: max(clamp(1.25rem, 4vw, 2.5rem), calc(50vw - 36rem + 2.5rem));
  padding-inline: var(--slider-pad);
  scroll-padding-inline: var(--slider-pad);
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__track.is-dragging,
.slider__track.is-animating {
  scroll-snap-type: none;
}
.slider__track.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.slider__track:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: -2px;
}

.slide {
  flex: 0 0 auto;
  width: min(80vw, 52rem);
  scroll-snap-align: start;
}
@media (max-width: 640px) { .slide { width: 86vw; } }

.slide__btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--surface);
  cursor: zoom-in;
  overflow: hidden;
}
.slide__btn img {
  width: 100%;
  height: auto;
  aspect-ratio: 1334 / 744;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.slide__btn:hover img, .slide__btn:focus-visible img { transform: scale(1.03); }

.slide__caption {
  margin: 0.85rem 0 0;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.slide__caption::before {
  counter-increment: slide;
  content: counter(slide, decimal-leading-zero) "  ·  ";
  color: var(--brass);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}

.slider__bar {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  margin-top: clamp(1.6rem, 4vh, 2.5rem);
}

.slider__nav {
  flex: none;
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.slider__nav:hover { border-color: var(--steel); background: var(--surface); }

.slider__progress {
  flex: 1;
  height: 1px;
  background: var(--line);
  position: relative;
}
.slider__fill {
  position: absolute;
  inset-block: -0.5px;
  left: 0;
  width: 6.667%; /* 1/15 slajdów — JS aktualizuje przy przewijaniu */
  background: var(--brass);
  transition: width 0.2s ease;
}

.slider__count {
  flex: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--steel);
  min-width: 4.2ch;
  text-align: center;
}

/* ---------- Proces ---------- */

.process__grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
}
@media (max-width: 780px) { .process__grid { grid-template-columns: 1fr; } }

.process__head .section__title { margin-bottom: 1rem; }
.process__head { align-self: start; position: sticky; top: 6.5rem; }
@media (max-width: 780px) { .process__head { position: static; } }
.process__intro { margin: 0; color: var(--muted); max-width: 34ch; }

.process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(1.4rem, 3vw, 2.2rem);
  padding-bottom: clamp(2rem, 5vh, 3rem);
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: "";
  position: absolute;
  left: 1.45rem;
  top: 3.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: var(--line);
}
.step:last-child::before { content: none; }

.step__num {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brass);
  background: var(--bg);
}

.step__name {
  margin: 0.45rem 0 0.4rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--steel);
}
.step__desc {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

/* ---------- Partner materiałowy ---------- */

.partner { border-top: 1px solid var(--line-soft); }

.partner__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
@media (max-width: 780px) { .partner__grid { grid-template-columns: 1fr; } }

.partner__intro .section__title { margin-bottom: 1rem; }
.partner__lead {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.3;
  color: var(--steel);
  max-width: 22ch;
}

.partner__statement {
  margin: 0 0 1.8rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.7;
  color: var(--muted);
  max-width: 56ch;
}
.partner__statement strong { color: var(--ink); font-weight: 500; }

.partner__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid rgba(207, 174, 110, 0.4);
  border-bottom-color: oklch(0.78 0.09 85 / 0.4);
  padding-bottom: 0.25rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.partner__link:hover { color: var(--brass-bright); border-bottom-color: var(--brass-bright); }
.partner__arrow { transition: transform var(--dur) var(--ease-out); }
.partner__link:hover .partner__arrow { transform: translateX(6px); }

/* ---------- Opinie ---------- */

.reviews { background: var(--bg-deep); }

.reviews__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}

.quote {
  position: relative;
  margin: 0;
  padding-top: 3.1rem;
}
.quote::before {
  content: "\201E"; /* polski cudzysłów otwierający — ink glifu leży przy dole em-boxa */
  position: absolute;
  top: -1.9rem;
  left: -0.35rem;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--brass);
  opacity: 0.85;
}
.quote p {
  margin: 0 0 1.1rem;
  font-size: 1.02rem;
  color: var(--ink);
}
.quote__by {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Kontakt ---------- */

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2.75rem, 6vw, 5.5rem);
  align-items: start;
}
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } }

.contact__pitch { margin: 0 0 2.2rem; color: var(--muted); max-width: 42ch; }

.contact__meta {
  margin: 0;
  border-top: 1px solid var(--line);
}
.contact__meta > div {
  display: grid;
  grid-template-columns: minmax(9rem, 1fr) 2fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact__meta dt {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: center;
}
.contact__meta dd { margin: 0; }

/* Formularz kontaktowy (FormSubmit.co — POST bez backendu) */

.contact__form {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}

.contact__form-title {
  margin: 0 0 1.6rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--steel);
}

.contact__honey { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.field { margin-bottom: 1.25rem; }

.field__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field__opt { font-weight: 400; text-transform: none; letter-spacing: 0; opacity: 0.7; }

.field__input {
  width: 100%;
  padding: 0.8rem 0.95rem;
  font: inherit;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0;
  transition: border-color 0.25s ease;
}
.field__input:hover { border-color: rgba(255, 255, 255, 0.28); border-color: oklch(1 0 0 / 0.28); }
.field__input:focus-visible { outline: none; border-color: var(--brass); }
.field__input--area { resize: vertical; min-height: 6.5rem; }

.contact__submit { width: 100%; }
.contact__submit[disabled] { opacity: 0.6; cursor: progress; }

.contact__form-note {
  margin: 0.9rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}
.contact__form-note.is-ok { color: var(--brass-bright); }

/* FAQ: rejestr rozwijanych wierszy, natywny <details> (działa bez JS) */

.faq { background: var(--bg-deep); }

.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }

.faq__q {
  display: flex;
  align-items: baseline;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: 1.5rem clamp(0.5rem, 1.5vw, 1.1rem);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  letter-spacing: 0.02em;
  color: var(--steel);
  cursor: pointer;
  list-style: none;
  transition: color 0.25s ease;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--ink); }
.faq__q:focus-visible { outline: 2px solid var(--brass); outline-offset: -2px; }

.faq__q::after {
  content: "+";
  margin-left: auto;
  flex: none;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--brass);
  transition: transform 0.35s var(--ease-out);
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }

.faq__a {
  padding: 0 clamp(0.5rem, 1.5vw, 1.1rem) 1.6rem;
  max-width: 60ch;
}
.faq__a p { margin: 0; color: var(--muted); }

.js .faq__item[open] .faq__a { animation: faq-open 0.5s var(--ease-out) both; }
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* Kanały kontaktu: telefon / e-mail / Facebook jako rejestr wierszy */

.channels {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.channel {
  display: grid;
  grid-template-columns: minmax(6.5rem, auto) 1fr auto;
  align-items: baseline;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: 1.5rem clamp(0.5rem, 1.5vw, 1.1rem);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.channel:hover { background: var(--surface); }

.channel__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.channel__value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  letter-spacing: 0.05em;
  color: var(--steel);
  transition: color 0.25s ease;
}
.channel__value--small { font-size: clamp(1.1rem, 2.4vw, 1.4rem); overflow-wrap: anywhere; }
.channel:hover .channel__value { color: var(--brass-bright); }

.channel__arrow {
  color: var(--brass);
  font-size: 1.2rem;
  transition: transform var(--dur) var(--ease-out);
}
.channel:hover .channel__arrow { transform: translateX(8px); }

@media (max-width: 480px) {
  .channel { grid-template-columns: 1fr auto; }
  .channel__label { grid-column: 1 / -1; }
}

/* ---------- Stopka ---------- */

.footer { background: var(--bg-deep); }

.footer__strip {
  display: block;
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-block: 1.6rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.footer__inner p { margin: 0; }
.footer__links { display: flex; gap: 1.75rem; }
.footer__link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer__link:hover { color: var(--ink); }

/* ---------- Lightbox ---------- */

.lightbox {
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(9, 10, 12, 0.96);
  background: oklch(0.09 0.004 260 / 0.96);
  color: var(--ink);
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
}
.lightbox[open] { display: flex; }
.lightbox::backdrop { background: transparent; }

.lightbox__figure {
  margin: 0;
  max-width: min(88vw, 62rem);
  text-align: center;
}
.lightbox__img {
  max-width: 100%;
  max-height: 82dvh;
  width: auto;
  margin-inline: auto;
  object-fit: contain;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.6);
}
.lightbox__caption {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.lightbox__count { margin-left: 0.6rem; color: #7d7f86; color: oklch(0.55 0.008 260); }

.lightbox__close,
.lightbox__nav {
  flex: none;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(23, 24, 27, 0.6);
  background: oklch(0.16 0.004 260 / 0.6);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { border-color: var(--steel); background: var(--surface); }

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.6rem;
}

@media (max-width: 640px) {
  .lightbox { flex-direction: column; padding: 3.5rem 1rem 1rem; }
  .lightbox__nav { position: absolute; bottom: 1.1rem; }
  .lightbox__nav--prev { left: 1.25rem; }
  .lightbox__nav--next { right: 1.25rem; }
  .lightbox__img { max-height: 68dvh; }
}

/* ---------- Scroll reveal (gated na html.js) ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.9s var(--ease-out);
}
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal--late { transition-delay: 0.12s; }

/* usługi: delikatny stagger przez zmienną ustawianą w JS */
.js .service.reveal { transition-delay: calc(var(--stagger, 0) * 70ms); }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .hero__img,
  .js .hero__word span,
  .js .hero__strip,
  .js .hero__title, .js .hero__lead, .js .hero__actions,
  .js .hero__scroll::after {
    animation: none;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn, .service__arrow, .slide__btn img, .channel__arrow, .slider__fill { transition: none; }
  .faq__q::after, .js .faq__item[open] .faq__a { transition: none; animation: none; }
  .btn:hover { transform: none; }
  .slide__btn:hover img { transform: none; }
  .slider__track { scroll-behavior: auto; }
}
