/* =========================================================
   PAULINA MICHALEWSKA – DIETETYK KLINICZNY
   Premium / Enterprise mockup
   ========================================================= */

:root {
  --cream:        #FAF6EF;
  --cream-2:      #F1E9DA;
  --ink:          #2E2A26;
  --ink-soft:     #7A6F62;
  --gold:         #A8753A;
  --gold-soft:    #D4B57E;
  --gold-deep:    #8A5C28;
  --sage:         #6F8A6A;
  --border:       #E5D9C2;
  --shadow-warm:  0 30px 60px -30px rgba(168,117,58,.22);
  --shadow-soft:  0 12px 36px -12px rgba(46,42,38,.08);

  --r-card:       18px;
  --r-pill:       999px;

  --container:    1180px;
  --pad-sec:      clamp(64px, 8vw, 120px);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script:  "Great Vibes", "Brush Script MT", cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

/* tło root = kolor stopki: dolna strefa iOS (safe-area / za paskiem Safari) i overscroll
   są brązowe zamiast kremowych; górę nadal zakrywa kremowe tło body */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--ink); }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold-deep); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

::selection { background: var(--gold-soft); color: var(--ink); }

/* paper texture overlay on body */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(rgba(168,117,58,.05) 1px, transparent 1px),
    radial-gradient(rgba(168,117,58,.04) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 2px;
  opacity: .8;
  mix-blend-mode: multiply;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  position: relative;
  z-index: 2;
}

/* ===== TYPOGRAPHY ===== */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--ink);
}
.display em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
h1.display { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 72px);
}
.section__head .kicker { justify-content: center; }
.section__head .kicker::before { display: none; }
.section__head .kicker::after {
  content: "";
  width: 0;
  height: 0;
}
.section__head .display { margin-bottom: 18px; }
.section__lead { color: var(--ink-soft); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 8px 24px -8px rgba(46,42,38,.4);
}
.btn--primary:hover {
  background: var(--gold);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(168,117,58,.5);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
}
.link-arrow:hover { color: var(--gold-deep); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0);
  backdrop-filter: blur(0);
  transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 18px 0;
}
.nav.is-scrolled {
  background: rgba(250, 246, 239, .9);
  backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--border);
  padding: 10px 0;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.nav__brand:hover { color: var(--ink); }
.nav__monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: var(--gold);
}
.nav__name { display: flex; flex-direction: column; line-height: 1.1; }
.nav__name-main {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .01em;
}
.nav__name-sub {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { padding: 11px 22px; font-size: 12px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.nav__burger span {
  width: 22px; height: 1.6px; background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 24px clamp(20px, 4vw, 40px) 32px;
  background: rgba(250, 246, 239, .98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.nav__mobile a {
  color: var(--ink);
  font-size: 18px;
  font-family: var(--font-display);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav__mobile a.btn { margin-top: 8px; border: 0; }
.nav__mobile.is-open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__leaf {
  position: absolute;
  width: clamp(180px, 22vw, 320px);
  height: clamp(180px, 22vw, 320px);
  opacity: .55;
}
.hero__leaf--tl { top: 40px; left: -40px; }
.hero__leaf--br { bottom: 40px; right: -40px; transform: rotate(8deg); }

.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__text { max-width: 640px; }
.hero h1 { margin: 18px 0 28px; }
.hero h1 em { display: inline-block; }
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.6vw, 36px);
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  list-style: none;
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero__stats strong span { font-size: .6em; color: var(--gold-soft); }
.hero__stats li span:last-child {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

.hero__photo {
  position: relative;
  justify-self: end;
  max-width: 460px;
  width: 100%;
}
.hero__photo-frame {
  position: relative;
  border-radius: 280px 280px 12px 12px;
  overflow: hidden;
  box-shadow: var(--shadow-warm);
}
.hero__photo-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold-soft);
  border-radius: 268px 268px 8px 8px;
  z-index: 2;
  pointer-events: none;
}
.hero__photo-img { aspect-ratio: 3/4; }
.hero__signature {
  font-family: var(--font-script);
  font-size: 38px;
  color: var(--gold-deep);
  text-align: center;
  margin-top: 18px;
  letter-spacing: .04em;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 46px;
  border: 1.5px solid var(--ink-soft);
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  z-index: 3;
}
.hero__scroll span {
  width: 3px;
  height: 8px;
  background: var(--ink-soft);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(14px); opacity: 0; }
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--pad-sec) 0;
  position: relative;
}
.section--alt {
  background: var(--cream-2);
}
.section + .section--alt::before,
.section--alt + .section::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--gold-soft);
}

/* ===== ABOUT ===== */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about__photo {
  position: relative;
  padding-top: 40px;
}
.about__photo-frame {
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  position: relative;
}
.about__photo-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--gold-soft);
  border-radius: 12px;
  z-index: 2;
  pointer-events: none;
}
.about__photo .placeholder { aspect-ratio: 3/4; }
.about__badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--ink);
  color: var(--cream);
  padding: 18px 22px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-warm);
  border: 1px solid var(--gold);
}
.about__badge span {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.about__badge strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  margin-top: 4px;
}

.about__text h2 { margin-bottom: 28px; }
.about__text p {
  color: var(--ink-soft);
  margin-bottom: 20px;
  max-width: 56ch;
}

.about__values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.value {
  background: var(--cream);
  padding: 22px;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.value:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
  border-color: var(--gold-soft);
}
.value__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--cream-2);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.value h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
.value p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ===== SPECS ===== */
.specs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.spec {
  background: var(--cream);
  padding: 32px 26px;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.spec::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.spec:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-warm);
  border-color: var(--gold-soft);
}
.spec:hover::before { transform: scaleX(1); }
.spec__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cream-2), #fff);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid var(--border);
}
.spec h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.spec p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ===== PROCESS ===== */
.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  list-style: none;
  position: relative;
}
.process__steps::before {
  content: "";
  position: absolute;
  top: 38px; left: 8%; right: 8%;
  height: 1px;
  background: var(--gold-soft);
  z-index: 0;
}
.step {
  position: relative;
  padding: 18px 14px;
  text-align: center;
}
.step__num {
  width: 76px; height: 76px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.step:hover .step__num {
  background: var(--gold);
  color: var(--cream);
  transform: scale(1.06);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ===== AUDIENCE ===== */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
.aud {
  padding: 22px 24px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  color: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease;
}
.aud:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-soft);
}
.audience__cta {
  text-align: center;
  margin-top: 36px;
  color: var(--ink-soft);
}

/* ===== PRICING ===== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price {
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow-warm); }
.price > header { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.price h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
}
.price__amount {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.price__amount span {
  font-size: 56px;
  font-weight: 600;
  color: var(--ink);
}
.price__unit {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 8px;
}
.price ul {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.price ul li {
  font-size: 14px;
  padding: 7px 0 7px 22px;
  position: relative;
  color: var(--ink);
}
.price ul li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 7px;
  color: var(--sage);
  font-weight: 600;
}
.price--featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--gold);
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px -20px rgba(46,42,38,.4);
}
.price--featured:hover { transform: translateY(-18px) scale(1.02); }
.price--featured h3,
.price--featured .price__amount span { color: var(--cream); }
.price--featured .price__amount { color: var(--gold-soft); }
.price--featured ul li { color: var(--cream); }
.price--featured ul li::before { color: var(--gold-soft); }
.price--featured .price__unit { color: rgba(250,246,239,.7); }
.price--featured > header { border-bottom-color: rgba(212,181,126,.3); }
.price__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--cream);
  padding: 6px 18px;
  border-radius: var(--r-pill);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.pricing__note {
  text-align: center;
  margin-top: 36px;
  color: var(--ink-soft);
}

/* ===== RESULTS / METAMORFOZY ===== */
.results__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
}
.result {
  background: var(--cream);
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
}
.result:hover { transform: translateY(-4px); box-shadow: var(--shadow-warm); }
.result__photos {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: stretch;
}
.result__divider { background: linear-gradient(180deg, transparent, var(--gold-soft) 50%, transparent); }
.result figcaption { padding: 24px 26px; }
.result figcaption strong {
  font-family: var(--font-display);
  font-size: 20px;
  display: block;
  margin-bottom: 4px;
}
.result figcaption > span {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.result figcaption p {
  margin-top: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ---- Wideo-reel w galerii metamorfoz (dyskretny loop w ramce telefonu) ---- */
.result--reel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 22px;
  background: var(--cream-2);
}
.reel {
  width: 100%;
  max-width: 232px;
  border-radius: 28px;
  overflow: hidden;
  background: #1c1a18;
  padding: 8px;
  box-shadow: var(--shadow-warm);
}
.reel__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 20px;
  background: #000;
}
.reel__cap {
  margin-top: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  text-align: center;
  max-width: 24ch;
}

/* ===== TESTIMONIALS ===== */
.testimonials__viewport {
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
}
.testimonials__track {
  display: flex;
  transition: transform .55s cubic-bezier(.65,.05,.3,1);
}
.testimonial {
  min-width: 100%;
  padding: 8px 40px;
  text-align: center;
}
.testimonial p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.testimonial p::before {
  content: "\201E";
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  font-size: 100px;
  color: var(--gold-soft);
  font-family: var(--font-display);
  line-height: 1;
}
.testimonial footer { margin-top: 24px; }
.testimonial footer strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.testimonial footer span {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial footer span::before {
  content: "·";
  margin: 0 8px;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: 0;
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
}
.t-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--cream);
  font-size: 20px;
  color: var(--ink);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.t-btn:hover { background: var(--ink); color: var(--cream); transform: scale(1.06); }
.t-dots { display: flex; gap: 10px; }
.t-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: background .25s ease, transform .25s ease;
}
.t-dots button.is-active { background: var(--gold); transform: scale(1.3); }

/* ===== EDU / CERTYFIKATY ===== */
.edu__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}
.edu__col h2,
.edu__col h3 {
  font-family: var(--font-display);
  font-weight: 500;
  margin-bottom: 24px;
}
.edu__col h3 { font-size: 24px; }
.edu__timeline { list-style: none; }
.edu__timeline li {
  display: flex;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.edu__timeline li:last-child { border-bottom: 0; }
.edu__year {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  min-width: 60px;
}
.edu__timeline strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.edu__timeline span {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
}

.edu__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cert {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  background: transparent;
  text-align: left;
  transition: transform .25s ease;
}
.cert:hover { transform: translateY(-4px); }
.cert .placeholder {
  aspect-ratio: 4/3;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.cert:hover .placeholder {
  box-shadow: var(--shadow-warm);
  border-color: var(--gold-soft);
}
.cert__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .04em;
}

/* ===== FAQ ===== */
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.faq__list details {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq__list details:first-child { border-top: 1px solid var(--border); }
.faq__list summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding-right: 40px;
  transition: color .25s ease;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-body);
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.faq__list summary:hover { color: var(--gold); }
.faq__list details[open] summary { color: var(--gold); }
.faq__list details[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}
.faq__list details p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ===== CENNIK ===== */
.cennik__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(22px, 3.5vw, 36px);
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: clamp(26px, 3.4vw, 40px);
  box-shadow: var(--shadow-warm);
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
}
.price-card__head { text-align: center; margin-bottom: 6px; }
.price-card__kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.3vw, 1.95rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
}
.price-list { list-style: none; margin-top: 16px; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
.price-list li:last-child { border-bottom: 0; }
.price-name {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
}
.price-name small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: .03em;
}
.price-amount {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 600;
  color: var(--gold-deep);
  white-space: nowrap;
  line-height: 1;
}
.price-amount span {
  font-family: var(--font-body);
  font-size: .5em;
  font-weight: 500;
  color: var(--ink-soft);
  margin-left: 3px;
}
/* rozwijany opis (ukryty do kliknięcia) */
.price-card__more {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.price-card__more summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 34px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .01em;
  color: var(--gold-deep);
  transition: color .25s ease;
}
.price-card__more summary::-webkit-details-marker { display: none; }
.price-card__more summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-body);
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.price-card__more summary:hover { color: var(--gold); }
.price-card__more[open] summary { color: var(--gold); }
.price-card__more[open] summary::after {
  content: "−";
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}
.price-card__more p {
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}
.cennik__note {
  max-width: 720px;
  margin: clamp(28px, 4vw, 40px) auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}
.cennik__cta { text-align: center; margin-top: 26px; }

/* główny cennik – karty z listą „w cenie" */
.cennik__main { margin-bottom: clamp(22px, 3vw, 30px); }
.price-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}
.price-card__title h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.9vw, 1.5rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
}
.price-card__meta {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--ink-soft);
}
.price-card__top .price-amount { line-height: 1; }
.price-card__incl {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
}
.price-feats { list-style: none; display: grid; gap: 10px; }
.price-feats li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink);
}
.price-feats li::before {
  content: "";
  position: absolute;
  left: 2px; top: 5px;
  width: 7px; height: 11px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}
/* rozwijany cennik specjalistyczny */
.cennik__extra { margin-top: clamp(28px, 3.5vw, 40px); }
.cennik__extra > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--gold-deep);
  background: var(--cream);
  transition: color .25s ease, border-color .25s ease;
}
.cennik__extra > summary::-webkit-details-marker { display: none; }
.cennik__extra > summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.cennik__extra > summary:hover { color: var(--gold); border-color: var(--gold-soft); }
.cennik__extra[open] > summary { color: var(--gold); margin-bottom: 26px; }
.cennik__extra[open] > summary::after { content: "−"; background: var(--gold); color: var(--cream); border-color: var(--gold); }

@media (max-width: 760px) {
  .cennik__grid { grid-template-columns: 1fr; max-width: 460px; }
}

/* ===== CONTACT ===== */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact__intro p { color: var(--ink-soft); max-width: 48ch; margin-bottom: 36px; }
.contact__details { list-style: none; }
.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact__details li:last-child { border-bottom: 0; }
.ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.contact__details strong {
  display: block;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact__details a,
.contact__details span:not(.ico) {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.contact__details a:hover { color: var(--gold); }

.contact__form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-soft);
}
.contact__form h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 22px;
}
.field { display: block; margin-bottom: 18px; }
.field span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(168,117,58,.12);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 22px;
  cursor: pointer;
}
.checkbox input {
  margin-top: 3px;
  width: 16px; height: 16px;
  accent-color: var(--gold);
}
.form__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
}
.form__success {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(111,138,106,.12);
  border: 1px solid rgba(111,138,106,.4);
  color: var(--sage);
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 calc(24px + env(safe-area-inset-bottom));
  margin-top: 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__brand p {
  font-size: 14px;
  color: rgba(250,246,239,.65);
  margin-top: 14px;
  max-width: 28ch;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer .nav__monogram { color: var(--gold-soft); border-color: var(--gold-soft); }
.footer .nav__name-main { color: var(--cream); }
.footer__col h4 {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; }
.footer__col li {
  padding: 6px 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(250,246,239,.6);
}
.footer__col a {
  color: rgba(250,246,239,.75);
  font-size: 14px;
}
.footer__col a:hover { color: var(--gold-soft); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(212,181,126,.18);
  font-size: 12px;
  color: rgba(250,246,239,.5);
}

/* ===== PLACEHOLDERS ===== */
.placeholder {
  width: 100%;
  background: linear-gradient(135deg, var(--cream-2), #fff);
  border-radius: inherit;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 28px, rgba(168,117,58,.08) 28px 30px);
  opacity: .8;
}
.placeholder::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(168,117,58,.4);
  border-radius: 8px;
}
.placeholder span {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .2em;
  text-align: center;
  line-height: 1.4;
}
.placeholder--portrait { aspect-ratio: 3/4; }
.placeholder--result { aspect-ratio: 3/4; border-radius: 0; }
.placeholder--cert { aspect-ratio: 4/3; }

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(120%);
  padding: 13px 26px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-pill);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 20px 40px -10px rgba(46,42,38,.6);
  z-index: 90;
  transition: transform .45s ease;
}
.mobile-cta.is-visible { transform: translateX(-50%) translateY(0); }

/* ===== COOKIES ===== */
.cookies {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 22px 24px;
  box-shadow: var(--shadow-warm);
  z-index: 95;
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookies p { line-height: 1.55; }
.cookies__btns {
  display: flex;
  gap: 10px;
}
.cookies__btns .btn { flex: 1; padding: 10px 16px; font-size: 11px; }

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(46,42,38,.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
}
.modal__content {
  max-width: 900px;
  max-height: 90vh;
  width: 100%;
  background: var(--cream);
  border-radius: var(--r-card);
  padding: 32px;
  overflow-y: auto;
}
.modal__content .placeholder { aspect-ratio: 4/3; max-height: 70vh; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.16,.84,.24,1), transform .8s cubic-bezier(.16,.84,.24,1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1080px) {
  .specs__grid       { grid-template-columns: repeat(2, 1fr); }
  .process__steps    { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .pricing__grid     { grid-template-columns: repeat(2, 1fr); }
  .price--featured   { transform: none; }
  .price--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; margin-left: auto; }

  .hero__inner       { grid-template-columns: 1fr; gap: 50px; }
  .hero__photo       { max-width: 380px; margin: 0 auto; justify-self: center; }
  .hero__stats       { width: 100%; gap: 16px; }
  .hero__scroll      { display: none; }

  .about__inner      { grid-template-columns: 1fr; gap: 40px; }
  .about__photo      { max-width: 420px; padding-top: 0; }
  .about__badge      { left: auto; right: -16px; bottom: 16px; }
  .about__values     { grid-template-columns: repeat(2, 1fr); }

  .process__steps    { grid-template-columns: 1fr; }
  .process__steps::before { display: none; }
  .step              { text-align: left; display: grid; grid-template-columns: 80px 1fr; column-gap: 20px; row-gap: 6px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .step:last-child   { border-bottom: 0; }
  .step__num         { margin: 0; grid-row: 1 / 3; align-self: center; }
  .step h3           { align-self: end; }
  .step p            { align-self: start; }

  .audience__grid    { grid-template-columns: 1fr; }
  .results__grid     { grid-template-columns: 1fr; }
  .edu__inner        { grid-template-columns: 1fr; }
  .edu__gallery      { grid-template-columns: repeat(3, 1fr); }
  .faq__inner        { grid-template-columns: 1fr; }
  .contact__inner    { grid-template-columns: 1fr; }
  .footer__inner     { grid-template-columns: 1fr 1fr; }

  .mobile-cta        { display: block; }
}

@media (max-width: 600px) {
  .nav__name-sub     { display: none; }
  .nav__name-main    { font-size: 16px; }

  .hero              { padding: 120px 0 60px; min-height: auto; }
  .hero h1.display   { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero__cta         { flex-direction: column; }
  .hero__cta .btn    { width: 100%; }
  .hero__stats       { grid-template-columns: 1fr; gap: 18px; }
  .hero__stats li    { flex-direction: row; align-items: baseline; gap: 12px; }
  .hero__stats strong{ font-size: 32px; }
  .hero__stats li span:last-child { margin-top: 0; }

  .about__values     { grid-template-columns: 1fr; }
  .specs__grid       { grid-template-columns: 1fr; }
  .pricing__grid     { grid-template-columns: 1fr; }
  .edu__gallery      { grid-template-columns: repeat(2, 1fr); }
  .footer            { padding-top: 56px; }
  .footer__inner     { grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }
  .footer__bottom    { flex-direction: column; align-items: flex-start; gap: 6px; }

  .field-row         { grid-template-columns: 1fr; }
  .testimonial       { padding: 8px 12px; }
  .testimonial p::before { font-size: 64px; top: -24px; }

  .result__photos    { grid-template-columns: 1fr; }
  .result__divider   { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-soft), transparent); }
}

@media (max-width: 420px) {
  .container         { padding: 0 18px; }
  body               { font-size: 16px; }
}

/* =========================================================
   REALNE OBRAZY · NOWE SEKCJE · LIGHTBOX · A11Y · MOBILE POLISH
   (dopisane przy przebudowie – michalewska-dietetyka.pl)
   ========================================================= */

/* ---- Skip link + focus-visible (a11y) ---- */
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 300;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  font-size: 13px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; color: var(--cream); }
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}
/* link kolor o lepszym kontrascie dla małego tekstu */
.contact__details a,
.faq__list details p a,
.section__lead a,
.results__more a,
.form__note a,
.audience__cta a,
.checkbox a { color: var(--gold-deep); }

/* ---- Safe-area (iPhone notch / home bar) ---- */
.container {
  padding-left: max(clamp(20px, 4vw, 40px), env(safe-area-inset-left));
  padding-right: max(clamp(20px, 4vw, 40px), env(safe-area-inset-right));
}
.nav__inner {
  padding-left: max(clamp(20px, 4vw, 40px), env(safe-area-inset-left));
  padding-right: max(clamp(20px, 4vw, 40px), env(safe-area-inset-right));
}
.mobile-cta { bottom: calc(20px + env(safe-area-inset-bottom)); }
.cookies    { bottom: calc(20px + env(safe-area-inset-bottom)); }

/* ---- Realne zdjęcia w ramkach ---- */
.hero__photo-img { overflow: hidden; border-radius: inherit; }
.hero__photo-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 62% 22%;
  display: block;
}
.about__photo-frame img {
  /* pełna szerokość; wysokość wg proporcji pliku (4:5) — NIGDY nie kadruje na boki.
     Wcześniej aspect-ratio:4/5 + object-fit:cover był psuty przez atrybut height na <img>
     (sztywna wysokość w px unieważnia aspect-ratio → cover przycinał szerokość). */
  width: 100%; height: auto;
  display: block;
}
/* plakietka "Dietetyk 7 lat" zawsze nad ramką zdjęcia */
.about__badge { z-index: 3; }
.sport__photo-frame {
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  position: relative;
}
.sport__photo-frame::before {
  content: ""; position: absolute; inset: 8px;
  border: 1px solid var(--gold-soft); border-radius: 12px;
  z-index: 2; pointer-events: none;
}
.sport__photo-frame img {
  /* pełna szerokość; wysokość wg proporcji pliku (4:5) — NIGDY nie kadruje na boki
     (zdjęcie mostka: cała postać widoczna, kadr tylko od góry zrobiony w pliku). */
  width: 100%; height: auto;
  display: block;
}

/* ---- Pasek zaufania ---- */
.trust { background: var(--cream-2); padding: clamp(28px, 4vw, 44px) 0; }
.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 40px);
}
.trust__item {
  display: flex; flex-direction: column; gap: 6px;
  padding-left: 18px; position: relative;
}
.trust__item::before {
  content: ""; position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 2px; background: var(--gold-soft); border-radius: 2px;
}
.trust__item strong {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600; color: var(--gold-deep); line-height: 1.1;
}
.trust__item span { font-size: 13.5px; color: var(--ink-soft); line-height: 1.45; }

/* ---- Moja historia / przemiana ---- */
.story__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.story__text h2 { margin-bottom: 24px; }
.story__text p { color: var(--ink-soft); margin-bottom: 18px; max-width: 52ch; }
.story__text .link-arrow { margin-top: 8px; }
.story__photos {
  max-width: 430px;
  margin-inline: auto;
}
.story__photo { margin: 0; position: relative; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-soft); }
.story__photo img { width: 100%; height: auto; display: block; }
.story__photo--solo { box-shadow: var(--shadow-warm); }
/* delikatna złota ramka wewnętrzna, spójna z hero/sport */
.story__photo--solo::after {
  content: ""; position: absolute; inset: 10px;
  border: 1px solid var(--gold-soft); border-radius: 12px;
  pointer-events: none;
}
.story__photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px;
  background: linear-gradient(transparent, rgba(46,42,38,.66));
  color: var(--cream); font-size: 13px;
  font-family: var(--font-display); font-style: italic;
}

/* ---- Zakres: z czym pracuję / z czym nie ---- */
.zakres__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
  list-style: none;
  margin: 0 0 40px;
}
.zakres__item {
  display: flex;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px 16px 40px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.zakres__item::before {
  content: ""; position: absolute; left: 16px; top: 50%;
  width: 12px; height: 12px; margin-top: -6px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--gold) 0 4px, transparent 5px);
  border: 1.5px solid var(--gold-soft);
}
.zakres__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold-soft);
}
.zakres__not {
  background: var(--cream);
  border: 1px dashed var(--gold-soft);
  border-radius: var(--r-card);
  padding: clamp(24px, 3vw, 32px);
  max-width: 820px; margin: 0 auto;
  text-align: center;
}
.zakres__not h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600; margin-bottom: 10px;
}
.zakres__not p { color: var(--ink-soft); max-width: 60ch; margin: 0 auto; }

/* ---- Sport ---- */
.sport__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.sport__photo { max-width: 440px; width: 100%; }
.sport__text h2 { margin-bottom: 24px; }
.sport__text > p { color: var(--ink-soft); margin-bottom: 22px; max-width: 52ch; }
.sport__list { list-style: none; display: grid; gap: 12px; }
.sport__list li {
  position: relative; padding-left: 30px;
  font-size: 15.5px; color: var(--ink);
}
.sport__list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 16px; height: 16px;
  background: var(--cream-2); border: 1px solid var(--gold-soft);
  border-radius: 50%;
}
.sport__list li::after {
  content: ""; position: absolute; left: 5px; top: 11px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

/* ---- Jak wygląda jadłospis ---- */
.menu-how__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.mh {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 28px 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px; row-gap: 6px;
  align-items: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.mh:hover { transform: translateY(-4px); box-shadow: var(--shadow-warm); border-color: var(--gold-soft); }
.mh__icon {
  grid-row: 1 / 3;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cream-2), #fff);
  border: 1px solid var(--border);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  align-self: start;
}
.mh h3 { font-family: var(--font-display); font-size: 21px; font-weight: 600; align-self: end; }
.mh p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; align-self: start; }

/* ---- Galeria potraw („Tak może wyglądać Twój talerz”) ---- */
.menu-gallery-wrap { margin-top: 64px; }
.menu-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
}
.dish {
  display: flex; flex-direction: column; gap: 10px;
  padding: 0; background: transparent; text-align: left; border: 0;
  cursor: zoom-in;
  transition: transform .25s ease;
}
.dish:hover { transform: translateY(-4px); }
.dish__thumb {
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.dish__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dish:hover .dish__thumb { box-shadow: var(--shadow-warm); border-color: var(--gold-soft); }
.dish__title { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.35; }

/* ---- Case study ---- */
.case__inner { max-width: 860px; margin: 0 auto; text-align: center; }
.case__inner .kicker { justify-content: center; }
.case__inner .kicker::before { display: none; }
.case h2 { margin: 0 auto 32px; }
.case__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 3.5vw, 34px);
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}
.case-study {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: clamp(26px, 3.3vw, 38px);
  box-shadow: var(--shadow-warm);
  position: relative;
}
.case-study__tag {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  padding: 6px 14px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  margin-bottom: 18px;
}
.case-study__text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.case-study__result {
  margin: 22px 0 0;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.case-study__result strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gold-deep);
  white-space: nowrap;
}
.case__takeaway {
  max-width: 52ch;
  margin: clamp(26px, 3.5vw, 38px) auto 0;
  text-align: center;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--gold-deep);
  font-weight: 600;
}
@media (max-width: 760px) {
  .case__grid { grid-template-columns: 1fr; }
}

/* ---- Metamorfozy (przebudowa na realne obrazy) ---- */
.result {
  background: var(--cream);
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}
.result:hover { transform: translateY(-4px); box-shadow: var(--shadow-warm); }
.result__media {
  display: block; width: 100%; padding: 0;
  background: var(--cream-2);
  cursor: zoom-in; position: relative;
  line-height: 0;
}
.result__media img { width: 100%; height: auto; display: block; }
.result__media::after {
  content: "⤢"; position: absolute; right: 12px; bottom: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(250,246,239,.9); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; opacity: 0; transition: opacity .25s ease;
}
.result__media:hover::after,
.result__media:focus-visible::after { opacity: 1; }
.results__more { text-align: center; margin-top: 36px; color: var(--ink-soft); }

/* --- Metamorfozy: równe kwadratowe kafelki (pary tej samej wysokości);
       kolaż przed/po jako ostatni kafelek, NIEprzycięty (zachowuje proporcje) --- */
.results__grid .result__media { aspect-ratio: 1 / 1; }
.results__grid .result__media img { height: 100%; object-fit: cover; }
.results__grid .result--collage .result__media { aspect-ratio: auto; }
.results__grid .result--collage .result__media img { height: auto; object-fit: contain; }

/* ---- Galeria certyfikatów (realne skany) ---- */
.edu__hint { font-size: 13px; color: var(--ink-soft); margin: -8px 0 18px; }
.cert {
  display: flex; flex-direction: column; gap: 8px;
  padding: 0; background: transparent; text-align: left;
  transition: transform .25s ease;
  cursor: zoom-in;
}
.cert:hover { transform: translateY(-4px); }
.cert__thumb {
  aspect-ratio: 4 / 3;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.cert__thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.cert:hover .cert__thumb { box-shadow: var(--shadow-warm); border-color: var(--gold-soft); }
.cert__title { font-size: 12.5px; font-weight: 600; color: var(--ink); letter-spacing: .01em; line-height: 1.35; }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(46,42,38,.92);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}
.lightbox[hidden] { display: none !important; }
.lightbox__stage {
  margin: 0; display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  max-width: min(1100px, 92vw); max-height: 88vh;
}
.lightbox__pic { display: block; max-height: 78vh; }
.lightbox__pic img {
  display: block;
  max-width: min(1100px, 92vw); max-height: 78vh;
  width: auto; height: auto; object-fit: contain;
  border-radius: 8px; background: var(--cream);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
}
.lightbox__caption {
  color: var(--cream); font-size: 14px; line-height: 1.5;
  text-align: center; max-width: 64ch;
}
.lightbox__close {
  position: absolute; top: max(16px, env(safe-area-inset-top)); right: 16px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--cream); color: var(--ink);
  font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(250,246,239,.92); color: var(--ink);
  font-size: 30px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.lightbox__nav:hover { background: var(--cream); }
.lightbox__prev { left: max(12px, env(safe-area-inset-left)); }
.lightbox__next { right: max(12px, env(safe-area-inset-right)); }
.lightbox__counter {
  position: absolute; bottom: max(16px, env(safe-area-inset-bottom)); left: 50%;
  transform: translateX(-50%);
  color: rgba(250,246,239,.8); font-size: 12px; letter-spacing: .14em;
}

/* ---- Touch target dla kropek karuzeli (44px hit-area) ---- */
.t-dots button { position: relative; }
.t-dots button::after {
  content: ""; position: absolute; inset: -17px;
}
/* większe touch-targety w menu mobilnym */
.nav__mobile a { min-height: 44px; display: flex; align-items: center; }

/* ---- pauza autoplay karuzeli przy interakcji ---- */
.testimonials__viewport:hover .testimonials__track,
.testimonials__viewport:focus-within .testimonials__track { will-change: transform; }

/* =========================================================
   RESPONSIVE – nowe sekcje
   ========================================================= */
@media (max-width: 980px) {
  .trust__inner   { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
  .zakres__grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .story__inner   { grid-template-columns: 1fr; gap: 36px; }
  .story__photos  { max-width: 460px; }
  .sport__inner   { grid-template-columns: 1fr; gap: 36px; }
  .sport__photo   { max-width: 420px; margin: 0 auto; }
  .menu-how__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .trust__inner   { grid-template-columns: 1fr; gap: 16px; }
  .zakres__grid   { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .results__grid  { grid-template-columns: 1fr; }
  .edu__gallery   { grid-template-columns: repeat(2, 1fr); }
  .story__photo--sec { margin-top: 0; }
  .lightbox__nav  { width: 44px; height: 44px; font-size: 26px; }
  .mh             { grid-template-columns: 1fr; row-gap: 12px; }
  .mh__icon       { grid-row: auto; }
}
