/* =====================================================================
   MANCOACH — Wersja 07 · REDAKCJA (PETROL)
   Chłodna paleta petrol, jasny tryb. Footer na ciemnym petrolu.

   To DOKŁADNIE ten sam plik co style-v6.css — różni się WYŁĄCZNIE
   blokiem zmiennych poniżej. Układ, odstępy i typografia bez zmian.
   ===================================================================== */

:root {
  /* — tła — */
  --bg:              #f7f5f0;   /* główne tło strony */
  --bg-panel:        #e3e9e8;   /* pasma wyróżnione (gotowość, cytat) */

  /* — linie — */
  --border:          #cdd9d8;   /* delikatne linie sekcji */
  --border-strong:   #c2d0cf;   /* mocniejsze linie tabel/kart */

  /* — tekst — */
  --ink:             #16282c;   /* nagłówki */
  --lead-ink:        #23363a;   /* duży akapit wprowadzający */
  --text:            #46585c;   /* tekst akapitów */
  --muted:           #4a585c;   /* tekst drugorzędny */
  --faint:           #80999c;   /* etykiety, podpisy */
  --faint-2:         #6f8487;   /* podpisy w placeholderach */

  /* — akcenty — */
  --accent:          #1c5866;   /* w wersji petrol akcent = petrol (jednolicie) */
  --petrol:          #1c5866;   /* petrol: przyciski, linki, UI */
  --on-petrol:       #f7f5f0;   /* tekst na przyciskach petrol */

  /* — placeholdery obrazów — */
  --ph-a:            #d8e2e1;
  --ph-b:            #cfdbda;

  /* — suwak — */
  --slider-track:    #cdd9d8;
  --slider-thumb:    var(--petrol);
  --slider-thumb-ring: var(--bg-panel);

  /* — footer (ciemne pasmo petrol, inaczej niż w wersji 06) — */
  --footer-cta-bg:      #1c5866;
  --footer-cta-text:    #f7f5f0;
  --footer-cta-btn-bg:  #16282c;
  --footer-cta-btn-text:#f7f5f0;
  --footer-bar-bg:      #16282c;
  --footer-bar-text:    #8aa0a3;

  /* — typografia — */
  --serif: 'Newsreader', Georgia, serif;
  --sans:  'Hanken Grotesk', system-ui, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;

  /* — rytm — */
  --gutter: 56px;
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--bg); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.page {
  background: var(--bg);
  font-family: var(--sans);
  color: var(--text);
}

/* ---------- eyebrow (etykieta sekcji) ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 28px;
}
.eyebrow--accent { color: var(--accent); }

/* podświetlenie redakcyjne w tekście */
.accent { color: var(--accent); }

/* ---------- przyciski / linki ---------- */
.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 28px;
  background: var(--petrol);
  color: var(--on-petrol);
  border-radius: 2px;
}
.link-arrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--petrol);
  border-bottom: 2px solid var(--petrol);
  padding-bottom: 3px;
}

/* ---------- placeholdery obrazów ---------- */
.placeholder {
  background: repeating-linear-gradient(135deg, var(--ph-a) 0 11px, var(--ph-b) 11px 22px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder--tall { height: 400px; }
.placeholder--portrait {
  flex: 0 0 110px;
  height: 130px;
  border: 1px solid var(--border-strong);
  background: repeating-linear-gradient(135deg, var(--ph-a) 0 9px, var(--ph-b) 9px 18px);
}
.placeholder__label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faint-2);
  background: var(--bg);
  padding: 6px 11px;
}

/* --- OPCJA B: Integracja obrazka jako tła CSS --- */
.placeholder--has-image {
  background-image: url('obrazek.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* Automatyczne ukrywanie etykiety tekstowej, gdy placeholder ma obrazek */
.placeholder--has-image .placeholder__label {
  display: none;
}

/* ---------- masthead ---------- */
.masthead {
  display: flex;
  align-items: center;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--border);
}
.masthead__logo { height: 62px; width: auto; }
.masthead__nav {
  display: flex;
  gap: 30px;
  margin-left: 44px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.masthead__tag {
  margin-left: auto;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--faint);
  text-transform: uppercase;
}

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 48px;
  padding: 64px var(--gutter) 56px;
  align-items: end;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin: 0;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
  margin: 26px 0 0;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 28px;
  margin-top: 34px;
  align-items: center;
}
.hero__media {
  margin: 0;
  border: 1px solid var(--border-strong);
  padding: 10px;
  background: var(--bg-panel);
}
.hero__caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--faint);
  margin-top: 8px;
}

/* ---------- lead band ---------- */
.lead-band {
  padding: 44px var(--gutter);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lead-band__text {
  /* max-width: 880px;*/
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 30px;
  line-height: 1.4;
  color: var(--lead-ink);
}
.lead-band__text strong { font-weight: 600; }

/* ---------- generic section ---------- */
.section { padding: 56px var(--gutter); }
.section--tight { padding: 8px var(--gutter) 56px; }

/* ---------- offerings ---------- */
.offerings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border-strong);
}
.offering--left  { padding: 30px 36px 30px 0; border-right: 1px solid var(--border-strong); }
.offering--right { padding: 30px 0 30px 36px; }
.offering__title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
}
.offering__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin: 12px 0 0;
  max-width: 380px;
}
.offering__meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--accent);
  margin: 18px 0 0;
}

/* ---------- readiness (interaktywne) ---------- */
.readiness {
  padding: 64px var(--gutter);
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.readiness__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.0;
  color: var(--ink);
  max-width: 720px;
  margin: 18px auto 0;
}
.readiness__sub {
  font-size: 16px;
  color: var(--muted);
  margin: 14px 0 0;
}
.readiness__panel { max-width: 640px; margin: 36px auto 0; }
.readiness__number {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 120px;
  line-height: 0.8;
  color: var(--accent);
}
.readiness__scale-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--faint);
  margin: 6px 0 26px;
}
.readiness__ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faint);
}
.readiness__result {
  margin-top: 32px;
  border: 1px solid var(--petrol);
  padding: 24px 26px;
  background: var(--bg);
  text-align: left;
}
.readiness__msg {
  font-family: var(--serif);
  font-style: italic;
  font-size: 23px;
  color: var(--ink);
  line-height: 1.35;
  margin: 0;
}
.readiness__result .btn { margin-top: 18px; padding: 13px 24px; }

/* ---------- slider ---------- */
.slider {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  width: 100%;
}
.slider::-webkit-slider-runnable-track {
  height: 8px;
  background: var(--slider-track);
  border-radius: 6px;
}
.slider::-moz-range-track {
  height: 8px;
  background: var(--slider-track);
  border-radius: 6px;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  margin-top: -9px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--slider-thumb);
  border: 3px solid var(--slider-thumb-ring);
  cursor: pointer;
}
.slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--slider-thumb);
  border: 3px solid var(--slider-thumb-ring);
  cursor: pointer;
}

/* ---------- circle ---------- */
.circle {
  padding: 60px var(--gutter);
  display: flex;
  gap: 48px;
  align-items: center;
}
.circle__ring {
  flex: 0 0 280px;
  height: 280px;
  border: 2px dashed var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle__inner {
  width: 174px;
  height: 174px;
  border: 2px solid var(--petrol);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  color: var(--ink);
  text-align: center;
  line-height: 1.3;
}
.circle__copy { flex: 1; }
.circle__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}
.circle__text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin: 18px 0 0;
  max-width: 540px;
}

/* ---------- reasons (numbered) ---------- */
.reasons { display: grid; grid-template-columns: 1fr 1fr; }
.reason { padding: 26px 36px 26px 0; border-top: 1px solid var(--border-strong); border-right: 1px solid var(--border-strong); }
.reason:nth-child(even) { padding: 26px 0 26px 36px; border-right: none; }
.reason__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 23px;
  color: var(--ink);
  margin: 0;
}
.reason__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 8px 0 0;
}

/* ---------- pullquote ---------- */
.pullquote {
  padding: 60px var(--gutter);
  text-align: center;
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pullquote__text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 46px;
  line-height: 1.25;
  color: var(--ink);
  max-width: 820px;
  margin: 0 auto;
}
.pullquote__tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent);
  margin: 22px 0 0;
}

/* ---------- coaches ---------- */
.coaches { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.coach { display: flex; gap: 20px; }
.coach__photo {
  flex: 0 0 110px;
  width: 110px;
  height: 130px;
  object-fit: cover;
  border: 1px solid var(--border-strong);
}
.coach__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  color: var(--ink);
  margin: 0;
}
.coach__role { font-size: 13px; color: var(--muted); margin: 4px 0 0; }
.coach__contact { font-size: 13px; line-height: 1.55; color: var(--faint); margin: 12px 0 0; }

/* ---------- footer ---------- */
.footer-cta {
  padding: 60px var(--gutter);
  text-align: center;
  background: var(--footer-cta-bg);
  border-top: 1px solid var(--border);
}
.footer-cta__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 40px;
  line-height: 1.25;
  color: var(--footer-cta-text);
  max-width: 760px;
  margin: 0 auto;
}
.btn--footer {
  margin-top: 28px;
  letter-spacing: 0.5px;
  padding: 15px 34px;
  background: var(--footer-cta-btn-bg);
  color: var(--footer-cta-btn-text);
}
.footer-bar {
  background: var(--footer-bar-bg);
  padding: 26px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--footer-bar-text);
}

/* ---------- responsywność ---------- */
@media (max-width: 860px) {
  :root { --gutter: 28px; }
  .hero { grid-template-columns: 1fr; }
  .hero__title { font-size: 52px; }
  .offerings, .reasons, .coaches { grid-template-columns: 1fr; }
  .offering--left  { padding: 26px 0; border-right: none; border-bottom: 1px solid var(--border-strong); }
  .offering--right { padding: 26px 0; }
  .reason, .reason:nth-child(even) { padding: 22px 0; border-right: none; }
  .circle { flex-direction: column; align-items: flex-start; }
  .circle__ring { width: 280px; }
  .readiness__title { font-size: 38px; }
  .pullquote__text { font-size: 32px; }
  .masthead { flex-wrap: wrap; gap: 14px; }
  .masthead__nav { margin-left: 0; flex-wrap: wrap; gap: 16px; }
  .masthead__tag { margin-left: 0; }
}
