/* ============================================================
   JUSTYNA BRONK — Natural Closer | Design System
   ============================================================ */

:root {
  --dark:    #09090f;
  --dark-2:  #111120;
  --dark-3:  #1c1c38;
  --rose:    #c4826a;
  --rose-2:  #daa088;
  --gold:    #c9a44a;
  --gold-2:  #e0bf6e;
  --cream:   #f8f2e8;
  --cream-2: #ede5d8;
  --card:    #ffffff;
  --ink:     #1a1630;
  --muted:   #7a6e85;
  --line:    #e8ddd5;
  --radius:  20px;
  --wrap:    1180px;
  --f-head:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --f-body:  'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--f-body); color: var(--ink); background: var(--cream); line-height: 1.7; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--f-head); line-height: 1.08; letter-spacing: -0.01em; }
h2 { font-size: clamp(30px, 4.5vw, 52px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--f-body); }

/* === LAYOUT === */
.wrap    { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 108px 0; }
.section.bg-dark   { background: var(--dark);   color: var(--cream); }
.section.bg-dark-2 { background: var(--dark-2); color: var(--cream); }
.section.bg-white  { background: var(--card); }
.center  { text-align: center; max-width: 740px; margin: 0 auto 56px; }

/* === TYPOGRAPHY === */
.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 14px;
}
.eyebrow.gold   { color: var(--gold-2); }
.eyebrow.light  { color: rgba(248,242,232,.6); }
.hl      { color: var(--rose); }
.hl-gold { color: var(--gold-2); }
.sep { width: 56px; height: 3px; background: linear-gradient(to right, var(--rose), transparent); border-radius: 2px; margin: 18px 0; }
.sep.c  { margin-left: auto; margin-right: auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--rose); color: #fff;
  font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 10px 28px -10px rgba(196,130,106,.55);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(196,130,106,.65); background: var(--rose-2); }
.btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.btn.ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); box-shadow: none; }
.btn.ghost:hover { border-color: var(--rose-2); color: var(--rose-2); background: transparent; }
.btn.dark-btn { background: var(--dark); color: var(--cream); box-shadow: 0 10px 28px -10px rgba(0,0,0,.5); }
.btn.dark-btn:hover { background: var(--dark-3); }
.btn.gold-btn { background: var(--gold); color: var(--dark); box-shadow: 0 10px 28px -10px rgba(201,164,74,.5); }
.btn.gold-btn:hover { background: var(--gold-2); }
.btn.outline { background: transparent; color: var(--rose); border: 1.5px solid var(--rose); box-shadow: none; }
.btn.outline:hover { background: var(--rose); color: #fff; }

/* === REVEAL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.left  { transform: translateX(-28px); }
.reveal.right { transform: translateX(28px); }
.reveal.in    { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ============================================================
   HEADER
   ============================================================ */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding: 20px 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.site-head.scrolled {
  background: rgba(9,9,15,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px -16px rgba(0,0,0,.7);
  padding: 12px 0;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; flex: none; white-space: nowrap; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; flex: none;
  background: linear-gradient(135deg, var(--rose), var(--rose-2));
  font-family: var(--f-head); font-size: 18px; font-weight: 700; color: #fff;
  box-shadow: 0 6px 20px -6px rgba(196,130,106,.6);
}
.brand-name { display: block; font-family: var(--f-head); font-size: 19px; font-weight: 700; line-height: 1.1; letter-spacing: .02em; }
.brand-sub  { display: block; font-family: var(--f-body); font-size: 11px; font-weight: 400; color: var(--rose-2); letter-spacing: .12em; text-transform: uppercase; }
.nav-links  { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500; white-space: nowrap; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--rose-2); }
.nav-cta { background: var(--rose) !important; color: #fff !important; padding: 10px 22px !important; border-radius: 999px !important; font-weight: 600 !important; transition: background .2s !important; }
.nav-cta:hover { background: var(--rose-2) !important; color: #fff !important; }
.burger { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 46px; height: 46px; border-radius: 13px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); cursor: pointer; padding: 0; flex: none; transition: background .2s, border-color .2s; }
.burger:hover, .burger.open { background: rgba(196,130,106,.28); border-color: var(--rose-2); }
.burger span { width: 22px; height: 2.5px; background: #fff; border-radius: 2px; transition: .3s; display: block; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 49;
  background: rgba(9,9,15,.98); backdrop-filter: blur(10px);
  transform: translateX(100%); transition: transform .35s ease;
  padding: 100px 30px 40px; overflow-y: auto;
}
.mobile-menu.open { transform: none; }
.mobile-menu a { display: block; color: #fff; font-size: 22px; font-family: var(--f-head); font-weight: 600; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); transition: color .2s; }
.mobile-menu a:hover { color: var(--rose-2); }
.mobile-menu .mob-cta { display: inline-flex !important; margin-top: 28px; padding: 14px 28px !important; background: var(--rose); border-radius: 999px; border: none !important; font-size: 16px; font-family: var(--f-body); font-weight: 600; }
body.lock { overflow: hidden; }

/* hamburger ≤1280 — menu nigdy nie łamie się na dwie linie */
@media (max-width: 1280px) {
  .nav-links { display: none; }
  .burger    { display: flex; }
  .mobile-menu { display: block; }
}

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
/* HERO — Editorial Gallery Split: portret jako jasny obiekt fine-art
   w kremowym passe-partout nad ciemnym, kinowym tłem. */
.hero-ed {
  --pw:  clamp(300px, 32vw, 440px);   /* szerokość ramy portretu — jedno źródło prawdy */
  --off: 20px;                         /* offset panelu-akcentu */
  position: relative; overflow: hidden; isolation: isolate;
  min-height: 100svh; display: flex; align-items: center;
  /* odwrócona logika oświetlenia: ciemna scena + ciepła poświata za portretem,
     zero ciężkiej czerni na twarzy */
  background:
    radial-gradient(120% 90% at 78% 38%, rgba(196,130,106,.16), transparent 60%),
    radial-gradient(90% 80% at 12% 70%, rgba(201,164,74,.07), transparent 55%),
    linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 60%, var(--dark) 100%);
  padding: clamp(118px,15vh,150px) 0 clamp(72px,10vh,96px);
  color: var(--cream);
}
/* miękka radialna aura ZA ramą — podświetla scenę, nie kładzie nakładki na twarz */
.hero-aura {
  position: absolute; z-index: 0; right: -4%; top: 50%; transform: translateY(-50%);
  width: min(620px,52vw); height: min(620px,52vw); pointer-events: none;
  background: radial-gradient(circle, rgba(218,160,136,.26), rgba(201,164,74,.09) 45%, transparent 70%);
  filter: blur(10px);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .9fr;
  gap: clamp(40px,6vw,84px); align-items: center; width: 100%;
}

/* ---- LEWA: copy ---- */
.hero-copy { max-width: 600px; }
.hero-ed .eyebrow { color: var(--gold-2); margin-bottom: 18px; }
.hero-ed h1 { font-size: clamp(44px,6vw,80px); font-weight: 700; line-height: 1.03; color: #fff; margin-bottom: .3em; }
.hero-ed .lead { font-size: clamp(16px,2vw,20px); color: rgba(255,255,255,.8); max-width: 540px; margin-bottom: 36px; line-height: 1.75; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-ed .btn.gold-btn svg { transition: transform .2s; }
.hero-ed .btn.gold-btn:hover svg { transform: translateX(3px); }

/* liczniki — pionowe gradientowe kreski rose→gold zamiast separatorów */
.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(26px,3vw,44px); margin-top: clamp(44px,6vh,56px); }
.hero-stat { position: relative; padding-left: 18px; }
.hero-stat::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 2px; border-radius: 2px; background: linear-gradient(var(--rose), var(--gold)); }
.hero-stat .n { font-family: var(--f-head); font-size: clamp(30px,3vw,40px); font-weight: 700; color: var(--gold-2); line-height: 1; }
.hero-stat .l { font-size: 13px; color: rgba(255,255,255,.62); margin-top: 5px; line-height: 1.4; max-width: 150px; }

/* ---- PRAWA: portret jako obiekt galeryjny ---- */
.hero-portrait { position: relative; justify-self: center; width: var(--pw); max-width: 84%; }
/* offset-panel: jeden ciemno-miedziany ton + 1px metaliczny obrys — głębia bez krzyku */
.hp-accent {
  position: absolute; inset: 0; z-index: 0; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(140,74,52,.55), rgba(120,86,40,.42));
  border: 1px solid rgba(224,191,110,.35);
  transform: translate(var(--off), var(--off)); opacity: .85;
}
/* kremowe passe-partout + wielowarstwowy miedziany cień — portret unosi się nad tłem */
.hp-frame {
  position: relative; z-index: 1; margin: 0; padding: 7px;
  background: var(--cream); border-radius: var(--radius);
  box-shadow:
    0 2px 4px rgba(0,0,0,.22),
    0 24px 50px -18px rgba(0,0,0,.55),
    0 40px 90px -40px rgba(196,130,106,.40);
}
.hp-frame img {
  display: block; width: 100%; height: auto; aspect-ratio: 4/5;
  object-fit: cover; object-position: 50% 50%;
  border-radius: calc(var(--radius) - 7px);
  filter: saturate(1.02) contrast(1.02);
}
/* delikatny dolny feather TYLKO pod podpis — nie dotyka twarzy w górnej tercji */
.hp-feather {
  position: absolute; inset: 7px; z-index: 2; pointer-events: none;
  border-radius: calc(var(--radius) - 7px);
  background: linear-gradient(180deg, transparent 62%, rgba(9,9,15,.42) 100%);
}
/* podpis-sygnatura — dojrzały dowód marki zamiast badge'a z gwiazdką */
.hp-cap { position: absolute; z-index: 3; left: 16px; right: 16px; bottom: 14px; display: flex; flex-direction: column; gap: 2px; }
.hp-cap::before { content: ""; display: block; width: 40px; height: 1px; margin-bottom: 9px; background: linear-gradient(90deg, var(--gold-2), transparent); }
.hp-cap-name { font-family: var(--f-head); font-weight: 600; font-size: 21px; line-height: 1.1; color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.55); }
.hp-cap-role { font-family: var(--f-body); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(248,242,232,.8); }

/* ---- styk hero ↔ trust-bar: cienka miedziano-złota hairline ---- */
.hero-ed + .trust-bar { position: relative; }
.hero-ed + .trust-bar::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,164,74,.5), transparent); }

/* ---- responsywność hero ---- */
@media (max-width: 960px) {
  .hero-ed { min-height: auto; padding: 128px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-copy { max-width: 620px; margin: 0 auto; }
  .hero-ed .lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-stat { text-align: left; }
  .hero-portrait { order: -1; width: min(340px, 76%); }
  .hero-aura { display: none; }
}
@media (max-width: 480px) {
  .hero-ed { padding: 104px 0 54px; }
  .hero-portrait { width: min(280px, 84%); --off: 14px; }
  .hero-stats { gap: 20px 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-ed .btn.gold-btn:hover svg { transform: none; }
}

/* ============================================================
   PAGE HERO — PODSTRONY
   ============================================================ */
.page-hero {
  position: relative; min-height: 58vh; display: flex; align-items: flex-end;
  overflow: hidden; background: var(--dark); padding: 130px 0 72px;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover !important; background-position: center !important; opacity: .28; }
.page-hero-ov { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(9,9,15,.96) 35%, rgba(9,9,15,.55) 100%); }
.page-hero-content { position: relative; z-index: 2; color: #fff; max-width: 700px; }
.page-hero-content h1 { font-size: clamp(38px,5.5vw,70px); font-weight: 700; margin-top: 8px; }
.page-hero-content p  { font-size: 18px; color: rgba(255,255,255,.72); margin-top: 16px; max-width: 560px; line-height: 1.75; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: var(--dark-2); padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.trust-bar .wrap { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 44px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500; }
.trust-item svg { width: 18px; height: 18px; stroke: var(--rose-2); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ============================================================
   SLIDER
   ============================================================ */
.slider-section { position: relative; height: 540px; overflow: hidden; }
@media (max-width: 768px) { .slider-section { height: 440px; } }
.slider { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1s ease;
  background-size: cover !important; background-position: center !important;
  display: flex; align-items: center;
}
.slide.active { opacity: 1; }
.slide-ov { position: absolute; inset: 0; background: linear-gradient(to right, rgba(9,9,15,.92) 30%, rgba(9,9,15,.45) 100%); }
.slide-content {
  position: relative; z-index: 2; color: #fff;
  max-width: 580px;
  padding-left: max(24px, calc((100vw - var(--wrap)) / 2 + 24px));
  padding-right: 24px;
}
.slide-content .eyebrow { color: var(--rose-2); }
.slide-content h2 { font-size: clamp(26px,3.8vw,46px); color: #fff; margin-bottom: 14px; }
.slide-content p  { font-size: 16px; color: rgba(255,255,255,.78); max-width: 480px; margin-bottom: 26px; }
.slider-controls { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; align-items: center; gap: 14px; }
.slider-dots { display: flex; gap: 8px; align-items: center; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); border: none; cursor: pointer; transition: .3s; padding: 0; }
.dot.active { background: var(--rose-2); width: 26px; border-radius: 4px; }
.sl-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; cursor: pointer; display: grid; place-items: center; transition: .2s; }
.sl-btn:hover { background: rgba(255,255,255,.2); }
.sl-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   SPLIT LAYOUT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split.rev { direction: rtl; } .split.rev > * { direction: ltr; }
@media (max-width: 900px) { .split.rev { direction: ltr; } }
/* background-size/position z !important — inline skrót `background:` resetuje je do auto/0%,
   przez co obraz pokazywał tylko górno-lewy wycinek i ucinał twarz. */
.split-img { aspect-ratio: 1/1; border-radius: 26px; background-size: cover !important; background-position: center !important; box-shadow: 0 32px 72px -24px rgba(0,0,0,.22); }

/* siatka kart „Dla kogo" — zawsze responsywna (1 kolumna na tablecie/mobile) */
.for-who-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px) { .for-who-grid { grid-template-columns: 1fr; gap: 18px; } }
.split-img.bd { border: 5px solid rgba(255,255,255,.06); }

/* === FEATURE LIST === */
.feats { display: flex; flex-direction: column; gap: 22px; margin-top: 26px; }
.feat  { display: flex; gap: 16px; }
.feat .ic { flex: none; width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg,rgba(196,130,106,.12),rgba(196,130,106,.03)); border: 1px solid rgba(196,130,106,.2); }
.feat .ic svg { width: 22px; height: 22px; stroke: var(--rose); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.feat h4 { font-family: var(--f-body); font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.feat p  { font-size: 15px; color: var(--muted); margin: 0; }
.feat.on-dark h4 { color: var(--cream); }
.feat.on-dark p  { color: rgba(248,242,232,.62); }
.feat.on-dark .ic { background: rgba(196,130,106,.08); border-color: rgba(196,130,106,.18); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.svcs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
@media (max-width: 900px) { .svcs-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .svcs-grid { grid-template-columns: 1fr; } }
.svc-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 32px 64px -24px rgba(0,0,0,.14); }
.svc-img { aspect-ratio: 4/3; background-size: cover !important; background-position: center !important; position: relative; }
.svc-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 48%,rgba(9,9,15,.4)); }
.svc-body { padding: 28px 26px 32px; flex: 1; display: flex; flex-direction: column; }
.svc-body .tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--rose); margin-bottom: 8px; }
.svc-body h3 { font-size: 24px; margin-bottom: 10px; }
.svc-body p  { font-size: 15px; color: var(--muted); flex: 1; }
.svc-body ul { list-style: none; margin-top: 16px; }
.svc-body li { padding: 9px 0 9px 20px; font-size: 14px; color: var(--muted); border-bottom: 1px solid var(--line); position: relative; }
.svc-body li:last-child { border-bottom: none; }
.svc-body li::before { content: ''; position: absolute; left: 0; top: 17px; width: 8px; height: 8px; border-radius: 50%; background: var(--rose); opacity: .55; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px)  { .steps-grid { grid-template-columns: 1fr; } }
.step { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 32px 26px; transition: transform .3s, background .3s; }
.step:hover { transform: translateY(-6px); background: rgba(255,255,255,.07); }
.step .sn { font-family: var(--f-head); font-size: 54px; font-weight: 700; color: var(--rose); opacity: .25; line-height: 1; margin-bottom: 14px; }
.step h3 { font-family: var(--f-body); font-size: 18px; font-weight: 700; color: var(--cream); margin-bottom: 8px; }
.step p  { font-size: 14px; color: rgba(248,242,232,.62); margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.testi .stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi .stars svg { width: 15px; height: 15px; fill: var(--gold); stroke: none; }
.testi blockquote { font-size: 15px; color: var(--ink); line-height: 1.72; margin-bottom: 20px; font-style: italic; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .av { width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center; background: linear-gradient(135deg,var(--dark-2),var(--dark-3)); font-family: var(--f-head); font-size: 17px; font-weight: 700; color: var(--rose-2); }
.testi .who b    { display: block; font-size: 14px; color: var(--ink); }
.testi .who span { display: block; font-size: 12px; color: var(--muted); }

/* ============================================================
   STATS
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
.stat .n { font-family: var(--f-head); font-size: clamp(42px,6vw,68px); font-weight: 700; color: var(--rose-2); line-height: 1; }
.stat .l { font-size: 14px; color: rgba(248,242,232,.6); margin-top: 8px; line-height: 1.4; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: linear-gradient(135deg,var(--dark-3),var(--dark-2)); padding: 88px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%,rgba(196,130,106,.18) 0%,transparent 68%); }
.cta-band .inner { position: relative; z-index: 2; }
.cta-band h2 { color: var(--cream); }
.cta-band p  { font-size: 17px; color: rgba(248,242,232,.7); max-width: 560px; margin: 14px auto 34px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 820px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
.gal-item { aspect-ratio: 1/1; border-radius: 16px; overflow: hidden; position: relative; background: var(--dark-2); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .6s; }
.gal-item:hover img { transform: scale(1.09); }
.gal-caption { position: absolute; inset: auto 0 0 0; padding: 16px; color: #fff; font-size: 13px; font-weight: 600; background: linear-gradient(180deg,transparent,rgba(9,9,15,.82)); opacity: 0; transition: opacity .3s; }
.gal-item:hover .gal-caption { opacity: 1; }

/* ============================================================
   PACKAGES
   ============================================================ */
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; align-items: start; }
@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; } }
.pkg { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 32px 42px; position: relative; transition: transform .3s, box-shadow .3s; }
.pkg:hover { transform: translateY(-6px); box-shadow: 0 28px 60px -20px rgba(0,0,0,.14); }
.pkg.featured { background: var(--dark); border-color: var(--rose); color: var(--cream); }
.pkg.featured .pkg-price, .pkg.featured h3 { color: var(--cream); }
.pkg-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--rose); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 16px; border-radius: 999px; white-space: nowrap; }
.pkg-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--rose); margin-bottom: 8px; }
.pkg h3 { font-size: 28px; margin-bottom: 6px; }
.pkg-price { font-family: var(--f-head); font-size: 50px; font-weight: 700; color: var(--ink); line-height: 1; margin: 18px 0 4px; }
.pkg-price small { font-size: 18px; font-weight: 400; }
.pkg-desc { font-size: 14px; color: var(--muted); padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 22px; line-height: 1.65; }
.pkg.featured .pkg-desc { color: rgba(248,242,232,.58); border-color: rgba(255,255,255,.1); }
.pkg-feats { list-style: none; margin-bottom: 28px; }
.pkg-feats li { padding: 9px 0; font-size: 14px; border-bottom: 1px solid var(--line); display: flex; gap: 10px; align-items: flex-start; color: var(--ink); }
.pkg.featured .pkg-feats li { border-color: rgba(255,255,255,.08); color: rgba(248,242,232,.82); }
.pkg-feats li svg { width: 15px; height: 15px; stroke: var(--rose); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; flex: none; margin-top: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 0; font-family: var(--f-head); font-size: 22px; color: var(--ink); text-align: left; }
.faq-arrow { flex: none; transition: transform .3s; }
.faq-arrow svg { width: 20px; height: 20px; stroke: var(--rose); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding-bottom: 24px; color: var(--muted); font-size: 16px; line-height: 1.72; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 24px; padding: 40px; }
.f-field { margin-bottom: 18px; }
.f-field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(248,242,232,.58); margin-bottom: 8px; }
.f-field input, .f-field textarea, .f-field select { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.05); color: var(--cream); font-family: var(--f-body); font-size: 15px; transition: border-color .2s; }
.f-field input:focus, .f-field textarea:focus, .f-field select:focus { outline: none; border-color: var(--rose); }
.f-field input::placeholder, .f-field textarea::placeholder { color: rgba(248,242,232,.28); }
.f-field select option { background: var(--dark-2); color: var(--cream); }
.contact-info-col { display: flex; flex-direction: column; gap: 20px; }
.info-row { display: flex; align-items: center; gap: 14px; }
.info-ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(135deg,var(--rose),var(--rose-2)); flex: none; }
.info-ic svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.info-row b    { display: block; font-size: 15px; color: var(--cream); }
.info-row span { display: block; font-size: 13px; color: rgba(248,242,232,.58); }
.contact-img { aspect-ratio: 1/1; border-radius: 24px; background-size: cover; background-position: center; background: linear-gradient(135deg,var(--dark-3),var(--dark-2)) url('../img/kontakt-img.webp'); background-size: cover; }

/* ============================================================
   BADGES / PILLS
   ============================================================ */
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badge { padding: 7px 16px; border-radius: 999px; font-size: 13px; font-weight: 500; background: rgba(196,130,106,.1); color: var(--rose); border: 1px solid rgba(196,130,106,.2); }
.badge.dark { background: rgba(196,130,106,.08); color: var(--rose-2); border-color: rgba(196,130,106,.18); }

/* ============================================================
   BG-IMAGE SECTIONS
   ============================================================ */
.bg-section { position: relative; overflow: hidden; }
.bg-section .bg-img { position: absolute; inset: 0; background-size: cover !important; background-position: center !important; opacity: .13; }
.bg-section .inner { position: relative; z-index: 2; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: #05050d; color: rgba(248,242,232,.55); padding: 64px 0 30px; font-size: 14px; }
.foot-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 36px; margin-bottom: 44px; }
.foot-brand { max-width: 320px; }
.foot-brand p { margin-top: 14px; line-height: 1.72; }
.foot-col h4 { color: var(--cream); font-family: var(--f-body); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.foot-col a { display: block; color: rgba(248,242,232,.52); padding: 5px 0; transition: color .2s; }
.foot-col a:hover { color: var(--rose-2); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; align-items: center; }
.foot-bottom a { color: rgba(248,242,232,.52); transition: color .2s; }
.foot-bottom a:hover { color: var(--rose-2); }
.foot-social { display: flex; gap: 14px; }
.foot-social a { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 9px; border: 1px solid rgba(255,255,255,.12); color: rgba(248,242,232,.6); transition: border-color .2s, color .2s; }
.foot-social a:hover { border-color: var(--rose-2); color: var(--rose-2); }
.foot-social svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .svcs-grid  { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .pkg-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .hero-stats { gap: 22px; }
  .hero-cta   { flex-direction: column; align-items: flex-start; }
}
