:root {
  --bg: #0b1220;
  --bg2: #0f172a;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.12);
  --text: #d9e2f2;
  --muted: #97a6bf;
  --white: #fff;
  --primary: #22c7b8;
  --primary-2: #0e9489;
  --accent: #d8c089;
  --ok: #72e0b5;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --shadow-btn: 0 16px 42px rgba(0, 0, 0, 0.55), 0 8px 22px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.28);
  --radius: 20px;
  --radius-btn: 14px;
  --max: 1240px;
}

/* Inter fallback: pliki fontow nie sa publikowane w repo, wiec korzystamy z fontow systemowych. */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-on-scroll,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .photo-slider__track {
    transition: none !important;
  }

  .preloader {
    display: none !important;
  }
}

body {
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(34, 199, 184, 0.1), transparent 30%),
    radial-gradient(circle at bottom right, rgba(216, 192, 137, 0.08), transparent 25%),
    linear-gradient(180deg, #0b1220 0%, #0d1628 100%);
  line-height: 1.6;
  min-height: 100vh;
}

/* Miejsce na pasek zgody (cookies) przy pierwszej wizycie */
html:not(.site-consent-saved) body {
  padding-bottom: min(28vh, 320px);
}

html.site-consent-saved body {
  padding-bottom: 0;
}

body.is-loaded main {
  animation: pageContentIn 0.75s ease forwards;
}

@keyframes pageContentIn {
  from {
    opacity: 0.88;
  }
  to {
    opacity: 1;
  }
}

/* Preloader (jak w makiecie z pełnym ładowaniem) */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #070d18 0%, #0b1528 55%, #0d1a2e 100%);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__ring {
  width: 52px;
  height: 52px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: preloaderSpin 0.85s linear infinite;
}

@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  font: inherit;
}

a.btn {
  text-decoration: none;
}

button.btn {
  font: inherit;
}

.btn-primary {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  color: #fffcf5;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.5),
    0 0 18px rgba(255, 220, 170, 0.12);
  background: transparent;
  border-color: transparent;
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.32),
    0 2px 8px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.14);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  /* Cieplejsze złoto: jaśniejszy róg → odrobinę ciemniejszy drugi (bez „papieru”) */
  background: linear-gradient(
    138deg,
    #d4b56a 0%,
    #b8943e 34%,
    #9c7a30 62%,
    #7f6326 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 3px 3px 14px rgba(255, 236, 190, 0.2),
    inset -4px -4px 16px rgba(25, 18, 8, 0.28);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -55%;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.78;
  background: linear-gradient(
    118deg,
    transparent 38%,
    rgba(255, 255, 255, 0.06) 44%,
    rgba(255, 252, 240, 0.75) 48.5%,
    rgba(255, 235, 190, 0.55) 50%,
    rgba(255, 210, 140, 0.28) 52%,
    rgba(200, 165, 90, 0.08) 55%,
    transparent 62%,
    transparent 100%
  );
  background-size: 280% 280%;
  background-position: -40% -40%;
  animation: btnSheenDiagonal 3.4s linear infinite;
}

.btn-primary:hover {
  transform: translateY(-1px);
  border-color: transparent;
  color: #fff;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.34),
    0 3px 10px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 0 22px rgba(255, 200, 120, 0.22),
    0 0 36px rgba(255, 215, 150, 0.1);
}

/* Obok primary: drugi przycisk — szkło / obrys, nie drugie złoto */
.btn-secondary {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  color: #fffcf5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 7px 20px rgba(0, 0, 0, 0.28),
    0 2px 6px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 1px 1px 0 rgba(255, 250, 235, 0.05),
    inset -2px 2px 0 rgba(0, 0, 0, 0.16);
}

.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(52, 46, 38, 0.45) 28%,
    rgba(28, 26, 22, 0.78) 52%,
    rgba(14, 12, 10, 0.9) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 2px 2px 0 rgba(255, 245, 225, 0.04),
    inset -2px 2px 0 rgba(0, 0, 0, 0.22);
}

.btn-secondary::after {
  content: "";
  position: absolute;
  inset: -55%;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.45;
  background: linear-gradient(
    125deg,
    transparent 40%,
    rgba(255, 255, 255, 0.03) 46%,
    rgba(230, 245, 255, 0.14) 49.2%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(216, 192, 137, 0.08) 51.2%,
    transparent 56%,
    transparent 100%
  );
  background-size: 270% 270%;
  background-position: -42% -42%;
  animation: btnSheenDiagonal 4.6s linear infinite 0.35s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-1px);
  color: #fff;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.32),
    0 3px 10px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 14px rgba(216, 192, 137, 0.12);
}

@keyframes btnSheenDiagonal {
  0% {
    background-position: -45% -45%;
  }
  100% {
    background-position: 145% 145%;
  }
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 2px solid rgba(216, 192, 137, 0.85);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary::before {
    background: linear-gradient(138deg, #d4b56a 0%, #b8943e 45%, #7f6326 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.24),
      inset 3px 3px 14px rgba(255, 236, 190, 0.16),
      inset -4px -4px 16px rgba(25, 18, 8, 0.24);
  }

  .btn-secondary::before {
    background: linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(48, 42, 34, 0.5) 40%,
      rgba(16, 14, 12, 0.88) 100%
    );
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      inset 2px 2px 0 rgba(255, 245, 225, 0.03),
      inset -2px 2px 0 rgba(0, 0, 0, 0.18);
  }

  .btn-primary::after,
  .btn-secondary::after {
    animation: none;
    opacity: 0.42;
    background-position: 20% 20%;
  }

  .btn-secondary::after {
    opacity: 0.32;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(34, 199, 184, 0.12);
}

/*
  Sticky + tło na wrapperze; bez backdrop-filter — inaczej Chrome tworzy
  containing block dla position:fixed i szuflada menu ma wysokość ~0
  (zwężanie okna / responsywny tryb na desktopie).
*/
.site-header-cluster {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 20px);
  width: 100%;
  box-sizing: border-box;
  padding-block: 10px;
  padding-inline: clamp(16px, 4vw, 40px);
  background: rgba(8, 13, 23, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/*
  Musi być > .nav-backdrop (100060). Wcześniejsze 10070 to tylko ~10 tys.
  — backdrop był NAD całym klastrem i „zjadał” kliknięcia w menu mobilnym.
*/
html.nav-open .site-header-cluster {
  z-index: 100080;
}

header,
.site-header {
  position: static;
  flex: 1;
  min-width: 0;
  z-index: auto;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-sizing: border-box;
}

/* Baner: stała szerokość treści jak reszta strony, wyśrodkowany */
header .container.nav {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
}

.site-header-cluster > .nav-links {
  flex: 0 1 auto;
  min-width: 0;
}

.nav {
  min-height: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  padding-block: 2px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  min-width: 0;
  text-align: left;
}

.logo-box {
  background: #fff;
  border-radius: 8px;
  padding: 2px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  width: fit-content;
  min-width: 0;
  max-width: min(280px, 50vw);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

.logo-box img {
  display: block;
  width: auto;
  height: auto;
  max-height: 44px;
  max-width: 100%;
  margin: auto;
  object-fit: contain;
  object-position: center center;
  flex: 0 1 auto;
}

.brand-text strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.2;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.9rem;
}

.brand-tagline {
  color: var(--accent) !important;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.1vw, 16px);
  flex-wrap: nowrap;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: clamp(0.8rem, 0.82rem + 0.15vw, 0.92rem);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-links .btn {
  flex-shrink: 0;
  padding-inline: clamp(10px, 1.2vw, 18px);
  font-size: clamp(0.78rem, 0.8rem + 0.12vw, 0.88rem);
}

.nav-links a.btn {
  color: #fffcf5;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.5),
    0 0 14px rgba(255, 220, 170, 0.1);
}

.nav-links a.btn:hover {
  color: #fff;
}

.nav-links a:not(.btn):hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

html.nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

html.nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

html.nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

.hero-line--stack .hero-line__lead,
.hero-line--stack .hero-line__rest {
  display: inline;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5.5rem, 12vh, 8rem) 0 clamp(4rem, 10vh, 6.5rem);
  box-sizing: border-box;
  background:
    linear-gradient(165deg, rgba(8, 13, 23, 0.92) 0%, rgba(10, 18, 32, 0.94) 45%, rgba(8, 13, 23, 0.96) 100%),
    radial-gradient(ellipse 90% 60% at 70% 0%, rgba(34, 199, 184, 0.1), transparent 45%),
    var(--bg);
}

.hero__lcp {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(34, 199, 184, 0.1), transparent 26%),
    radial-gradient(circle at 15% 85%, rgba(216, 192, 137, 0.07), transparent 20%);
  pointer-events: none;
  z-index: 1;
}

.hero .eyebrow {
  margin-bottom: clamp(1.1rem, 3vh, 1.65rem);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  width: 100%;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: clamp(2.25rem, 5vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: clamp(1.25rem, 3vh, 1.75rem);
}

.hero-line {
  display: block;
}

.hero-line--gold {
  color: var(--accent);
  font-weight: 800;
}

.hero-line--white {
  color: #fff;
  font-weight: 700;
  font-size: 0.62em;
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 640px;
  color: var(--text);
  font-size: clamp(1.05rem, 2.1vw, 1.15rem);
  margin-bottom: clamp(1.75rem, 4vh, 2.5rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.section-about-bg {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(4.5rem, 11vh, 7.5rem);
  box-sizing: border-box;
}

.section-about-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../bg/bg-02.webp") center / cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.section-about-bg > .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.section-dla-kogo-bg {
  position: relative;
  overflow: hidden;
}

/* Dla kogo — to samo tło co Lokalizacja (biel → lekki róż), sekcja niższa (bez pełnego viewportu) */
#dla-kogo {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fffdfd 14%,
    #fdf6f8 38%,
    #f9ecf1 68%,
    #f5e4ec 100%
  );
  color: #2a2228;
  padding-block: clamp(2.5rem, 5.5vh, 3.75rem);
  min-height: 0;
}

.section-dla-kogo-bg > .container {
  position: relative;
  z-index: 1;
  width: min(92%, 680px);
  max-width: 680px;
  margin-inline: auto;
}

#dla-kogo .section-header h2 {
  color: #1a1419;
}

#dla-kogo .section-header p {
  color: #5a4a52;
}

#dla-kogo .eyebrow {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(200, 150, 165, 0.4);
  color: #6b4d58;
}

#dla-kogo .eyebrow::before {
  background: #c995a3;
  box-shadow: 0 0 0 6px rgba(200, 140, 155, 0.18);
}

#dla-kogo .tags {
  justify-content: center;
}

#dla-kogo .tag {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(190, 140, 155, 0.42);
  color: #45363d;
}

.section-oferta-bg {
  position: relative;
  overflow: hidden;
}

.section-oferta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../bg/bg-01.webp") center / cover no-repeat;
  opacity: 0.11;
  pointer-events: none;
  z-index: 0;
}

.section-oferta-bg > .container {
  position: relative;
  z-index: 1;
}

.section-contact-bg {
  position: relative;
  overflow: hidden;
}

.section-contact-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../bg/bg-01.webp") center / cover no-repeat;
  opacity: 0.11;
  pointer-events: none;
  z-index: 0;
}

.section-contact-bg > .container {
  position: relative;
  z-index: 1;
}

/* Lokalizacja — biel przechodząca w czysty, lekki róż */
#lokalizacja {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fffdfd 14%,
    #fdf6f8 38%,
    #f9ecf1 68%,
    #f5e4ec 100%
  );
  color: #2a2228;
}

#lokalizacja > .container {
  position: relative;
  z-index: 1;
}

#lokalizacja .section-header h2 {
  color: #1a1419;
}

#lokalizacja .section-header p {
  color: #5a4a52;
}

#lokalizacja .section-header p strong {
  color: #3d2f36;
}

#lokalizacja .eyebrow {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(200, 150, 165, 0.4);
  color: #6b4d58;
}

#lokalizacja .eyebrow::before {
  background: #c995a3;
  box-shadow: 0 0 0 6px rgba(200, 140, 155, 0.18);
}

#lokalizacja .map-box {
  border-color: rgba(190, 140, 155, 0.35);
  box-shadow: 0 12px 32px rgba(70, 40, 50, 0.08);
}

/* Szczegóły — między Lokalizacją a O nas: dwie kolumny na desktopie */
.section-szczegoly-bg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0c1528 0%, #0a101c 55%, #0b1220 100%);
}

.section-szczegoly-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../bg/bg-01.webp") center / cover no-repeat;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

.section-szczegoly-bg > .container {
  position: relative;
  z-index: 1;
}

.szczegoly-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
  max-width: 1080px;
  margin-inline: auto;
}

.szczegoly-col h3 {
  color: #fff;
  font-size: clamp(1.2rem, 2.2vw, 1.42rem);
  font-weight: 700;
  line-height: 1.28;
  margin: 0 0 1.35rem;
  letter-spacing: -0.02em;
}

.szczegoly-block {
  margin-bottom: 1.35rem;
}

.szczegoly-block:last-child {
  margin-bottom: 0;
}

.szczegoly-block h4 {
  color: var(--accent);
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  line-height: 1.35;
}

.szczegoly-block p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.68;
}

section {
  padding: 88px 0;
}

.section-about-bg .section-header {
  margin-bottom: clamp(2.5rem, 6vh, 3.5rem);
}

.section-about-bg .grid-2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  gap: clamp(1.25rem, 3.5vw, 1.85rem);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.section-header {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-header h2 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
  font-size: 1.04rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
}

.feature-card {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 199, 184, 0.34);
}

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(34, 199, 184, 0.2), rgba(216, 192, 137, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}

.feature-card h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.feature-card p {
  color: var(--muted);
}

.list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(34, 199, 184, 0.12);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.stat {
  padding: 24px;
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.stat span {
  color: var(--muted);
  font-size: 0.94rem;
}

.tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.tag {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

/* Photo slider */
.photo-slider {
  --slider-inner-radius: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

/*
  Proporcja 4:3 — kadrowanie przez viewport; zdjęcia w slajdzie: object-fit: cover
  (bez filarów), pełne wypełnienie + overflow + ten sam radius co kontener.
*/
.photo-slider__viewport {
  --slide-count: 1;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  aspect-ratio: 4 / 3;
  max-height: 70vh;
  border-radius: var(--slider-inner-radius);
  overflow: hidden;
  background: #0c121d;
}

/*
  Szerokość tracku = n × szerokość viewportu (JS ustawia --slide-count).
  Każdy slajd: 1/n szerokości tracku — inaczej % w flex bywa błędnie liczone
  i tylko pierwszy obraz ma sensowny rozmiar / tylko jedno żądanie sieciowe.
*/
.photo-slider__track {
  display: flex;
  height: 100%;
  min-height: 0;
  width: calc(var(--slide-count) * 100%);
  border-radius: var(--slider-inner-radius);
  overflow: hidden;
  transition: transform 0.55s ease;
}

.photo-slider__slide {
  flex: 0 0 calc(100% / var(--slide-count));
  height: 100%;
  min-height: 0;
  min-width: 0;
  position: relative;
  display: block;
  padding: 0;
  box-sizing: border-box;
  border-radius: var(--slider-inner-radius);
  overflow: hidden;
  background: #0c121d;
}

.photo-slider__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: rgba(34, 199, 184, 0.08);
}

.photo-slider__slide img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  filter: saturate(0.86) contrast(1.05) brightness(0.86);
}

.photo-slider__empty {
  padding: 48px 24px;
  text-align: center;
  color: var(--muted);
  min-height: 280px;
  display: grid;
  place-items: center;
}

.photo-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(8, 13, 23, 0.75);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  line-height: 1;
  transition: background 0.2s;
}

.photo-slider__btn:hover {
  background: rgba(34, 199, 184, 0.35);
}

.photo-slider__btn--prev {
  left: 12px;
}

.photo-slider__btn--next {
  right: 12px;
}

.photo-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  flex-wrap: wrap;
}

.photo-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.photo-slider__dot[aria-current="true"] {
  background: var(--primary);
  transform: scale(1.15);
}

.contact-form-only {
  max-width: 720px;
  margin-inline: auto;
}

.form-wrap {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(34, 199, 184, 0.12), rgba(216, 192, 137, 0.07)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-wrap h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.form-wrap > p {
  color: var(--muted);
  margin-bottom: 22px;
}

/* Honeypot antyspam: poza ekranem i wycinany — bez etykiety widocznej dla użytkownika */
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.hp-field input {
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}

.contact-flash {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-flash--ok {
  background: rgba(34, 199, 184, 0.18);
  border: 1px solid rgba(34, 199, 184, 0.45);
  color: #b8f5ec;
}

.contact-flash--err {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fecaca;
}

form {
  display: grid;
  gap: 16px;
}

#contactForm {
  position: relative;
}

#contactForm button[type="submit"] {
  justify-self: center;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #a8b5c9;
}

input:focus,
textarea:focus {
  border-color: rgba(34, 199, 184, 0.6);
  box-shadow: 0 0 0 4px rgba(34, 199, 184, 0.1);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkbox input {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.map-box {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 420px;
  background: #111;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.info-box {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-box h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

/* Lokalizacja — karta „Adres dojazdu”: bg-01 + przyciemnienie pod tekst (jak inne sekcje z tłem) */
#lokalizacja .info-box {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(
      165deg,
      rgba(10, 12, 20, 0.9) 0%,
      rgba(12, 14, 22, 0.82) 45%,
      rgba(14, 11, 18, 0.88) 100%
    ),
    url("../bg/bg-01.webp") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  color: var(--text);
}

#lokalizacja .info-box h3 {
  color: #fff;
}

#lokalizacja .info-box p,
#lokalizacja .info-box .list li {
  color: var(--text);
}

#lokalizacja .info-box p strong,
#lokalizacja .info-box strong {
  color: #fff;
  font-weight: 700;
}

#lokalizacja .info-box .list li::before {
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(34, 199, 184, 0.16);
}

footer {
  padding: clamp(2.5rem, 6vh, 3.5rem) 0 clamp(2rem, 5vh, 2.75rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(2rem, 5vh, 2.75rem);
}

.footer-col {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  border-radius: 0;
}

.footer-col--wide {
  margin-bottom: clamp(1.75rem, 4vh, 2.25rem);
}

.footer-col h4 {
  color: #fff;
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-col p,
.footer-col a,
.footer-col li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer-col a:hover {
  color: #fff;
}

.footer-address-link {
  text-decoration: none;
  cursor: pointer;
}

.footer-address-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-address-link:hover .footer-strong {
  color: var(--primary);
}

.footer-strong {
  color: #fff;
  font-weight: 600;
}

.footer-lead {
  margin: 0 0 0.75rem;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-bottom__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0;
}

.footer-bottom__sep {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

.footer-bottom__copy {
  margin: 0;
}

.footer-bottom a {
  color: var(--primary);
}

.footer-bottom a:hover {
  color: #fff;
}

/* Zgoda (pierwsza wizyta) — pasek od dołu; klasy neutralne — mniej kolizji z filtrami rozszerzeń */
.site-consent-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100050;
  min-height: 25vh;
  max-height: 40vh;
  display: flex;
  align-items: center;
  background: linear-gradient(0deg, rgba(6, 10, 18, 0.98) 0%, rgba(12, 20, 36, 0.96) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -16px 48px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  padding: 20px 0 24px;
}

html.site-consent-saved .site-consent-dock {
  display: none !important;
}

.site-consent-dock__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-consent-dock__title {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.site-consent-dock__desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 52rem;
  margin: 0;
}

.site-consent-dock__desc a {
  color: var(--primary);
  text-decoration: underline;
}

.site-consent-dock__desc a:hover {
  color: #fff;
}

.site-consent-dock__actions {
  flex-shrink: 0;
}

.site-consent-reopen {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 100040;
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-btn);
  background: rgba(10, 16, 28, 0.94);
  color: var(--primary);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  transition: background 0.2s, transform 0.2s, color 0.2s;
}

html.site-consent-saved .site-consent-reopen {
  display: grid;
}

.site-consent-reopen:hover {
  background: rgba(20, 32, 52, 0.98);
  color: #fff;
  transform: translateY(-2px);
}

.site-consent-reopen__icon {
  display: block;
}

.site-consent-flyout {
  position: fixed;
  left: 14px;
  bottom: 72px;
  z-index: 100041;
  max-width: min(340px, calc(100vw - 28px));
  padding: 18px 20px;
  border-radius: var(--radius-btn);
  background: rgba(12, 20, 36, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: 0.92rem;
}

.site-consent-flyout[hidden] {
  display: none !important;
}

.site-consent-flyout__title {
  color: #fff;
  font-weight: 700;
  margin: 0 0 8px;
}

.site-consent-flyout__text {
  color: var(--muted);
  margin: 0;
}

.site-consent-flyout__text a {
  color: var(--primary);
}

@media (max-width: 1100px) {
  .grid-2,
  .grid-3,
  .map-grid,
  .szczegoly-grid,
  .footer-top,
  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  /*
    Hamburger + szuflada ≤1024px (DevTools / wąski desktop).
    Nav i backdrop są poza <header> — position:fixed względem viewportu.
  */

  html.nav-open {
    overflow: hidden;
  }

  .nav {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-block: 6px 8px;
  }

  .brand {
    justify-content: flex-start;
    flex: 1;
    min-width: 0;
    gap: 10px;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-text strong {
    font-size: clamp(0.88rem, 3.8vw, 1.02rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-text .brand-tagline {
    display: block;
    font-size: clamp(0.72rem, 3vw, 0.85rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 100062;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100060;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(4, 8, 16, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.28s ease,
      visibility 0.28s ease;
  }

  html.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links {
    position: fixed;
    z-index: 100061;
    top: var(--nav-drawer-top, 56px);
    right: 0;
    bottom: auto;
    width: min(320px, 90vw);
    max-width: 100%;
    height: calc(100dvh - var(--nav-drawer-top, 56px));
    min-height: 280px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 20px 20px 28px;
    padding-bottom: max(28px, env(safe-area-inset-bottom, 0px));
    margin: 0;
    background: linear-gradient(180deg, rgba(12, 18, 32, 0.98) 0%, rgba(8, 13, 23, 0.99) 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  html.nav-open .nav-links {
    transform: translateX(0);
  }

  .nav-links a {
    white-space: normal;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    padding: 14px 12px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links a:last-of-type {
    border-bottom: none;
  }

  .nav-links a:not(.btn):hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
  }

  .nav-links .btn {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
    padding-block: 14px;
  }

  .hero {
    min-height: 100svh;
    padding-top: clamp(5.25rem, 14vw, 7rem);
    padding-bottom: clamp(3.5rem, 10vh, 5.5rem);
    padding-inline: clamp(18px, 5.5vw, 28px);
  }

  .hero .container.hero-inner {
    width: 100%;
    max-width: var(--max);
    padding-inline: clamp(4px, 1.5vw, 12px);
  }

  .hero-line--stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.12em;
    line-height: 1.12;
  }

  .hero-line--stack .hero-line__sp {
    display: none;
  }

  .hero-line--stack .hero-line__lead,
  .hero-line--stack .hero-line__rest {
    display: block;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 6.8vw, 2.35rem);
    letter-spacing: -0.03em;
    margin-bottom: clamp(1.1rem, 3.5vh, 1.65rem);
  }

  .hero-line--white {
    font-size: clamp(0.58em, 4.2vw, 0.62em);
    line-height: 1.35;
  }

  .hero .eyebrow {
    margin-bottom: clamp(1rem, 2.8vh, 1.4rem);
    font-size: clamp(0.82rem, 3.2vw, 0.92rem);
  }

  .hero-lead {
    font-size: clamp(0.98rem, 3.8vw, 1.08rem);
    line-height: 1.68;
    margin-bottom: clamp(1.5rem, 4vh, 2.1rem);
  }

  .section-about-bg {
    min-height: 100svh;
    padding-block: clamp(3.5rem, 9vh, 5.5rem);
  }

  #dla-kogo {
    padding-block: clamp(2.25rem, 5vh, 3.25rem);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .site-header-cluster {
    padding-block: 8px;
    padding-inline: clamp(14px, 4vw, 20px);
  }

  .logo-box {
    height: auto;
    max-width: min(260px, 88vw);
    padding: 2px 10px;
  }

  .logo-box img {
    max-height: 40px;
  }

  .site-consent-dock__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .site-consent-dock__actions .btn {
    width: 100%;
  }
}
