/* =====================================================
   site.css — Adrian Mikołajewicz | wspólny silnik
   ===================================================== */

:root {
  color-scheme: only light;
  --black: #0D1B2A;
  --ink: #1a2836;
  --ink2: #3d5166;
  --ink3: #6b849c;
  --paper: #fff;
  --paper2: #F4F8F5;
  --blue: #2C6B4A;
  --blue-d: #1E4F35;
  --blue-l: #EBF4EE;
  --warm: #C87941;
  --warm-d: #A85E28;
  --warm-l: #FBF1E8;
  --green: #2C6B4A;
  --green-l: #EBF4EE;
  --line: rgba(44,107,74,0.12);
  --shadow: 0 4px 24px rgba(44,107,74,0.09);
  --shadow-lg: 0 20px 50px rgba(44,107,74,0.14);
  --serif: 'Cinzel', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
body { font-family: var(--sans); background: var(--paper); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── NAV ─── */
.bsnav {
  position: sticky; top: 0; z-index: 1100;
  background: rgba(13,27,42,.97);
  backdrop-filter: saturate(150%) blur(8px);
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.bsnav .bsrow {
  max-width: 1080px; margin: 0 auto; padding: 12px 22px;
  display: flex; align-items: center; gap: 14px;
}
.bsbrand {
  font-family: var(--serif); font-weight: 700; letter-spacing: .1em;
  font-size: 14px; color: #fff; text-decoration: none; white-space: nowrap;
}
.bsbrand span { color: #8dbfa8; font-size: 11px; display: block; letter-spacing: .15em; font-weight: 400; margin-top: 1px; }
.bslinks { margin-left: auto; display: flex; gap: 3px; align-items: center; }
.bslinks a {
  font-family: var(--sans); color: #c0d0e0; text-decoration: none;
  font-size: 13.5px; font-weight: 500; padding: 6px 11px; border-radius: 999px;
  white-space: nowrap; transition: color .15s, background .15s;
}
.bslinks a:hover { color: #fff; background: rgba(255,255,255,.07); }
.bslinks a.is-current { color: var(--black); background: #8dbfa8; }
.bsburger {
  display: none; width: 44px; height: 38px; border: 0; background: transparent;
  cursor: pointer; padding: 9px 8px; flex-direction: column;
  justify-content: space-between; margin-left: auto;
}
.bsburger span { display: block; height: 2px; width: 100%; background: #d4e4f0; border-radius: 2px; transition: transform .22s ease, opacity .18s ease; }
.bsburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bsburger.open span:nth-child(2) { opacity: 0; }
.bsburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdown */
.bsdrop { position: relative; display: inline-block; }
.bsdrop-t { cursor: pointer; }
.bsdrop-t::after { content: " \25BE"; font-size: 11px; opacity: .8; }
.bsdrop-menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 200px;
  background: rgba(18,32,48,.99); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 6px; box-shadow: 0 12px 34px rgba(0,0,0,.45); z-index: 1200;
}
.bsdrop-menu a { display: block; white-space: nowrap; }
.bsdrop.open .bsdrop-menu { display: block; }
@media(min-width: 761px) { .bsdrop:hover .bsdrop-menu { display: block; } }

@media (max-width: 760px) {
  .bsburger { display: flex; }
  .bslinks {
    position: absolute; top: 100%; left: 0; right: 0; margin: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(10,20,32,.99); border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 8px 14px 14px; max-height: 0; overflow: hidden; opacity: 0;
    pointer-events: none; transition: max-height .26s ease, opacity .2s ease;
  }
  .bslinks.open { max-height: 84vh; opacity: 1; pointer-events: auto; overflow-y: auto; }
  .bslinks a { font-size: 16px; padding: 13px 12px; border-radius: 10px; }
  .bsdrop { display: block; width: 100%; }
  .bslinks .bsdrop-t { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 13px 12px; font-size: 16px; border-radius: 10px; }
  .bsdrop-t::after { margin-left: auto; }
  .bsdrop.open { background: rgba(255,255,255,.04); border-radius: 10px; }
  .bsdrop-menu { position: static; min-width: 0; background: transparent; border: 0; box-shadow: none; padding: 0 0 6px 8px; margin: 0 0 0 8px; border-left: 2px solid rgba(141,191,168,.4); }
  .bsdrop-menu a { font-size: 15px; padding: 11px 12px; color: #8dbfa8; }
}

/* ─── HERO ─── */
.hero {
  background: var(--black); color: #fff;
  padding: 4.5rem 0 5rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(44,107,74,.18), transparent 65%);
  top: -100px; right: -80px;
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 46rem; margin: 0 auto; }
.hero-kicker {
  display: inline-block; font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; color: #8dbfa8;
  border: 1px solid rgba(141,191,168,.4); padding: .45rem 1.1rem;
  border-radius: 100px; margin-bottom: 1.8rem;
}
.hero h1 { font-family: var(--serif); font-size: clamp(2rem,5vw,3.2rem); font-weight: 700; line-height: 1.12; margin-bottom: 1.4rem; }
.hero h1 em { color: #8dbfa8; font-style: normal; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.88); font-weight: 300; margin-bottom: 2.3rem; }
.hero-sub b { color: #fff; font-weight: 500; }
.hero-photo { display: block; max-width: 340px; margin: 0 auto 2rem; border-radius: 50%; overflow: hidden; border: 4px solid rgba(141,191,168,.3); box-shadow: 0 20px 60px rgba(0,0,0,.5); aspect-ratio: 1; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-meta { display: flex; gap: 2rem; justify-content: center; margin-top: 2.6rem; flex-wrap: wrap; }
.hero-meta div { text-align: center; max-width: 13rem; }
.hero-meta b { font-family: var(--serif); font-size: 1.7rem; color: #8dbfa8; display: block; }
.hero-meta span { font-size: .74rem; color: rgba(255,255,255,.7); letter-spacing: .04em; }

/* ─── BTN ─── */
.btn { display: inline-block; padding: 1rem 2.1rem; border-radius: 100px; font-weight: 500; font-size: .95rem; cursor: pointer; transition: all .22s; border: none; font-family: var(--sans); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-d); transform: translateY(-2px); }
.btn-warm { background: var(--warm); color: #fff; }
.btn-warm:hover { background: var(--warm-d); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #8dbfa8; border: 1.5px solid rgba(141,191,168,.5); }
.btn-outline:hover { background: rgba(141,191,168,.1); color: #fff; }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

/* ─── STRIP ─── */
.strip { background: var(--blue); color: #fff; padding: 1.2rem 0; }
.strip-inner { text-align: center; font-family: var(--serif); font-size: clamp(.95rem,2vw,1.2rem); font-weight: 600; letter-spacing: .04em; }

/* ─── SEC ─── */
.sec { padding: 5rem 0; }
.sec-alt { background: var(--paper2); }
.sec-dark { background: var(--black); color: #fff; }
.sec-blue { background: var(--blue-l); }
.sec-head { text-align: center; max-width: 46rem; margin: 0 auto 3rem; }
.sec-kicker { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--warm-d); font-weight: 700; display: block; margin-bottom: .8rem; }
.sec-dark .sec-kicker { color: #8dbfa8; }
.sec-title { font-family: var(--serif); font-size: clamp(1.6rem,3.3vw,2.3rem); font-weight: 600; line-height: 1.18; margin-bottom: 1rem; }
.sec-sub { font-size: 1.03rem; color: var(--ink2); font-weight: 300; }
.sec-dark .sec-sub { color: rgba(255,255,255,.8); }

/* ─── CARDS ─── */
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 2rem 1.6rem; transition: transform .18s, box-shadow .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-img { width: 100%; height: 175px; object-fit: cover; border-radius: 12px; margin-bottom: 1.1rem; display: block; }
.card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-l); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.4rem; }
.card h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: .5rem; }
.card p { font-size: .9rem; color: var(--ink2); font-weight: 300; line-height: 1.55; }
.card .btn { margin-top: 1.4rem; }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-photo { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-photo img { width: 100%; display: block; object-fit: cover; }
.about-text p { font-size: 1rem; color: var(--ink2); font-weight: 300; margin-bottom: 1.1rem; line-height: 1.7; }
.about-text p b { color: var(--ink); font-weight: 600; }
.about-note { font-size: .88rem; color: var(--ink3); font-style: italic; border-left: 3px solid var(--blue); padding: .5rem 0 .5rem 1rem; margin: 1.2rem 0; }
.cred-card { background: #fff; border-radius: 16px; padding: 2rem; box-shadow: var(--shadow); }
.cred-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 1.1rem; }
.check-item { display: flex; gap: .9rem; align-items: flex-start; padding: .6rem 0; border-bottom: 1px solid var(--line); }
.check-item:last-child { border-bottom: none; }
.check-box { width: 24px; height: 24px; border-radius: 6px; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; margin-top: .1rem; }
.check-item span { font-size: .9rem; color: var(--ink2); }
.check-item span b { color: var(--ink); font-weight: 600; }

/* ─── PRICE ─── */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; max-width: 900px; margin: 0 auto; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 2rem 1.6rem; text-align: center;
}
.price-card.featured { background: var(--blue); color: #fff; border-color: var(--blue); }
.price-big { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--blue); }
.price-card.featured .price-big { color: #8dbfa8; }
.price-unit { font-size: .82rem; color: var(--ink3); }
.price-card.featured .price-unit { color: rgba(255,255,255,.7); }
.price-name { font-weight: 600; font-size: 1rem; margin: .7rem 0 .4rem; }
.price-desc { font-size: .88rem; color: var(--ink2); font-weight: 300; }
.price-card.featured .price-desc { color: rgba(255,255,255,.82); }

/* ─── FAQ ─── */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; background: transparent; border: 0; cursor: pointer; padding: 1.2rem 0;
  text-align: left; font-family: var(--sans); font-size: 1rem; font-weight: 600;
  color: var(--ink);
}
.faq-q:hover { color: var(--blue); }
.faq-ic { flex-shrink: 0; width: 24px; height: 24px; position: relative; }
.faq-ic::before, .faq-ic::after { content: ''; position: absolute; background: var(--blue); border-radius: 2px; transition: transform .22s, opacity .22s; }
.faq-ic::before { left: 1px; right: 1px; top: 11px; height: 2px; }
.faq-ic::after { top: 1px; bottom: 1px; left: 11px; width: 2px; }
.faq-item.open .faq-ic::after { transform: scaleY(0); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-a-inner { padding: 0 0 1.2rem; font-size: .96rem; color: var(--ink2); font-weight: 300; line-height: 1.7; }

/* ─── FORM ─── */
.form-box { background: #fff; border-radius: 22px; padding: 2.4rem; box-shadow: var(--shadow-lg); max-width: 720px; margin: 0 auto; }
.form-box h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin-bottom: .4rem; text-align: center; }
.form-box .form-lead { text-align: center; color: var(--ink2); font-size: .93rem; font-weight: 300; margin-bottom: 2rem; }
.fg { margin-bottom: 1.2rem; }
.fg label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink2); margin-bottom: .4rem; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--line);
  border-radius: 10px; font-family: var(--sans); font-size: 1rem;
  outline: none; transition: border-color .2s; background: #fff; color: var(--ink);
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue); }
.fg textarea { min-height: 80px; resize: vertical; }
.fg2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.check-consent { display: flex; gap: .7rem; align-items: flex-start; margin-top: 1rem; font-size: .82rem; color: var(--ink2); font-weight: 300; line-height: 1.5; }
.check-consent input { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; accent-color: var(--blue); }
.form-submit { width: 100%; margin-top: 1.4rem; background: var(--blue); color: #fff; border: none; padding: 1rem; border-radius: 12px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all .2s; font-family: var(--sans); }
.form-submit:hover { background: var(--blue-d); transform: translateY(-1px); }
.form-success { display: none; text-align: center; padding: 2rem 0; }
.form-success.show { display: block; }
.form-success .ic { width: 64px; height: 64px; border-radius: 50%; background: var(--green-l); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 1rem; }
.form-success h3 { font-family: var(--serif); margin-bottom: .5rem; }
.form-success p { color: var(--ink2); font-weight: 300; }
.privacy-note { text-align: center; font-size: .78rem; color: var(--ink3); font-weight: 300; margin-top: .8rem; }

/* ─── HERO PAGE BANNER ─── */
.page-banner {
  background: var(--black); color: #fff;
  padding: 3.5rem 0 3rem; text-align: center; position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(44,107,74,.2), transparent 65%);
  top: -100px; right: -60px;
}
.page-banner .pb-inner { position: relative; z-index: 1; }
.page-banner .pb-kicker { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: #8dbfa8; display: block; margin-bottom: .8rem; }
.page-banner h1 { font-family: var(--serif); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; line-height: 1.15; }
.page-banner p { margin-top: .9rem; font-size: 1.05rem; color: rgba(255,255,255,.85); font-weight: 300; max-width: 42rem; margin-left: auto; margin-right: auto; }

/* ─── FOOTER ─── */
.bsfoot { background: #0d1b2a; color: #e0e8f0; font-family: var(--sans); }
.bsfoot-accent { height: 3px; background: linear-gradient(90deg, var(--blue), #8dbfa8 55%, var(--blue)); }
.bsfoot-wrap { max-width: 1080px; margin: 0 auto; padding: 3.5rem 1.5rem 2rem; }
.bsfoot-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 2.5rem; }
.bsfoot-brand b { display: block; font-family: var(--serif); font-size: 1.1rem; color: #fff; letter-spacing: .06em; line-height: 1.3; }
.bsfoot-tag { display: block; margin-top: .4rem; color: #8dbfa8; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; }
.bsfoot-brand p { margin: .9rem 0 0; color: #9aa8b8; font-size: .88rem; font-weight: 300; line-height: 1.6; max-width: 30ch; }
.bsfoot-h { color: #fff; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; margin: 0 0 .9rem; }
.bsfoot-col p { color: #9aa8b8; font-size: .88rem; font-weight: 300; line-height: 1.65; margin-bottom: .4rem; }
.bsfoot-col a { color: #8dbfa8; }
.bsfoot-col a:hover { color: #fff; }
.bsfoot-nav a { display: block; color: #9aa8b8; text-decoration: none; font-size: .9rem; line-height: 2.1; transition: color .15s; }
.bsfoot-nav a:hover { color: #8dbfa8; }
.bsfoot-legal { margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; justify-content: space-between; }
.bsfoot-legal span { color: #6a7f96; font-size: .78rem; }
.bsfoot-legal a { color: #6a7f96; }

/* ─── WA FLOAT ─── */
.bswa {
  position: fixed; right: 18px; bottom: 18px; z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #073b22; text-decoration: none;
  padding: 11px 16px 11px 13px; border-radius: 999px;
  box-shadow: 0 6px 22px rgba(0,0,0,.22);
  font-family: var(--sans); font-weight: 600; font-size: 15px;
}
.bswa svg { width: 24px; height: 24px; flex: none; }
.bswa span { white-space: nowrap; }
.bswa:hover { background: #1ebe5b; }
@media(max-width: 560px) { .bswa span { display: none; } .bswa { padding: 13px; } }

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .card-grid, .about-grid, .price-grid { grid-template-columns: 1fr; }
  .bsfoot-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .sec { padding: 3.5rem 0; }
  .form-box { padding: 2rem 1.3rem; }
  .fg2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .bsfoot-top { grid-template-columns: 1fr; gap: 1.8rem; }
}

/* text-wrap */
h1,h2,h3,h4,.sec-title,.page-banner h1 { text-wrap: balance; }
p,li,.hero-sub,.sec-sub,.about-text p { text-wrap: pretty; }

/* ─── QUOTE BLOCK ─── */
.quote-block { border-left: 4px solid var(--blue); padding: 1rem 1.5rem; background: var(--blue-l); border-radius: 0 12px 12px 0; margin: 1.5rem 0; font-size: 1.02rem; color: var(--ink2); font-style: italic; font-weight: 300; }
.quote-block cite { display: block; margin-top: .6rem; font-style: normal; font-size: .82rem; font-weight: 600; color: var(--blue-d); }

/* ─── PILLARS ─── */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.pillar { text-align: center; padding: 2rem 1.5rem; }
.pillar-num { font-family: var(--serif); font-size: 3rem; font-weight: 700; color: var(--blue); opacity: .35; line-height: 1; margin-bottom: .5rem; }
.pillar h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .6rem; }
.pillar p { font-size: .9rem; color: var(--ink2); font-weight: 300; line-height: 1.6; }
@media(max-width: 700px) { .pillars { grid-template-columns: 1fr; } }

/* ─── EXPERTISE LIST ─── */
.exp-list { list-style: none; max-width: 700px; margin: 0 auto; }
.exp-list li { display: flex; gap: 1rem; align-items: flex-start; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.exp-list li:last-child { border-bottom: none; }
.exp-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: .55rem; }
.exp-list li span { font-size: .97rem; color: var(--ink2); font-weight: 300; }
.exp-list li span b { color: var(--ink); font-weight: 600; }

/* ─── COOKIE BANNER ─── */
.bscookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9998; background: #0d1b2a; color: #e0e8f0; box-shadow: 0 -4px 20px rgba(0,0,0,.3); }
.bscookie-in { max-width: 1080px; margin: 0 auto; padding: 14px 18px; display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.bscookie-in p { margin: 0; font-size: .88rem; line-height: 1.45; flex: 1 1 360px; }
.bscookie-in a { color: #8dbfa8; text-decoration: underline; }
.bscookie-btns { display: flex; gap: 10px; flex: 0 0 auto; }
.bscookie-btns button { cursor: pointer; border-radius: 999px; padding: 9px 18px; font-weight: 600; font-size: .88rem; border: 1px solid rgba(255,255,255,.4); background: transparent; color: #e0e8f0; }
.bscookie-btns .bsck-yes { background: var(--blue); border-color: var(--blue); color: #fff; }
@media(max-width: 560px) { .bscookie-in { justify-content: center; } .bscookie-btns { flex: 1 1 100%; justify-content: center; } }
