/* ==========================================================================
   CONSTANS PROPERTY - Landing page (pozyskiwanie sprzedających premium)
   Paleta i font z marki klienta: złoto #c69f59, grafit #32373c, Poppins.
   Serif Cormorant + ikony Phosphor dla premium, editorialowego charakteru.
   ========================================================================== */

:root {
  --gold:        #c69f59;
  --gold-dark:   #a9803b;
  --gold-soft:   #e6d2a8;
  --gold-tint:   #f3ead8;

  --ink:         #1b1e22;
  --graphite:    #24292e;
  --charcoal:    #32373c;
  --muted:       #5f6469;
  --muted-light: #9aa0a6;

  --cream:       #f6f2ea;
  --ivory:       #fbf9f4;
  --white:       #ffffff;

  --line:        rgba(27, 30, 34, 0.12);
  --line-light:  rgba(255, 255, 255, 0.16);

  --font-serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-sans:  "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1240px;
  --container-narrow: 920px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 14px;
  --radius-sm: 8px;

  --shadow-sm: 0 6px 24px rgba(27, 30, 34, 0.07);
  --shadow-md: 0 18px 48px rgba(27, 30, 34, 0.12);
  --shadow-lg: 0 30px 80px rgba(27, 30, 34, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* A11y: skip-link + ukryty tekst dla czytnikow ekranu */
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link:focus { position: fixed; top: 8px; left: 8px; z-index: 9999; width: auto; height: auto; clip: auto; margin: 0; padding: 0.7rem 1.2rem; background: #fff; color: var(--ink); border-radius: 2px; box-shadow: var(--shadow-md); }
/* Kotwice one-page nie chowaja sie pod sticky headerem */
section[id], span[id] { scroll-margin-top: 90px; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
/* Imagify owija <img> w <picture> z AVIF/WebP. display:contents sprawia, ze <picture>
   nie zaklocala layoutu - <img> dziedziczy pozycjonowanie/flex/grid rodzica jak wczesniej. */
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
/* Inline SVG ikony w <i class="ph ..."> - rozmiar dziedziczy z font-size rodzica (1em) */
i.ph { display: inline-flex; align-items: center; justify-content: center; line-height: 0; vertical-align: middle; }
i.ph > svg { width: 1em; height: 1em; display: block; fill: currentColor; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--cream { background: var(--cream); }
.section--ivory { background: var(--ivory); }
.center { text-align: center; }

/* ----- Typografia ----- */
.kicker {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-dark);
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.85rem; line-height: 1.4;
}
/* Sygnet marki z liniami w prawo i lewo, nad tekstem kickera */
.kicker__deco { position: relative; width: 116px; height: 26px; display: flex; align-items: center; justify-content: center; }
.kicker__deco img { height: 24px; width: auto; display: block; }
.kicker__deco::before, .kicker__deco::after { content: ""; position: absolute; top: 50%; width: 34px; height: 1px; }
.kicker__deco::before { right: calc(50% + 20px); background: linear-gradient(90deg, transparent, var(--gold)); }
.kicker__deco::after { left: calc(50% + 20px); background: linear-gradient(90deg, var(--gold), transparent); }
.kicker--center { align-self: center; }
.kicker--light { color: var(--gold-soft); }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); }
.display { font-size: clamp(2.6rem, 5.6vw, 4.7rem); font-weight: 500; }
.h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
.h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
.lead { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--muted); font-weight: 300; }
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .kicker { margin-bottom: 1.25rem; }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: 1.25rem; }

/* ----- Buttons ----- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1.05rem 2.1rem; border-radius: var(--radius);
  transition: all 0.35s var(--ease); border: 1px solid transparent; white-space: nowrap; line-height: 1;
}
.btn i { font-size: 1.1em; transition: transform 0.35s var(--ease); }
.btn:hover i.ph-arrow-right { transform: translateX(4px); }
/* shine sweep */
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-20deg); transition: left 0.7s var(--ease);
}
.btn:hover::after { left: 130%; }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-dark); box-shadow: 0 12px 30px rgba(169,128,59,0.32); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.btn--ghost-light { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.45); backdrop-filter: blur(4px); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.16); border-color: #fff; }
.btn--block { width: 100%; }
.btn--lg { padding: 1.2rem 2.4rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-dark); padding-bottom: 3px; border-bottom: 1px solid var(--gold);
  transition: gap 0.3s var(--ease), color 0.3s;
}
.link-arrow:hover { gap: 0.9rem; color: var(--ink); }

/* ----- Animowane wzorce tła (sekcje ciemne) ----- */
.bg-pattern {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.55;
  background-image: radial-gradient(rgba(198,159,89,0.16) 1px, transparent 1.5px);
  background-size: 26px 26px; animation: drift 34s linear infinite;
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, #000 35%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, #000 35%, transparent 100%);
}
.bg-pattern--light {
  background-image: radial-gradient(rgba(255,255,255,0.28) 1px, transparent 1.5px); opacity: 0.5;
}
@keyframes drift { from { background-position: 0 0; } to { background-position: 260px 260px; } }
.trust-strip .container, .process .container, .quote .container, .cta-band .container { position: relative; z-index: 1; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header { position: fixed; inset: 0 0 auto 0; z-index: 120; padding-block: 1.5rem;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.header__logo img { height: 50px; width: auto; }
/* Hero ciemny → domyślnie białe logo/nawigacja; po scrollu ciemne */
.header__logo .logo--light { display: block; }
.header__logo .logo--dark { display: none; }

.header.scrolled {
  background: rgba(251, 249, 244, 0.94); backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(27,30,34,0.06); padding-block: 0.85rem;
}
.header.scrolled .header__logo .logo--light { display: none; }
.header.scrolled .header__logo .logo--dark { display: block; }
.header.scrolled .nav__link { color: var(--ink); text-shadow: none; }
.header.scrolled .header__contact a { color: var(--ink); }
.header.scrolled .header__contact .small { color: var(--gold-dark); }
.header.scrolled .burger span { background: var(--ink); }

.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav__link {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; color: rgba(255,255,255,0.92);
  position: relative; transition: color 0.3s; text-shadow: 0 1px 14px rgba(0,0,0,0.35);
}
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0; background: var(--gold); transition: width 0.3s var(--ease); }
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }

.header__right { display: flex; align-items: center; gap: 1.6rem; }
.header__contact { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; }
.header__contact a { font-size: 0.86rem; color: #fff; font-weight: 500; transition: color 0.3s; text-shadow: 0 1px 14px rgba(0,0,0,0.35); }
.header__contact a:hover { color: var(--gold); }
.header__contact .small { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; z-index: 120; }
.burger span { width: 26px; height: 2px; background: #fff; transition: all 0.3s var(--ease); }
.burger[aria-expanded="true"] span { background: #fff; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 110; background: var(--graphite);
  display: flex; flex-direction: column; justify-content: center; padding: var(--gutter);
  transform: translateX(100%); transition: transform 0.5s var(--ease); visibility: hidden;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }
.mobile-nav a { color: #fff; }
.mobile-nav .m-links { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2.5rem; }
.mobile-nav .m-links a { font-family: var(--font-serif); font-size: 2rem; }
.mobile-nav .m-links a:hover { color: var(--gold); }
.mobile-nav .m-contact a { display: block; color: var(--gold-soft); margin-bottom: 0.4rem; }
.mobile-nav .m-contact .big { font-size: 1.3rem; color: #fff; font-weight: 600; }

/* Menu otwarte: nagłówek przezroczysty, białe logo i „X" nad ciemnym panelem */
body.menu-open .header { background: transparent; box-shadow: none; }
body.menu-open .header__logo .logo--light { display: block; }
body.menu-open .header__logo .logo--dark { display: none; }
body.menu-open .burger span { background: #fff; }

/* ==========================================================================
   HERO - pełnoekranowe zdjęcie w tle + nakładka + animacje
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: var(--graphite); }
/* Desktop: zdjęcie zajmuje prawą część kadru, lewa to ciemny panel na tekst */
.hero__bg { position: absolute; top: 0; right: 0; bottom: 0; width: 64%; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; animation: kenburns 26s ease-in-out infinite alternate; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, var(--graphite) 0%, var(--graphite) 34%, rgba(36,41,46,0.80) 45%, rgba(36,41,46,0.22) 59%, rgba(36,41,46,0) 73%),
    linear-gradient(to bottom, rgba(20,22,25,0.40) 0%, transparent 16%, transparent 74%, rgba(20,22,25,0.5) 100%);
}
.hero__particles { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; opacity: 0.7; pointer-events: none; }
.hero__particles .pt { opacity: 0.55; animation: floaty 8s ease-in-out infinite alternate; }
.hero__particles .pt:nth-child(2n) { animation-duration: 11s; }
.hero__particles .pt:nth-child(3n) { animation-duration: 9.5s; animation-direction: alternate-reverse; }
.hero__particles .pt:nth-child(4n) { animation-duration: 13s; }

.hero__inner { position: relative; z-index: 3; width: 100%; padding-top: 5rem; }
.hero__content { max-width: 700px; }
.hero__content .kicker { margin-bottom: 1.6rem; }
.hero h1.display { color: #fff; margin-bottom: 1.6rem; }
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero__lead { color: rgba(255,255,255,0.86); font-weight: 300; font-size: clamp(1.02rem, 1.4vw, 1.2rem); max-width: 560px; margin-bottom: 2.4rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; font-size: 0.82rem; color: rgba(255,255,255,0.82); padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.16); }
.hero__trust span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__trust i { color: var(--gold); font-size: 0.7rem; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.72); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; text-align: center;
}
.hero__scroll i { font-size: 1.2rem; color: var(--gold); animation: bob 1.9s ease-in-out infinite; }

@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.13); } }
@keyframes floaty { from { transform: translateY(0); } to { transform: translateY(-20px); } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust-strip { background: var(--graphite); color: #fff; position: relative; overflow: hidden; }
.trust-strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip__item { padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1rem,2.5vw,2rem); border-left: 1px solid var(--line-light); display: flex; flex-direction: column; gap: 0.7rem; }
.trust-strip__item:first-child { border-left: none; }
.trust-strip__item .ico i { color: var(--gold); font-size: 1.85rem; }
.trust-strip__item p { font-size: 0.92rem; color: rgba(255,255,255,0.88); font-weight: 300; }

/* ==========================================================================
   VALUE PROPS
   ========================================================================== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.value-card { background: var(--ivory); padding: clamp(1.8rem, 3vw, 2.6rem); display: flex; flex-direction: column; gap: 1rem; transition: background 0.4s var(--ease); }
.value-card:hover { background: #fff; }
.value-card .num { font-family: var(--font-serif); font-size: 1rem; color: var(--gold); letter-spacing: 0.1em; }
.value-card .ico i { color: var(--gold-dark); font-size: 2.1rem; }
.value-card h3 { font-size: 1.4rem; }
.value-card p { font-size: 0.94rem; color: var(--muted); font-weight: 300; }

/* Sekcja wartości + formularz (2 kolumny) */
.values-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.values-split .values-grid { grid-template-columns: repeat(2, 1fr); }
.values-split__right { position: sticky; top: 96px; }
.form-card--compact { padding: clamp(1.6rem, 2.5vw, 2.2rem); }
.form-card--compact .kicker { margin-bottom: 0.9rem; }
.form-card__title { font-size: clamp(1.4rem, 2vw, 1.8rem); margin-bottom: 1.4rem; line-height: 1.18; }
.form-card--compact .field { margin-bottom: 0.85rem; }
.form-card--compact .field input, .form-card--compact .field textarea { padding: 0.75rem 0.9rem; }
.form-card--compact .consent { margin: 0.2rem 0 1.1rem; }

/* CTA sekcyjne */
.section-cta { text-align: center; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.section-cta__lead { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.2rem, 2vw, 1.55rem); color: var(--ink); margin-bottom: 1.3rem; }

/* ==========================================================================
   SPLIT (dyskrecja)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.split__media .tag { position: absolute; bottom: 0; left: 0; background: var(--gold); color: #fff; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; padding: 0.85rem 1.4rem; }
.split__body .kicker { margin-bottom: 1.4rem; }
.split__body h2 { margin-bottom: 1.5rem; }
.split__body p { color: var(--muted); margin-bottom: 1.2rem; font-weight: 300; }
.split__body .link-arrow { margin-top: 0.8rem; }

/* ==========================================================================
   PROCESS (dark)
   ========================================================================== */
.process { background: var(--graphite); color: #fff; overflow: hidden; }
.process h2, .process h3 { color: #fff; }
.process .lead { color: rgba(255,255,255,0.7); }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: 1rem; }
.step { position: relative; padding-top: 2.4rem; }
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 46px; height: 1px; background: var(--gold); }
.step .num { font-family: var(--font-serif); font-size: 3.2rem; color: rgba(198,159,89,0.85); line-height: 0.8; display: block; margin-bottom: 1.1rem; }
.step h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.step p { font-size: 0.9rem; color: rgba(255,255,255,0.66); font-weight: 300; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.service { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem 1.6rem; display: flex; flex-direction: column; gap: 0.9rem; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s; }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service .ico { width: 52px; height: 52px; border-radius: 50%; background: var(--gold-tint); display: grid; place-items: center; transition: background 0.4s; }
.service:hover .ico { background: var(--gold); }
.service .ico i { font-size: 1.5rem; color: var(--gold-dark); transition: color 0.4s; }
.service:hover .ico i { color: #fff; }
.service h3 { font-size: 1.18rem; }
.service p { font-size: 0.88rem; color: var(--muted); font-weight: 300; line-height: 1.6; }

/* ==========================================================================
   VIDEO
   ========================================================================== */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.vcard { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 16/9; background: var(--charcoal); box-shadow: var(--shadow-sm); }
.vcard img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.vcard:hover img { transform: scale(1.06); }
.vcard__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,22,25,0.78) 0%, rgba(20,22,25,0.12) 45%, rgba(20,22,25,0.25) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.3rem; transition: background 0.4s; }
.vcard:hover .vcard__overlay { background: linear-gradient(to top, rgba(20,22,25,0.85) 0%, rgba(20,22,25,0.25) 50%, rgba(20,22,25,0.3) 100%); }
.vcard__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.16); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.5); display: grid; place-items: center; transition: all 0.4s var(--ease); }
.vcard:hover .vcard__play { background: var(--gold); border-color: var(--gold); transform: translate(-50%,-50%) scale(1.08); }
.vcard__play i { color: #fff; font-size: 1.5rem; margin-left: 2px; }
.vcard__title { color: #fff; font-size: 0.96rem; font-weight: 500; position: relative; z-index: 1; }
.vcard__tag { color: var(--gold-soft); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; margin-bottom: 0.3rem; position: relative; z-index: 1; }

.reels-head { margin: clamp(3rem,6vw,4.5rem) 0 1.6rem; }
.reels-head h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.reels { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(210px, 1fr); gap: 1.2rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--gold) transparent; }
.reels::-webkit-scrollbar { height: 6px; }
.reels::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
.reel { position: relative; aspect-ratio: 9/16; border-radius: var(--radius); overflow: hidden; cursor: pointer; scroll-snap-align: start; background: var(--charcoal); box-shadow: var(--shadow-sm); }
.reel img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.reel:hover img { transform: scale(1.07); }
.reel__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.18); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.55); display: grid; place-items: center; transition: all 0.4s var(--ease); }
.reel:hover .reel__play { background: var(--gold); border-color: var(--gold); }
.reel__play i { color: #fff; font-size: 1.25rem; margin-left: 2px; }

/* ==========================================================================
   TEAM
   ========================================================================== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.member { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.member:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.member__photo { aspect-ratio: 4/5; overflow: hidden; background: var(--cream); }
.member__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.8s var(--ease); }
.member:hover .member__photo img { transform: scale(1.05); }
.member__body { padding: 1.6rem 1.8rem 2rem; }
.member h3 { font-size: 1.4rem; margin-bottom: 0.25rem; }
.member .role { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; margin-bottom: 1.2rem; }
.member .contact { display: flex; flex-direction: column; gap: 0.55rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.member .contact a { font-size: 0.86rem; color: var(--muted); display: inline-flex; align-items: center; gap: 0.6rem; transition: color 0.3s; word-break: break-word; }
.member .contact a:hover { color: var(--gold-dark); }
.member .contact i { color: var(--gold); font-size: 1.05rem; flex-shrink: 0; }

/* ==========================================================================
   QUOTE
   ========================================================================== */
.quote { position: relative; background: var(--graphite); color: #fff; text-align: center; overflow: hidden; }
/* Zdjecie tla jako <img> (Imagify-friendly, bez background-image) */
.quote__bg { position: absolute; inset: 0; z-index: 0; }
.quote__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.quote__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(20,22,25,0.86), rgba(20,22,25,0.80)); }
.quote::before { content: "\201C"; position: absolute; top: -0.2em; left: 50%; transform: translateX(-50%); font-family: var(--font-serif); font-size: 16rem; color: rgba(198,159,89,0.16); line-height: 1; pointer-events: none; z-index: 1; }
.quote__inner { max-width: 880px; margin-inline: auto; position: relative; z-index: 2; }
.quote p { font-family: var(--font-serif); font-size: clamp(1.7rem, 3.4vw, 2.8rem); font-weight: 500; line-height: 1.25; font-style: italic; }
.quote .author { font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); margin-top: 1.8rem; font-weight: 600; }

/* ==========================================================================
   FEATURE BAND (parallax, premium wnętrze)
   ========================================================================== */
.feature-band { background: var(--ivory); }
.feature-band__deco { display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 2.5vw, 1.6rem); padding: clamp(1.4rem, 3vw, 2.2rem) var(--gutter); }
.feature-band__deco .deco-line { height: 1px; width: clamp(50px, 12vw, 150px); background: linear-gradient(90deg, transparent, var(--gold)); }
.feature-band__deco .deco-line:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.feature-band__deco .deco-sygnet { width: 34px; height: auto; opacity: 0.92; flex-shrink: 0; }
/* Zdjecie pasa jako <img> (Imagify-friendly, bez background-image) */
.feature-band__img { position: relative; height: clamp(230px, 28vw, 360px); overflow: hidden; }
.feature-band__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* mniejszy odstęp nad i pod bloczkiem */
#dlaczego { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.feature-band + .section { padding-top: clamp(2.5rem, 5vw, 4rem); }

/* ==========================================================================
   PARALLAX na <img> (efekt "zdjecie stoi w miejscu, tresc przewija sie po nim")
   Odtwarza background-attachment:fixed bez background-image (Imagify-friendly).
   Zdjecie jest position:fixed (stoi wzgledem okna), a clip-path przycina je
   do obszaru sekcji. Imagify dalej owija <img> w <picture>.
   ========================================================================== */
.cp-parallax { overflow: hidden; clip-path: inset(0); }
.cp-parallax img { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; object-fit: cover; object-position: center; }
/* Na mobile (i przy reduced-motion) wracamy do zwyklego, statycznego kadru -
   position:fixed na telefonach potrafi skakac. */
@media (max-width: 900px) {
  .cp-parallax img { position: absolute; inset: 0; width: 100%; height: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .cp-parallax img { position: absolute; inset: 0; width: 100%; height: 100%; }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
/* Odznaka oceny Google */
.gicon { width: 20px; height: 20px; display: block; }
.g-badge { display: inline-flex; align-items: center; gap: 0.75rem; margin-top: 1.7rem; background: #fff; border: 1px solid var(--line); border-radius: 50px; padding: 0.6rem 1.3rem 0.6rem 1rem; box-shadow: var(--shadow-sm); transition: box-shadow 0.3s, transform 0.3s; }
.g-badge:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.g-badge .gicon { width: 24px; height: 24px; }
.g-badge__rating { display: flex; align-items: center; gap: 0.45rem; }
.g-badge__rating strong { font-size: 1.05rem; color: var(--ink); font-weight: 700; }
.g-badge__stars { color: var(--gold); font-size: 0.78rem; display: flex; gap: 0.08rem; }
.g-badge__label { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.02em; border-left: 1px solid var(--line); padding-left: 0.75rem; }

/* Karty opinii */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; align-items: stretch; }
.review { position: relative; background: #fff; border-radius: var(--radius); padding: 1.9rem 1.8rem; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.review::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); transform: scaleX(0); transform-origin: left; transition: transform 0.55s var(--ease); }
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review:hover::before { transform: scaleX(1); }
.review__head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.1rem; }
.review__avatar { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--graphite); color: var(--gold); display: grid; place-items: center; font-family: var(--font-serif); font-size: 1.1rem; }
.review__who { display: flex; flex-direction: column; line-height: 1.35; flex-grow: 1; min-width: 0; }
.review__who strong { font-size: 0.95rem; color: var(--ink); font-weight: 600; }
.review__who span { font-size: 0.74rem; color: var(--muted-light); }
.review__g { width: 20px; height: 20px; flex-shrink: 0; opacity: 0.9; }
.review__stars { display: flex; gap: 0.15rem; color: var(--gold); font-size: 0.9rem; margin-bottom: 0.9rem; }
.review p { font-size: 0.94rem; line-height: 1.7; color: var(--muted); font-weight: 300; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: var(--container-narrow); margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0; font-family: var(--font-serif); font-size: clamp(1.15rem, 1.8vw, 1.45rem); color: var(--ink); font-weight: 500; }
.faq__q .pm { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.faq__q .pm::before, .faq__q .pm::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--gold-dark); }
.faq__q .pm::before { width: 14px; height: 1.5px; }
.faq__q .pm::after { width: 1.5px; height: 14px; transition: transform 0.4s var(--ease); }
.faq__item.open .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height 0.45s var(--ease); }
.faq__a p { padding: 0 0 1.6rem; color: var(--muted); font-weight: 300; max-width: 90%; }

/* ==========================================================================
   CONTACT / FORM
   ========================================================================== */
.contact { background: var(--cream); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.contact__aside .kicker { margin-bottom: 1.4rem; }
.contact__aside h2 { margin-bottom: 1.4rem; }
.contact__aside .lead { margin-bottom: 2.4rem; }
.steps { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.6rem; }
.steps li { display: flex; gap: 1.1rem; align-items: flex-start; }
.steps .n { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold-dark); display: grid; place-items: center; font-family: var(--font-serif); font-size: 1.1rem; }
.steps .t strong { display: block; font-weight: 600; font-size: 0.98rem; margin-bottom: 0.15rem; }
.steps .t span { font-size: 0.88rem; color: var(--muted); font-weight: 300; }
.contact__direct { display: flex; flex-direction: column; gap: 0.9rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.contact__direct a { display: inline-flex; align-items: center; gap: 0.8rem; font-size: 1.02rem; color: var(--ink); font-weight: 500; transition: color 0.3s; }
.contact__direct a:hover { color: var(--gold-dark); }
.contact__direct i { color: var(--gold); font-size: 1.3rem; flex-shrink: 0; }

.form-card { background: #fff; border-radius: var(--radius); padding: clamp(1.8rem, 3vw, 2.8rem); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field label .req { color: var(--gold-dark); }
.field input, .field select, .field textarea { font-family: var(--font-sans); font-size: 0.95rem; color: var(--ink); padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ivory); transition: border-color 0.3s, background 0.3s; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.field textarea { resize: vertical; min-height: 96px; }
.consent { display: flex; gap: 0.7rem; align-items: flex-start; margin: 0.4rem 0 1.4rem; }
.consent input { margin-top: 3px; accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
.consent label { font-size: 0.76rem; color: var(--muted); font-weight: 300; line-height: 1.5; }
.consent a { color: var(--gold-dark); text-decoration: underline; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 1rem; text-align: center; }
.field label .opt { color: var(--muted-light); text-transform: none; letter-spacing: 0; font-weight: 400; }
.form-rodo { font-size: 0.7rem; line-height: 1.55; color: var(--muted-light); margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.form-rodo strong { color: var(--muted); font-weight: 600; }
.form-rodo a { color: var(--gold-dark); text-decoration: underline; }
.form-msg { display: none; padding: 1rem 1.2rem; border-radius: var(--radius); font-size: 0.9rem; margin-bottom: 1.2rem; }
.form-msg.show { display: block; }
.form-msg.ok { background: rgba(103,166,113,0.12); color: #2f6b3a; border: 1px solid rgba(103,166,113,0.4); }
.form-msg.err { background: rgba(207,46,46,0.08); color: #a32424; border: 1px solid rgba(207,46,46,0.3); }

/* ----- Contact Form 7 (formularz wklejany shortcodem; uzywa klas .field/.consent) ----- */
.wpcf7-form p { margin: 0; }
.wpcf7 .field input, .wpcf7 .field select, .wpcf7 .field textarea { width: 100%; }
.wpcf7-spinner { margin: 0 0 0 0.6rem; }
.wpcf7 .consent .wpcf7-list-item { margin: 0; display: flex; gap: 0.7rem; align-items: flex-start; }
.wpcf7 .consent .wpcf7-list-item-label { font-size: 0.76rem; color: var(--muted); font-weight: 300; line-height: 1.5; }
.wpcf7-not-valid { border-color: #cf2e2e !important; }
.wpcf7-not-valid-tip { color: #a32424; font-size: 0.74rem; margin-top: 0.3rem; }
/* Komunikat CF7 pod przyciskiem (nad RODO), a nie na samym koncu formularza */
.wpcf7-form { display: flex; flex-direction: column; }
.wpcf7-form > * { order: 0; }
.wpcf7-form .wpcf7-response-output { order: 1; }
.wpcf7-form .form-rodo { order: 2; }
.wpcf7-response-output { margin: 1.1rem 0 0 !important; padding: 0.9rem 1.1rem !important; border-radius: var(--radius); font-size: 0.88rem; border-width: 1px !important; }
.wpcf7-response-output:empty { display: none !important; padding: 0 !important; border: 0 !important; margin: 0 !important; }
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output { background: rgba(207,46,46,0.08); color: #a32424; border-color: rgba(207,46,46,0.3) !important; }
.wpcf7 form.sent .wpcf7-response-output { background: rgba(103,166,113,0.12); color: #2f6b3a; border-color: rgba(103,166,113,0.4) !important; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.cta-band { background: var(--gold); color: #fff; text-align: center; overflow: hidden; }
.cta-band h2 { color: #fff; margin-bottom: 1.2rem; }
.cta-band p { color: rgba(255,255,255,0.92); max-width: 560px; margin: 0 auto 2.2rem; font-weight: 300; }
.cta-band .btn--light { color: var(--gold-dark); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--ink); color: rgba(255,255,255,0.72); padding-block: clamp(3.5rem,6vw,5rem) 2rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-light); }
.footer__brand img { height: 72px; width: auto; margin-bottom: 1.4rem; }
.footer__brand p { font-size: 0.9rem; font-weight: 300; max-width: 280px; }
.footer h4 { font-family: var(--font-sans); color: #fff; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.3rem; font-weight: 600; }
.footer ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer a { font-size: 0.9rem; transition: color 0.3s; }
.footer a:hover { color: var(--gold); }
.footer__col .ic { display: inline-flex; align-items: center; gap: 0.6rem; }
.footer__col .ic i { color: var(--gold); font-size: 1.05rem; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.8rem; font-size: 0.78rem; color: var(--muted-light); }
.footer__bottom a { color: var(--muted-light); }
.footer__bottom a:hover { color: var(--gold); }
.footer__socials { display: flex; gap: 0.8rem; }
.footer__socials a { width: 38px; height: 38px; border: 1px solid var(--line-light); border-radius: 50%; display: grid; place-items: center; }
.footer__socials a i { font-size: 1.1rem; }
.footer__socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer__credit { text-align: center; margin-top: 1.3rem; font-size: 0.72rem; letter-spacing: 0.04em; color: var(--muted-light); }
.footer__credit a { color: var(--gold); transition: color 0.3s; }
.footer__credit a:hover { color: #fff; }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(15,16,18,0.92); display: flex; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem); opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s; backdrop-filter: blur(6px); }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__inner { position: relative; width: 100%; max-width: 1000px; }
.lightbox__inner.vertical { max-width: 420px; }
.lightbox__frame { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.lightbox__inner.vertical .lightbox__frame { aspect-ratio: 9/16; }
.lightbox__frame iframe, .lightbox__frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; background: #000; }
.lightbox__close { position: absolute; top: -3rem; right: 0; color: #fff; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
.lightbox__close:hover { color: var(--gold); }
.lightbox__close i { font-size: 1.3rem; }

/* Floating widget: telefon + wideo (auto-play wyciszone → klik = dźwięk + powiększenie) */
.fab-stack { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 95; display: flex; flex-direction: column; align-items: flex-end; gap: 0.85rem; }
.fab-call { position: relative; align-self: flex-end; height: 54px; min-width: 54px; border-radius: 50%; background: var(--gold); color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); overflow: hidden; white-space: nowrap; transition: background 0.3s var(--ease), border-radius 0.4s var(--ease), padding 0.4s var(--ease); }
.fab-call i { font-size: 1.5rem; position: relative; z-index: 1; flex-shrink: 0; width: 54px; text-align: center; }
.fab-call__num { max-width: 0; opacity: 0; font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em; overflow: hidden; transition: max-width 0.45s var(--ease), opacity 0.3s; }
.fab-call::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--gold); animation: pulsering 2.2s ease-out infinite; }
/* Desktop: najazd rozwija pełny numer telefonu */
@media (hover: hover) and (pointer: fine) {
  .fab-call:hover { background: var(--gold-dark); border-radius: 50px; padding-right: 1.3rem; }
  .fab-call:hover .fab-call__num { max-width: 220px; opacity: 1; }
  .fab-call:hover::after { opacity: 0; }
}
/* Etykieta "Zadzwoń do nas" - domyślnie ukryta (pokazywana na mobile) */
.fab-label { display: none; }
@keyframes pulsering { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.8); opacity: 0; } }

.video-fab { position: relative; width: 152px; aspect-ratio: 9 / 16; border-radius: 16px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow-lg); border: 2px solid rgba(255,255,255,0.85); background: #000; transition: width 0.45s var(--ease); }
.video-fab video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-fab .vf-hint { position: absolute; left: 7px; right: 7px; bottom: 7px; display: inline-flex; align-items: center; justify-content: center; gap: 5px; color: #fff; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; background: rgba(20,22,25,0.55); backdrop-filter: blur(4px); padding: 5px 8px; border-radius: 20px; transition: opacity 0.3s; }
.video-fab .vf-hint i { color: var(--gold-soft); font-size: 0.85rem; }
.video-fab .vf-close { position: absolute; top: 8px; right: 8px; width: 30px; height: 30px; border-radius: 50%; background: rgba(20,22,25,0.55); backdrop-filter: blur(4px); color: #fff; display: none; place-items: center; z-index: 2; }
.video-fab .vf-close i { font-size: 1.05rem; }
.video-fab.expanded { width: min(300px, 72vw); border-color: var(--gold); }
.video-fab.expanded .vf-close { display: grid; }
.video-fab.expanded .vf-hint { opacity: 0; pointer-events: none; }

/* ==========================================================================
   PREMIUM KURSOR (desktop)
   ========================================================================== */
.cursor-ring, .cursor-dot { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; border-radius: 50%; opacity: 0; transform: translate(-50%, -50%); will-change: transform; }
.cursor-ring { width: 36px; height: 36px; border: 1.5px solid var(--gold); transition: width 0.28s var(--ease), height 0.28s var(--ease), background-color 0.28s, border-color 0.28s, opacity 0.3s; }
.cursor-ring.active { width: 58px; height: 58px; background: rgba(198, 159, 89, 0.16); }
.cursor-dot { width: 6px; height: 6px; background: var(--gold); transition: opacity 0.3s; }
@media (hover: none), (pointer: coarse) { .cursor-ring, .cursor-dot { display: none !important; } }
@media (prefers-reduced-motion: reduce) { .cursor-ring, .cursor-dot { display: none !important; } }
/* Gdy nasz premium-kursor dziala (klasa dodawana przez JS) - chowamy natywna
   strzalke, zostaje samo animowane kolko. Tylko desktop z myszka. */
@media (hover: hover) and (pointer: fine) {
  body.cp-cursor-on, body.cp-cursor-on * { cursor: none !important; }
}

/* ==========================================================================
   REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
/* Bez JS pokazujemy tresc od razu (zamiast trzymac ja niewidoczna) */
.no-js .reveal { opacity: 1; transform: none; }

/* Animacje reveal NIEZALEZNE od JS - scroll-driven CSS. Dzialaja nawet gdy
   cache (LiteSpeed/WP Rocket) opozni JavaScript. Gdy JS zdazy dodac .in,
   przejmuje on kontrole (selektor :not(.in)). */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal:not(.in) {
      animation: cp-reveal-in both linear;
      animation-timeline: view();
      animation-range: entry 0% cover 22%;
    }
  }
}
@keyframes cp-reveal-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ==========================================================================
   LEGAL (polityka prywatności)
   ========================================================================== */
.legal-hero { background: var(--graphite); color: #fff; position: relative; overflow: hidden; padding: clamp(8rem,14vw,11rem) 0 clamp(2.5rem,5vw,4rem); }
.legal-hero h1 { color: #fff; font-size: clamp(2.2rem,5vw,3.6rem); }
.legal-hero .kicker { margin-bottom: 1.2rem; }
.legal-wrap { max-width: 880px; margin-inline: auto; padding-block: clamp(3rem,6vw,5rem); }
.legal h2 { font-size: clamp(1.4rem,2.6vw,2rem); margin: 2.6rem 0 1rem; }
.legal h3 { font-family: var(--font-sans); font-weight: 600; font-size: 1.05rem; margin: 1.8rem 0 0.6rem; color: var(--ink); letter-spacing: 0.01em; }
.legal p, .legal li { color: var(--muted); font-weight: 300; margin-bottom: 0.9rem; line-height: 1.8; }
.legal ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; }
.legal ul li { margin-bottom: 0.4rem; }
.legal a { color: var(--gold-dark); text-decoration: underline; word-break: break-word; }
.legal .lead-box { background: var(--cream); border-left: 3px solid var(--gold); padding: 1.4rem 1.6rem; margin-bottom: 2rem; border-radius: var(--radius); }
.legal .lead-box p { color: var(--ink); margin-bottom: 0.5rem; }
.legal .back { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2.5rem; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .values-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__item:nth-child(3) { border-left: none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .nav, .header__contact { display: none; }
  .header__right .btn--gold { display: none; }
  .burger { display: flex; }
  .split, .contact__grid, .values-split { grid-template-columns: 1fr; }
  .values-split__right { position: static; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  /* Etykieta "Zadzwoń do nas" nad widgetem (mobile/tablet) */
  .fab-label { display: inline-flex; align-items: center; align-self: flex-end; position: relative; background: var(--graphite); color: #fff; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; padding: 0.45rem 0.9rem; border-radius: 50px; box-shadow: var(--shadow-sm); }
  .fab-label::after { content: ""; position: absolute; bottom: -4px; right: 20px; width: 9px; height: 9px; background: var(--graphite); transform: rotate(45deg); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid, .reviews { grid-template-columns: 1fr; }
  .quote, .feature-band__img { background-attachment: scroll; }
  .hero { min-height: 88svh; }
  .hero__bg { width: 100%; }
  .hero__overlay { background: linear-gradient(to bottom, rgba(20,22,25,0.55) 0%, rgba(20,22,25,0.35) 30%, rgba(20,22,25,0.55) 70%, rgba(20,22,25,0.82) 100%); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .values-grid, .services-grid, .video-grid, .process__steps, .trust-strip__inner, .team-grid, .values-split .values-grid { grid-template-columns: 1fr; }
  .trust-strip__item { border-left: none; border-top: 1px solid var(--line-light); }
  .trust-strip__item:first-child { border-top: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .member__photo { aspect-ratio: 3 / 4; }
  .reviews { gap: 1rem; }
  .btn { white-space: normal; }
  /* Mobile hero: chowamy kicker i pasek zaufania (mniej zatłoczone) */
  .hero .kicker, .hero__trust { display: none; }
  .hero h1.display { margin-top: 0.5rem; }
  .fab-stack { right: 0.9rem; bottom: 1.6rem; gap: 0.7rem; }
  .fab-call { min-width: 48px; height: 48px; }
  .fab-call i { width: 48px; font-size: 1.35rem; }
  .video-fab { width: 108px; }
  .video-fab.expanded { width: min(240px, 74vw); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
