/* =========================================================
   Akademia Szkoleniowa Agnieszka Słowik
   Dark Luxury Beauty Academy — style.css
   Autor: projekt statyczny (pre-WordPress)
   ========================================================= */

/* ---------- 1. Zmienne / Design tokens ---------- */
:root{
  --black:#0a0a0b;
  --graphite:#141416;
  --graphite-2:#1c1c20;
  --card:#17171a;
  --card-2:#1f1f23;
  --line:rgba(201,162,75,.18);
  --line-soft:rgba(255,255,255,.08);

  --gold:#d7b166;
  --gold-2:#b8893d;
  --gold-light:#f0d9a0;
  --gold-grad:linear-gradient(135deg,#f0d9a0 0%,#d7b166 40%,#b8893d 100%);
  --gold-grad-text:linear-gradient(100deg,#f4e2b3 0%,#d7b166 45%,#b8893d 100%);

  --ivory:#f5efe4;
  --ivory-2:#efe6d5;
  --beige:#e7dcc7;

  --white:#ffffff;
  --text:#eceae6;
  --muted:#a7a29a;
  --muted-2:#7d7970;

  --radius:18px;
  --radius-sm:12px;
  --radius-lg:26px;
  --shadow:0 24px 60px -20px rgba(0,0,0,.7);
  --shadow-gold:0 18px 40px -14px rgba(184,137,61,.45);

  --ff-serif:"Playfair Display",Georgia,serif;
  --ff-sans:"Jost","Segoe UI",system-ui,sans-serif;
  --ff-script:"Allura",cursive;

  --container:1240px;
  --header-h:78px;
  --topbar-h:40px;

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

/* ---------- 2. Reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--ff-sans);
  background:var(--black);
  color:var(--text);
  line-height:1.65;
  font-size:16px;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none;transition:color .25s var(--ease)}
ul{list-style:none}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}
:focus-visible{outline:2px solid var(--gold);outline-offset:3px;border-radius:4px}

/* ---------- 3. Typografia ---------- */
h1,h2,h3,h4{font-family:var(--ff-serif);font-weight:600;line-height:1.15;color:var(--white)}
h1{font-size:clamp(2.4rem,5.5vw,4.4rem)}
h2{font-size:clamp(1.9rem,3.6vw,3rem)}
h3{font-size:clamp(1.25rem,2vw,1.7rem)}
p{color:var(--text)}
.script{font-family:var(--ff-script);color:var(--gold);font-weight:400}
.gold-text{
  background:var(--gold-grad-text);
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;color:transparent;
}
.eyebrow{
  display:inline-block;font-family:var(--ff-sans);
  letter-spacing:.32em;text-transform:uppercase;font-size:.74rem;
  color:var(--gold);font-weight:500;margin-bottom:1rem;
}
.section-title{margin-bottom:.5rem}
.section-head{text-align:center;max-width:760px;margin:0 auto 3.2rem}
.section-head p{color:var(--muted);margin-top:1rem}

/* ---------- 4. Layout ---------- */
.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 22px}
.section{padding:clamp(3.5rem,7vw,6.5rem) 0}
.section--tight{padding:clamp(2.5rem,5vw,4rem) 0}
.section--ivory{background:var(--ivory);color:#25211b}
.section--ivory h2,.section--ivory h3{color:#1b1813}
.section--ivory p{color:#4a4238}
.section--ivory .eyebrow{color:var(--gold-2)}
.section--graphite{background:var(--graphite)}
.bg-noise{position:relative}
.bg-noise::before{
  content:"";position:absolute;inset:0;pointer-events:none;opacity:.5;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
.grid{display:grid;gap:26px}
.two{grid-template-columns:repeat(2,1fr)}
.three{grid-template-columns:repeat(3,1fr)}
.four{grid-template-columns:repeat(4,1fr)}
.six{grid-template-columns:repeat(6,1fr)}

/* ---------- 5. Przyciski ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  font-family:var(--ff-sans);font-weight:600;font-size:.92rem;letter-spacing:.04em;
  padding:.95rem 1.8rem;border-radius:50px;text-transform:uppercase;
  transition:transform .25s var(--ease),box-shadow .25s var(--ease),background .25s;
  white-space:nowrap;line-height:1;
}
.btn svg{width:1.05em;height:1.05em;fill:currentColor}
.btn--gold{background:var(--gold-grad);color:#231a09;box-shadow:var(--shadow-gold)}
.btn--gold:hover{transform:translateY(-3px);box-shadow:0 24px 46px -12px rgba(184,137,61,.6)}
.btn--outline{background:transparent;color:var(--white);border:1.5px solid rgba(255,255,255,.28)}
.btn--outline:hover{border-color:var(--gold);color:var(--gold);transform:translateY(-3px)}
.btn--ghost-gold{background:transparent;color:var(--gold);border:1.5px solid var(--gold)}
.btn--ghost-gold:hover{background:var(--gold);color:#231a09}
.btn--dark{background:#1c1c20;color:var(--white);border:1px solid var(--line)}
.btn--dark:hover{border-color:var(--gold);color:var(--gold)}
.btn--sm{padding:.7rem 1.25rem;font-size:.8rem}
.btn--lg{padding:1.1rem 2.3rem;font-size:1rem}
.btn--block{width:100%}
.btn-row{display:flex;flex-wrap:wrap;gap:1rem}
.text-link{color:var(--gold);font-weight:600;display:inline-flex;align-items:center;gap:.4rem}
.text-link:hover{gap:.7rem}

/* ---------- 6. Topbar ---------- */
.topbar{
  background:#060607;border-bottom:1px solid var(--line-soft);
  font-size:.8rem;color:var(--muted);
}
.topbar .container{display:flex;align-items:center;justify-content:space-between;height:var(--topbar-h)}
.topbar__info{display:flex;gap:1.6rem;align-items:center}
.topbar__info span{display:inline-flex;align-items:center;gap:.45rem}
.topbar__info svg{width:14px;height:14px;fill:var(--gold)}
.topbar a:hover{color:var(--gold)}
.topbar__social{display:flex;gap:.9rem;align-items:center}
.topbar__social a{display:inline-flex}
.topbar__social svg{width:15px;height:15px;fill:var(--muted);transition:fill .25s}
.topbar__social a:hover svg{fill:var(--gold)}

/* ---------- 7. Header / Nav ---------- */
.header{
  position:sticky;top:0;z-index:200;
  background:rgba(10,10,11,.82);backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line-soft);
  transition:background .3s,box-shadow .3s;
}
.header.scrolled{background:rgba(8,8,9,.96);box-shadow:0 10px 30px -12px rgba(0,0,0,.8)}
.header .container{display:flex;align-items:center;justify-content:space-between;height:var(--header-h)}
.logo{display:flex;align-items:center;gap:.7rem}
.logo__mark{
  width:44px;height:44px;border-radius:50%;flex:none;
  border:1.5px solid var(--gold);display:grid;place-items:center;
  font-family:var(--ff-serif);font-size:1.35rem;color:var(--gold);
  background:radial-gradient(circle at 30% 20%,rgba(215,177,102,.25),transparent 70%);
}
/* Logo graficzne (wgrane w Dostosuj → Tożsamość witryny) — bez kółka */
.logo__mark--img{width:auto;height:52px;border:0;border-radius:0;background:none;place-items:center}
.logo__mark--img img{height:52px;width:auto;max-width:200px;object-fit:contain;display:block}
.logo__text{line-height:1.05}
.logo__text b{font-family:var(--ff-serif);font-weight:600;font-size:1.12rem;color:var(--white);display:block;letter-spacing:.02em}
.logo__text small{font-size:.6rem;letter-spacing:.34em;text-transform:uppercase;color:var(--gold)}

.nav{display:flex;align-items:center;gap:2rem}
.nav__list{display:flex;align-items:center;gap:1.7rem}
.nav__list>li{position:relative}
.nav__list a{font-size:.88rem;font-weight:500;letter-spacing:.03em;padding:.4rem 0;position:relative}
.nav__list>li>a{white-space:nowrap}
.nav__list>li>a::after{
  content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;
  background:var(--gold-grad);transition:width .3s var(--ease);
}
.nav__list>li>a:hover{color:var(--gold)}
.nav__list>li>a:hover::after,.nav__list>li[aria-current="page"]>a::after{width:100%}
.nav__list [aria-current="page"]>a{color:var(--gold)}
.has-dropdown>a::before{content:"⌄";margin-left:.3rem;color:var(--gold);font-size:.9em}
.dropdown{
  position:absolute;top:calc(100% + 14px);left:50%;transform:translateX(-50%) translateY(8px);
  min-width:250px;background:#111114;border:1px solid var(--line);border-radius:14px;
  padding:.6rem;opacity:0;visibility:hidden;transition:.28s var(--ease);box-shadow:var(--shadow);
}
.has-dropdown:hover .dropdown,.has-dropdown:focus-within .dropdown{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.dropdown a{display:block;padding:.6rem .85rem;border-radius:8px;font-size:.85rem;color:var(--muted)}
.dropdown a:hover{background:#1c1c20;color:var(--gold)}
.header__cta{display:flex;align-items:center;gap:1rem}
.hamburger{display:none;width:44px;height:44px;border-radius:10px;border:1px solid var(--line);align-items:center;justify-content:center;flex-direction:column;gap:5px}
.hamburger span{width:20px;height:2px;background:var(--gold);transition:.3s}
.hamburger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ---------- 8. Mobile menu ---------- */
.mobile-menu{
  position:fixed;inset:0;z-index:190;background:rgba(6,6,7,.98);backdrop-filter:blur(6px);
  transform:translateX(100%);transition:transform .4s var(--ease);
  padding:calc(var(--header-h) + 30px) 26px 40px;overflow-y:auto;
}
.mobile-menu.open{transform:translateX(0)}
.mobile-menu ul{display:flex;flex-direction:column;gap:.2rem}
.mobile-menu a{display:block;padding:.85rem .4rem;font-size:1.05rem;font-family:var(--ff-serif);border-bottom:1px solid var(--line-soft)}
.mobile-menu a:hover{color:var(--gold)}
.mobile-menu .sub a{font-family:var(--ff-sans);font-size:.92rem;padding-left:1.2rem;color:var(--muted)}
.mobile-menu__cta{margin-top:1.8rem;display:flex;flex-direction:column;gap:.8rem}

/* ---------- 9. Hero (premium v2) ---------- */
.hero{position:relative;overflow:hidden;isolation:isolate;
  background:radial-gradient(120% 120% at 100% 0%,#1b1510 0%,#100f10 42%,#08080a 100%)}
.hero__glow{position:absolute;z-index:0;right:-8%;top:-15%;width:72%;height:130%;pointer-events:none;
  background:radial-gradient(closest-side,rgba(215,177,102,.24),rgba(215,177,102,.05) 55%,transparent 74%);filter:blur(6px)}
.hero__smoke{position:absolute;z-index:0;inset:0;pointer-events:none;opacity:.5;
  background:radial-gradient(40% 60% at 62% 75%,rgba(184,137,61,.12),transparent 60%)}
.hero__mark{position:absolute;z-index:1;right:34%;top:50%;transform:translateY(-50%);
  font-family:var(--ff-serif);font-weight:700;font-size:min(60vh,640px);line-height:.7;
  color:transparent;-webkit-text-stroke:1.5px rgba(215,177,102,.22);opacity:.55;pointer-events:none;user-select:none}
.hero__grid{position:relative;z-index:3;display:grid;grid-template-columns:1.02fr .98fr;gap:24px;align-items:stretch;
  min-height:min(90vh,780px)}
.hero__content{max-width:600px;align-self:center;padding:clamp(2.4rem,5vw,4rem) 0}
.hero__content .eyebrow{margin-bottom:1.1rem}
.hero h1{font-size:clamp(2.7rem,5.8vw,4.8rem);margin:0 0 1.4rem;letter-spacing:-.015em;line-height:1.04}
.hero h1 .script{display:block;font-size:1.2em;line-height:.82;margin-top:.08em}
.hero__lead{font-size:clamp(1.02rem,1.35vw,1.2rem);color:#cbc6be;max-width:500px;margin-bottom:2rem;line-height:1.7}
.hero__cta{display:flex;flex-wrap:wrap;gap:1rem;margin-bottom:1rem}
.hero__video{display:inline-flex;align-items:center;gap:.85rem;margin-bottom:2.4rem;color:var(--muted)}
.hero__video .play{width:46px;height:46px;border-radius:50%;border:1.5px solid var(--gold);display:grid;place-items:center;flex:none;transition:.3s var(--ease);background:rgba(215,177,102,.06)}
.hero__video .play svg{width:15px;height:15px;fill:var(--gold);margin-left:2px}
.hero__video b{display:block;color:#fff;font-family:var(--ff-serif);font-size:1rem;line-height:1.1}
.hero__video small{font-size:.74rem;letter-spacing:.14em;text-transform:uppercase;color:var(--muted-2)}
.hero__video:hover .play{background:var(--gold);transform:scale(1.06)}
.hero__video:hover .play svg{fill:#231a09}
.hero__video:hover b{color:var(--gold)}
.hero__stats{display:flex;flex-wrap:wrap;gap:1.4rem 2rem;padding-top:1.7rem;border-top:1px solid var(--line-soft)}
.hero__stat{display:flex;align-items:center;gap:.7rem}
.hero__stat svg{width:26px;height:26px;fill:var(--gold);flex:none}
.hero__stat b{font-family:var(--ff-serif);font-size:1.35rem;color:#fff;display:block;line-height:1}
.hero__stat span{font-size:.74rem;color:var(--muted);text-transform:uppercase;letter-spacing:.07em}
/* media / postać */
.hero__media{position:relative;align-self:end;display:flex;justify-content:flex-end;align-items:flex-end;height:100%}
.hero__ring{position:absolute;z-index:4;right:-4%;top:-5%;width:min(52%,320px);aspect-ratio:1;
  border:1.5px solid rgba(215,177,102,.55);border-radius:50%;pointer-events:none;
  box-shadow:0 0 60px -18px rgba(215,177,102,.6)}
.hero__ring::before{content:"";position:absolute;right:14%;top:14%;width:8px;height:8px;border-radius:50%;background:var(--gold);box-shadow:0 0 14px 3px rgba(215,177,102,.7)}
.hero__photo{position:relative;z-index:2;width:100%;max-width:600px;height:min(86vh,760px);margin-left:auto;align-self:end}
.hero__photo img{width:100%;height:100%;object-fit:cover;object-position:52% 8%}
.hero__photo::after{content:"";position:absolute;inset:0;pointer-events:none;background:
  linear-gradient(90deg,#08080a 0%,rgba(8,8,10,.5) 16%,rgba(8,8,10,.12) 34%,transparent 50%),
  linear-gradient(0deg,#08080a 1%,rgba(8,8,10,.35) 12%,transparent 32%)}

/* ---------- 10. Trust bar ---------- */
.trustbar{background:var(--graphite);border-top:1px solid var(--line-soft);border-bottom:1px solid var(--line-soft)}
.trustbar__grid{display:grid;grid-template-columns:repeat(5,1fr);gap:0}
.trustbar__item{padding:1.5rem 1.1rem;display:flex;gap:.8rem;align-items:center;border-right:1px solid var(--line-soft)}
.trustbar__item:last-child{border-right:none}
.trustbar__item svg{width:30px;height:30px;fill:var(--gold);flex:none}
.trustbar__item b{display:block;font-size:.92rem;color:var(--white);font-weight:600}
.trustbar__item span{font-size:.78rem;color:var(--muted)}

/* ---------- 11. Path cards (ścieżki) ---------- */
.paths{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.path-card{position:relative;border-radius:var(--radius);overflow:hidden;min-height:480px;display:flex;flex-direction:column;justify-content:flex-end;padding:2.2rem;border:1px solid var(--line);isolation:isolate;transition:border-color .4s var(--ease),transform .4s var(--ease)}
.path-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:top center;z-index:-2;transition:transform .7s var(--ease)}
.path-card::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,rgba(8,8,10,.05) 0%,rgba(8,8,10,.5) 42%,rgba(8,8,10,.97) 100%)}
.path-card:hover{transform:translateY(-6px);border-color:var(--gold)}
.path-card:hover img{transform:scale(1.07)}
.path-card--ivory::after{background:linear-gradient(180deg,rgba(245,239,228,.04) 0%,rgba(30,26,20,.4) 42%,rgba(14,12,10,.97) 100%)}
.path-card__num{position:absolute;top:1.6rem;right:1.8rem;font-family:var(--ff-serif);font-size:2.4rem;color:rgba(215,177,102,.4);line-height:1}
.path-icon{width:58px;height:58px;border-radius:50%;border:1px solid var(--gold);display:grid;place-items:center;margin-bottom:1.15rem;background:rgba(215,177,102,.08);backdrop-filter:blur(4px)}
.path-icon svg{width:26px;height:26px;fill:var(--gold)}
.path-card h3{margin-bottom:.55rem;font-size:1.5rem}
.path-card p{color:#d4cfc6;font-size:.96rem;margin-bottom:1.3rem;max-width:34ch}
.path-card .text-link{font-size:.86rem;letter-spacing:.04em}

/* ---------- 12. Course cards ---------- */
.courses-scroll{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:18px}
.course-card{background:linear-gradient(180deg,#191919,#131315);border:1px solid var(--line);border-radius:var(--radius);padding:1.9rem 1.35rem 1.5rem;text-align:center;display:flex;flex-direction:column;transition:.35s var(--ease);position:relative;overflow:hidden}
.course-card::before{content:"";position:absolute;left:0;right:0;top:0;height:2px;background:var(--gold-grad);opacity:.5;transition:opacity .35s}
.course-card::after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 50% 0,rgba(215,177,102,.14),transparent 62%);opacity:0;transition:opacity .35s;pointer-events:none}
.course-card:hover{transform:translateY(-8px);border-color:var(--gold);box-shadow:0 30px 60px -24px rgba(0,0,0,.8),0 0 0 1px rgba(215,177,102,.25)}
.course-card:hover::before{opacity:1}
.course-card:hover::after{opacity:1}
.course-card__badge{position:absolute;top:0;left:0;background:var(--gold-grad);color:#231a09;font-size:.62rem;font-weight:700;letter-spacing:.12em;padding:.34rem .75rem;border-radius:0 0 12px 0;text-transform:uppercase;z-index:2}
.course-card__icon{width:62px;height:62px;border-radius:50%;border:1px solid var(--line);display:grid;place-items:center;margin:0 auto 1.15rem;background:radial-gradient(circle at 50% 25%,rgba(215,177,102,.14),var(--card-2));position:relative;z-index:1}
.course-card__icon svg{width:27px;height:27px;fill:var(--gold)}
.course-card h3{font-size:1.2rem;margin-bottom:.5rem;position:relative;z-index:1}
.course-card p{font-size:.83rem;color:var(--muted);flex:1;margin-bottom:1.1rem;position:relative;z-index:1}
.course-card__price{font-family:var(--ff-serif);color:var(--gold);font-size:1.32rem;margin-bottom:1.1rem;position:relative;z-index:1}
.course-card__price small{display:block;font-family:var(--ff-sans);font-size:.66rem;color:var(--muted-2);text-transform:uppercase;letter-spacing:.1em;margin-top:.2rem}
.course-card .btn{position:relative;z-index:1}

/* ---------- 13. Big CTA band + stats ---------- */
.ctaband{background:linear-gradient(120deg,#0e0e10,#161318);border:1px solid var(--line);border-radius:var(--radius-lg);padding:clamp(2rem,4vw,3.4rem);position:relative;overflow:hidden}
.ctaband__inner{display:grid;grid-template-columns:1.1fr 1fr;gap:2.5rem;align-items:center;position:relative;z-index:2}
.ctaband h2{margin-bottom:1.3rem}
.stat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem}
.stat{text-align:center}
.stat b{font-family:var(--ff-serif);font-size:clamp(1.8rem,3vw,2.6rem);display:block;line-height:1}
.stat span{font-size:.76rem;color:var(--muted);text-transform:uppercase;letter-spacing:.08em}
.checklist{display:flex;flex-direction:column;gap:.7rem;margin-top:1.6rem}
.checklist li{display:flex;gap:.7rem;align-items:flex-start;color:var(--text);font-size:.95rem}
.checklist svg{width:20px;height:20px;fill:var(--gold);flex:none;margin-top:.15rem}

/* ---------- 14. Testimonials / social proof ---------- */
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.testi{background:#fff;border-radius:var(--radius);padding:1.6rem;box-shadow:0 20px 40px -24px rgba(0,0,0,.25)}
.testi__stars{color:var(--gold-2);letter-spacing:2px;margin-bottom:.7rem;font-size:.95rem}
.testi p{color:#4a4238;font-size:.92rem;font-style:italic;margin-bottom:1rem}
.testi__author{display:flex;align-items:center;gap:.7rem}
.testi__avatar{width:40px;height:40px;border-radius:50%;background:var(--gold-grad);display:grid;place-items:center;color:#231a09;font-weight:700;font-family:var(--ff-serif)}
.testi__author b{color:#1b1813;font-size:.9rem;display:block}
.testi__author span{color:#8a8175;font-size:.78rem}

/* ---------- 15. Instagram / portfolio grid ---------- */
.ig-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:10px}
.ig-grid a{aspect-ratio:1;border-radius:12px;overflow:hidden;position:relative;background:var(--card-2);border:1px solid var(--line)}
.ig-grid img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.ig-grid a:hover img{transform:scale(1.08)}
.ig-tile{display:grid;place-items:center;color:var(--gold);font-size:.7rem;text-align:center;padding:.6rem;background:radial-gradient(circle at 50% 30%,rgba(215,177,102,.14),transparent)}
.ig-tile svg{width:30px;height:30px;fill:var(--gold);margin-bottom:.4rem}

/* ---------- 16. Lead magnet ---------- */
.lead-magnet{display:grid;grid-template-columns:.85fr 1.15fr;gap:2.5rem;align-items:center;background:linear-gradient(115deg,#15120c,#1c1710);border:1px solid var(--line);border-radius:var(--radius-lg);padding:clamp(1.6rem,3vw,3rem);overflow:hidden}
.lead-magnet__book{aspect-ratio:3/4;border-radius:14px;background:linear-gradient(160deg,#2a2419,#0f0d09);border:1px solid var(--gold);display:grid;place-items:center;text-align:center;padding:1.5rem;box-shadow:var(--shadow)}
.lead-magnet__book b{font-family:var(--ff-serif);font-size:2.4rem;color:var(--gold);line-height:1;display:block}
.lead-magnet__book span{color:var(--muted);font-size:.8rem;letter-spacing:.1em;text-transform:uppercase;margin-top:.6rem}
.lead-magnet__book--img{padding:0;overflow:hidden}
.lead-magnet__book--img img{width:100%;height:100%;object-fit:cover;display:block}

/* ---------- 17. Forms ---------- */
.form{display:grid;gap:1rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.field{display:flex;flex-direction:column;gap:.4rem}
.field label{font-size:.8rem;color:var(--muted);letter-spacing:.04em}
.field input,.field select,.field textarea{
  background:#101013;border:1px solid var(--line);border-radius:10px;
  padding:.85rem 1rem;color:var(--white);font-family:inherit;font-size:.92rem;transition:border .25s;
}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--gold)}
.field textarea{min-height:120px;resize:vertical}
.field--check{flex-direction:row;align-items:flex-start;gap:.6rem}
.field--check input{width:18px;height:18px;accent-color:var(--gold);margin-top:.2rem;flex:none}
.field--check label{font-size:.76rem;color:var(--muted-2);line-height:1.5}
.form .btn{margin-top:.4rem}
.form-note{font-size:.75rem;color:var(--muted-2)}
.section--ivory .field input,.section--ivory .field select,.section--ivory .field textarea{background:#fff;border-color:#ddd2bd;color:#25211b}
.section--ivory .field label{color:#6b6255}

/* ---------- 18. FAQ ---------- */
.faq{max-width:840px;margin:0 auto;display:flex;flex-direction:column;gap:.8rem}
.faq-item{background:var(--card);border:1px solid var(--line);border-radius:14px;overflow:hidden}
.faq-q{width:100%;text-align:left;padding:1.15rem 1.4rem;display:flex;justify-content:space-between;align-items:center;gap:1rem;font-family:var(--ff-serif);font-size:1.05rem;color:var(--white)}
.faq-q:hover{color:var(--gold)}
.faq-q .ico{width:26px;height:26px;flex:none;border-radius:50%;border:1px solid var(--gold);display:grid;place-items:center;color:var(--gold);transition:transform .3s}
.faq-item.open .faq-q .ico{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s var(--ease)}
.faq-a p{padding:0 1.4rem 1.2rem;color:var(--muted);font-size:.92rem}

/* ---------- 19. Breadcrumbs ---------- */
.breadcrumbs{background:var(--graphite);border-bottom:1px solid var(--line-soft);font-size:.8rem}
.breadcrumbs .container{display:flex;gap:.5rem;align-items:center;padding-top:.85rem;padding-bottom:.85rem;flex-wrap:wrap}
.breadcrumbs a{color:var(--muted)}
.breadcrumbs a:hover{color:var(--gold)}
.breadcrumbs .sep{color:var(--muted-2)}
.breadcrumbs [aria-current]{color:var(--gold)}

/* ---------- 20. Course landing hero ---------- */
.chero{position:relative;background:linear-gradient(160deg,#0c0c0e,#161217);overflow:hidden;border-bottom:1px solid var(--line)}
.chero .container{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center;padding-top:clamp(2.5rem,5vw,4rem);padding-bottom:clamp(2.5rem,5vw,4rem)}
.chero__meta{display:flex;flex-wrap:wrap;gap:.7rem;margin:1.4rem 0}
.pill{display:inline-flex;align-items:center;gap:.45rem;background:#141418;border:1px solid var(--line);border-radius:50px;padding:.5rem 1rem;font-size:.82rem;color:var(--text)}
.pill svg{width:16px;height:16px;fill:var(--gold)}
.pill b{color:var(--gold)}
.chero__price{font-family:var(--ff-serif);font-size:2rem;color:var(--white);margin:1rem 0 1.6rem}
.chero__price small{font-size:.9rem;color:var(--muted);font-family:var(--ff-sans);display:block;text-transform:uppercase;letter-spacing:.1em}
.chero__media{border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--line);box-shadow:var(--shadow);aspect-ratio:3/4;background:var(--card)}
.chero__media img{width:100%;height:100%;object-fit:cover}

/* course cover (CSS-generated for missing images) */
.cover{aspect-ratio:3/4;border-radius:var(--radius-lg);position:relative;overflow:hidden;display:grid;place-items:center;text-align:center;padding:2rem;border:1px solid var(--gold);
  background:linear-gradient(150deg,#1a1712 0%,#0b0b0d 55%,#141018 100%);box-shadow:var(--shadow)}
.cover::before{content:"";position:absolute;inset:0;opacity:.5;background:
  radial-gradient(circle at 20% 15%,rgba(215,177,102,.22),transparent 45%),
  radial-gradient(circle at 85% 80%,rgba(184,137,61,.18),transparent 50%)}
.cover__title{position:relative;font-family:var(--ff-serif);font-size:clamp(2rem,4vw,3.2rem);line-height:1;font-weight:700}
.cover__sub{position:relative;color:var(--muted);letter-spacing:.2em;text-transform:uppercase;font-size:.72rem;margin-top:1rem}
.cover__brand{position:relative;font-family:var(--ff-script);color:var(--gold);font-size:1.6rem;margin-top:auto}

/* ---------- 21. Feature / content blocks ---------- */
.icon-list{display:grid;gap:1rem}
.icon-list li{display:flex;gap:1rem;align-items:flex-start}
.icon-list .ic{width:44px;height:44px;flex:none;border-radius:12px;background:var(--card-2);border:1px solid var(--line);display:grid;place-items:center}
.icon-list .ic svg{width:22px;height:22px;fill:var(--gold)}
.icon-list b{display:block;color:var(--white);margin-bottom:.15rem;font-size:1rem}
.icon-list span{color:var(--muted);font-size:.9rem}

.feature-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.4rem}
.feature{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);padding:1.6rem}
.feature .ic{width:48px;height:48px;border-radius:12px;background:var(--card-2);display:grid;place-items:center;margin-bottom:1rem;border:1px solid var(--line)}
.feature .ic svg{width:24px;height:24px;fill:var(--gold)}
.feature h3{font-size:1.15rem;margin-bottom:.5rem}
.feature p{color:var(--muted);font-size:.9rem}

/* steps */
.steps{counter-reset:step;display:grid;gap:1.2rem}
.step{display:grid;grid-template-columns:auto 1fr;gap:1.2rem;align-items:flex-start;background:var(--card);border:1px solid var(--line);border-radius:var(--radius);padding:1.4rem 1.6rem}
.step::before{counter-increment:step;content:counter(step,decimal-leading-zero);font-family:var(--ff-serif);font-size:1.6rem;color:var(--gold);min-width:2.2ch}
.step h3{font-size:1.1rem;margin-bottom:.3rem}
.step p{color:var(--muted);font-size:.9rem}

/* program accordion list */
.program-list{display:grid;gap:.7rem;max-width:900px}
.program-list li{display:flex;gap:.8rem;align-items:flex-start;background:var(--card);border:1px solid var(--line-soft);border-radius:10px;padding:.85rem 1.1rem;font-size:.93rem}
.program-list svg{width:18px;height:18px;fill:var(--gold);flex:none;margin-top:.25rem}

/* price cards */
.price-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.4rem;max-width:820px;margin:0 auto}
.price-card{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);padding:2rem;text-align:center;position:relative}
.price-card--featured{border-color:var(--gold);box-shadow:var(--shadow-gold)}
.price-card__tag{position:absolute;top:-13px;left:50%;transform:translateX(-50%);background:var(--gold-grad);color:#231a09;font-size:.68rem;font-weight:700;letter-spacing:.1em;padding:.35rem .9rem;border-radius:50px;text-transform:uppercase}
.price-card h3{font-size:1.3rem;margin-bottom:.4rem}
.price-card .amount{font-family:var(--ff-serif);font-size:2.6rem;color:var(--gold);line-height:1;margin:.6rem 0}
.price-card ul{display:grid;gap:.5rem;margin:1.2rem 0;text-align:left}
.price-card li{display:flex;gap:.5rem;font-size:.88rem;color:var(--text)}
.price-card li svg{width:18px;height:18px;fill:var(--gold);flex:none}
/* Wyrównanie przycisków: lista rozpycha wysokość, CTA zawsze na dole karty */
.price-card{display:flex;flex-direction:column}
.price-card ul{flex:1 0 auto}
.price-card .btn{margin-top:auto}
/* Karty kursów w siatce — opis rozpycha, cena + przycisk wyrównane na dole */
.course-card > p{flex:1 0 auto}
.course-card .btn{margin-top:auto}

/* gallery */
.gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.gallery figure{aspect-ratio:3/4;border-radius:12px;overflow:hidden;border:1px solid var(--line);background:var(--card-2)}
.gallery img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.gallery figure:hover img{transform:scale(1.06)}

/* trainer */
.trainer{display:grid;grid-template-columns:.85fr 1.15fr;gap:2.5rem;align-items:center}
.trainer__photo{border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--line);aspect-ratio:3/4;max-height:560px;box-shadow:var(--shadow)}
.trainer__photo img{width:100%;height:100%;object-fit:cover}
.trainer__stats{display:flex;flex-wrap:wrap;gap:1.6rem 2.2rem;margin:1.4rem 0 .4rem;padding:1.1rem 0;border-top:1px solid var(--line-soft);border-bottom:1px solid var(--line-soft)}
.trainer__stats li{display:flex;flex-direction:column}
.trainer__stats b{font-family:var(--ff-serif);color:var(--gold);font-size:1.7rem;line-height:1}
.trainer__stats span{color:var(--muted);font-size:.8rem;text-transform:uppercase;letter-spacing:.08em;margin-top:.25rem}
.trainer__sign{font-family:var(--ff-script);color:var(--gold);font-size:2.2rem;margin-top:1rem}
/* Blok rat / przedsprzedaży na stronie kursu */
.raty-box{background:linear-gradient(135deg,#1a140b,#241a0e);border:1px solid var(--gold);border-radius:16px;padding:1.1rem 1.3rem;margin:0 0 1.2rem;max-width:460px;box-shadow:var(--shadow-gold)}
.raty-box__badge{display:inline-block;background:var(--gold-grad);color:#231a09;font-size:.66rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:.3rem .8rem;border-radius:50px;margin-bottom:.6rem}
.raty-box__price b{font-family:var(--ff-serif);font-size:1.9rem;color:var(--gold);line-height:1}
.raty-box__reg{color:var(--muted);font-size:.9rem;margin-top:.2rem}
.raty-box__reg s{color:var(--muted-2)}
.raty-box__note{display:flex;align-items:center;gap:.45rem;color:#e7c57b;font-size:.85rem;margin-top:.6rem}
.raty-box__note svg{fill:var(--gold);flex:none}

/* Blok CTA w treści wpisu bloga */
.aslowik-cta-block{margin:2rem 0 .5rem}
.prose .aslowik-cta-block a.btn{color:#231a09;text-decoration:none}

/* comparison table */
.table-wrap{overflow-x:auto;border:1px solid var(--line);border-radius:var(--radius)}
table.compare{width:100%;border-collapse:collapse;min-width:640px}
table.compare th,table.compare td{padding:1rem 1.1rem;text-align:left;border-bottom:1px solid var(--line-soft);font-size:.9rem}
table.compare thead th{background:var(--card-2);color:var(--gold);font-family:var(--ff-serif);font-weight:600}
table.compare tbody tr:hover{background:rgba(215,177,102,.04)}
table.compare td:first-child{color:var(--white);font-weight:500}

/* quiz */
.quiz{max-width:760px;margin:0 auto;background:var(--card);border:1px solid var(--line);border-radius:var(--radius-lg);padding:clamp(1.6rem,3vw,2.6rem)}
.quiz__options{display:grid;gap:.8rem;margin-top:1.4rem}
.quiz__opt{display:flex;align-items:center;gap:1rem;text-align:left;padding:1.1rem 1.3rem;border:1px solid var(--line);border-radius:12px;background:#101013;transition:.25s;font-size:.98rem;color:var(--text)}
.quiz__opt:hover{border-color:var(--gold);transform:translateX(4px)}
.quiz__opt .num{width:34px;height:34px;flex:none;border-radius:50%;background:var(--card-2);display:grid;place-items:center;color:var(--gold);font-family:var(--ff-serif)}
.quiz__result{margin-top:1.6rem;padding:1.6rem;border-radius:14px;border:1px solid var(--gold);background:linear-gradient(120deg,#181410,#0e0e10);display:none}
.quiz__result.show{display:block;animation:fade .5s var(--ease)}
.quiz__result h3{color:var(--gold);margin-bottom:.5rem}
@keyframes fade{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}

/* ---------- 22. Footer ---------- */
.footer{background:#060607;border-top:1px solid var(--line);position:relative;overflow:hidden}
.footer__top{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:2.5rem;padding:clamp(3rem,5vw,4.5rem) 0 2.5rem}
.footer h4{font-family:var(--ff-serif);font-size:1.05rem;color:var(--white);margin-bottom:1.2rem;letter-spacing:.02em}
.footer p{color:var(--muted);font-size:.9rem;max-width:280px}
.footer ul{display:grid;gap:.6rem}
.footer ul a{color:var(--muted);font-size:.9rem}
.footer ul a:hover{color:var(--gold);padding-left:4px}
.footer__contact li{display:flex;gap:.6rem;align-items:flex-start;color:var(--muted);font-size:.9rem;margin-bottom:.7rem}
.footer__contact svg{width:17px;height:17px;fill:var(--gold);flex:none;margin-top:.2rem}
.footer__social{display:flex;gap:.7rem;margin-top:1.4rem}
.footer__social a{width:38px;height:38px;border-radius:50%;border:1px solid var(--line);display:grid;place-items:center}
.footer__social svg{width:16px;height:16px;fill:var(--muted);transition:.25s}
.footer__social a:hover{border-color:var(--gold)}
.footer__social a:hover svg{fill:var(--gold)}
.footer__bottom{border-top:1px solid var(--line-soft);padding:1.4rem 0;display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;font-size:.8rem;color:var(--muted-2)}
.footer__bottom a{color:var(--muted-2)}
.footer__bottom a:hover{color:var(--gold)}

/* ---------- 23. Sticky mobile bottom bar ---------- */
.mobilebar{position:fixed;left:0;right:0;bottom:0;z-index:180;display:none;background:rgba(8,8,9,.96);backdrop-filter:blur(12px);border-top:1px solid var(--line);padding:.5rem;grid-template-columns:repeat(3,1fr);gap:.5rem}
.mobilebar a{display:flex;flex-direction:column;align-items:center;gap:.2rem;padding:.5rem;border-radius:10px;font-size:.68rem;color:var(--text);letter-spacing:.03em}
.mobilebar a svg{width:20px;height:20px;fill:var(--gold)}
.mobilebar a.primary{background:var(--gold-grad);color:#231a09}
.mobilebar a.primary svg{fill:#231a09}

/* ---------- 24. Utilities / animation ---------- */
.reveal{opacity:0;transform:translateY(26px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.reveal.in{opacity:1;transform:none}
.center{text-align:center}
.mt-2{margin-top:2rem}.mt-3{margin-top:3rem}.mb-0{margin-bottom:0}
.divider{height:1px;background:var(--line);margin:0}
.tag-row{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1rem}
.tag{font-size:.74rem;letter-spacing:.06em;text-transform:uppercase;color:var(--gold);border:1px solid var(--line);border-radius:50px;padding:.35rem .85rem}
.lead{font-size:1.1rem;color:var(--muted)}
.prose p{margin-bottom:1rem;color:var(--muted)}
.prose h3{margin:1.6rem 0 .6rem}

/* ---------- 25. Responsive ---------- */
@media(max-width:1080px){
  .trustbar__grid{grid-template-columns:repeat(3,1fr)}
  .trustbar__item:nth-child(3){border-right:none}
  .courses-scroll{grid-template-columns:repeat(3,1fr)}
  .ig-grid{grid-template-columns:repeat(4,1fr)}
  .footer__top{grid-template-columns:1fr 1fr}
}
@media(max-width:900px){
  .nav__list,.header__cta .btn--gold{display:none}
  .hamburger{display:flex}
  .hero .container,.chero .container,.ctaband__inner,.lead-magnet,.trainer,.ctaband__inner{grid-template-columns:1fr}
  .hero__media{min-height:340px;order:-1}
  .hero__ring{display:none}
  .paths,.three,.testi-grid,.feature-grid{grid-template-columns:1fr}
  .stat-grid{grid-template-columns:repeat(2,1fr)}
  .price-grid{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .mobilebar{display:grid}
  body{padding-bottom:66px}
  .footer__bottom{padding-bottom:76px}
}
@media(max-width:640px){
  :root{--header-h:66px}
  .topbar__info{gap:.9rem;font-size:.72rem}
  .topbar__info .hide-sm{display:none}
  .trustbar__grid{grid-template-columns:1fr 1fr}
  .courses-scroll,.two,.four,.six,.form-row{grid-template-columns:1fr}
  .stat-grid,.ig-grid{grid-template-columns:repeat(2,1fr)}
  .hero__cta .btn{flex:1}
  .section-head{margin-bottom:2.2rem}
}
@media(prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important;scroll-behavior:auto}}

/* =========================================================
   26. Dopracowania premium v2
   ========================================================= */
.btn--lg{padding:1.15rem 2.5rem;font-size:1rem}
.btn--gold{position:relative;box-shadow:0 18px 40px -14px rgba(184,137,61,.5),inset 0 1px 0 rgba(255,255,255,.35)}
.btn--gold::after{content:"";position:absolute;inset:0;border-radius:inherit;box-shadow:inset 0 0 0 1px rgba(255,255,255,.18);pointer-events:none}
.section{padding:clamp(2.6rem,5vw,4.6rem) 0}
.section-head{margin-bottom:clamp(1.7rem,3vw,2.6rem)}
.eyebrow{position:relative;padding-left:0}
.section-head .eyebrow::before,.section-head .eyebrow::after{content:"";display:inline-block;width:26px;height:1px;background:var(--gold);vertical-align:middle;margin:0 .6rem;opacity:.7}

/* mikrocopy pod CTA */
.cta-note{font-size:.86rem;color:var(--muted);margin-top:1rem;display:inline-flex;align-items:center;gap:.5rem}
.cta-note svg{width:16px;height:16px;fill:var(--gold);flex:none}
.center .cta-note{justify-content:center}

/* ramy sekcji ivory — celowe przełamanie */
.section--ivory{position:relative;background:linear-gradient(180deg,#f6f0e6 0%,#efe6d5 100%)}
.section--ivory::before,.section--ivory::after{content:"";position:absolute;left:0;right:0;height:2px;background:linear-gradient(90deg,transparent,var(--gold-2),transparent);opacity:.5}
.section--ivory::before{top:0}.section--ivory::after{bottom:0}

/* karty ofertowe hub — spójny wygląd cen */
.feature .course-card__price{font-family:var(--ff-serif);color:var(--gold);font-size:1.2rem;margin:.6rem 0}

/* stopka — portret premium (jak w referencji) */
.footer{padding-right:0}
.footer__portrait{position:absolute;right:0;bottom:0;width:min(300px,26%);height:100%;z-index:0;pointer-events:none;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 55%);mask-image:linear-gradient(90deg,transparent,#000 55%);opacity:.85}
.footer__portrait img{width:100%;height:100%;object-fit:cover;object-position:top center}
.footer__portrait::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,#060607 2%,transparent 40%)}
.footer__sign{position:absolute;right:5%;bottom:5.5rem;z-index:1;font-family:var(--ff-script);color:var(--gold);font-size:2.2rem;opacity:.95}
.footer .container{position:relative;z-index:1}

/* hero — mobile premium */
@media(max-width:900px){
  .hero__grid{grid-template-columns:1fr;min-height:0;gap:0}
  .hero__media{order:-1;height:auto;justify-content:center}
  .hero__photo{max-width:none;width:100%;height:clamp(320px,52vh,420px);margin:0}
  .hero__photo img{object-position:52% 12%}
  .hero__photo::after{background:linear-gradient(0deg,#08080a 3%,rgba(8,8,10,.35) 26%,transparent 55%),linear-gradient(90deg,rgba(8,8,10,.35),transparent 30%)}
  .hero__mark{font-size:34vh;right:auto;left:50%;transform:translate(-50%,-60%);opacity:.35}
  .hero__ring{display:none}
  .hero__glow{width:120%;right:-10%;top:-10%;height:70%}
  .hero__content{padding:2rem 0 2.6rem;text-align:left}
  .hero__stats{gap:1rem 1.6rem}
  .hero__stat b{font-size:1.2rem}
}
@media(max-width:640px){
  .hero__cta{gap:.7rem}
  .hero__cta .btn{flex:1 1 100%}
  .path-card{min-height:400px}
  .footer__portrait{display:none}
  .footer__sign{position:static;display:block;margin-top:1.5rem;text-align:center;font-size:1.9rem}
}

/* =========================================================
   27. Kontrast — sekcje jasne / ivory  [audyt 2026]
   Reguła: jasne tło = ciemny tekst. Nie dotyka ciemnych kart
   (.feature/.testi/.price-card/.course-card/.step/.quiz).
   ========================================================= */
.section--ivory .lead,
.section--ivory .prose p,
.section--ivory .prose li,
.section--ivory .checklist > li,
.section--ivory > .container > p,
.section--ivory .section-head p{color:#4a4238}
.section--ivory .prose h2,
.section--ivory .prose h3,
.section--ivory .prose h4,
.section--ivory .section-title{color:#1b1813}
.section--ivory .checklist > li svg{fill:var(--gold-2)}
.section--ivory .cta-note{color:#6b6255}
.section--ivory .cta-note svg{fill:var(--gold-2)}
.section--ivory a:not(.btn):not(.text-link){color:#8a6320}
.section--ivory .btn--ghost-gold{color:#8a6320;border-color:#b8893d}
.section--ivory .btn--ghost-gold:hover{background:#8a6320;color:#fff}
.section--ivory .tag{color:#6b5426;border-color:#d8c9a8}
/* Nadtytuł/eyebrow na ivory — ciemniejsze złoto dla czytelności (AA) */
.section--ivory .eyebrow{color:#8a6320}
.section--ivory .eyebrow::before,
.section--ivory .eyebrow::after{background:#8a6320}

/* =========================================================
   28. WordPress — archiwum, filtry, formularze [audyt staging]
   ========================================================= */
/* Archiwum szkoleń: 3 kolumny desktop → 2 tablet → 1 mobile */
.aslowik-archive-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
@media(max-width:900px){.aslowik-archive-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:600px){.aslowik-archive-grid{grid-template-columns:1fr}}

/* Pasek filtrów na mobile — zawijanie i przewijanie poziome zamiast ściśnięcia */
@media(max-width:600px){
  .section--tight .tag-row{gap:.5rem;justify-content:flex-start;flex-wrap:wrap}
  .section--tight .tag{font-size:.72rem;padding:.4rem .8rem}
}

/* Paginacja WP */
.page-numbers{display:inline-flex;min-width:40px;height:40px;align-items:center;justify-content:center;margin:0 .2rem;border:1px solid var(--line);border-radius:10px;color:var(--text);padding:0 .6rem}
.page-numbers.current{background:var(--gold-grad);color:#231a09;border-color:transparent;font-weight:600}
.page-numbers:hover{border-color:var(--gold);color:var(--gold)}
.page-numbers.current:hover{color:#231a09}

/* Status formularza (sukces/błąd) — czytelny na ciemnym i jasnym tle */
.form-status{margin-top:.9rem;font-size:.9rem;font-weight:500}
.section--ivory .form-status{color:#6b5426!important}

/* Honeypot antyspam — ukryty dla ludzi, widoczny dla botów */
.aslowik-hp{position:absolute!important;left:-9999px!important;width:1px;height:1px;overflow:hidden}

/* =========================================================
   29. Ikona koszyka w nagłówku (WooCommerce)
   ========================================================= */
.header-cart{position:relative;display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:12px;border:1px solid var(--line);flex:none;transition:border-color .25s,transform .25s}
.header-cart:hover{border-color:var(--gold);transform:translateY(-1px)}
.header-cart svg{width:20px;height:20px;fill:var(--gold)}
.aslowik-cart-count{position:absolute;top:-7px;right:-7px;min-width:19px;height:19px;padding:0 5px;border-radius:10px;background:var(--gold-grad);color:#231a09;font-size:.66rem;font-weight:700;display:inline-flex;align-items:center;justify-content:center;line-height:1;box-shadow:0 2px 8px -2px rgba(184,137,61,.7)}
.aslowik-cart-count[hidden]{display:none}
@media(max-width:900px){ .header-cart{width:40px;height:40px;order:-1} }

/* =========================================================
   30. Strona „Zapisz się" — karta wybranego szkolenia
   ========================================================= */
.signup-course{display:flex;gap:1rem;align-items:center;background:linear-gradient(120deg,#17130c,#1d1811);border:1px solid var(--gold);border-radius:16px;padding:1rem 1.1rem;margin-bottom:1.4rem;box-shadow:var(--shadow-gold)}
.signup-course__img{flex:none;width:88px;height:110px;border-radius:12px;overflow:hidden;border:1px solid var(--line)}
.signup-course__img img{width:100%;height:100%;object-fit:cover;display:block}
.signup-course__body{min-width:0}
.signup-course__body .eyebrow{margin-bottom:.25rem}
.signup-course__body h2{font-size:1.35rem;line-height:1.15;margin:0 0 .2rem;color:var(--white)}
.signup-course__price{font-family:var(--ff-serif);color:var(--gold);font-size:1.25rem;line-height:1}
.signup-course__meta{display:flex;align-items:center;gap:.4rem;color:var(--muted);font-size:.85rem;margin:.35rem 0 .3rem}
.signup-course__meta svg{fill:var(--gold)}
.signup-course__link{display:inline-block;color:var(--gold-2);font-size:.85rem;font-weight:600}
.signup-course__link:hover{color:var(--gold)}
@media(max-width:480px){ .signup-course{flex-direction:column;align-items:flex-start} .signup-course__img{width:100%;height:180px} }

/* =========================================================
   31. Strona „Zapisz się" — dopieszczony wygląd (scoped: .zapis)
   ========================================================= */
.zapis .section-title{font-size:clamp(2.2rem,4.6vw,3.4rem);line-height:1.05}
.zapis .section-head{margin-bottom:2.8rem}
/* Karta formularza — premium: złoty akcent u góry, więcej oddechu */
.zapis #formularz{position:relative;padding:1.9rem 1.9rem 2rem;border:1px solid var(--line);border-radius:20px;background:linear-gradient(180deg,#141416,#101012);overflow:hidden}
.zapis #formularz::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:var(--gold-grad)}
.zapis #formularz > h2{display:flex;align-items:center;gap:.55rem}
.zapis #formularz > h2::before{content:"";width:26px;height:26px;border-radius:8px;background:var(--gold-grad);flex:none;-webkit-mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/16px no-repeat;mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/16px no-repeat}
/* Pola — wyższy kontrast i przyjemny focus */
.zapis .field input,.zapis .field select,.zapis .field textarea{background:#0d0d0f;border:1px solid #2b2a2e;border-radius:12px;transition:border-color .2s,box-shadow .2s}
.zapis .field input:focus,.zapis .field select:focus,.zapis .field textarea:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(184,137,61,.18);outline:none}
.zapis .field label{font-weight:500}
.zapis .form .btn--gold{margin-top:.4rem;padding-block:1rem}
/* Lewa kolumna — atuty w czytelnej karcie */
.zapis .icon-list{background:linear-gradient(180deg,#141416,#101012);border:1px solid var(--line);border-radius:18px;padding:1.4rem 1.5rem}
.zapis .icon-list li{align-items:flex-start}
