/* ============================================================
   ANETA RATAJCZAK — FitBodyCat
   Bold & energetic. Lime on near-black. Polish.
   Type: Anton (display, condensed) + Manrope (body)
   ============================================================ */

:root {
  --ink: #0E0E0E;
  --ink-2: #161616;
  --ink-3: #1E1E1E;
  --paper: #F3F2EC;
  --paper-2: #E9E7DD;
  --lime: #C8FF3D;
  --lime-deep: #A9E018;
  --white: #FFFFFF;
  --muted: #8A8A82;
  --muted-dark: #6E6E66;
  --line: rgba(255,255,255,0.10);
  --line-dark: rgba(14,14,14,0.12);

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --r: 18px;

  --f-display: "Anton", "Arial Narrow", sans-serif;
  --f-body: "Manrope", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--f-body);
  background: var(--ink);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--lime); color: var(--ink); }

/* ---- Type primitives ---- */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  /* Anton is condensed; keep it tight but leave room so Polish ogonki (Ą Ę)
     and over-marks (Ż Ó Ś Ń) don't collide between lines of all-caps copy. */
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.center::before { display: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
section { position: relative; }

/* ---- Buttons ---- */
.btn {
  --bg: var(--lime);
  --fg: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 1.05em 1.7em;
  background: var(--bg);
  color: var(--fg);
  border-radius: 100px;
  border: 2px solid var(--bg);
  cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), background .18s, color .18s, box-shadow .18s;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(200,255,61,.5); }
.btn--ghost {
  --bg: transparent; --fg: var(--paper);
  border-color: var(--line);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); box-shadow: none; }
.btn--dark { --bg: var(--ink); --fg: var(--paper); border-color: var(--ink); }
.btn--dark:hover { box-shadow: 0 12px 30px -10px rgba(14,14,14,.4); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gut);
  transition: background .3s, padding .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14,14,14,0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
  padding-block: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--f-display); text-transform: uppercase; }
.brand-logo { height: 80px; width: auto; display: block; transition: height .3s; }
.nav.scrolled .brand-logo { height: 68px; }
.footer .brand-logo { height: 144px; }
@media (max-width: 860px){ .brand-logo { height: 62px; } }
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--lime); color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--f-display); font-size: 1.35rem; line-height: 1;
  transform: rotate(-4deg);
}
.brand-name { font-size: 1.1rem; letter-spacing: .04em; line-height: 1; }
.brand-name span { color: var(--lime); }
.brand-sub { font-family: var(--f-body); font-size: .62rem; letter-spacing: .28em; color: var(--muted); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a.link {
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  color: var(--paper); opacity: .8; transition: opacity .2s, color .2s;
  position: relative; padding: 4px 0; white-space: nowrap;
}
.nav-links a.link::after {
  content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0;
  background: var(--lime); transition: width .25s;
}
.nav-links a.link:hover { opacity: 1; }
.nav-links a.link:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { display:block; width: 26px; height: 2px; background: var(--paper); margin: 5px 0; transition: .25s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  padding-top: 150px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(200,255,61,.10), transparent 55%),
    var(--ink);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  width: 100%;
}
.hero-kicker { margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(2.2rem, 6.4vw, 7rem);
  line-height: 1.2;
  padding-bottom: 0.12em;
}
.hero h1 .out { color: transparent; -webkit-text-stroke: 2px var(--paper); }
.hero h1 em { font-style: normal; color: var(--lime); }
.hero-lead {
  margin-top: 56px;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.6;
  color: #C9C9C1;
  max-width: 46ch;
}
.hero-actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-proof { margin-top: 44px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.proof-avatars { display: flex; }
.proof-avatars image-slot {
  width: 46px; height: 46px; border-radius: 50%;
  margin-left: -12px; border: 2px solid var(--ink);
  box-shadow: 0 0 0 2px var(--ink);
}
.proof-avatars image-slot:first-child { margin-left: 0; }
.proof-text { font-size: .9rem; color: #C9C9C1; line-height: 1.4; }
.proof-text b { color: var(--paper); }
.proof-stars { color: var(--lime); letter-spacing: 2px; }

/* hero visual */
.hero-visual { position: relative; }
.hero-photo {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7);
}
.hero-photo image-slot { width: 100%; height: 100%; }
.hero-photo::after {
  content:""; position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(180deg, transparent 55%, rgba(14,14,14,.55));
}
.hero-badge {
  position: absolute; z-index: 3;
  background: var(--lime); color: var(--ink);
  border-radius: 16px; padding: 16px 20px;
  box-shadow: 0 18px 40px -16px rgba(200,255,61,.5);
}
.hero-badge .num { font-family: var(--f-display); font-size: 2.4rem; line-height: 1; }
.hero-badge .lbl { font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }
.hero-badge.bl { left: -26px; bottom: 38px; transform: rotate(-3deg); }
.hero-badge.tr { right: -22px; top: 40px; background: var(--paper); transform: rotate(3deg); }

/* marquee */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--lime); color: var(--ink);
  overflow: hidden; white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 0; animation: scroll-x 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--f-display); text-transform: uppercase;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem); padding: 14px 0;
  display: inline-flex; align-items: center;
}
.marquee-track span::after { content: "✦"; margin: 0 28px; font-size: .7em; opacity: .7; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: clamp(80px, 12vh, 150px) 0; background: var(--ink); }
.about-grid { display: grid; grid-template-columns: 0.62fr 1.1fr; gap: clamp(30px, 5vw, 80px); align-items: stretch; }
.about-photo { position: relative; display: flex; min-height: 540px; }
.about-photo image-slot { width: 100%; height: 100%; border-radius: 22px; }
.about-photo .tag {
  position:absolute; bottom: 22px; left: 22px;
  background: rgba(14,14,14,.8); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 8px 16px; font-size: .8rem; font-weight: 700;
}
.about h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); margin: 18px 0 0; }
.about h2 em { font-style: normal; color: var(--lime); }
.about p { color: #C2C2BA; line-height: 1.75; margin-top: 22px; font-size: 1.05rem; }
.about p + p { margin-top: 14px; }
.sign { margin-top: 26px; font-family: var(--f-display); font-size: 1.6rem; color: var(--lime); }

/* ---- track record (stats) ----
   A single raised panel with a 2x2 hairline ledger, not four bordered boxes.
   Wide columns give every metric room, so "15 tys.+" never clips and the
   count-up has space to breathe. Index numbers echo the service-card system. */
.record {
  position: relative;
  margin-top: clamp(40px, 5vw, 60px);
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(130% 120% at 100% 0%, rgba(200,255,61,.10), transparent 55%),
    var(--ink-2);
}
.record-kicker {
  display: inline-flex; align-items: center; gap: .6em;
  margin-bottom: clamp(22px, 3vw, 32px);
  font-size: .74rem; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--lime-deep);
}
.record-kicker::before { content: "✦"; color: var(--lime); font-size: .95em; }

/* Lead metric anchors the panel; the trio sits below as a hairline support
   row. The asymmetry gives the eye a focal point the flat 2x2 lacked, and
   frees the long "15 tys.+" value from a cramped quadrant. */
.record-lead { padding-bottom: clamp(22px, 3vw, 30px); border-bottom: 1px solid var(--line); }
.record-row { display: grid; grid-template-columns: repeat(3, 1fr); padding-top: clamp(22px, 3vw, 30px); }
.record .stat { padding: 0 clamp(16px, 2vw, 26px); min-width: 0; }
.record .stat:first-child { padding-left: 0; }
.record .stat + .stat { border-left: 1px solid var(--line); }

.stat-ix { display: block; margin-bottom: 12px; font-family: var(--f-display); font-size: .95rem; letter-spacing: .06em; color: var(--muted-dark); }
.record .num { font-family: var(--f-display); color: var(--lime); line-height: .92; font-variant-numeric: tabular-nums; white-space: nowrap; min-height: .92em; display: block; }
.record-lead .num--lead { font-size: clamp(3.6rem, 9vw, 6.4rem); line-height: .88; }
.record-row .num { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.record-row .num[data-short="k"] { font-size: clamp(1.45rem, 2.3vw, 1.85rem); letter-spacing: -.01em; }
.record .lbl { margin-top: 14px; font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); line-height: 1.4; max-width: 18ch; }
.record-lead .lbl { font-size: .9rem; max-width: 24ch; }

@media (max-width: 620px){
  .record-row { grid-template-columns: 1fr; padding-top: clamp(20px, 4vw, 26px); }
  .record-row .stat { padding: 20px 0; border-left: 0; }
  .record-row .stat:first-child { padding-top: 0; }
  .record-row .stat + .stat { border-top: 1px solid var(--line); }
  .record-lead .num--lead { font-size: clamp(3rem, 16vw, 4.6rem); }
}

/* ============================================================
   MOVEMENT BAND (split: full image one side, text the other)
   ============================================================ */
.band { background: var(--ink-2); display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; overflow: hidden; }
.band-media { display: flex; align-items: center; justify-content: center; padding: clamp(36px, 5vw, 72px); padding-right: 0; }
.band-media img { max-width: 100%; max-height: 82vh; width: auto; height: auto; border-radius: 16px; display: block; box-shadow: 0 30px 60px -28px rgba(0,0,0,.7); }
.band-inner { padding: clamp(48px, 7vw, 110px) var(--gut); text-align: left; }
.band .eyebrow { color: var(--lime-deep); justify-content: flex-start; }
.band h2 { font-size: clamp(2.4rem, 5.5vw, 5rem); margin: 18px 0 0; color: var(--paper); }
.band h2 em { font-style: normal; color: var(--lime); }
.band p { max-width: 42ch; margin: 24px 0 0; font-size: 1.12rem; line-height: 1.65; color: #C9C9C1; }
@media (max-width: 860px){
  .band { grid-template-columns: 1fr; }
  .band-media { padding: clamp(28px, 7vw, 48px); padding-bottom: 0; }
  .band-media img { max-height: 64vh; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: clamp(80px, 12vh, 150px) 0; background: var(--paper); color: var(--ink); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 54px; }
.sec-head h2 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); }
.sec-head .eyebrow { color: var(--ink); }
.sec-head h2 em { font-style: normal; color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.sec-head p { color: #4A4A44; max-width: 38ch; line-height: 1.6; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  background: var(--white); border: 1px solid var(--line-dark); border-radius: var(--r);
  padding: 30px; display: flex; flex-direction: column;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, color .25s;
  position: relative; overflow: hidden;
}
.svc:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -28px rgba(0,0,0,.35); }
.svc.feat { background: var(--ink); color: var(--paper); }
.svc-num { font-family: var(--f-display); font-size: 1rem; color: var(--muted-dark); }
.svc.feat .svc-num { color: var(--lime); }
.svc-ico { width: 52px; height: 52px; border-radius: 12px; background: var(--lime); color: var(--ink); display: grid; place-items: center; margin: 18px 0 22px; }
.svc-ico svg { width: 26px; height: 26px; }
.svc h3 { font-family: var(--f-display); text-transform: uppercase; font-size: 1.7rem; line-height: 1.2; letter-spacing: .01em; }
.svc p { margin-top: 12px; color: #5A5A52; line-height: 1.6; font-size: .96rem; flex-grow: 1; }
.svc.feat p { color: #B8B8B0; }
.svc-foot { margin-top: 24px; display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line-dark); }
.svc.feat .svc-foot { border-top-color: var(--line); }
.svc-price { font-family: var(--f-display); font-size: 1.5rem; }
.svc-price small { font-family: var(--f-body); font-size: .76rem; font-weight: 700; color: var(--muted-dark); display: block; letter-spacing: .04em; }
.svc-arrow { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--line-dark); display: grid; place-items: center; transition: .2s; }
.svc:hover .svc-arrow { background: var(--lime); border-color: var(--lime); color: var(--ink); transform: rotate(-45deg); }
.svc.feat .svc-arrow { border-color: var(--line); }
@media (max-width: 920px){ .svc-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CAMPS / WYJAZDY
   ============================================================ */
.camps { padding: clamp(80px, 12vh, 150px) 0; background: var(--ink); position: relative; overflow: hidden; }
.camps::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(90% 60% at 85% 0%, rgba(200,255,61,.08), transparent 60%); }
.camps .container { position: relative; }
.camps .sec-head { margin-bottom: clamp(28px, 4vw, 40px); }
.camps .sec-head .eyebrow { color: var(--lime-deep); }
.camps .sec-head h2 em { font-style: normal; color: var(--lime); -webkit-text-stroke: 0; }
.camps .sec-head p { color: #C2C2BA; }

/* Story-led: one anchor figure + the rhythm of a day on Korfu. */
.camp-story { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(30px, 5vw, 72px); align-items: start; }
.camp-figure { margin: 0; }
/* Frame matches the photo's native ratio (662x1017) so cover shows the full
   image with no crop. */
.camp-figure image-slot { width: 100%; height: auto; aspect-ratio: 662 / 1017; border-radius: 22px; box-shadow: 0 40px 70px -34px rgba(0,0,0,.7); }
.camp-figure figcaption { margin-top: 14px; padding-left: 2px; font-size: .82rem; color: var(--muted); line-height: 1.5; max-width: 34ch; }

.rhythm-kicker { display: inline-flex; align-items: center; gap: .6em; margin-bottom: clamp(18px, 3vw, 26px);
  font-size: .74rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--lime-deep); }
.rhythm-kicker::before { content: "✦"; color: var(--lime); }
.rhythm { list-style: none; }
.beat { display: grid; grid-template-columns: 7rem 1fr; gap: clamp(14px, 2vw, 28px); padding: clamp(22px, 3vw, 30px) 0; border-top: 1px solid var(--line); }
.beat:first-child { padding-top: 0; border-top: 0; }
.beat-time { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(1.3rem, 2.2vw, 1.8rem); color: var(--lime); line-height: 1; }
.beat-body h3 { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(1.3rem, 2vw, 1.7rem); letter-spacing: .01em; line-height: 1.2; color: var(--paper); }
.beat-body p { margin-top: 10px; color: #B8B8B0; line-height: 1.65; font-size: 1rem; max-width: 54ch; }

.camp-terminy-kicker { margin-top: clamp(48px, 7vw, 84px); }
.camp-schedule { margin-top: 0; border-top: 1px solid var(--line); }
.edition { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(18px, 3vw, 44px);
  padding: clamp(24px, 3vw, 34px) 4px; border-bottom: 1px solid var(--line); transition: background .25s; }
.edition:hover { background: rgba(255,255,255,.025); }
.ed-status { align-self: center; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: .74rem; line-height: 1; padding: 5px 11px; border-radius: 100px; white-space: nowrap; }
.ed-status--open { background: var(--lime); color: var(--ink); }
.ed-status--done { color: var(--muted-dark); border: 1px solid var(--line); }
.edition--done { opacity: .5; transition: opacity .25s; }
.edition--done:hover { opacity: .72; background: transparent; }
.ed-ix { font-family: var(--f-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--lime); line-height: .9; min-width: 1.5em; }
.ed-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.ed-head h3 { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(1.4rem, 2.6vw, 2rem); letter-spacing: .01em; color: var(--paper); }
.ed-date { font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; color: var(--lime-deep); }
.ed-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.ed-tags span { font-size: .76rem; font-weight: 700; color: var(--muted); border: 1px solid var(--line); border-radius: 100px; padding: 5px 12px; }
.ed-link { display: inline-flex; align-items: center; gap: .5em; font-weight: 800; font-size: .9rem; color: var(--paper); white-space: nowrap; transition: color .2s; }
.ed-link svg { width: 1.1em; height: 1.1em; transition: transform .2s; }
.ed-link:hover { color: var(--lime); }
.ed-link:hover svg { transform: translateX(4px); }

@media (max-width: 860px){
  .camp-story { grid-template-columns: 1fr; gap: clamp(28px, 5vw, 40px); }
  .camp-figure image-slot { max-width: 460px; }
  .beat { grid-template-columns: 1fr; gap: 6px; }
  .beat-time { color: var(--lime-deep); font-size: 1.05rem; letter-spacing: .04em; }
  .edition { grid-template-columns: auto 1fr; }
  .ed-link { grid-column: 2; justify-self: start; margin-top: 6px; }
}
@media (max-width: 520px){
  .edition { grid-template-columns: 1fr; gap: 8px; }
  .ed-link { grid-column: 1; }
}

/* ============================================================
   TRANSFORMATIONS / before-after
   ============================================================ */
.transform { padding: clamp(80px, 12vh, 150px) 0; background: var(--ink); }
.ba-wrap { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.ba {
  position: relative; aspect-ratio: 4/3; border-radius: 22px; overflow: hidden;
  user-select: none; touch-action: none; box-shadow: 0 40px 70px -30px rgba(0,0,0,.7);
}
.ba .side { position: absolute; inset: 0; }
.ba .side image-slot { width: 100%; height: 100%; }
.ba .after { clip-path: inset(0 0 0 var(--split, 50%)); }
.ba-label {
  position: absolute; top: 16px; z-index: 4;
  font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 100px; backdrop-filter: blur(6px);
}
.ba-label.b { left: 16px; background: rgba(255,255,255,.85); color: var(--ink); }
.ba-label.a { right: 16px; background: var(--lime); color: var(--ink); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--split, 50%); width: 3px; background: var(--lime); z-index: 5; transform: translateX(-50%); }
.ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 50px; height: 50px; border-radius: 50%; background: var(--lime); color: var(--ink);
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.4); cursor: ew-resize;
}
.ba-knob svg { width: 24px; height: 24px; }
.ba-side-info h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin: 16px 0; }
.ba-side-info h2 em { font-style: normal; color: var(--lime); }
.ba-side-info p { color: #C2C2BA; line-height: 1.7; margin-bottom: 24px; }
.ba-quote { border-left: 3px solid var(--lime); padding: 4px 0 4px 20px; }
.ba-quote p { color: var(--paper); font-size: 1.05rem; font-style: italic; margin: 0; }
.ba-quote cite { display: block; margin-top: 10px; font-style: normal; font-weight: 700; font-size: .85rem; color: var(--muted); }
@media (max-width: 920px){ .ba-wrap { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { padding: clamp(80px, 12vh, 150px) 0; background: var(--paper); color: var(--ink); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tcard { background: var(--white); border: 1px solid var(--line-dark); border-radius: var(--r); padding: 28px; display: flex; flex-direction: column; }
.tcard .stars { color: var(--lime-deep); letter-spacing: 2px; font-size: 1rem; }
.tcard blockquote { margin: 16px 0 20px; line-height: 1.65; font-size: 1.02rem; color: #2A2A26; flex-grow: 1; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .who image-slot { width: 46px; height: 46px; border-radius: 50%; }
.tcard .who .nm { font-weight: 800; font-size: .92rem; }
.tcard .who .role { font-size: .78rem; color: var(--muted-dark); }
@media (max-width: 920px){ .testi-grid { grid-template-columns: 1fr; } }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.insta { padding: clamp(70px, 10vh, 130px) 0; background: var(--ink); }
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 44px; }
.insta-grid image-slot { width: 100%; aspect-ratio: 4/5; border-radius: 14px; }
@media (max-width: 720px){ .insta-grid { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: clamp(80px, 12vh, 150px) 0; background: var(--paper); color: var(--ink); }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq-item { border-bottom: 1px solid var(--line-dark); }
.faq-q { width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; font-family: var(--f-body); font-weight: 800; font-size: 1.12rem; color: var(--ink); }
.faq-q .ic { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--ink); display: grid; place-items: center; transition: .25s; }
.faq-item.open .ic { background: var(--lime); border-color: var(--lime); transform: rotate(135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 4px 24px; color: #5A5A52; line-height: 1.7; max-width: 60ch; }
/* Mobile: stack the heading over the list and tighten the rows so long
   Polish questions don't crowd the toggle icon on narrow screens. */
@media (max-width: 860px){
  .faq { padding: clamp(56px, 9vh, 90px) 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .faq-list { margin-top: 4px; }
  .faq-q { gap: 14px; padding: 18px 2px; font-size: 1.02rem; line-height: 1.35; }
  .faq-q .ic { width: 26px; height: 26px; }
  .faq-q .ic svg { width: 14px; height: 14px; }
  .faq-a p { padding: 0 2px 20px; }
}

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.cta { padding: clamp(80px, 12vh, 150px) 0; background: var(--lime); color: var(--ink); overflow: hidden; }
.cta-inner { position: relative; }
.cta h2 { font-size: clamp(2.4rem, 9vw, 8rem); text-align: center; }
.cta h2 .out { color: transparent; -webkit-text-stroke: 2px var(--ink); }
.cta-sub { text-align: center; max-width: 52ch; margin: 20px auto 0; font-size: 1.1rem; line-height: 1.6; font-weight: 500; }
.cta-actions { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-form { margin-top: 48px; max-width: 620px; margin-inline: auto; display: grid; gap: 14px; }
.cta-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-form input, .cta-form select, .cta-form textarea {
  font-family: var(--f-body); font-size: 1rem; padding: 16px 18px;
  border: 2px solid var(--ink); border-radius: 12px; background: transparent; color: var(--ink); width: 100%;
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(14,14,14,.55); }
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus { outline: none; background: rgba(14,14,14,.06); }
.cta-form .btn--dark { justify-content: center; }
.form-ok { text-align: center; font-weight: 800; padding: 14px; display: none; }
.form-ok.show { display: block; }
@media (max-width: 620px){ .cta-form .row { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); padding: 60px 0 40px; border-top: 1px solid var(--line); }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer .brand { color: var(--paper); }
.footer-tag { color: var(--muted); margin-top: 16px; max-width: 30ch; line-height: 1.6; font-size: .92rem; }
.footer-socials { display: flex; gap: 12px; }
.soc {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; transition: .2s; color: var(--paper);
}
.soc:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); transform: translateY(-3px); }
.soc svg { width: 22px; height: 22px; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; color: #C9C9C1; font-size: .92rem; transition: color .2s; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: .82rem; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
@media (prefers-reduced-motion: no-preference){
  /* Visible is the DEFAULT. The hidden start-state is opt-in via the .js-anim
     flag, which app.js adds ONLY when the document is visible & not reduced-motion.
     This guarantees content shows on first paint, in print/PDF, and in hidden tabs. */
  html.js-anim .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
  html.js-anim .reveal.in { opacity: 1; transform: none; }
  html.js-anim .reveal.d1 { transition-delay: .08s; } html.js-anim .reveal.d2 { transition-delay: .16s; }
  html.js-anim .reveal.d3 { transition-delay: .24s; } html.js-anim .reveal.d4 { transition-delay: .32s; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px){
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 460px; min-height: 0; display: block; }
  .about-photo image-slot { height: auto; aspect-ratio: 9 / 16; }
}
@media (max-width: 860px){
  .nav-links, .nav-cta .btn { display: none; }
  .nav-burger { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(14,14,14,.97); backdrop-filter: blur(14px);
    padding: 18px var(--gut) 28px; border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-links a.link { padding: 12px 0; font-size: 1rem; width: 100%; }
  .hero-badge.bl { left: 8px; } .hero-badge.tr { right: 8px; }
}
