/* ============================================================
   Glowbrow — stylizacja brwi i rzęs, Rawa Mazowiecka
   Design system. Klimat: ciemny, minimalistyczny, kobiecy.
   Grafit + warm white + róż stonowany. Mobile-first.
   ============================================================ */

:root {
  /* ---- Kolory ---- */
  --ink:        #141215;   /* tło bazowe, deep graphite */
  --ink-2:      #1C191E;   /* surface */
  --ink-3:      #262128;   /* raised / karty */
  --ink-soft:   #0F0D10;   /* footer / najciemniejsze */

  --cream:      #F3EEE9;   /* tekst główny, warm white */
  --cream-dim:  #C9C1C4;   /* tekst drugorzędny */
  --muted:      #978C92;   /* mauve-grey, podpisy */

  --rose:       #D5A6AD;   /* akcent róż stonowany */
  --rose-deep:  #B9858E;   /* hover akcentu */
  --rose-soft:  rgba(213,166,173,.12);
  --rose-line:  rgba(213,166,173,.35);

  --line:       rgba(243,238,233,.10);
  --line-2:     rgba(243,238,233,.16);

  /* ---- Typografia ----
     Spójne z IG Natalii: kondensowany uppercase na nagłówki (jak "NAZYWAM SIĘ NATALIA"),
     skrypt na logo/akcenty (jak "Before/After"), czysty geometryczny sans w treści. */
  --f-display: 'Oswald', 'Jost', system-ui, sans-serif;  /* nagłówki, kondensowany */
  --f-serif:   var(--f-display);                          /* alias zgodności */
  --f-sans:    'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --f-script:  'Parisienne', 'Cormorant Garamond', cursive;

  --fs-display: clamp(46px, 8vw, 104px);
  --fs-h1:      clamp(40px, 6vw, 76px);
  --fs-h2:      clamp(30px, 4.4vw, 52px);
  --fs-h3:      clamp(21px, 2.4vw, 27px);
  --fs-lead:    clamp(17px, 2vw, 21px);
  --fs-body:    16px;
  --fs-small:   14px;
  --fs-eyebrow: 12px;

  /* ---- Rytm ---- */
  --pad-x:      6vw;
  --sec-y:      clamp(64px, 9vw, 132px);
  --maxw:       1240px;
  --maxw-text:  640px;
  --radius:     14px;
  --radius-lg:  22px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset ---- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--f-sans);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; }
::selection { background: var(--rose); color: var(--ink); }

/* ---- Typografia bazowa ---- */
h1,h2,h3,h4 { font-family: var(--f-display); font-weight: 500; line-height: 1.06; letter-spacing: .01em; }
h1, h2 { text-transform: uppercase; letter-spacing: .03em; line-height: 1.04; }
h3, h4 { letter-spacing: .015em; }
.serif, .display { font-family: var(--f-display); }
.normal-case { text-transform: none !important; letter-spacing: .01em !important; }
.script { font-family: var(--f-script); font-weight: 400; text-transform: none; letter-spacing: 0; }

.eyebrow {
  font-family: var(--f-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 400;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--rose-line);
}
.eyebrow.center::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--rose-line);
}

.lead { font-size: var(--fs-lead); color: var(--cream-dim); font-weight: 300; line-height: 1.6; }
.muted { color: var(--muted); }
strong { font-weight: 500; color: var(--cream); }

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--sec-y); position: relative; }
.section--tight { padding-block: clamp(48px,6vw,80px); }
.bg-2 { background: var(--ink-2); }
.bg-soft { background: var(--ink-soft); }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.measure { max-width: var(--maxw-text); }
.measure.center { margin-inline: auto; }

.sec-head { margin-bottom: clamp(36px, 5vw, 64px); }
.sec-head h2 { margin-top: 16px; }
.sec-head .lead { margin-top: 18px; }

/* ============================================================
   Header / nawigacja
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(18,16,19,.95);
  padding-block: 12px;
  border-bottom-color: var(--line);
}
.brand { font-family: var(--f-script); font-size: 30px; line-height: 1; color: var(--cream); letter-spacing: .01em; }
.brand b { font-weight: 400; }
.brand .dot { color: var(--rose); }

.nav { display: flex; align-items: center; gap: clamp(20px,2.6vw,38px); }
.nav a.navlink {
  font-size: 13px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream-dim); position: relative; padding-block: 4px;
}
.nav a.navlink::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--rose); transition: width .3s var(--ease);
}
.nav a.navlink:hover, .nav a.navlink.active { color: var(--cream); }
.nav a.navlink:hover::after, .nav a.navlink.active::after { width: 100%; }

.nav-cta { display: inline-flex; }

/* hamburger */
.burger { display: none; width: 40px; height: 40px; position: relative; z-index: 130; }
.burger span { position: absolute; left: 9px; right: 9px; height: 1.5px; background: var(--cream); transition: .35s var(--ease); }
.burger span:nth-child(1){ top: 14px; }
.burger span:nth-child(2){ top: 20px; }
.burger span:nth-child(3){ top: 26px; }
body.menu-open .burger span:nth-child(1){ top: 20px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity: 0; }
body.menu-open .burger span:nth-child(3){ top: 20px; transform: rotate(-45deg); }

/* ============================================================
   Przyciski
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-sans); font-size: 13px; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 16px 30px; border-radius: 100px;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--rose); color: var(--ink); }
.btn--primary:hover { background: var(--cream); }
.btn--ghost { border: 1px solid var(--line-2); color: var(--cream); }
.btn--ghost:hover { border-color: var(--rose); color: var(--rose); }
.btn--sm { padding: 12px 22px; font-size: 12px; }
.btn .ar { transition: transform .3s var(--ease); }
.btn:hover .ar { transform: translateX(4px); }

.link-more {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--rose);
  transition: gap .3s var(--ease);
}
.link-more:hover { gap: 16px; color: var(--cream); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
@media (max-width: 600px) {
  .hero { min-height: 100svh; }
  .hero__inner { padding-bottom: clamp(36px, 8vw, 64px); }
  .hero h1 { margin-top: 14px; }
  .hero .lead { margin-top: 18px; }
  .hero__cta { margin-top: 26px; }
  .hero__scroll { display: none; }
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  animation: kenburns 22s var(--ease) infinite alternate; }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.14); } }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,13,16,.8) 0%, rgba(15,13,16,.52) 35%, rgba(15,13,16,.7) 72%, var(--ink) 100%),
    linear-gradient(90deg, rgba(15,13,16,.82) 0%, rgba(15,13,16,.28) 62%),
    rgba(15,13,16,.24);
}
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding: 0 var(--pad-x) clamp(64px,11vw,128px); }
.hero h1 { font-size: var(--fs-display); max-width: 14ch; margin: 22px 0 0; }
.hero .lead { margin-top: 26px; max-width: 46ch; }
.hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll { position: absolute; left: var(--pad-x); bottom: 30px; z-index: 2;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 10px; }
.hero__scroll .bar { width: 1px; height: 40px; background: var(--line-2); position: relative; overflow: hidden; }
.hero__scroll .bar::after { content:""; position:absolute; inset:0; background: var(--rose);
  transform: translateY(-100%); animation: scrolldrop 2.4s var(--ease) infinite; }
@keyframes scrolldrop { 0%{transform:translateY(-100%)} 60%,100%{transform:translateY(100%)} }

/* hero podstrony (mini) */
.subhero { position: relative; padding: clamp(150px,20vw,230px) 0 clamp(56px,7vw,96px); overflow: hidden; }
.subhero::before { content:""; position:absolute; inset:0; z-index:0;
  background: radial-gradient(120% 120% at 80% 0%, var(--rose-soft), transparent 55%); }
.subhero .wrap { position: relative; z-index: 1; }
.subhero h1 { font-size: var(--fs-h1); margin-top: 18px; max-width: 16ch; }
.subhero .lead { margin-top: 20px; }
.subhero--media h1 { max-width: 18ch; }
.subhero__img { position:absolute; inset:0; z-index:0; }
.subhero__img img { width:100%; height:100%; object-fit:cover; object-position:center 28%; }
.subhero__img::after { content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(20,18,21,.6), rgba(20,18,21,.4) 40%, var(--ink) 100%),
              linear-gradient(90deg, rgba(20,18,21,.7), transparent 65%); }

/* ============================================================
   O mnie (skrót)
   ============================================================ */
.about { display: grid; grid-template-columns: 1fr; gap: clamp(36px,5vw,72px); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about__media .frame { position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--rose-line); border-radius: var(--radius-lg); z-index: -1; }
/* portret wycięty (transparent PNG) — cała postać widoczna (contain), wyśrodkowana, tło studyjne + różana poświata */
.about__media--portret img { object-fit: contain; object-position: center bottom;
  background: radial-gradient(72% 60% at 50% 30%, rgba(213,166,173,.16), transparent 70%), var(--ink-2); }
.about__body h2 { margin: 16px 0 0; }
.about__body p { margin-top: 20px; color: var(--cream-dim); }
.about__body .sign { font-family: var(--f-script); font-size: 38px; color: var(--rose); margin-top: 14px; line-height: 1; }
.about__body .btn, .about__body .link-more { margin-top: 30px; }

/* ============================================================
   Usługi — karty
   ============================================================ */
.cards { display: grid; grid-template-columns: 1fr; gap: 18px; }
.card {
  position: relative; background: var(--ink-3); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--rose-line); }
.card__img { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.card:hover .card__img img { transform: scale(1.06); }
.card__img::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(15,13,16,.85)); }
.card__tag { position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  background: var(--rose); color: var(--ink); padding: 6px 12px; border-radius: 100px; font-weight: 400; }
.card__body { padding: 22px 24px 26px; }
.card__body h3 { font-size: var(--fs-h3); }
.card__body p { font-size: var(--fs-small); color: var(--cream-dim); margin-top: 10px; min-height: 0; }
.card__foot { display: flex; align-items: baseline; justify-content: space-between; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.card__price { font-family: var(--f-serif); font-size: 26px; color: var(--cream); }
.card__price small { font-family: var(--f-sans); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: block; }
.card__foot .go { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-2);
  display: grid; place-items: center; color: var(--rose); transition: .3s var(--ease); }
.card:hover .card__foot .go { background: var(--rose); color: var(--ink); border-color: var(--rose); }
.card--featured { border-color: var(--rose-line); }
.card--featured .card__tag { background: var(--cream); }

/* ============================================================
   Kroki — jak wygląda wizyta
   ============================================================ */
.steps { display: grid; grid-template-columns: 1fr; gap: 8px; counter-reset: step; }
.step { position: relative; padding: 34px 0; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; }
.step:last-child { border-bottom: 1px solid var(--line); }
.step__no { counter-increment: step; font-family: var(--f-serif); font-size: 44px; color: var(--rose); line-height: 1; min-width: 58px; }
.step__no::before { content: "0" counter(step); }
.step h3 { font-size: var(--fs-h3); }
.step p { margin-top: 8px; color: var(--cream-dim); max-width: 52ch; }

/* ============================================================
   Pasek metamorfoz / galeria home
   ============================================================ */
.strip { display: grid; grid-auto-flow: column; grid-auto-columns: 72%;
  gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 10px; margin-inline: calc(var(--pad-x) * -1); padding-inline: var(--pad-x);
  scrollbar-width: none; }
.strip::-webkit-scrollbar { display: none; }
.strip__item { scroll-snap-align: start; border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 3/4; }
.strip__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.strip__item:hover img { transform: scale(1.05); }
.strip__item figcaption { position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--cream); }
.strip__item::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(15,13,16,.8)); }

/* ============================================================
   Opinie
   ============================================================ */
.quotes { position: relative; }
.quote { max-width: 760px; margin-inline: auto; text-align: center; }
.quote__mark { font-family: var(--f-serif); font-size: 90px; line-height: .4; color: var(--rose-line); display: block; height: 40px; }
.quote__text { font-family: var(--f-sans); font-size: clamp(21px,3vw,31px); font-weight: 300; line-height: 1.45; color: var(--cream); }
.quote__by { margin-top: 26px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.quote__stars { color: var(--rose); letter-spacing: 4px; margin-bottom: 22px; font-size: 14px; }
.quotes__nav { display: flex; gap: 12px; justify-content: center; margin-top: 38px; }
.qdot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); transition: .3s var(--ease); }
.qdot.active { background: var(--rose); width: 26px; border-radius: 100px; }
.quote { display: none; }
.quote.active { display: block; animation: fadeUp .6s var(--ease); }

/* grid wariant opinii (statyczny) */
.quote-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.qcard { background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.qcard .quote__stars { margin-bottom: 14px; }
.qcard p { font-family: var(--f-sans); font-size: 18px; font-weight: 300; line-height: 1.6; color: var(--cream); }
.qcard .by { margin-top: 18px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   FAQ akordeon
   ============================================================ */
.faq { max-width: 820px; 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: 20px;
  padding: 24px 0; font-family: var(--f-serif); font-size: clamp(18px,2.2vw,23px); color: var(--cream); transition: color .3s var(--ease); }
.faq__q:hover { color: var(--rose); }
.faq__ic { flex: none; width: 22px; height: 22px; position: relative; }
.faq__ic::before, .faq__ic::after { content:""; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  background: var(--rose); transition: .35s var(--ease); }
.faq__ic::before { width: 14px; height: 1.5px; }
.faq__ic::after { width: 1.5px; height: 14px; }
.faq__item.open .faq__ic::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .45s var(--ease); }
.faq__a p { padding: 0 0 24px; color: var(--cream-dim); max-width: 64ch; }

/* ============================================================
   Oferta — listy cenowe
   ============================================================ */
.price-group { margin-top: clamp(34px,4vw,56px); }
.price-group__head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 8px; }
.price-group__head h2 { font-size: var(--fs-h2); }
.price-group__head .n { font-family: var(--f-script); font-size: 26px; color: var(--rose); }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 8px 24px; align-items: baseline;
  padding: 22px 0; border-top: 1px solid var(--line); }
.price-row:last-child { border-bottom: 1px solid var(--line); }
.price-row__main h3 { font-family: var(--f-serif); font-size: clamp(19px,2.3vw,24px); font-weight: 500; }
.price-row__main p { font-size: var(--fs-small); color: var(--cream-dim); margin-top: 6px; max-width: 60ch; }
.price-row__main .meta { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.price-row__amt { font-family: var(--f-serif); font-size: clamp(24px,3vw,32px); color: var(--cream); white-space: nowrap; }
.price-row--star .price-row__main h3::after { content: "★"; color: var(--rose); font-size: 13px; vertical-align: super; margin-left: 8px; }
.price-note { margin-top: 20px; font-size: 13px; color: var(--muted); font-style: italic; }
.price-group--set { background: var(--ink-2); border: 1px solid var(--rose-line); border-radius: var(--radius-lg); padding: clamp(26px,4vw,44px); }
.price-group--set .price-row { border-color: var(--line-2); }

/* ============================================================
   Galeria
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: clamp(32px,4vw,52px); }
.filter { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-dim);
  padding: 11px 22px; border-radius: 100px; border: 1px solid var(--line-2); transition: .3s var(--ease); }
.filter:hover { color: var(--cream); border-color: var(--rose-line); }
.filter.active { background: var(--rose); color: var(--ink); border-color: var(--rose); }
.grid-gal { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-gal .gitem { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5;
  position: relative; cursor: zoom-in; transition: opacity .4s var(--ease); }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gitem:hover img { transform: scale(1.05); }
.gitem::after { content:""; position:absolute; inset:0; background: rgba(15,13,16,0); transition: background .4s var(--ease); }
.gitem:hover::after { background: rgba(15,13,16,.18); }
.gitem.hide { display: none; }

/* lightbox */
.lb { position: fixed; inset: 0; z-index: 200; background: rgba(10,9,11,.94); display: none; place-items: center; padding: 5vw; }
.lb.open { display: grid; animation: fade .3s var(--ease); }
.lb img { max-width: 90vw; max-height: 88vh; border-radius: 8px; }
.lb__close { position: absolute; top: 24px; right: 28px; width: 46px; height: 46px; border: 1px solid var(--line-2); border-radius: 50%; color: var(--cream); font-size: 20px; display: grid; place-items: center; transition: .3s var(--ease); }
.lb__close:hover { border-color: var(--rose); color: var(--rose); rotate: 90deg; }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border: 1px solid var(--line-2); border-radius: 50%; color: var(--cream); display: grid; place-items: center; transition: .3s var(--ease); }
.lb__nav:hover { border-color: var(--rose); color: var(--rose); }
.lb__nav.prev { left: 3vw; } .lb__nav.next { right: 3vw; }

/* ============================================================
   Kontakt
   ============================================================ */
.contact { display: grid; grid-template-columns: 1fr; gap: clamp(36px,5vw,64px); }
.contact__info .row { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); }
.contact__info .row:last-child { border-bottom: 1px solid var(--line); }
.contact__info .row .ic { color: var(--rose); flex: none; margin-top: 3px; }
.contact__info .row .k { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.contact__info .row .v { font-size: 17px; color: var(--cream); margin-top: 3px; }
.contact__info .row .v a:hover { color: var(--rose); }
.hours { display: grid; grid-template-columns: 1fr auto; gap: 7px 18px; margin-top: 4px; font-size: 14px; }
.hours .d { color: var(--cream-dim); } .hours .h { color: var(--cream); }
.hours .closed { color: var(--muted); }

.form { background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px,4vw,44px); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.field input, .field textarea { width: 100%; background: var(--ink); border: 1px solid var(--line-2); border-radius: 10px;
  padding: 15px 16px; color: var(--cream); font: inherit; transition: border-color .3s var(--ease); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--rose); }
.field textarea { resize: vertical; min-height: 130px; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 12px; color: var(--muted); line-height: 1.5; margin-bottom: 22px; }
.consent input { margin-top: 3px; accent-color: var(--rose); }
.consent a { color: var(--rose); text-decoration: underline; }
.form button { width: 100%; }
.form__ok { display: none; text-align: center; padding: 30px 10px; }
.form__ok.show { display: block; }
.form__ok .script { font-size: 40px; color: var(--rose); }

.map-embed { width: 100%; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); margin-top: clamp(36px,5vw,56px); height: clamp(300px, 38vw, 440px); }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.4) invert(.9) hue-rotate(180deg) brightness(.9) contrast(.9); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(80% 130% at 50% 0%, var(--rose-soft), transparent 60%); }
.cta-band .wrap { position: relative; }
.cta-band h2 { font-size: var(--fs-h2); max-width: 18ch; margin-inline: auto; }
.cta-band .lead { margin: 20px auto 34px; max-width: 48ch; }
.cta-band__phone { font-family: var(--f-serif); font-size: clamp(30px,5vw,52px); color: var(--rose); display: inline-block; margin-bottom: 8px; }
.cta-band__phone:hover { color: var(--cream); }

/* ============================================================
   Stopka
   ============================================================ */
.footer { background: var(--ink-soft); padding: clamp(56px,7vw,90px) 0 34px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.footer .brand { font-size: 40px; display: inline-block; margin-bottom: 16px; }
.footer__col h4 { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-family: var(--f-sans); font-weight: 400; margin-bottom: 18px; }
.footer__col p, .footer__col a { color: var(--cream-dim); font-size: 14px; line-height: 1.9; display: block; }
.footer__col a:hover { color: var(--rose); }
.footer__tag { color: var(--muted); max-width: 30ch; font-size: 14px; line-height: 1.7; }
.footer__bottom { margin-top: clamp(40px,5vw,64px); padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; align-items: center; }
.footer__bottom p, .footer__bottom a { font-size: 12px; color: var(--muted); }
.footer__bottom a:hover { color: var(--rose); }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ============================================================
   Reveal animacje
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .hero__media img { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(2,1fr); }
  .quote-grid { grid-template-columns: repeat(2,1fr); }
  .strip { grid-auto-columns: 44%; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .grid-gal { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .about { grid-template-columns: 5fr 6fr; }
  .about.rev { grid-template-columns: 6fr 5fr; }
  .cards { grid-template-columns: repeat(4,1fr); }
  .steps { grid-template-columns: repeat(3,1fr); gap: 0; }
  .step { border-top: none; padding: 0 28px 0 0; display: block; }
  .step:last-child { border-bottom: none; }
  .step__no { margin-bottom: 18px; }
  .contact { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
  .grid-gal { grid-template-columns: repeat(3, 1fr); }
  .strip { grid-auto-columns: 30%; }
}
@media (max-width: 899px) {
  .nav {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 30px;
    background: var(--ink);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .35s var(--ease), visibility .35s var(--ease); z-index: 120;
  }
  body.menu-open .nav { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav a.navlink { font-size: 22px; font-family: var(--f-serif); text-transform: none; letter-spacing: 0; color: var(--cream); }
  .nav a.navlink::after { display: none; }
  .nav-cta { margin-top: 10px; }
  .burger { display: block; }
}

/* ============================================================
   Hero video
   ============================================================ */
.hero__media video { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
/* Mobile: osobny pionowy klip (hero-mobile.mp4) wykadrowany na ręce/oko — podmiana w JS.
   Overlay dziedziczy desktop (ta sama ciemność). Nudge object-position w prawo,
   żeby praca na klientce też była widoczna. */
@media (max-width: 768px) {
  .hero__media video { object-position: 58% center; }
}

/* ============================================================
   Placeholdery (mockup pod Figmę — miejsce na zdjęcia klientki)
   ============================================================ */
.ph {
  position: relative; display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(213,166,173,.06), transparent 60%),
    repeating-linear-gradient(135deg, var(--ink-3), var(--ink-3) 14px, #221d27 14px, #221d27 28px);
  border: 1px dashed var(--rose-line); color: var(--muted); overflow: hidden;
}
.ph__in { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 24px; text-align: center; }
.ph__ic { width: 38px; height: 38px; color: var(--rose); opacity: .8; }
.ph__t { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--cream-dim); max-width: 24ch; line-height: 1.6; }
.ph__s { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.card__img.ph::after { display: none; }
.card__img.ph { aspect-ratio: 3/4; }
.about__media .ph { border-radius: var(--radius-lg); aspect-ratio: 4/5; width: 100%; }
.subhero__img .ph { position: absolute; inset: 0; border: none; }

/* ============================================================
   Before / After slider (suwak przed-po)
   ============================================================ */
.ba-grid { display: grid; grid-template-columns: 1fr; gap: clamp(22px,3vw,34px); }
.ba-card .cap { margin-top: 16px; text-align: center; }
.ba-card .cap h3 { font-family: var(--f-display); font-size: 18px; font-weight: 500; letter-spacing: .015em; }
.ba-card .cap p { font-size: 13px; color: var(--muted); margin-top: 4px; }
/* slider porownawczy (img-comparison-slider, web component) — brandowy Glowbrow */
.ba-card { position: relative; }
.gb-slider {
  position: relative; display: block; width: 100%;
  border-radius: var(--radius-lg); overflow: hidden; background: var(--ink-3);
  border: 1px solid var(--line);
  box-shadow: 0 22px 55px rgba(0,0,0,.42);
  --divider-width: 2px;
  --divider-color: var(--rose);
  --default-handle-opacity: 0;   /* domyślny ukryty — używamy własnego slot="handle" */
}
.gb-slider img { width: 100%; height: clamp(280px, 38vw, 470px); object-fit: cover; object-position: center center; display: block; }
/* delikatne przyciemnienie krawędzi pod labele */
.gb-slider::after { content:""; position:absolute; inset:0; z-index:2; pointer-events:none;
  background: linear-gradient(180deg, transparent 62%, rgba(15,13,16,.45)); }

/* własny uchwyt — różany krążek z grotami, spójny z .btn/akcentami */
.gb-handle { display: grid; place-items: center; width: 100%; height: 100%; }
.gb-handle__grip {
  position: relative; width: 46px; height: 46px; border-radius: 50%;
  background: var(--rose); box-shadow: 0 6px 22px rgba(0,0,0,.5);
  display: block; transition: transform .3s var(--ease), background .3s var(--ease);
}
.gb-slider:hover .gb-handle__grip, .gb-slider:focus-within .gb-handle__grip { transform: scale(1.08); background: var(--cream); }
.gb-handle__grip::before, .gb-handle__grip::after {
  content: ""; position: absolute; top: 50%; width: 7px; height: 7px;
  border-top: 2px solid var(--ink); border-right: 2px solid var(--ink);
}
.gb-handle__grip::before { left: 12px; transform: translateY(-50%) rotate(-135deg); }  /* grot w lewo */
.gb-handle__grip::after  { right: 12px; transform: translateY(-50%) rotate(45deg); }    /* grot w prawo */

.gb-lbl {
  position: absolute; bottom: 16px; z-index: 4;
  font-family: var(--f-sans); font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}
.gb-lbl--przed { left: 16px; background: rgba(15,13,16,.72); color: var(--cream); border: 1px solid var(--line-2); }
.gb-lbl--po    { right: 16px; background: var(--rose); color: var(--ink); }

/* podpis pod sliderem — bardziej brandowy */
.ba-card .cap { margin-top: 18px; text-align: center; }
.ba-card .cap h3 { font-family: var(--f-display); font-size: var(--fs-h3); font-weight: 500; letter-spacing: .015em; }
.ba-card .cap p {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--rose);
  margin-top: 8px; display: inline-flex; align-items: center; gap: 8px;
}
.ba-card .cap p::before { content: ""; width: 18px; height: 1px; background: var(--rose-line); }

@media (min-width: 760px) {
  .ba-grid { grid-template-columns: 1fr 1fr; }
}

.gitem--ph { cursor: default; }
.gitem--ph .ph { width: 100%; }

/* hero mobile — finalne wartości (jedna reguła, wygrywa kolejnością) */
@media (max-width: 600px) {
  .hero { min-height: 100svh; }
  .hero__scroll { display: none !important; }
  .hero__inner { padding-bottom: clamp(40px, 9vw, 60px); }
  .hero h1 { margin-top: 16px; }
  .hero + .section { padding-top: clamp(40px, 9vw, 64px); }
}

/* badge Nowość */
.tag-new { display: inline-block; vertical-align: middle; margin-left: 10px; transform: translateY(-2px);
  font-family: var(--f-sans); font-size: 10px; font-weight: 400; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink); background: var(--rose); padding: 4px 10px; border-radius: 100px; }

/* ============================================================
   Legal (Polityka prywatności) — przeniesione ze statyku inline
   ============================================================ */
.legal p, .legal li { color: var(--cream-dim); margin-top: 14px; max-width: 70ch; }
.legal h2 { font-size: var(--fs-h3); margin-top: 44px; }
.legal ul { padding-left: 20px; list-style: disc; }
.legal a { color: var(--rose); text-decoration: underline; }
