/* =========================================================
   OsaStop — usuwanie os i szerszeni (wersja zdjęciowa)
   ========================================================= */
:root {
  --bg:        #0f0d09;
  --bg-2:      #14110b;
  --surface:   #1a150d;
  --surface-2: #221b10;
  --line:      rgba(255, 194, 28, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);

  --accent:      #ffc21c;
  --accent-2:    #ffd451;
  --accent-deep: #d68a00;
  --danger:      #ff5a3c;
  --danger-2:    #ff7a5f;
  --danger-deep: #d8341c;

  --text:      #f7f2e8;
  --text-soft: #cdc3b1;
  --text-mut:  #8f8674;

  --font-display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius:    22px;
  --radius-lg: 34px;
  --radius-sm: 14px;

  --shadow:      0 24px 60px -24px rgba(0, 0, 0, 0.72);
  --shadow-soft: 0 12px 40px -20px rgba(0, 0, 0, 0.6);
  --glow:        0 10px 40px -12px rgba(255, 194, 28, 0.45);

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

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.02em; }
.accent { color: var(--accent); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  --btn-pad-y: 12px; --btn-pad-x: 20px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border: 1px solid transparent; border-radius: 100px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease), box-shadow 0.35s var(--ease), color 0.3s var(--ease), border-color 0.3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: scale(0.97); }
.btn--lg { --btn-pad-y: 16px; --btn-pad-x: 28px; font-size: 16.5px; }
.btn--block { width: 100%; }
.btn--primary { background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #211603; box-shadow: var(--glow); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 46px -12px rgba(255, 194, 28, 0.6); }
.btn--ghost { background: rgba(255, 255, 255, 0.06); color: var(--text); border-color: var(--line-soft); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); border-color: var(--line); }
.btn--phone { background: rgba(255, 255, 255, 0.05); border-color: var(--line-soft); padding: 10px 18px; }
.btn--phone:hover { background: rgba(255, 194, 28, 0.12); border-color: var(--line); }

/* =========================================================
   NAV
   ========================================================= */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s, backdrop-filter 0.4s; border-bottom: 1px solid transparent; }
.nav.is-scrolled { background: rgba(15, 13, 9, 0.74); backdrop-filter: blur(16px) saturate(140%); border-bottom-color: var(--line-soft); box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.9); }
.nav__inner { display: flex; align-items: center; gap: 20px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; }
.brand__mark { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, var(--accent-2), var(--accent-deep)); color: #211603; box-shadow: var(--glow); flex-shrink: 0; }
.brand__mark svg { width: 24px; height: 24px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.brand__text em { font-style: normal; font-size: 11.5px; color: var(--text-mut); letter-spacing: 0.02em; }
.nav__links { display: none; gap: 22px; }
.nav__links a { font-size: 15px; color: var(--text-soft); font-weight: 500; position: relative; transition: color 0.25s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; border-radius: 2px; background: var(--accent); transition: width 0.3s var(--ease); }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: inline-flex; }
.nav__toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0 10px; background: rgba(255,255,255,0.05); border: 1px solid var(--line-soft); border-radius: 12px; }
.nav__toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile { display: flex; flex-direction: column; gap: 4px; padding: 8px clamp(20px, 5vw, 40px) 24px; max-height: 0; overflow: hidden; opacity: 0; background: rgba(15, 13, 9, 0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line-soft); transition: max-height 0.45s var(--ease), opacity 0.3s; }
.nav.is-open .nav__mobile { max-height: 380px; opacity: 1; }
.nav__mobile a { padding: 14px 6px; font-size: 17px; font-weight: 500; color: var(--text-soft); border-bottom: 1px solid var(--line-soft); }
.nav__mobile a:last-child { border: none; margin-top: 12px; }
.nav__mobile .btn { color: #211603; }

/* =========================================================
   HERO (zdjęcie w tle)
   ========================================================= */
.hero {
  position: relative; z-index: 1;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(56px, 9vh, 104px); padding-top: 128px;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; background: var(--bg); }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; transition: opacity 1.1s var(--ease), transform 7s var(--ease); }
.hero__media picture { display: block; width: 100%; height: 100%; }
.js .hero__img { opacity: 0; transform: scale(1.05); }
.hero__img.is-ready { opacity: 1; transform: scale(1); }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,13,9,0.94) 0%, rgba(15,13,9,0.76) 40%, rgba(15,13,9,0.3) 70%, rgba(15,13,9,0.08) 100%),
    linear-gradient(0deg, var(--bg) 2%, rgba(15,13,9,0.5) 26%, transparent 55%);
}
.hero__content { position: relative; z-index: 2; max-width: 1120px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-soft); padding: 8px 15px; border: 1px solid var(--line); border-radius: 100px; background: rgba(0,0,0,0.3); backdrop-filter: blur(6px); margin-bottom: 22px; }
.hero__eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--danger); box-shadow: 0 0 0 4px rgba(255,90,60,0.25); animation: pulse 2s var(--ease) infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(255,90,60,0.22); } 50% { box-shadow: 0 0 0 9px rgba(255,90,60,0); } }
.hero__title { font-size: clamp(2.2rem, 5.6vw, 4rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 18px; text-shadow: 0 2px 34px rgba(0,0,0,0.6); }
.hero__sub { font-size: clamp(1.05rem, 2.3vw, 1.3rem); color: var(--text-soft); max-width: 600px; margin-bottom: 30px; text-shadow: 0 1px 16px rgba(0,0,0,0.5); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__stats { display: flex; gap: clamp(18px, 5vw, 48px); flex-wrap: wrap; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.3rem); font-weight: 700; color: var(--accent); letter-spacing: -0.02em; }
.hero__stats span { font-size: 13px; color: var(--text-soft); letter-spacing: 0.02em; margin-top: 2px; }
.hero__stats li:not(:last-child) { padding-right: clamp(18px, 5vw, 48px); border-right: 1px solid var(--line-soft); }

/* =========================================================
   SCROLL-COVER
   ========================================================= */
.scroll-cover { position: relative; z-index: 5; background: var(--bg); border-radius: var(--radius-lg) var(--radius-lg) 0 0; box-shadow: 0 -34px 70px -24px rgba(0, 0, 0, 0.74); }
.scroll-cover::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: min(160px, 40%); height: 4px; margin-top: 14px; border-radius: 100px; background: linear-gradient(90deg, transparent, rgba(255, 194, 28, 0.6), transparent); }

/* =========================================================
   USP
   ========================================================= */
.usp { padding: clamp(38px, 6vw, 64px) 0 clamp(6px, 2vw, 12px); }
.usp__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.usp__item { display: flex; align-items: center; gap: 14px; padding: 18px 18px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s; }
.usp__item:hover { transform: translateY(-4px); border-color: var(--line); background: var(--surface-2); }
.usp__ic { display: grid; place-items: center; flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px; color: var(--accent); background: linear-gradient(160deg, rgba(255,194,28,0.18), rgba(255,194,28,0.04)); border: 1px solid var(--line); }
.usp__ic svg { width: 23px; height: 23px; }
.usp__item strong { font-family: var(--font-display); font-weight: 600; font-size: clamp(0.92rem, 2.4vw, 1.02rem); letter-spacing: -0.01em; }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: clamp(58px, 10vw, 118px) 0; position: relative; }
.section--alt { background: var(--bg-2); border-radius: var(--radius-lg); margin: 0 clamp(0px, 2vw, 24px); overflow: hidden; }
.section--alt::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: radial-gradient(90% 60% at 50% 0%, rgba(255,194,28,0.06), transparent 60%); }
.section__head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 56px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__kicker { display: inline-block; font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.section__kicker::before { content: "— "; opacity: 0.6; }
.section__title { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.02em; font-size: clamp(1.9rem, 4.6vw, 3rem); font-weight: 700; }
.section__lead { margin-top: 14px; font-size: clamp(1rem, 2vw, 1.18rem); color: var(--text-soft); max-width: 620px; }

/* =========================================================
   SPLIT (zagrożenie: zdjęcie + punkty)
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line-soft); }
.split__media img { width: 100%; height: 100%; max-height: 480px; object-fit: cover; }
.split__media figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 20px 16px; font-size: 14px; color: var(--text); background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent); font-weight: 500; }
.split__body .section__kicker { margin-bottom: 12px; }
.bullets { display: grid; gap: 12px; margin: 22px 0 28px; }
.bullets li { display: flex; align-items: center; gap: 14px; font-size: clamp(0.98rem, 2vw, 1.08rem); color: var(--text); font-weight: 500; }
.bullets__ic { display: grid; place-items: center; flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; color: var(--danger-2); background: rgba(255,90,60,0.12); border: 1px solid rgba(255,90,60,0.24); }
.bullets__ic svg { width: 21px; height: 21px; }

/* =========================================================
   GATUNKI — karty ze zdjęciami
   ========================================================= */
.species-inner { position: relative; z-index: 2; }
.species { display: grid; grid-template-columns: 1fr; gap: 18px; }
.species__card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s; }
.species__card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow-soft); }
.species__img { aspect-ratio: 4 / 3; background: #ffffff; overflow: hidden; }
.species__img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s var(--ease); }
.species__card:hover .species__img img { transform: scale(1.05); }
.species__txt { padding: 20px 22px 24px; }
.species__badge { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 12px; }
.species__badge--wasp   { color: #211603; background: linear-gradient(135deg, var(--accent-2), var(--accent)); }
.species__badge--hornet { color: #fff; background: linear-gradient(135deg, var(--danger-2), var(--danger-deep)); }
.species__badge--ground { color: #211603; background: linear-gradient(135deg, #d9b98a, #b98a4e); }
.species__txt p { color: var(--text-soft); font-size: 15.5px; }

/* =========================================================
   FAKTY (portret + liczby)
   ========================================================= */
.facts-band { padding: clamp(20px, 4vw, 40px) clamp(0px, 2vw, 24px); }
.facts-band__inner { display: grid; grid-template-columns: 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; background: linear-gradient(160deg, #17130c, #0e0b07); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 48px); overflow: hidden; }
.facts-band__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.facts-band__media img { width: 100%; height: 100%; max-height: 340px; object-fit: cover; }
.facts-band__body > .section__title { margin-bottom: 22px; }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.fact { padding: 18px 18px 20px; background: linear-gradient(160deg, rgba(255,194,28,0.08), rgba(255,194,28,0.02)); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.fact strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 4.5vw, 2.2rem); color: var(--accent); letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; }
.fact span { color: var(--text-soft); font-size: 13.5px; line-height: 1.45; }

/* =========================================================
   JAK DZIAŁAM
   ========================================================= */
.steps { display: grid; grid-template-columns: 1fr; gap: 14px; }
.step { position: relative; padding: 26px 26px 26px 84px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); transition: transform 0.4s var(--ease), border-color 0.4s; }
.step:hover { transform: translateY(-4px); border-color: var(--line); }
.step__num { position: absolute; left: 24px; top: 22px; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--accent); background: rgba(255,194,28,0.1); border: 1px solid var(--line); }
.step h3 { font-size: 1.18rem; font-weight: 600; margin-bottom: 5px; }
.step p { color: var(--text-soft); font-size: 15px; }

/* =========================================================
   OPINIE
   ========================================================= */
.reviews { display: grid; grid-template-columns: 1fr; gap: 16px; }
.review { padding: 24px 22px 22px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); transition: transform 0.4s var(--ease), border-color 0.4s; }
.review:hover { transform: translateY(-4px); border-color: var(--line); }
.review__stars { color: var(--accent); letter-spacing: 3px; font-size: 15px; margin-bottom: 12px; }
.review blockquote { font-size: 15.5px; color: var(--text); line-height: 1.55; }
.review figcaption { margin-top: 14px; font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--text-mut); }

/* =========================================================
   CTA
   ========================================================= */
.cta { padding: clamp(20px, 4vw, 40px) clamp(0px, 2vw, 24px); }
.cta__inner { position: relative; text-align: center; padding: clamp(44px, 7vw, 84px) clamp(24px, 5vw, 64px); border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%); color: #211603; overflow: hidden; isolation: isolate; box-shadow: 0 40px 80px -40px rgba(255,194,28,0.5); }
.cta__inner::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 80% at 15% 20%, rgba(255,255,255,0.28), transparent 60%), radial-gradient(50% 60% at 90% 90%, rgba(33,22,3,0.25), transparent 60%); }
.cta__stripe { position: absolute; inset: 0 0 auto 0; height: 8px; background: repeating-linear-gradient(45deg, #211603 0 16px, transparent 16px 32px); opacity: 0.5; }
.cta__trust { font-family: var(--font-display); font-weight: 600; font-size: clamp(0.78rem, 2.1vw, 0.92rem); letter-spacing: 0.03em; text-transform: uppercase; color: rgba(33,22,3,0.7); margin: 0 auto 14px; }
.cta__title { font-size: clamp(1.7rem, 4.4vw, 2.8rem); font-weight: 800; max-width: 720px; margin: 0 auto 22px; letter-spacing: -0.03em; }
.cta__text { font-size: clamp(1rem, 2vw, 1.2rem); max-width: 520px; margin: 0 auto 26px; color: rgba(33,22,3,0.82); }
.cta .btn--primary { background: #211603; color: var(--accent-2); box-shadow: 0 16px 40px -16px rgba(0,0,0,0.6); }
.cta .btn--primary:hover { background: #000; }

/* =========================================================
   KONTAKT
   ========================================================= */
.contact { display: grid; grid-template-columns: 1fr; gap: 36px; }
.contact__list { margin-top: 28px; display: grid; gap: 8px; }
.contact__list li { display: flex; align-items: center; gap: 16px; padding: 16px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--line-soft); }
.contact__ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; color: var(--accent); background: rgba(255,194,28,0.1); border: 1px solid var(--line); flex-shrink: 0; }
.contact__ic svg { width: 22px; height: 22px; }
.contact__label { display: block; font-size: 12.5px; color: var(--text-mut); letter-spacing: 0.04em; text-transform: uppercase; }
.contact__value { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; }
a.contact__value:hover { color: var(--accent); }
.contact__form { padding: clamp(24px, 4vw, 34px); background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); display: grid; gap: 16px; box-shadow: var(--shadow-soft); }
.field { display: grid; gap: 7px; }
.field label { font-size: 13.5px; font-weight: 500; color: var(--text-soft); }
.field input, .field textarea { font: inherit; font-size: 15.5px; color: var(--text); background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); padding: 13px 15px; width: 100%; transition: border-color 0.25s, box-shadow 0.25s, background 0.25s; }
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-mut); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: var(--surface-2); box-shadow: 0 0 0 4px rgba(255,194,28,0.12); }
.field.is-invalid input, .field.is-invalid textarea { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(255,90,60,0.14); }
.form__note { font-size: 14px; min-height: 20px; margin-top: 2px; }
.form__note.is-ok { color: var(--accent-2); }
.form__note.is-err { color: var(--danger-2); }

/* =========================================================
   FOOTER + FAB
   ========================================================= */
.footer { position: relative; z-index: 5; background: var(--bg); padding: 40px 0; border-top: 1px solid var(--line-soft); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.brand--footer { margin: 0; }
.footer__copy { color: var(--text-mut); font-size: 14px; }
.footer__phone { font-family: var(--font-display); font-weight: 600; color: var(--text); }
.footer__phone:hover { color: var(--accent); }

.fab { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #211603; box-shadow: var(--glow), 0 10px 30px -8px rgba(0,0,0,0.6); transform: translateY(120px); transition: transform 0.5s var(--ease); }
.fab::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--accent); opacity: 0; animation: fabPing 2.4s var(--ease) infinite; }
@keyframes fabPing { 0% { transform: scale(0.9); opacity: 0.6; } 100% { transform: scale(1.5); opacity: 0; } }
.fab svg { width: 24px; height: 24px; position: relative; }
.fab.is-visible { transform: translateY(0); }
.fab:active { transform: scale(0.94); }

/* =========================================================
   OSA — animowany owad (SVG w JS) — tylko sekcja gatunków
   ========================================================= */
.wasp-layer { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.wasp { position: absolute; width: clamp(60px, 7vw, 104px); will-change: transform; filter: drop-shadow(0 10px 14px rgba(0,0,0,0.4)); opacity: 0.9; }
.wasp svg { width: 100%; height: auto; overflow: visible; }
.wasp__facing.is-flip { transform: scaleX(-1); }
.wasp__body { transform-box: fill-box; transform-origin: 60% 50%; animation: waspHover 1.9s ease-in-out infinite; }
@keyframes waspHover { 0%,100% { transform: rotate(-2deg); } 50% { transform: rotate(3deg); } }
.wasp__wing { transform-box: fill-box; transform-origin: 88% 92%; }
.wasp__wing--back  { animation: waspFlap 0.09s linear infinite; opacity: 0.5; }
.wasp__wing--front { animation: waspFlap 0.09s linear infinite; animation-delay: -0.045s; opacity: 0.68; }
@keyframes waspFlap { 0% { transform: rotate(-26deg) scaleY(0.8); } 50% { transform: rotate(20deg) scaleY(1); } 100% { transform: rotate(-26deg) scaleY(0.8); } }
.wasp__antenna { transform-box: fill-box; transform-origin: 10% 90%; animation: waspAnt 0.6s ease-in-out infinite alternate; }
@keyframes waspAnt { from { transform: rotate(-4deg); } to { transform: rotate(5deg); } }
.wasp--p1 { animation: roam1 var(--dur,16s) ease-in-out var(--delay,0s) infinite; }
.wasp--p2 { animation: roam2 var(--dur,19s) ease-in-out var(--delay,0s) infinite; }
.wasp--p3 { animation: roam3 var(--dur,22s) ease-in-out var(--delay,0s) infinite; }
.wasp--p4 { animation: roam4 var(--dur,18s) ease-in-out var(--delay,0s) infinite; }
@keyframes roam1 { 0% { transform: translate(0,0) rotate(-5deg) scale(var(--s,1)); } 25% { transform: translate(7vw,-4vh) rotate(6deg) scale(var(--s,1)); } 50% { transform: translate(11vw,5vh) rotate(-3deg) scale(var(--s,1)); } 75% { transform: translate(3vw,9vh) rotate(7deg) scale(var(--s,1)); } 100% { transform: translate(0,0) rotate(-5deg) scale(var(--s,1)); } }
@keyframes roam2 { 0% { transform: translate(0,0) rotate(4deg) scale(var(--s,1)); } 30% { transform: translate(-8vw,6vh) rotate(-6deg) scale(var(--s,1)); } 60% { transform: translate(-4vw,-7vh) rotate(5deg) scale(var(--s,1)); } 100% { transform: translate(0,0) rotate(4deg) scale(var(--s,1)); } }
@keyframes roam3 { 0% { transform: translate(0,0) rotate(-6deg) scale(var(--s,1)); } 35% { transform: translate(9vw,7vh) rotate(6deg) scale(var(--s,1)); } 70% { transform: translate(-5vw,4vh) rotate(-4deg) scale(var(--s,1)); } 100% { transform: translate(0,0) rotate(-6deg) scale(var(--s,1)); } }
@keyframes roam4 { 0% { transform: translate(0,0) rotate(5deg) scale(var(--s,1)); } 40% { transform: translate(-7vw,-5vh) rotate(-7deg) scale(var(--s,1)); } 75% { transform: translate(6vw,8vh) rotate(6deg) scale(var(--s,1)); } 100% { transform: translate(0,0) rotate(5deg) scale(var(--s,1)); } }

/* =========================================================
   Reveal on scroll
   ========================================================= */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); will-change: opacity, transform; }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.usp [data-reveal].is-in, .steps [data-reveal].is-in, .reviews [data-reveal].is-in, .species [data-reveal].is-in { transition-delay: var(--d, 0ms); }

/* =========================================================
   Responsywność
   ========================================================= */
@media (min-width: 620px) {
  .usp__grid { grid-template-columns: repeat(2, 1fr); }
  .species { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
@media (min-width: 900px) {
  body { font-size: 18px; }
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .nav__mobile { display: none; }
  .fab { display: none; }
  .usp__grid { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1.05fr 1fr; }
  .facts-band__inner { grid-template-columns: 0.9fr 1.1fr; }
  .facts-band__media img { max-height: 420px; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .steps .step { padding: 74px 22px 24px; }
  .steps .step__num { top: 22px; left: 22px; }
  .contact { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
}

/* =========================================================
   TELEFON — widoczny numer w nagłówku i w hero
   ========================================================= */
.nav__cta {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #211603; border-color: transparent; box-shadow: var(--glow);
  font-weight: 700; font-variant-numeric: tabular-nums;
}
.nav__cta:hover { background: linear-gradient(135deg, var(--accent-2), var(--accent)); transform: translateY(-2px); }

.hero__phone { display: inline-flex; align-items: center; gap: 14px; }
.hero__phone-ic {
  display: grid; place-items: center; flex-shrink: 0;
  width: 54px; height: 54px; border-radius: 50%;
  color: var(--accent); background: rgba(255,194,28,0.14); border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  animation: phoneRing 3.4s var(--ease) infinite;
}
.hero__phone-ic svg { width: 24px; height: 24px; }
@keyframes phoneRing { 0%, 84%, 100% { transform: rotate(0); } 87% { transform: rotate(-12deg); } 90% { transform: rotate(10deg); } 93% { transform: rotate(-7deg); } 96% { transform: rotate(5deg); } }
.hero__phone-txt { display: flex; flex-direction: column; line-height: 1.1; }
.hero__phone-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.75rem, 4.6vw, 2.4rem); letter-spacing: -0.01em; color: var(--text); text-shadow: 0 2px 20px rgba(0,0,0,0.6); font-variant-numeric: tabular-nums; transition: color 0.25s; }
.hero__phone-cap { margin-top: 5px; font-size: 13.5px; color: var(--text-soft); }
.hero__phone:hover .hero__phone-num { color: var(--accent); }

/* nagłówek na telefonach: logo + numer + menu muszą się zmieścić */
@media (max-width: 899px) {
  .nav__inner { gap: 10px; }
  .nav__cta { padding: 9px 14px; font-size: 14.5px; gap: 7px; }
  .nav__cta svg { width: 16px; height: 16px; }
}
@media (max-width: 560px) { .brand__text em { display: none; } }
/* wąskie telefony (360 px): w kafelkach zalet ikona nad tekstem, żeby nic nie wystawało */
@media (max-width: 420px) {
  .usp__grid { gap: 10px; }
  .usp__item { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px; }
  .usp__ic { width: 42px; height: 42px; }
}
@media (max-width: 400px) {
  .nav__cta { padding: 9px 12px; }
  .nav__cta svg { display: none; }
  .brand__mark { width: 36px; height: 36px; }
}
@media (max-width: 340px) { .brand__text { display: none; } }
@media (min-width: 1100px) { .nav__links { gap: 28px; } }

/* osy na telefonach: większe i z szerszym torem lotu */
@media (max-width: 639px) { .wasp { width: 72px; } }

/* osy wychodzą spod górnej krawędzi zdjęcia — dyskretny dodatek, nie zasłaniają treści */
.species { position: relative; }
@media (max-width: 619px) { .species { gap: 44px; } }
.species__card { position: relative; z-index: 1; }
.wasp-peek {
  position: absolute; z-index: 0; width: clamp(52px, 5.5vw, 70px); pointer-events: none;
  transform: translateY(24px) rotate(-16deg);
  animation: waspPeek 11s ease-in-out var(--delay, 0s) infinite;
}
.wasp-peek svg { width: 100%; height: auto; overflow: visible; }
@keyframes waspPeek {
  0%, 52%   { transform: translateY(24px) rotate(-16deg); }
  60%, 82%  { transform: translateY(-62%) rotate(-10deg); }
  70%       { transform: translateY(-66%) rotate(-20deg); }
  92%, 100% { transform: translateY(24px) rotate(-16deg); }
}

/* kontakt bez formularza — jedna kolumna */
.contact--solo { max-width: 760px; }
@media (min-width: 900px) { .contact.contact--solo { grid-template-columns: 1fr; } }

/* zdjęcia z realizacji pod krokami */
.work { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(10px, 2vw, 20px); margin-top: clamp(20px, 4vw, 36px); }
.work__img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); box-shadow: var(--shadow-soft); aspect-ratio: 1 / 2; }
.work__img img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) { .work { max-width: 820px; margin-inline: auto; } .work__img { aspect-ratio: 3 / 4; } .work__img img { object-position: center 30%; } }

/* =========================================================
   CENA
   ========================================================= */
.price { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 1000px; margin: 0 auto; }
.price__main {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  text-align: center; padding: clamp(28px, 5vw, 44px) 24px;
  border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  background: radial-gradient(120% 90% at 50% 0%, rgba(255,194,28,0.18), rgba(255,194,28,0.03) 70%), var(--surface);
}
.price__label { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--text-soft); }
.price__amount { font-family: var(--font-display); font-weight: 800; font-size: clamp(3.6rem, 11vw, 5.4rem); line-height: 1; letter-spacing: -0.04em; color: var(--accent); margin: 6px 0 2px; }
.price__extra { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--text); margin-bottom: 16px; }
.price__list { display: grid; gap: 10px; align-content: center; }
.price__list li { position: relative; padding: 16px 18px 16px 54px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); font-size: 15.5px; line-height: 1.5; color: var(--text-soft); }
.price__list li::before {
  content: ""; position: absolute; left: 16px; top: 16px; width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,194,28,0.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffc21c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12 4 4 8-8'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.price__list strong { color: var(--text); font-weight: 600; }
/* punkty z ikonami (dawny pasek zalet) */
.price__list li:has(.price__ic) { display: flex; align-items: center; gap: 16px; padding: 16px 18px; }
.price__list li:has(.price__ic)::before { display: none; }
.price__list li:has(.price__ic) strong { font-family: var(--font-display); font-size: 1.05rem; }
.price__ic { display: grid; place-items: center; flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px; color: var(--accent); background: linear-gradient(160deg, rgba(255,194,28,0.18), rgba(255,194,28,0.04)); border: 1px solid var(--line); }
.price__ic svg { width: 24px; height: 24px; }
.price__fine { max-width: 720px; margin: 20px auto 0; text-align: center; font-size: 14.5px; color: var(--text-mut); }
.price__fine a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
@media (min-width: 900px) { .price { grid-template-columns: 0.85fr 1.15fr; } }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 860px; }
.faq__list { display: grid; gap: 10px; }
.faq__item { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); transition: border-color 0.3s; }
.faq__item[open] { border-color: var(--line); }
.faq__item summary { position: relative; list-style: none; cursor: pointer; padding: 18px 58px 18px 20px; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; line-height: 1.35; transition: color 0.25s; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: 18px; top: 50%; width: 24px; height: 24px; margin-top: -12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffc21c' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--accent-2); }
.faq__item p { padding: 0 20px 18px; font-size: 15.5px; color: var(--text-soft); }
.faq__item a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   FORMULARZ SMS + STOPKA PRAWNA
   ========================================================= */
.form__title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.field__opt { font-weight: 400; color: var(--text-mut); }
.form__note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.form__privacy { font-size: 13px; line-height: 1.5; color: var(--text-mut); }
.form__privacy a { color: var(--text-soft); text-decoration: underline; text-underline-offset: 3px; }

.footer__legal { display: grid; gap: 6px; max-width: 640px; text-align: center; font-size: 13.5px; color: var(--text-mut); }
.footer__legal a { color: var(--text-soft); text-decoration: underline; text-underline-offset: 3px; }
.footer__legal a:hover { color: var(--accent); }
mark.todo { padding: 1px 5px; border-radius: 5px; background: rgba(255,90,60,0.22); color: #ffc2b5; font-weight: 600; }

/* =========================================================
   STRONY PRAWNE (polityka prywatności, warunki usługi)
   ========================================================= */
.nav--solid { background: rgba(15,13,9,0.92); backdrop-filter: blur(16px) saturate(140%); border-bottom-color: var(--line-soft); }
.legal { padding: 118px 0 72px; }
.legal__inner { max-width: 800px; }
.legal__back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px; font-size: 15px; color: var(--text-soft); }
.legal__back:hover { color: var(--accent); }
.legal h1 { margin-bottom: 8px; font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; }
.legal__meta { margin-bottom: 30px; font-size: 14px; color: var(--text-mut); }
.legal h2 { margin: 34px 0 12px; font-size: 1.22rem; font-weight: 700; }
.legal p, .legal li { font-size: 16px; line-height: 1.7; color: var(--text-soft); }
.legal p + p { margin-top: 10px; }
.legal ul, .legal ol { display: grid; gap: 6px; padding-left: 22px; }
.legal ul { list-style: disc; }
.legal ol { list-style: decimal; }
.legal strong { color: var(--text); }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal__box { margin-top: 14px; padding: 18px 20px; border: 1px dashed var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.legal__box p { font-size: 15px; }

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .hero__img { opacity: 1; transform: none; }
  .wasp, .wasp-peek, .wasp__wing, .wasp__body, .wasp__antenna { animation: none !important; }
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* =========================================================
   HERO — miejscowości pod nagłówkiem (mniejsze, żółte)
   ========================================================= */
.hero__places { display: inline-block; margin-top: 10px; font-size: 0.42em; font-weight: 700; letter-spacing: -0.01em; }

/* cena bez pogrubienia */
.price__amount { font-weight: 500; }
.price__extra { font-weight: 400; }

/* =========================================================
   HERO NA TELEFONIE — nagłówek u góry, całe zdjęcie widoczne,
   pod spodem rozmyta kopia zdjęcia wypełniająca ekran
   ========================================================= */
@media (max-width: 639px) {
  .hero { align-items: stretch; padding-top: 96px; padding-bottom: 28px; }
  /* osobne pionowe zdjęcie dla telefonów (picture/source w index.html) */
  .hero__img { object-position: center 60%; }
  .hero__scrim {
    background: linear-gradient(180deg, rgba(15,13,9,0.9) 0%, rgba(15,13,9,0.55) 20%, rgba(15,13,9,0) 34%, rgba(15,13,9,0) 62%, rgba(15,13,9,0.8) 80%, var(--bg) 100%);
  }
  .hero__content { display: flex; flex-direction: column; }
  .hero__title { font-size: 1.7rem; margin-bottom: 0; }
  .hero__places { font-size: 0.54em; margin-top: 8px; white-space: nowrap; }
  .hero__sub { display: none; }
  .hero__actions { margin-top: auto; margin-bottom: 18px; }
  .hero__actions .btn--lg { --btn-pad-y: 14px; --btn-pad-x: 24px; font-size: 15.5px; }
  .hero__actions .btn--ghost { display: none; }
  .hero__phone-ic { width: 42px; height: 42px; }
  .hero__phone-ic svg { width: 20px; height: 20px; }
  .hero__phone-num { font-size: 1.4rem; }
  .hero__phone-cap { font-size: 12.5px; }
  /* ogólnie mniejsze litery na telefonie */
  .section__title { font-size: 1.6rem; }
  .price__amount { font-size: 3.2rem; }
}
