/* ============================================================
   POD NOŻYCZKAMI – Stylesheet
   Jasny, elegancki motyw · czerń + złoto/szampan
   ============================================================ */

/* ---------- Zmienne ----------------------------------------- */
:root {
  --bg:           #F6F2EB;   /* ciepła kość słoniowa */
  --bg-alt:       #F0EAE0;
  --surface:      #FFFFFF;
  --ink:          #16130F;   /* prawie czerń */
  --ink-soft:     #2C2722;
  --text:         #34302A;
  --muted:        #837A6E;
  --gold:         #C19A5B;
  --gold-light:   #E2C088;
  --gold-dark:    #A07D3E;
  --line:         #E6DCCB;
  --radius:       16px;
  --radius-sm:    10px;
  --shadow:       0 10px 40px rgba(40,30,15,0.10);
  --shadow-sm:    0 4px 18px rgba(40,30,15,0.08);
  --shadow-gold:  0 8px 26px rgba(193,154,91,0.32);
  --max-w:        980px;
  --serif:        'Cormorant Garamond', Georgia, serif;
  --display:      'Montserrat', system-ui, sans-serif;
  --script:       'Dancing Script', cursive;
  --sans:         'Inter', system-ui, -apple-system, sans-serif;
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

.container { width: min(var(--max-w), 100% - 2.5rem); margin-inline: auto; }
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Stałe tło całej strony (parallax) --------------- */
/* Kremowe tło + delikatna złota poświata. Treść przewija się po nim. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-color: var(--bg);
  background-image: radial-gradient(900px 650px at 50% 2%, rgba(193,154,91,0.12), transparent 60%);
}
/* Logo jako subtelny znak wodny (nieruchomy).
   Siłę reguluj przez 'opacity'. Aby zmienić logo – podmień plik w 'url(...)'. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  /* Rozmiar znaku wodnego (desktop) – prawie cała szerokość */
  background: url('assets/logo-wm.png') no-repeat center 44% / min(940px, 90vw);
}

/* ---------- SVG sprite (ukryty) ----------------------------- */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ============================================================
   EKRAN BLOKADY
   ============================================================ */
.lock-overlay {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(193,154,91,0.18), transparent 60%),
    var(--bg);
}
.lock-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.75rem 2.25rem;
  text-align: center;
  width: min(400px, 100%);
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.lock-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}
.lock-emblem { width: 90px; height: 90px; object-fit: contain; margin: 0 auto 1.4rem; filter: saturate(0.72) brightness(0.82); }
.lock-card h2 {
  font-family: var(--display); font-weight: 800; letter-spacing: 0.02em;
  font-size: 1.4rem; color: var(--ink); margin-bottom: 0.4rem;
}
.lock-card .lock-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.9rem; }
.lock-form { display: flex; flex-direction: column; gap: 0.8rem; }
.lock-form input {
  width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); font-family: var(--sans); font-size: 1rem;
  background: var(--bg); color: var(--ink); outline: none; text-align: center;
  letter-spacing: 0.18em; transition: border-color 0.2s, box-shadow 0.2s;
}
.lock-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(193,154,91,0.15); }
.lock-form button {
  padding: 0.85rem 1rem; background: var(--ink); color: #fff; border: none;
  border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; letter-spacing: 0.05em; transition: background 0.2s, transform 0.1s;
}
.lock-form button:hover { background: var(--gold-dark); }
.lock-form button:active { transform: scale(0.98); }
.lock-error { color: #b23b3b; font-size: 0.85rem; }

/* ============================================================
   POPUP PROMOCJI
   ============================================================ */
.promo-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.72);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 1rem;
  overflow-y: auto;
  opacity: 1; transition: opacity 0.3s ease;
}
@media (min-height: 600px) {
  .promo-overlay { align-items: center; }
}
.promo-overlay.hidden { display: none; }
.promo-overlay.fading { opacity: 0; pointer-events: none; }

.promo-box {
  position: relative; max-width: 520px; width: 100%;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  animation: promoIn 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes promoIn {
  from { transform: scale(0.82); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.promo-img {
  display: block; width: 100%; height: auto;
  border-radius: 12px;
}
.promo-text {
  display: none; /* widoczny tylko gdy brak obrazka */
  background: var(--ink); color: rgba(255,255,255,0.9);
  padding: 1.5rem 2rem; font-size: 1.05rem; text-align: center; line-height: 1.6;
}
.promo-text:not(:empty) { display: block; }

.promo-close {
  position: absolute; top: 10px; right: 12px;
  background: rgba(0,0,0,0.55); border: none; color: #fff;
  font-size: 1.1rem; line-height: 1; width: 32px; height: 32px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.promo-close:hover { background: rgba(0,0,0,0.82); }

/* ============================================================
   LICZNIK ODLICZAJĄCY
   ============================================================ */
.countdown {
  margin: 1.4rem auto 0.2rem;
  text-align: center;
}
.countdown-label {
  font-family: var(--display); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 0.6rem;
}
.countdown-grid {
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.cd-item {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(193,154,91,0.10); border: 1px solid rgba(193,154,91,0.25);
  border-radius: 10px; padding: 0.5rem 0.9rem; min-width: 64px;
}
.cd-item span {
  font-family: var(--display); font-size: 2rem; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.cd-item small {
  font-size: 0.6rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold-light); margin-top: 0.2rem;
}
.cd-sep {
  font-size: 1.6rem; font-weight: 700; color: var(--gold);
  line-height: 1; padding-bottom: 1rem;
}
@media (max-width: 480px) {
  .cd-item { min-width: 52px; padding: 0.4rem 0.6rem; }
  .cd-item span { font-size: 1.5rem; }
  .cd-sep { font-size: 1.2rem; }
}

/* ============================================================
   GALERIA
   ============================================================ */
.section-gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-item {
  background: none; border: none; cursor: pointer; padding: 0;
  aspect-ratio: 1; overflow: hidden; border-radius: var(--radius-sm);
  position: relative;
}
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(193,154,91,0.0);
  transition: background 0.25s;
}
.gallery-item:hover::after { background: rgba(193,154,91,0.18); }
.gallery-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.35s var(--ease);
}
.gallery-item:hover .gallery-img { transform: scale(1.04); }
.gallery-empty, .gallery-loading {
  grid-column: 1/-1; text-align: center; color: var(--muted);
  font-size: 1rem; padding: 3rem 0;
}

/* Strona galeria.html */
.gallery-page-section { padding-top: 3rem; }
.nav-back {
  font-size: 0.85rem; color: var(--muted);
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.nav-back:hover { color: var(--gold); }
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
}
.lb-img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain; border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lb-close {
  position: fixed; top: 1rem; right: 1.2rem;
  background: rgba(255,255,255,0.12); border: none; color: #fff;
  font-size: 1.4rem; width: 40px; height: 40px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.28); }
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.10); border: none; color: #fff;
  font-size: 2.4rem; width: 48px; height: 64px; border-radius: 8px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; line-height: 1;
}
.lb-prev { left: 0.6rem; }
.lb-next { right: 0.6rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.22); }

/* ============================================================
   MAPA
   ============================================================ */
.section-map { background: var(--bg-alt); }
.map-wrap {
  display: flex; flex-direction: column; gap: 1rem;
  align-items: stretch;
}
.map-frame {
  width: 100%; height: 380px; border: none;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.map-nav-btn {
  align-self: center;
  width: auto; padding-inline: 2.5rem;
}
@media (max-width: 640px) {
  .map-frame { height: 260px; }
}

/* ============================================================
   NAGŁÓWEK
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,242,235,0.82);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); background: rgba(246,242,235,0.94); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 0.7rem; }

.brand { display: flex; align-items: center; gap: 0.5rem; color: var(--ink); }
.brand-mark { height: 42px; width: auto; display: block; object-fit: contain; }
.brand-tagline { font-size: 0.6rem; letter-spacing: 0.28em; color: var(--gold-dark); text-transform: uppercase; font-weight: 600; }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  display: inline-flex; align-items: center; gap: 0.32rem;
  font-size: 0.82rem; font-weight: 500; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase; position: relative; padding-block: 4px;
  transition: color 0.2s;
}
.nav-links a svg { width: 14px; height: 14px; flex-shrink: 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gold); transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 0.78rem !important; font-weight: 600 !important; color: var(--ink) !important;
  border: 1.5px solid var(--gold); padding: 0.5rem 1rem !important; border-radius: 100px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold); color: #fff !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100svh - 60px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding-block: 3rem 2rem; overflow: hidden;
  /* Tło dostarcza globalna warstwa body::before (parallax). */
}
/* Tła dekoracyjne */
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-glow {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 900px; max-width: 120vw; height: 700px;
  background: radial-gradient(closest-side, rgba(193,154,91,0.12), rgba(193,154,91,0.03) 60%, transparent 75%);
}
/* Tło hero ma już znak wodny logo – ukrywamy zdublowane nożyczki */
.hero .hero-watermark { display: none; }
.hero-brush { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }
.hero-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-48%);
  width: 520px; max-width: 90vw; color: var(--gold); opacity: 0.06;
}
.floaty { position: absolute; color: var(--gold); opacity: 0.10; }
.floaty.s1 { width: 70px; top: 14%; left: 9%; animation: float1 9s ease-in-out infinite; }
.floaty.s2 { width: 54px; bottom: 16%; right: 11%; animation: float2 11s ease-in-out infinite; }
.floaty.s3 { width: 44px; top: 22%; right: 16%; animation: float1 13s ease-in-out infinite; }

.hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }

/* ---------- WORDMARK (Pod Nożyczkami) ----------------------- */
.wordmark { position: relative; margin-bottom: 0.75rem; }
.wordmark-img { width: min(620px, 88vw); height: auto; margin-inline: auto; }
.wm-pod {
  font-family: var(--script); font-weight: 700;
  font-size: clamp(2.4rem, 9vw, 4.4rem);
  color: var(--gold-dark);
  position: absolute; top: -0.62em; left: 50%;
  transform: translateX(-58%) rotate(-7deg);
  z-index: 3; pointer-events: none; line-height: 1;
  text-shadow: 0 2px 10px rgba(160,125,62,0.18);
}
.wm-line {
  display: inline-flex; align-items: flex-end; justify-content: center;
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.6rem, 11vw, 5.6rem);
  color: var(--ink); letter-spacing: -0.01em; line-height: 0.95;
}
.wm-line .wm-text { display: inline-block; }
.wm-sciss {
  width: auto; height: 1.42em; color: var(--ink);
  margin: 0 -0.04em; transform: translateY(0.06em);
}

.hero-tagline {
  margin-top: 1.6rem; display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--sans); font-size: clamp(0.9rem, 3vw, 1.15rem);
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500;
}
.hero-tagline::before, .hero-tagline::after {
  content: ""; width: clamp(24px, 8vw, 54px); height: 1px; background: var(--gold);
}

/* Pasek zaufania */
.trust {
  margin-top: 1.5rem; display: flex; align-items: center; gap: clamp(0.8rem, 4vw, 2.2rem);
  flex-wrap: wrap; justify-content: center;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.trust-item svg { width: 17px; height: 17px; color: var(--gold-dark); }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ---------- Przyciski akcji --------------------------------- */
.action-buttons {
  margin-top: 2.2rem; display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.8rem; width: min(460px, 100%);
}
.btn-action {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1rem 1rem; border-radius: var(--radius); font-size: 0.92rem; font-weight: 600;
  cursor: pointer; border: none; letter-spacing: 0.01em; text-align: center;
  transition: transform 0.18s var(--ease), box-shadow 0.25s, background 0.25s, color 0.2s;
  position: relative; overflow: hidden;
}
.btn-action svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-wide { grid-column: 1 / -1; padding: 1.1rem; font-size: 1rem; }
.btn-wide svg { width: 22px; height: 22px; }
.btn-action:hover { transform: translateY(-3px); }
.btn-action:active { transform: translateY(-1px) scale(0.99); }

.btn-primary { color: #fff; background: linear-gradient(135deg, var(--ink), var(--ink-soft)); box-shadow: 0 8px 24px rgba(22,19,15,0.28); transition: transform 0.18s var(--ease), box-shadow 0.3s, color 0.3s; }
.btn-primary::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  opacity: 0; transition: opacity 0.38s var(--ease);
}
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary:hover { color: var(--ink); box-shadow: var(--shadow-gold); }
.btn-primary:hover::after { opacity: 1; }

.btn-gold { color: var(--ink); background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: var(--shadow-gold); }
.btn-gold:hover { box-shadow: 0 12px 32px rgba(193,154,91,0.42); }

.btn-outline { color: var(--ink); background: var(--surface); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); }

/* ---------- Ikony kontaktowe -------------------------------- */
.contact-icons { display: flex; gap: 0.85rem; margin-top: 1.6rem; align-items: center; }
.contact-icon {
  width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line); border-radius: 50%; color: var(--muted); background: var(--surface);
  transition: transform 0.2s var(--ease), border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s; cursor: pointer;
}
.contact-icon svg { width: 32px; height: 32px; }
.contact-icon:hover { transform: translateY(-3px); border-color: var(--gold); color: var(--gold-dark); box-shadow: var(--shadow-sm); }
.contact-icon.disabled { opacity: 0.38; cursor: default; }
.contact-icon.disabled:hover { transform: none; border-color: var(--line); color: var(--muted); box-shadow: none; }

/* ---------- Wskaźnik przewijania ----------------------------- */
.scroll-cue {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  color: var(--muted); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; z-index: 2;
}
.scroll-cue svg { width: 18px; height: 18px; animation: bob 1.8s ease-in-out infinite; }

/* ============================================================
   PODZIAŁ "CUT HERE"
   ============================================================ */
.cut-divider { position: relative; height: 1px; margin: 0 auto; width: min(var(--max-w), 100% - 2.5rem);
  display: flex; align-items: center; justify-content: center; }
.cut-divider::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 0;
  border-top: 2px dashed var(--line);
}
.cut-sciss {
  position: relative; background: transparent; padding: 0 0.9rem;
}
.cut-sciss-img {
  width: 38px; height: 38px; object-fit: contain;
  transform: rotate(90deg);
  /* Przybliżenie do --gold (#C19A5B): przyciemnienie + desaturacja */
  filter: saturate(0.72) brightness(0.82);
}
.section-cennik .cut-sciss, .on-surface .cut-sciss { background: var(--surface); }

/* ============================================================
   O NAS
   ============================================================ */
.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.eyebrow {
  display: block; text-align: center; font-size: 0.88rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold-dark); font-weight: 600; margin-bottom: 0.7rem;
}
.section-title {
  font-family: var(--display); font-weight: 800; letter-spacing: 0.01em;
  font-size: clamp(1.7rem, 5vw, 2.6rem); color: var(--ink); text-align: center; line-height: 1.1;
}
.title-rule { width: 56px; height: 3px; border-radius: 3px; margin: 1rem auto 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); }

.about-text {
  max-width: 640px; margin: 2rem auto 0; text-align: center; color: var(--ink-soft);
  font-size: clamp(1rem, 2.5vw, 1.18rem); line-height: 1.85; font-family: var(--serif); font-weight: 500;
}
.about-sign {
  text-align: center; margin-top: 1.5rem; font-family: var(--script);
  font-size: 1.8rem; color: var(--gold-dark);
}

/* ============================================================
   GODZINY OTWARCIA
   ============================================================ */
.section-hours { background: transparent; }
.hours-wrap {
  margin-top: 2.4rem; max-width: 640px; margin-inline: auto;
  background: rgba(255,255,255,0.86);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.hours-grid { padding: 0.6rem 1.8rem; }
.hours-row {
  display: flex; align-items: center; gap: 1rem; padding: 0.42rem 0.5rem;
}
.hours-day { font-size: 0.92rem; color: var(--text); font-weight: 500; min-width: 110px; }
.hours-dots { flex: 1; height: 1px; border-bottom: 1px dotted var(--line); opacity: 0.5; }
.hours-time { font-family: var(--display); font-weight: 700; font-size: 0.92rem; color: var(--gold-dark); white-space: nowrap; }
.hours-row.closed .hours-time { color: var(--muted); font-weight: 400; }
.hours-row.closed .hours-day { color: var(--muted); }
.hours-row.today { background: rgba(193,154,91,0.10); border-radius: 8px; padding-inline: 0.6rem; }
.hours-row.today .hours-day { color: var(--gold-dark); font-weight: 700; }
.hours-row.today .hours-time { color: var(--gold-dark); }
.hours-flex {
  display: flex; flex-direction: column; align-items: center; gap: 0.65rem;
  padding: 1.4rem 1.8rem 1.6rem; text-align: center;
  border-top: 2px solid var(--gold); background: rgba(193,154,91,0.06);
}
.hours-flex-icon { width: 22px; height: 22px; color: var(--gold-dark); }
.hours-flex p {
  font-size: 1rem; color: var(--ink-soft); line-height: 1.6; margin: 0;
  font-weight: 500;
}
.hours-flex p strong { color: var(--gold-dark); }
.hours-btn { margin-top: 0.3rem; padding: 0.75rem 2.2rem; font-size: 0.92rem; }

/* Nożyczki w pasku zaufania */
.trust-scissors { width: 20px; height: 20px; object-fit: contain; filter: saturate(0.65) brightness(0.75); }
/* Nożyczki w navie */
.nav-scissors { width: 16px; height: 16px; object-fit: contain; filter: saturate(0.65) brightness(0.55); }

/* ============================================================
   CENNIK
   ============================================================ */
.section-cennik { background: transparent; }
/* Lista cen jako „pływająca" karta nad przesuwającym się tłem */
.price-wrap {
  margin-top: 2.4rem; max-width: 640px; margin-inline: auto;
  background: rgba(255,255,255,0.86);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.4rem 1.6rem; box-shadow: var(--shadow);
}
.price-item {
  display: flex; align-items: center; gap: 1rem; padding: 0.85rem 0.5rem;
}
.price-name { flex: 0 1 auto; font-size: 1rem; color: var(--text); font-weight: 500; }
.price-dots { flex: 1 1 auto; min-width: 24px; height: 1px; border-bottom: 2px dotted var(--line);
  align-self: flex-end; margin-bottom: 7px; opacity: 0.8; }
.price-value { font-family: var(--display); font-weight: 700; font-size: 1.02rem; color: var(--gold-dark); white-space: nowrap; }
.cennik-note { text-align: center; margin-top: 2rem; font-size: 0.85rem; color: var(--muted); }

/* ============================================================
   CTA BAND (ciemny)
   ============================================================ */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--ink), #241f18);
  color: #fff; text-align: center; padding-block: clamp(3rem, 7vw, 5rem);
}
.cta-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 380px; max-width: 90vw; opacity: 0.10; pointer-events: none;
  filter: saturate(0.6) brightness(1.1);
}
.cta-band-inner { position: relative; z-index: 2; }
.cta-band h2 {
  font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem, 4.5vw, 2.4rem);
  margin-bottom: 0.6rem; letter-spacing: 0.01em;
}
.cta-band h2 span { color: var(--gold-light); }
.cta-band p { color: rgba(255,255,255,0.7); margin-bottom: 1.8rem; font-size: 1rem; }
.cta-band .action-buttons { margin-inline: auto; margin-top: 0; }
.cta-band .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.cta-band .btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ============================================================
   STOPKA
   ============================================================ */
.footer { background: #100E0B; color: rgba(255,255,255,0.82); padding-block: 3.5rem 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand-img { width: min(200px, 70%); height: auto; margin-bottom: 0; display: block; filter: brightness(0) invert(1); }
.footer-wordmark { margin-top: 0; }
.footer-wordmark small { display: block; font-weight: 400; font-size: 0.66rem; letter-spacing: 0.26em; color: var(--gold-light); text-transform: uppercase; margin-top: 0; }
.footer h3 { font-family: var(--display); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
.footer p, .footer a { font-size: 0.9rem; color: rgba(255,255,255,0.62); line-height: 1.75; }
.footer-owner { font-size: 0.9rem; color: rgba(255,255,255,0.62) !important; margin-bottom: 0.2rem; }
.footer-contact a { display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.footer-contact p { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-contact p svg { margin-top: 4px; }
.footer-hours-row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9rem; color: rgba(255,255,255,0.62); line-height: 1.9; }
.footer-hours-row span:last-child { color: rgba(255,255,255,0.88); font-weight: 500; }
.footer-hours-row.closed span:last-child { color: rgba(255,255,255,0.38); font-weight: 400; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 0.6rem; }
.footer-social a {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.16); border-radius: 50%; color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { border-color: var(--gold-light); color: var(--gold-light); }
.footer-social a.disabled { opacity: 0.35; cursor: default; }
.footer-social a.disabled:hover { border-color: rgba(255,255,255,0.16); color: rgba(255,255,255,0.7); }
.footer-hours-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.9rem; line-height: 1.55; font-style: italic; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.4rem; text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ============================================================
   POPUP TELEFON
   ============================================================ */
.phone-popup-backdrop {
  position: fixed; inset: 0; background: rgba(16,14,11,0.55); z-index: 500;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  animation: fadeIn 0.18s ease; backdrop-filter: blur(3px);
}
.phone-popup {
  background: var(--surface); border-radius: var(--radius); padding: 2.4rem 2.8rem;
  text-align: center; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.phone-popup::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark)); }
.phone-popup-close {
  position: absolute; top: 0.7rem; right: 0.7rem; background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 1.2rem; line-height: 1; padding: 0.3rem; transition: color 0.2s;
}
.phone-popup-close:hover { color: var(--ink); }
.phone-popup .pp-eyebrow { font-size: 0.72rem; color: var(--gold-dark); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.6rem; font-weight: 600; }
.phone-popup-number {
  font-family: var(--display); font-weight: 800; font-size: 1.9rem; color: var(--ink);
  letter-spacing: 0.02em; display: inline-block; transition: color 0.2s;
}
.phone-popup-number:hover { color: var(--gold-dark); }

/* ============================================================
   REVEAL (scroll)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ============================================================
   ANIMACJE
   ============================================================ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float1 { 0%,100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-18px) rotate(4deg); } }
@keyframes float2 { 0%,100% { transform: translateY(0) rotate(8deg); } 50% { transform: translateY(16px) rotate(-6deg); } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ============================================================
   RESPONSYWNOŚĆ
   ============================================================ */
@media (max-width: 720px) {
  .nav-links { gap: 1rem; }
  .nav-links a:not(.nav-cta) { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  /* Znak wodny – większy, dopasowany do wąskiego ekranu */
  body::after { background-size: 94vw; background-position: center 38%; }
}
@media (max-width: 480px) {
  .action-buttons { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .btn-action { padding: 0.9rem 0.6rem; font-size: 0.84rem; flex-direction: column; gap: 0.35rem; }
  .btn-wide { flex-direction: row; gap: 0.6rem; font-size: 0.95rem; }
  .wm-pod { top: -0.5em; }
  .trust { gap: 0.7rem; }
  .trust .trust-dot { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .floaty, .scroll-cue svg { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
