/* ============================================================
   Pro-Mentis — Klinika Psychoterapii
   Warm, calm, editorial. Brand: heart+brain (red #ce351e / charcoal #3b4145)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* warm neutral surfaces (atmosphere: "cream" default) */
  --bg:        oklch(0.985 0.007 73);
  --surface:   oklch(0.962 0.011 71);
  --surface-2: oklch(0.935 0.014 69);
  --line:      oklch(0.86 0.013 68);

  /* ink */
  --ink:       #2b2d2f;
  --ink-soft:  #5c5f61;
  --ink-faint: #8b8d8e;

  /* brand */
  --red:       #ce351e;
  --red-deep:  #a82a17;
  --charcoal:  #3b4145;
  --clay:      oklch(0.7 0.035 60);

  /* accent driver (tweakable intensity) */
  --accent:        var(--red);
  --accent-ink:    var(--red-deep);
  --accent-tint:   color-mix(in oklab, var(--red) 9%, var(--bg));
  --accent-line:   color-mix(in oklab, var(--red) 30%, var(--line));

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 4px;

  --shadow-sm: 0 1px 2px rgba(43,45,47,.04), 0 2px 8px rgba(43,45,47,.05);
  --shadow-md: 0 6px 24px rgba(43,45,47,.07), 0 2px 6px rgba(43,45,47,.05);
  --shadow-lg: 0 24px 60px -20px rgba(43,45,47,.22);
}

/* atmosphere variants */
:root[data-atmo="paper"] {
  --bg:        oklch(0.992 0.004 78);
  --surface:   oklch(0.97 0.006 76);
  --surface-2: oklch(0.945 0.008 74);
  --line:      oklch(0.88 0.008 72);
}
:root[data-atmo="cool"] {
  --bg:        oklch(0.984 0.004 230);
  --surface:   oklch(0.958 0.006 232);
  --surface-2: oklch(0.93 0.008 234);
  --line:      oklch(0.87 0.008 235);
  --ink:       #2a2e31;
  --ink-soft:  #565b5f;
  --clay:      oklch(0.7 0.02 235);
}

/* accent intensity variants */
:root[data-accent="minimal"] {
  --accent:      var(--charcoal);
  --accent-ink:  var(--charcoal);
  --accent-tint: color-mix(in oklab, var(--charcoal) 7%, var(--bg));
  --accent-line: var(--line);
}
:root[data-accent="expressive"] {
  --accent-tint: color-mix(in oklab, var(--red) 14%, var(--bg));
  --accent-line: color-mix(in oklab, var(--red) 45%, var(--line));
}

/* heading font variants */
:root[data-font="lora"]     { --font-display: "Lora", Georgia, serif; }
:root[data-font="playfair"] { --font-display: "Playfair Display", Georgia, serif; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); }
.display { font-size: clamp(2.6rem, 6.5vw, 5.4rem); font-weight: 600; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent-ink);
}
.eyebrow.muted { color: var(--ink-faint); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-soft); line-height: 1.6; text-wrap: pretty; }
.section-title { font-size: clamp(2rem, 4vw, 3.1rem); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
/* `main >` — tylko sekcje najwyższego poziomu; zagnieżdżone (np. grupy cennika) bez odstępu */
main > section { padding-block: clamp(72px, 11vh, 140px); }
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head .eyebrow { display: block; margin-bottom: 18px; }
.section-head .lede { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.9em 1.5em; border-radius: 8px;
  font-weight: 600; font-size: 0.96rem; letter-spacing: 0.01em;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), background .25s, color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { color: var(--ink); border: 1px solid var(--line); background: color-mix(in oklab, var(--bg) 60%, transparent); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 18px var(--pad);
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease, border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
  padding-block: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; transition: height .4s ease; }
.site-header.scrolled .brand img { height: 34px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; letter-spacing: 0.01em; }
.brand-text span { font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-faint); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); position: relative; padding-block: 4px; transition: color .2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--accent); transition: width .25s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 18px; }
.phone-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.phone-link span small { display: block; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }

/* hamburger — bazowo ukryty, włącza się razem ze schowaniem .nav-links (≤980px) */
.menu-toggle {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; width: 42px; height: 42px; flex: none; padding: 0;
  background: transparent; border: 1px solid var(--line); border-radius: 8px; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.menu-toggle:hover { border-color: var(--accent-line); background: var(--accent-tint); }
.menu-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.menu-toggle span { display: block; width: 18px; height: 1.5px; background: var(--ink); transition: transform .25s, opacity .2s; }
.site-header.nav-open .menu-toggle span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.site-header.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.nav-phone { display: none; }

/* ---------- HERO ---------- */
.hero { position: relative; padding-top: clamp(104px, 14vh, 168px); padding-bottom: clamp(60px, 9vh, 120px); overflow: hidden; }
/* Znak wodny z materiałów klienta — ten sam splot, co w tle tablicy przed wejściem.
   Wchodzi jako maska, nie <img>: plik jest czarny przy ~5% krycia, a czerń na
   kremowym tle zszarza całą paletę. Maska pozwala pomalować motyw na --clay
   i zachować ciepło. Siłę reguluje opacity poniżej. */
.hero::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 74%;
  background: var(--clay); opacity: 0.09; pointer-events: none; z-index: 0;
  -webkit-mask: url(../img/tlo-splot.png) bottom center / 100% auto no-repeat;
          mask: url(../img/tlo-splot.png) bottom center / 100% auto no-repeat;
}
.hero > .hero-inner, .hero > .hero-bg-heart { position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-eyebrow .heart-mini { height: 26px; width: auto; }
.hero-title { font-family: var(--font-display); font-weight: 600; line-height: 1.02; letter-spacing: -0.015em; color: var(--ink); }
.hero-title .l2 { display: block; }
.hero-title em { font-style: italic; color: var(--accent-ink); }
.hero-lede { margin-top: 28px; max-width: 30ch; }
.hero-credo { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); max-width: 52ch; }
.hero-credo p { font-size: 0.95rem; color: var(--ink-soft); }
.hero-credo p + p { margin-top: 8px; }
.hero-actions { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta { margin-top: 46px; display: flex; gap: 36px; flex-wrap: wrap; }
.hero-meta .mi { display: flex; flex-direction: column; gap: 3px; }
.hero-meta .mi b { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; font-variant-numeric: lining-nums; }
.hero-meta .mi span { font-size: 0.8rem; color: var(--ink-soft); }

/* hero art */
.hero-art { position: relative; }
.hero-heart { width: 100%; height: auto; }
.hero-photo { position: relative; aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-lg); }

/* default = "centered" */
.hero[data-hero="centered"] .hero-inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero[data-hero="centered"] .hero-eyebrow { justify-content: center; }
.hero[data-hero="centered"] .hero-title { font-size: clamp(2.7rem, 7vw, 5.6rem); }
.hero[data-hero="centered"] .hero-title .l2 { margin-left: 1.2em; }
.hero[data-hero="centered"] .hero-lede { margin-inline: auto; }
.hero[data-hero="centered"] .hero-actions { justify-content: center; }
.hero[data-hero="centered"] .hero-meta { justify-content: center; }
.hero[data-hero="centered"] .hero-art { display: none; }
.hero[data-hero="centered"] .hero-bg-heart {
  position: absolute; top: -8%; left: 50%; transform: translateX(-50%);
  width: min(420px, 60vw); opacity: 0.06; z-index: -1; pointer-events: none;
}

/* "split" = text left, photo right */
.hero[data-hero="split"] .hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.hero[data-hero="split"] .hero-title { font-size: clamp(2.4rem, 5vw, 4.6rem); }
.hero[data-hero="split"] .hero-title .l2 { margin-left: 0.8em; }
.hero[data-hero="split"] .hero-heart { display: none; }
.hero[data-hero="split"] .hero-bg-heart { display: none; }

/* "editorial" = oversized type, faint big heart behind */
.hero[data-hero="editorial"] .hero-inner { position: relative; }
.hero[data-hero="editorial"] .hero-title { font-size: clamp(2.8rem, 8.6vw, 6.8rem); max-width: 14ch; }
.hero[data-hero="editorial"] .hero-title .l2 { margin-left: 1.6em; color: var(--accent-ink); }
.hero[data-hero="editorial"] .hero-lede { max-width: 42ch; }
.hero[data-hero="editorial"] .hero-photo { display: none; }
.hero[data-hero="editorial"] .hero-art { position: absolute; top: -6%; right: -2%; width: min(440px, 42vw); z-index: -1; }
.hero[data-hero="editorial"] .hero-heart { opacity: 0.07; }
.hero[data-hero="editorial"] .hero-bg-heart { display: none; }

/* ---------- Placeholder visual ---------- */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg,
      color-mix(in oklab, var(--clay) 16%, var(--surface)) 0 11px,
      var(--surface) 11px 22px);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-faint);
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.72rem; letter-spacing: 0.06em;
  padding: 6px 12px; border-radius: 100px;
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

/* ---------- Oferta ---------- */
.offer { background: var(--surface); }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.offer-card {
  background: var(--bg); padding: 38px 32px; display: flex; flex-direction: column; gap: 14px;
  transition: background .3s, transform .3s;
}
.offer-card:hover { background: var(--accent-tint); }
.offer-card .num { font-family: ui-monospace, monospace; font-size: 0.78rem; color: var(--accent-ink); letter-spacing: 0.1em; }
.offer-card h3 { font-size: 1.5rem; }
.offer-card p { color: var(--ink-soft); font-size: 0.98rem; }
/* samotny kafel w ostatnim wierszu rozciąga się na całą szerokość — inaczej siatka
   (komórki rozdzielone tłem) kończy się pustym prostokątem */
.offer-grid > .offer-card:last-child:nth-child(3n + 1) { grid-column: 1 / -1; }

/* ---------- Zespół ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; }
.member { display: flex; flex-direction: column; }
.member .portrait { aspect-ratio: 4/5; border-radius: 6px; }
.member h3 { font-size: 1.3rem; margin-top: 18px; }
.member .role { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--accent-ink); text-transform: uppercase; margin-top: 4px; }
.member p { font-size: 0.93rem; color: var(--ink-soft); margin-top: 10px; }
.member .portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 6px; display: block; }

/* Detailed profiles — three-up grid of expandable cards */
.team-grid.profiles { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; align-items: stretch; }
.member-detailed { background: var(--surface); border: 1px solid var(--accent-line); border-radius: 8px; padding: 24px 26px 26px; overflow-wrap: break-word; }
.member-detailed .portrait { aspect-ratio: 1/1; margin: -24px -26px 0; border-radius: 8px 8px 0 0; overflow: hidden; }
.member-detailed .portrait img { border-radius: 8px 8px 0 0; object-position: center 20%; }
.member-detailed h3 { margin-top: 20px; font-size: 1.45rem; }
.member-detailed .role { line-height: 1.5; }
/* Rola z pięcioma członami nie mieści się w jednym łańcuchu kropek przy
   uppercase 0.82rem — .role-stacked łamie ją na osobne wiersze. */
.role-stacked span { display: block; }
.role-stacked span + span { margin-top: 2px; }
.member-quote { margin: 18px 0 0; padding: 14px 18px; border-left: 2px solid var(--accent-line); background: var(--bg); border-radius: 0 6px 6px 0; font-family: var(--font-display); font-style: italic; font-size: 1.02rem; color: var(--ink-soft); }
.member-quote::before { content: "„"; }
.member-quote::after { content: "”"; }
.member-creds { margin-top: 20px; }
.member-creds h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-ink); margin-top: 20px; padding-bottom: 8px; border-bottom: 1px solid var(--accent-line); }
.member-creds h4:first-child { margin-top: 0; }
.member-creds ul { list-style: none; margin: 12px 0 0; padding: 0; }
.member-creds li { position: relative; padding-left: 18px; margin-top: 9px; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }
.member-creds li::before { content: "•"; position: absolute; left: 2px; color: var(--accent-ink); }
.member-creds li b { color: var(--ink); font-weight: 600; }
.member-detailed .member-superv { font-style: italic; font-size: 0.86rem; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--accent-line); }

/* godziny przyjęć w karcie terapeuty */
.member-hours { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--accent-line); }
.member-hours h4 {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint);
}
.member-hours ul { list-style: none; margin: 11px 0 0; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.member-hours li { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; font-size: 0.88rem; }
.member-hours li span { color: var(--ink-soft); }
.member-hours li b { font-weight: 600; color: var(--ink); font-variant-numeric: lining-nums; white-space: nowrap; }
.member-hours .member-hours-none { margin-top: 10px; font-size: 0.86rem; font-style: italic; color: var(--ink-soft); }

/* „Pełny profil” — rozwijana część karty */
/* auto = przyklejone do dołu karty, żeby przyciski w wierszu były w jednej linii */
.member-more { margin-top: auto; padding-top: 20px; }
/* gdy któryś profil jest rozwinięty, wracamy do naturalnych wysokości — inaczej
   pozostałe karty w wierszu rozciągają się i zostaje w nich pusta przestrzeń */
.team-grid.profiles.has-open { align-items: start; }
.team-grid.profiles.has-open .member-more { margin-top: 20px; }
.member-more > summary {
  list-style: none; cursor: pointer; user-select: none;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--accent-ink);
  padding: 9px 16px; border: 1px solid var(--accent-line); border-radius: 100px;
  transition: background .2s, border-color .2s;
}
.member-more > summary::-webkit-details-marker { display: none; }
.member-more > summary::after { content: "▾"; font-size: 0.85em; line-height: 1; transition: transform .25s; }
.member-more[open] > summary::after { transform: rotate(180deg); }
.member-more > summary:hover { background: var(--accent-tint); }
.member-more-body { margin-top: 20px; }
.member-more-body > p:first-child { margin-top: 0; }

/* przy 3 kolumnach: samotna karta w ostatnim rzędzie ląduje na środku, nie z lewej */
@media (min-width: 1081px) {
  .team-grid.profiles > .member:last-child:nth-child(3n + 1) { grid-column: 2; }
}
@media (max-width: 1080px) and (min-width: 781px) {
  .team-grid.profiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 780px) {
  /* minmax(0, …) a nie 1fr — inaczej kolumna rozciąga się do min-content karty
     (długie nazwy uczelni) i na wąskich ekranach wychodzi poza siatkę */
  .team-grid.profiles { grid-template-columns: minmax(0, 1fr); gap: 32px; }
}
.team-note { margin-top: 40px; padding: 22px 26px; border-left: 2px solid var(--accent-line); background: var(--surface); border-radius: 0 6px 6px 0; color: var(--ink-soft); font-size: 0.95rem; max-width: 620px; }

/* ---------- Misja ---------- */
/* ---------- Panel „obszar → specjaliści” pod selectem ---------- */
.field-help {
  margin-top: 10px; padding: 11px 14px; font-size: 0.87rem; line-height: 1.6;
  color: var(--ink-soft); background: var(--accent-tint);
  border-left: 2px solid var(--accent-line); border-radius: 0 5px 5px 0;
}
.field-help a { color: var(--accent-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.field-help a:hover { color: var(--ink); }
.field-help-note { display: block; margin-top: 6px; font-size: 0.82rem; color: var(--ink-faint); }
/* karty zespołu jako cel skoku — nagłówek strony jest przyklejony */
.member-detailed[id] { scroll-margin-top: 96px; }

/* ---------- Wybór sposobu zapisu (dialog) ---------- */
.book-dialog {
  width: min(560px, calc(100vw - 32px)); padding: clamp(22px, 4vw, 32px);
  margin: auto;                       /* globalny reset zeruje margin — <dialog> centruje się przez auto */
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg); color: var(--ink); box-shadow: var(--shadow-lg);
}
.book-dialog::backdrop { background: rgba(43,45,47,.55); }
.book-close-form { display: flex; justify-content: flex-end; margin: -8px -6px 0 0; }
.book-close {
  border: 0; background: none; cursor: pointer; line-height: 1;
  font-size: 1.7rem; color: var(--ink-faint); padding: 4px 8px; border-radius: 4px;
}
.book-close:hover { color: var(--ink); background: var(--surface-2); }
.book-dialog h3 { font-family: var(--font-display); font-size: clamp(1.4rem, 3.4vw, 1.8rem); font-weight: 600; letter-spacing: -0.01em; }
.book-lede { margin-top: 6px; font-size: 0.92rem; color: var(--ink-soft); }
.book-opts { margin-top: 20px; display: grid; gap: 12px; }
.book-opt {
  display: flex; align-items: center; gap: 16px; padding: 16px 18px;
  border: 1px solid var(--line); border-radius: 8px; background: var(--surface);
  transition: border-color .2s, background .2s, transform .2s;
}
.book-opt:hover { border-color: var(--accent-line); background: var(--accent-tint); transform: translateY(-1px); }
.book-opt img { width: 38px; height: 38px; flex: 0 0 auto; object-fit: contain; }
.book-opt span { display: flex; flex-direction: column; gap: 3px; font-size: 0.88rem; color: var(--ink-soft); }
.book-opt b { font-size: 1.02rem; font-weight: 600; color: var(--ink); }

/* ---------- Kariera ---------- */
.career { padding-block: clamp(60px, 9vh, 110px); }
.career .legal-back { display: inline-block; margin-bottom: clamp(24px, 4vw, 40px); }
.job-list { margin-top: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; gap: 20px; }
.job-empty {
  padding: 24px 26px; border: 1px dashed var(--line); border-radius: 8px;
  background: var(--surface); color: var(--ink-soft); font-size: 0.96rem; max-width: 62ch;
}
.job { padding: 26px 28px; border: 1px solid var(--accent-line); border-radius: 8px; background: var(--surface); }
.job-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.job-head h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job h4 {
  margin-top: 20px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent-ink);
  padding-bottom: 8px; border-bottom: 1px solid var(--accent-line);
}
.job ul { list-style: none; margin: 12px 0 0; padding: 0; }
.job li { position: relative; padding-left: 18px; margin-top: 9px; font-size: 0.93rem; color: var(--ink-soft); }
.job li::before { content: "\2022"; position: absolute; left: 2px; color: var(--accent-ink); }
.job-apply { margin-top: 24px; }
/* .legal-body a nie sięga tej sekcji — Kariera potrzebuje własnej reguły */
.career a:not(.btn):not(.legal-back) { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; overflow-wrap: anywhere; }
.career a:not(.btn):not(.legal-back):hover { color: var(--ink); }

/* ---------- Partner szkoleniowy ---------- */
.partner {
  margin-top: clamp(38px, 5vw, 56px); display: flex; align-items: center;
  gap: clamp(18px, 3vw, 30px); flex-wrap: wrap;
  padding: 20px clamp(20px, 3vw, 28px); background: var(--surface);
  border: 1px solid var(--line); border-radius: 8px;
}
.partner-mark { flex: 0 0 auto; background: #fff; border-radius: 6px; padding: 10px; line-height: 0; }
.partner-mark img { width: 92px; height: auto; display: block; border-radius: 3px; }
.partner-body { flex: 1 1 260px; }
.partner-body h4 {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-ink);
}
.partner-body p { margin-top: 7px; font-size: 0.93rem; color: var(--ink-soft); max-width: 58ch; }

.mission { background: var(--charcoal); color: #f3f1ee; position: relative; overflow: hidden; }
.mission .eyebrow { color: color-mix(in oklab, var(--red) 75%, #fff); }
.mission .wrap { position: relative; z-index: 1; }
.mission-quote { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.8rem, 4vw, 3.1rem); line-height: 1.18; letter-spacing: -0.01em; max-width: 18ch; margin-top: 22px; text-wrap: balance; }
.mission-quote em { font-style: italic; color: color-mix(in oklab, var(--red) 80%, #fff); }
.mission-body { margin-top: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 900px; }
.mission-body .mb h4 { font-size: 1.15rem; color: #fff; font-family: var(--font-body); font-weight: 700; }
.mission-body .mb p { color: rgba(243,241,238,.7); font-size: 0.95rem; margin-top: 8px; }
.mission-heart { position: absolute; right: -60px; bottom: -60px; width: 360px; opacity: 0.08; z-index: 0; }
.mission-text { margin-top: clamp(26px, 3vw, 34px); max-width: 62ch; }
.mission-text p { color: rgba(243,241,238,.78); font-size: 0.96rem; line-height: 1.72; }
.mission-text p + p { margin-top: 14px; }
.mission-text .ask { margin-top: 22px; font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem, 2.2vw, 1.45rem); color: #f3f1ee; }
.mission-photo { margin-top: clamp(32px, 4vw, 44px); max-width: 460px; }
.mission-photo img { width: 100%; height: auto; border-radius: 8px; box-shadow: var(--shadow-lg); }
.mission-photo figcaption {
  margin-top: 12px; font-size: 0.8rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: rgba(243,241,238,.55);
}

/* ---------- Dojazd ---------- */
.locate-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: stretch; }
.map-ph { border-radius: 10px; min-height: 420px; }
.map-embed { width: 100%; height: 100%; min-height: 420px; border: 0; border-radius: 10px; display: block; }
.locate-card { display: flex; flex-direction: column; gap: 26px; }
.locate-block h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 8px; }
.locate-block p { color: var(--ink); font-size: 1.05rem; }
.locate-block p .land { color: var(--ink-soft); font-size: 0.95rem; }
.locate-divider { height: 1px; background: var(--line); }
.locate-lines { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.locate-lines li { font-size: 0.98rem; color: var(--ink); font-variant-numeric: lining-nums; }
.locate-lines li span {
  display: inline-block; min-width: 88px;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint);
}

.locate-photos { margin-top: clamp(26px, 3.4vw, 40px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.locate-photos img { aspect-ratio: 4/3; object-fit: cover; }
/* Galeria wnętrz — pierwsze zdjęcie na całą szerokość, reszta w siatce */
.locate-rooms > figure:first-child { grid-column: 1 / -1; }
/* Galeria orientacyjna ma trzy kafle — w siatce 2-kolumnowej trzeci zostałby sam */
.locate-outside { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.locate-rooms > figure:first-child img { aspect-ratio: 16/7; }
.locate-subhead {
  margin-top: clamp(38px, 5vw, 60px); font-family: var(--font-display);
  font-weight: 600; font-size: clamp(1.4rem, 3vw, 1.9rem); letter-spacing: -0.01em;
}
.locate-photos figure { margin: 0; }
.locate-photos img { width: 100%; height: auto; display: block; border-radius: 10px; box-shadow: var(--shadow-sm); }
.locate-photos figcaption { margin-top: 10px; font-family: var(--font-body); font-size: 0.86rem; line-height: 1.5; color: var(--ink-faint); }

/* ---------- Kontakt / widżet ---------- */
.contact { background: var(--surface); }
.contact-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 48px; align-items: start; }
.widget-ph { min-height: 460px; border-radius: 12px; background:
    repeating-linear-gradient(135deg,
      color-mix(in oklab, var(--clay) 14%, var(--bg)) 0 11px, var(--bg) 11px 22px);
  border: 1px solid var(--line); display: grid; place-items: center; padding: 40px; }
/* .widget-ph trzyma pozycję w siatce (i w wariantach układu z variants.css);
   .widget-live zdejmuje z niego wygląd zaślepki, bo w środku jest już widżet */
.widget-ph.widget-live { min-height: 0; padding: 0; border: 0; background: none; display: block; max-width: 480px; }
.widget-head { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 14px; }
.widget-ph.widget-live iframe { display: block; max-width: 100%; }
.widget-note { margin-top: 16px; font-family: var(--font-body); font-size: 0.86rem; line-height: 1.55; color: var(--ink-faint); }
.widget-note a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; }
/* zapasowy odnośnik — widoczny tylko wtedy, gdy skrypt ZnanyLekarza się nie wczyta
   (blokada skryptów, brak sieci); po wczytaniu widżet sam go chowa */
.widget-ph.widget-live .zl-facility-url {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.94rem; font-weight: 600;
  color: var(--accent-ink); text-decoration: underline; text-underline-offset: 3px;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.ci-row { display: flex; gap: 16px; align-items: flex-start; }
.ci-row .ic { width: 42px; height: 42px; flex: none; border-radius: 50%; background: var(--accent-tint); display: grid; place-items: center; color: var(--accent-ink); }
.ci-row .ic svg { width: 19px; height: 19px; }
.ci-row h4 { font-family: var(--font-body); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.ci-row .big { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; color: var(--ink); margin-top: 2px; font-variant-numeric: lining-nums; font-feature-settings: "lnum" 1; }
.ci-row p { color: var(--ink-soft); font-size: 0.95rem; margin-top: 2px; }

/* ---------- Cennik ---------- */
/* mały „chip” — używany w legendzie cennika i przy pozycjach */
.tag {
  display: inline-block;
  font-family: var(--font-body); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.5;
  color: var(--ink-soft); background: var(--surface);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 3px 10px; white-space: nowrap;
}
/* chip, który naprawdę prowadzi do formularza */
a.tag-link {
  text-decoration: none; cursor: pointer;
  transition: color .18s, border-color .18s, background-color .18s;
}
a.tag-link:hover { color: var(--accent-ink); border-color: var(--accent-line); background: var(--accent-tint); }
a.tag-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
/* kanał zapisu jeszcze nieuruchomiony — chip informacyjny, nieklikalny */

.price-legend { max-width: 860px; margin-bottom: clamp(28px, 4vw, 40px); }
.price-legend .eyebrow { display: block; margin-bottom: 14px; }
.price-legend ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.price-legend li { display: flex; align-items: baseline; gap: 10px; font-size: 0.9rem; color: var(--ink-soft); }
.price-legend li > span:last-child { flex: 1 1 auto; }
.price-legend li .tag { flex: none; }
.price-legend a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; }
.price-legend a.tag-link { color: var(--ink-soft); text-decoration: none; }
.price-legend a.tag-link:hover { color: var(--accent-ink); }

.price-groups { max-width: 860px; display: flex; flex-direction: column; gap: 26px; }
.price-group { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--bg); box-shadow: var(--shadow-sm); }
.price-group-head {
  font-family: var(--font-body); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint);
  padding: 17px 30px 15px; background: var(--surface); border-bottom: 1px solid var(--line);
}
.price-group-note { padding: 15px 30px 0; font-size: 0.9rem; color: var(--ink-soft); }
.price-group-note a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; }

.price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding: 20px 30px; }
.price-row + .price-row { border-top: 1px solid var(--line); }
.price-group-note + .price-row { border-top: none; }
.price-info h4 { font-size: 1.2rem; line-height: 1.25; }
.price-info .price-dur { display: block; margin-top: 5px; font-family: var(--font-body); font-size: 0.88rem; color: var(--ink-soft); }
.price-book { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 11px; }
.price-amount { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--accent-ink); white-space: nowrap; text-align: right; font-variant-numeric: lining-nums; }
.price-amount small { display: block; margin-top: 3px; font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.03em; color: var(--ink-faint); }
.price-amount.price-free { font-size: 1.15rem; font-style: italic; color: var(--ink-soft); }

.price-note { margin-top: 28px; max-width: 860px; padding: 18px 22px; border-left: 2px solid var(--accent-line); background: var(--surface); border-radius: 0 6px 6px 0; color: var(--ink-soft); font-size: 0.98rem; }
.price-note b { color: var(--ink); font-weight: 600; }

/* ---------- Godziny przyjęć (tabela zbiorcza) ---------- */
.hours { margin-top: clamp(44px, 6vw, 72px); }
.hours h3 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); }
.hours-lede { margin-top: 8px; color: var(--ink-soft); font-size: 0.95rem; }
.table-scroll { margin-top: 22px; overflow-x: auto; border: 1px solid var(--line); border-radius: 10px; background: var(--bg); box-shadow: var(--shadow-sm); }
.hours-table { width: 100%; min-width: 700px; border-collapse: collapse; font-size: 0.88rem; }
.hours-table th, .hours-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.hours-table thead th {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint);
  background: var(--surface); white-space: nowrap;
}
.hours-table tbody th { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; color: var(--ink); white-space: nowrap; }
.hours-table tbody td { color: var(--ink-soft); white-space: nowrap; font-variant-numeric: lining-nums; }
.hours-table tbody tr:last-child th,
.hours-table tbody tr:last-child td { border-bottom: none; }
.hours-table .hours-individual { font-style: italic; color: var(--ink-faint); }

/* ---------- Zapisy / formularz ---------- */
.signup-form { max-width: 640px; display: flex; flex-direction: column; gap: 20px; }
.signup-form .field { display: flex; flex-direction: column; gap: 7px; }
.signup-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.signup-form label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-soft); }
.signup-form .opt { font-weight: 400; color: var(--ink-faint); letter-spacing: 0; }
.signup-form input,
.signup-form select,
.signup-form textarea {
  font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px 14px; width: 100%; transition: border-color .2s, box-shadow .2s;
}
.signup-form textarea { resize: vertical; min-height: 96px; }
.signup-form input:focus, .signup-form select:focus, .signup-form textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint);
}
.signup-form input[name="_honey"] { display: none; }
/* pole „Usługa” podświetla się na moment, gdy zostało podstawione z cennika */
.signup-form .field-flash select { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.signup-form .field-flash label { color: var(--accent-ink); }
.signup-form .consent { display: flex; flex-direction: row; align-items: flex-start; gap: 10px; font-weight: 400; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.5; letter-spacing: 0; cursor: pointer; }
.signup-form .consent input { width: 16px; height: 16px; margin-top: 2px; flex: none; accent-color: var(--accent); }
.signup-form .consent a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; }
.signup-form .btn { align-self: flex-start; }
.signup-form .form-hint { font-size: 0.85rem; color: var(--ink-faint); }

/* clickable address affordance */
.ci-row a.big:hover { color: var(--accent-ink); }
.locate-block a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--accent-line); transition: color .2s; }
.locate-block a:hover { color: var(--accent-ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(243,241,238,.75); padding-block: 64px 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand p { max-width: 34ch; font-size: 0.95rem; line-height: 1.6; }
.footer-col h5 { color: #fff; font-family: var(--font-body); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 0.95rem; color: rgba(243,241,238,.75); margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; margin: 0; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18); color: rgba(243,241,238,.75);
  transition: color .2s, border-color .2s, background .2s;
}
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.07); }
.footer-social svg { width: 17px; height: 17px; display: block; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px 26px; flex-wrap: wrap; padding-top: 26px; font-size: 0.82rem; color: rgba(243,241,238,.5); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(243,241,238,.62); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.footer-bottom a:hover { color: #fff; }
.form-hint a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Reveal on scroll ----------
   Treść jest domyślnie widoczna. Stan ukryty (opacity: 0) włącza dopiero
   skrypt z <head>, dodając klasę .js-anim do <html>. Dzięki temu przy
   wyłączonym, zablokowanym lub błędnie wczytanym JS strona renderuje się
   w całości, zamiast zostawać niewidoczna. */
.reveal { opacity: 1; transform: none; }
html.js-anim .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
html.js-anim .reveal.in { opacity: 1; transform: none; }

/* ---------- Strony prawne: regulamin.html, polityka-prywatnosci.html ---------- */
.legal .wrap { max-width: 800px; }
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  color: var(--ink-faint); transition: color .2s;
}
.legal-back:hover { color: var(--accent-ink); }
.legal-head { margin: 26px 0 clamp(30px, 4vw, 44px); }
.legal-head h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); max-width: 24ch; }
.legal-head .lede { margin-top: 16px; max-width: 62ch; }
.legal-meta { margin-top: 18px; font-family: var(--font-body); font-size: 0.82rem; color: var(--ink-faint); }

.legal-toc { margin-bottom: clamp(34px, 5vw, 54px); padding: 22px 26px; background: var(--surface); border: 1px solid var(--line); border-radius: 8px; }
.legal-toc h2 { font-family: var(--font-body); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; }
.legal-toc ol { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 34px; }
.legal-toc li { margin-bottom: 8px; font-size: 0.94rem; break-inside: avoid; }
.legal-toc a { color: var(--ink-soft); text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; transition: color .2s; }
.legal-toc a:hover { color: var(--accent-ink); }

.legal-body { max-width: none; overflow-wrap: break-word; }
.legal-body > h2 {
  margin-top: clamp(38px, 5vw, 54px); padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  scroll-margin-top: 96px;
}
.legal-body > h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-body h3 { margin-top: 26px; font-family: var(--font-body); font-size: 0.98rem; font-weight: 700; letter-spacing: 0.01em; }
.legal-body p { margin-top: 14px; color: var(--ink-soft); line-height: 1.7; }
.legal-body b { color: var(--ink); font-weight: 600; }
.legal-body ol, .legal-body ul { margin-top: 14px; padding-left: 1.5em; color: var(--ink-soft); line-height: 1.7; }
.legal-body li + li { margin-top: 10px; }
.legal-body li > ol, .legal-body li > ul { margin-top: 10px; }
.legal-body li > p { margin-top: 6px; }
.legal-body ul.legal-plain { list-style: none; padding-left: 0; }
.legal-body ul.legal-plain > li { padding-left: 1.1em; position: relative; }
.legal-body ul.legal-plain > li::before { content: "·"; position: absolute; left: 0; color: var(--accent-ink); font-weight: 700; }
.legal-body a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; overflow-wrap: anywhere; }
.legal-note { margin-top: clamp(36px, 5vw, 52px); padding: 20px 24px; border-left: 2px solid var(--accent-line); background: var(--surface); border-radius: 0 6px 6px 0; color: var(--ink-soft); font-size: 0.96rem; line-height: 1.7; }
.legal-sibling { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px 26px; font-family: var(--font-body); font-size: 0.92rem; }

@media (max-width: 620px) {
  .legal-toc ol { columns: 1; }
  .legal-toc { padding: 18px 20px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .menu-toggle { display: flex; }
  /* nawigacja jako rozwijany panel pod nagłówkiem */
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; display: block; gap: 0;
    padding: 6px 0 10px; background: var(--surface);
    border-block: 1px solid var(--line); box-shadow: var(--shadow-md);
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }
  .site-header.nav-open .nav { visibility: visible; opacity: 1; transform: none; }
  .nav-links { display: flex; flex-direction: column; gap: 0; }
  .nav-links a { padding: 13px var(--pad); font-size: 1rem; color: var(--ink); }
  .nav-links a::after { display: none; }
  .nav-links a:hover { background: var(--accent-tint); color: var(--accent-ink); }
  .nav-phone {
    display: block; margin: 8px var(--pad) 0; padding-top: 12px;
    border-top: 1px solid var(--line); font-weight: 600; color: var(--accent-ink);
    font-variant-numeric: lining-nums;
  }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid > .offer-card:last-child:nth-child(2n + 1) { grid-column: 1 / -1; }
  .mission-body { grid-template-columns: 1fr; gap: 22px; }
  .locate-grid, .contact-grid { grid-template-columns: 1fr; }
  .locate-photos { grid-template-columns: 1fr; }
  .locate-rooms > figure:first-child img { aspect-ratio: 4/3; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero[data-hero="split"] .hero-inner { grid-template-columns: 1fr; }
  .hero[data-hero="split"] .hero-art { display: none; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .offer-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .signup-form .field-row { grid-template-columns: 1fr; }
  .price-row { padding: 20px; }
  .price-amount { font-size: 1.6rem; }
  .hero-meta { gap: 24px; }
  .header-cta .phone-link { display: none; }
  .site-header { gap: 12px; padding-inline: 16px; }
  .brand { gap: 9px; }
  .brand img { height: 34px; }
  .brand-text b { font-size: 1.12rem; }
  .brand-text span { font-size: 0.48rem; letter-spacing: 0.08em; }
  .header-cta .btn { padding: 0.62em 0.95em; font-size: 0.84rem; }
  .hero[data-hero="centered"] .hero-title .l2,
  .hero[data-hero="editorial"] .hero-title .l2 { margin-left: 0; }

  /* cennik — nazwa nad ceną, żeby długie tytuły się nie łamały w słupek */
  .price-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .price-amount { text-align: left; font-size: 1.5rem; }
  .price-group-head { padding: 15px 20px 13px; }
  .price-group-note { padding: 14px 20px 0; }
  .member-detailed { padding: 22px 22px 24px; }
  .member-detailed .portrait { margin: -22px -22px 0; }
}
