/* =====================================================================
   SZYMON DOMAGAŁA · TRENER LONGEVITY
   styles.css — kolory marki: granat + miętowy + biel
   ===================================================================== */

/* ─── RESET & TOKENS ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1A2B3C;
  --navy-deep: #0E1A26;
  --navy-mid:  #243447;
  --mint:      #4ECBA3;
  --mint-dim:  #3AAE8A;
  --mint-pale: rgba(78,203,163,.12);
  --white:     #FFFFFF;
  --off-white: #EAF1F5;
  --text-muted:#92A6B6;
  --border:    rgba(78,203,163,.22);
  --card-bg:   rgba(255,255,255,.035);

  --fs-xs:  .75rem;
  --fs-sm:  .875rem;
  --fs-md:  1rem;
  --fs-lg:  1.25rem;
  --fs-xl:  1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.75rem;
  --fs-4xl: 4rem;

  --radius:    14px;
  --radius-lg: 24px;
  --gutter:    clamp(20px, 5vw, 40px);
  --ease:      cubic-bezier(.22,.61,.36,1);
  --ease-out:  cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--mint); color: var(--navy-deep); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--mint-dim); border-radius: 99px; }

/* grain overlay */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .028; mix-blend-mode: overlay;
}

/* ─── UTILITIES ─── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(48px, 7vw, 88px) 0; position: relative; z-index: 2; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--mint); margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--mint); }

.headline {
  font-size: clamp(var(--fs-2xl), 4.4vw, var(--fs-3xl));
  font-weight: 800; line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 22px; text-wrap: balance;
}
.headline em { font-style: italic; font-family: 'Lora', serif; color: var(--mint); font-weight: 600; }

.lead { font-size: var(--fs-md); color: var(--text-muted); max-width: 600px; line-height: 1.8; }

/* ─── BUTTONS ─── */
.btn {
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px; border-radius: 99px; min-height: 54px;
  font-family: inherit; font-size: var(--fs-sm); font-weight: 700;
  letter-spacing: .03em; text-transform: uppercase; cursor: pointer;
  border: none; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), color .3s, background .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary { background: var(--mint); color: var(--navy-deep); }
.btn-primary::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: var(--white); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.btn-primary:hover { box-shadow: 0 16px 40px rgba(78,203,163,.4); }
.btn-primary:hover::after { transform: scaleX(1); }

.btn-outline { background: transparent; color: var(--mint); border: 1.5px solid var(--mint); }
.btn-outline:hover { background: var(--mint); color: var(--navy-deep); }

/* ─── REVEAL SYSTEM ─── */
[data-reveal] {
  opacity: 0; transform: translateY(34px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
[data-reveal].in { opacity: 1; transform: none; }

[data-reveal="fade"] { transform: none; }

[data-reveal="img"] { overflow: hidden; opacity: 1; transform: none; }
[data-reveal="img"] img {
  transform: scale(1.18); clip-path: inset(0 0 100% 0);
  transition: transform 1.3s var(--ease-out), clip-path 1.1s var(--ease-out);
}
[data-reveal="img"].in img { transform: scale(1); clip-path: inset(0 0 0 0); }

.stagger > * {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(1) { transition-delay: .05s; }
.stagger.in > *:nth-child(2) { transition-delay: .15s; }
.stagger.in > *:nth-child(3) { transition-delay: .25s; }
.stagger.in > *:nth-child(4) { transition-delay: .35s; }
.stagger.in > *:nth-child(5) { transition-delay: .45s; }
.stagger.in > *:nth-child(6) { transition-delay: .55s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-reveal], .stagger > * { opacity: 1 !important; transform: none !important; }
  [data-reveal="img"] img { clip-path: none !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ─── SCROLL PROGRESS ─── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: left; z-index: 200;
  background: linear-gradient(90deg, var(--mint), var(--mint-dim));
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 150;
  padding: 20px 0; transition: transform .45s var(--ease), background .45s, padding .45s, border-color .45s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  padding: 13px 0;
  background: rgba(14,26,38,.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--border);
}
nav.hidden { transform: translateY(-100%); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { font-size: var(--fs-lg); font-weight: 900; letter-spacing: -.02em; }
.nav-logo span { color: var(--mint); }

.nav-links { display: flex; gap: 34px; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.nav-links a { position: relative; color: var(--text-muted); padding: 4px 0; transition: color .3s; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--mint); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { display: flex; }
.nav-cta .btn { padding: 12px 24px; min-height: 46px; }

/* hamburger */
.hamburger {
  display: none; position: relative; z-index: 160;
  width: 46px; height: 46px; background: none; border: none; cursor: pointer;
}
.hamburger span {
  position: absolute; left: 11px; width: 24px; height: 2px; background: var(--white);
  border-radius: 2px; transition: transform .4s var(--ease), opacity .3s, top .3s;
}
.hamburger span:nth-child(1) { top: 17px; }
.hamburger span:nth-child(2) { top: 23px; }
.hamburger span:nth-child(3) { top: 29px; }
body.menu-open .hamburger span:nth-child(1) { top: 23px; transform: rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* ─── MOBILE MENU OVERLAY ─── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 155;
  background: var(--navy-deep);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path .6s var(--ease);
  pointer-events: none;
}
body.menu-open .mobile-menu { clip-path: circle(150% at calc(100% - 44px) 44px); pointer-events: auto; }
.mobile-menu::after {
  content: ''; position: absolute; right: -20%; bottom: -10%;
  width: 70vw; height: 70vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(78,203,163,.14), transparent 65%);
}
.mobile-menu a {
  font-size: clamp(2rem, 9vw, 3.2rem); font-weight: 800; letter-spacing: -.02em;
  padding: 10px 0; color: var(--white);
  opacity: 0; transform: translateY(30px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), color .3s;
}
.mobile-menu a:hover { color: var(--mint); }
.mobile-menu a .idx { font-size: var(--fs-sm); color: var(--mint); font-weight: 700; margin-right: 14px; font-family: 'Lora', serif; font-style: italic; }
body.menu-open .mobile-menu a { opacity: 1; transform: none; }
body.menu-open .mobile-menu a:nth-child(1) { transition-delay: .15s; }
body.menu-open .mobile-menu a:nth-child(2) { transition-delay: .22s; }
body.menu-open .mobile-menu a:nth-child(3) { transition-delay: .29s; }
body.menu-open .mobile-menu a:nth-child(4) { transition-delay: .36s; }
body.menu-open .mobile-menu a:nth-child(5) { transition-delay: .43s; }
.mobile-menu .mm-contact { margin-top: 40px; font-size: var(--fs-md); color: var(--text-muted); display: flex; flex-direction: column; gap: 6px; }
.mobile-menu .mm-contact a { font-size: var(--fs-lg); font-weight: 700; color: var(--mint); }

/* ─── HERO ─── */
#hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 120px 0 60px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 60% at 85% 35%, rgba(78,203,163,.13) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 5% 90%, rgba(36,52,71,.7) 0%, transparent 70%),
    linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 60%);
}
.hero-bg::after {
  content: ''; position: absolute; right: -160px; top: 50%; transform: translateY(-50%);
  width: 760px; height: 760px; border-radius: 50%;
  border: 1px solid rgba(78,203,163,.12); box-shadow: inset 0 0 140px rgba(78,203,163,.05);
}

/* desktop blended photo */
.hero-photo {
  position: absolute; right: 0; top: 0; bottom: 0; width: clamp(420px, 48vw, 820px);
  z-index: 1; overflow: hidden;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%; will-change: transform; }
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--navy) 0%, rgba(26,43,60,.65) 24%, transparent 58%),
    linear-gradient(0deg, var(--navy) 1%, transparent 22%),
    linear-gradient(180deg, rgba(14,26,38,.5) 0%, transparent 16%);
}

.hero-content { position: relative; z-index: 2; max-width: 680px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(78,203,163,.1); border: 1px solid rgba(78,203,163,.3);
  padding: 9px 20px; border-radius: 99px;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mint);
  margin-bottom: 30px;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 0 rgba(78,203,163,.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(78,203,163,.5); } 70% { box-shadow: 0 0 0 10px rgba(78,203,163,0); } 100% { box-shadow: 0 0 0 0 rgba(78,203,163,0); } }

.hero-title {
  font-size: clamp(2.6rem, 6.4vw, var(--fs-4xl));
  font-weight: 900; line-height: 1.05; letter-spacing: -.03em; margin-bottom: 30px;
}
.hero-title .line { display: block; }
.hero-title .word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .06em; margin-right: .26em; }
.hero-title .word > span {
  display: inline-block; transform: translateY(110%);
  transition: transform .9s var(--ease-out); transition-delay: calc(var(--i) * .07s);
}
.hero.ready .hero-title .word > span { transform: none; }
.hero-title .accent-line { position: relative; font-style: italic; font-family: 'Lora', serif; color: var(--mint); font-weight: 600; }
/* underline draw on accent */
.hero-title .accent-line::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -.02em; height: 4px; border-radius: 4px;
  background: var(--mint); transform: scaleX(0); transform-origin: left;
  transition: transform .9s var(--ease-out) 1.1s;
}
.hero.ready .hero-title .accent-line::after { transform: scaleX(1); }

.hero-sub {
  font-size: clamp(var(--fs-md), 1.6vw, var(--fs-lg)); color: var(--off-white);
  line-height: 1.7; max-width: 540px; margin-bottom: 40px;
  opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease-out) .7s, transform .8s var(--ease-out) .7s;
}
.hero.ready .hero-sub { opacity: 1; transform: none; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease-out) .85s, transform .8s var(--ease-out) .85s; }
.hero.ready .hero-ctas { opacity: 1; transform: none; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 56px); margin-top: 64px; padding-top: 38px;
  border-top: 1px solid var(--border);
  opacity: 0; transition: opacity .9s var(--ease-out) 1s;
}
.hero.ready .hero-stats { opacity: 1; }
.hero-stat-num { font-size: var(--fs-2xl); font-weight: 900; color: var(--mint); line-height: 1; }
.hero-stat-label { font-size: var(--fs-xs); color: var(--text-muted); margin-top: 6px; letter-spacing: .04em; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted);
  opacity: 0; transition: opacity 1s ease 1.4s;
}
.hero.ready .scroll-cue { opacity: 1; }
.scroll-cue .line { width: 1px; height: 40px; background: linear-gradient(var(--mint), transparent); position: relative; overflow: hidden; }
.scroll-cue .line::after { content: ''; position: absolute; top: -40%; left: 0; width: 100%; height: 40%; background: var(--mint); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { top: -45%; } 100% { top: 110%; } }

/* mobile hero photo (in flow) */
.hero-photo-card { display: none; }

/* ─── MARQUEE ─── */
.marquee-wrap { overflow: hidden; background: var(--mint); padding: 16px 0; position: relative; z-index: 3; }
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item { flex-shrink: 0; font-size: var(--fs-sm); font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--navy-deep); padding: 0 26px; display: flex; align-items: center; gap: 26px; }
.marquee-item::after { content: '✦'; font-size: .7em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─── O MNIE ─── */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.about-photo { position: relative; }
.about-photo .frame {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
}
.about-photo .frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.about-photo .badge-float {
  position: absolute; right: -18px; bottom: 28px;
  background: var(--mint); color: var(--navy-deep); border-radius: var(--radius);
  padding: 18px 22px; box-shadow: 0 20px 50px rgba(0,0,0,.4); max-width: 200px;
}
.about-photo .badge-float .n { font-size: var(--fs-2xl); font-weight: 900; line-height: 1; }
.about-photo .badge-float .t { font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

.about-quote {
  border-left: 3px solid var(--mint); padding: 8px 0 8px 22px;
  font-family: 'Lora', serif; font-size: var(--fs-xl); font-style: italic; color: var(--off-white);
  line-height: 1.45; margin: 26px 0;
}
.about-text { color: var(--text-muted); line-height: 1.85; margin-bottom: 18px; }
.about-text strong { color: var(--white); }

.podcast-mention {
  display: flex; align-items: center; gap: 14px; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; margin-top: 26px;
}
.podcast-mention .ic { font-size: 1.5rem; }
.podcast-mention .tx { font-size: var(--fs-sm); color: var(--text-muted); }
.podcast-mention .tx strong { color: var(--white); display: block; }

.about-certs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.cert-tag {
  background: var(--mint-pale); border: 1px solid var(--border); padding: 8px 16px; border-radius: 99px;
  font-size: var(--fs-xs); font-weight: 700; color: var(--mint); letter-spacing: .05em; text-transform: uppercase;
  transition: background .3s, color .3s, transform .3s;
}
.cert-tag:hover { background: var(--mint); color: var(--navy-deep); transform: translateY(-2px); }

/* ─── FILOZOFIA ─── */
.philosophy { background: linear-gradient(160deg, var(--navy-mid) 0%, rgba(78,203,163,.05) 100%); border-block: 1px solid var(--border); position: relative; z-index: 2; }
.phil-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.phil-item { padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 40px); border-right: 1px solid var(--border); transition: background .4s; }
.phil-item:last-child { border-right: none; }
.phil-item:hover { background: var(--mint-pale); }
.phil-num { font-family: 'Lora', serif; font-style: italic; font-size: var(--fs-3xl); font-weight: 600; color: rgba(78,203,163,.3); line-height: 1; margin-bottom: 18px; }
.phil-title { font-size: var(--fs-lg); font-weight: 800; margin-bottom: 12px; }
.phil-desc { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.75; }

/* ─── OFERTA ─── */
#oferta { background: var(--navy-deep); }
.offer-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 40px 0 44px; }
.tab-btn {
  padding: 12px 24px; border-radius: 99px; min-height: 46px;
  font-family: inherit; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; border: 1.5px solid var(--border); background: transparent; color: var(--text-muted);
  transition: background .3s, color .3s, border-color .3s;
}
.tab-btn.active { background: var(--mint); color: var(--navy-deep); border-color: var(--mint); }
.tab-btn:hover:not(.active) { border-color: var(--mint); color: var(--white); }

.offer-panel { display: none; }
.offer-panel.active { display: block; animation: panelIn .5s var(--ease-out); }
@keyframes panelIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.price-card {
  position: relative; overflow: hidden; background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px 28px; display: flex; flex-direction: column; gap: 16px;
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(78,203,163,.6); box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.price-card.featured { border-color: var(--mint); background: linear-gradient(150deg, rgba(78,203,163,.1), var(--card-bg)); padding-top: 46px; }
.price-card.featured::before {
  content: 'Najpopularniejszy'; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--mint); color: var(--navy-deep); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 22px; border-radius: 0 0 12px 12px; white-space: nowrap; line-height: 1;
}
.price-qty { font-size: var(--fs-xs); font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }
.price-main { font-size: var(--fs-3xl); font-weight: 900; line-height: 1; }
.price-main span { font-size: var(--fs-sm); color: var(--text-muted); font-weight: 500; }
.price-total { font-size: var(--fs-sm); color: var(--text-muted); }
.price-total strong { color: var(--mint); }
.price-card .btn { margin-top: auto; width: 100%; }

.offer-online { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.online-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 32px; display: flex; flex-direction: column; gap: 14px; transition: transform .4s var(--ease-out), border-color .4s; }
.online-card:hover { transform: translateY(-6px); border-color: rgba(78,203,163,.6); }
.online-card .ic { font-size: 2rem; }
.online-card h3 { font-size: var(--fs-lg); font-weight: 800; }
.online-card .online-price { font-size: var(--fs-2xl); font-weight: 900; color: var(--mint); }
.online-card .online-price span { font-size: var(--fs-sm); color: var(--text-muted); font-weight: 500; }
.online-card p { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.7; }
.online-card .btn { margin-top: auto; }

.offer-note { margin-top: 36px; padding: 26px 30px; background: var(--mint-pale); border: 1px solid var(--border); border-radius: var(--radius); max-width: 640px; }
.offer-note p { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.7; }
.offer-note strong { color: var(--white); }
.offer-note .btn { margin-top: 18px; font-size: var(--fs-xs); padding: 12px 24px; min-height: 44px; }

/* ─── PODCAST ─── */
.podcast-head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 52px); }
.podcast-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 28px; }
.podcast-credibility { display: flex; align-items: center; gap: 14px; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; flex: 1 1 320px; }
.podcast-credibility .ic { font-size: 1.6rem; }
.podcast-credibility .tx { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.5; }
.podcast-credibility .tx strong { color: var(--white); display: block; }
.podcast-videos { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 28px); }
.video-embed { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 24px 60px rgba(0,0,0,.4); background: var(--navy-deep); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* lekki facade YouTube */
.yt-facade { cursor: pointer; }
.yt-facade .yt-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.yt-facade::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(14,26,38,.45), transparent 55%); transition: background .3s; }
.yt-facade .yt-play {
  position: absolute; inset: 0; margin: auto; z-index: 2;
  width: 76px; height: 76px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(220,40,40,.92); box-shadow: 0 10px 30px rgba(0,0,0,.4);
  transition: transform .3s var(--ease-out), background .3s;
}
.yt-facade .yt-play svg { width: 34px; height: 34px; fill: #fff; margin-left: 4px; }
.yt-facade:hover .yt-play, .yt-facade:focus-visible .yt-play { transform: scale(1.1); background: #e62828; }
.yt-facade:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }
.video-caption { font-size: var(--fs-sm); color: var(--text-muted); margin-top: 14px; line-height: 1.5; }

/* ─── STUDIO ─── */
.studio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.studio-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 30px 0; }
.studio-feat { display: flex; align-items: flex-start; gap: 12px; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; transition: border-color .3s, transform .3s; }
.studio-feat:hover { border-color: rgba(78,203,163,.45); transform: translateY(-2px); }
.studio-feat .ic { font-size: 1.3rem; }
.studio-feat strong { display: block; font-size: var(--fs-sm); font-weight: 700; margin-bottom: 2px; }
.studio-feat span { font-size: var(--fs-xs); color: var(--text-muted); }
.studio-address { display: flex; align-items: flex-start; gap: 12px; background: var(--mint-pale); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.studio-address .ic { font-size: 1.4rem; }
.studio-address .main { font-weight: 700; }
.studio-address .sub { font-size: var(--fs-sm); color: var(--text-muted); margin-top: 2px; }
.studio-address .btn { margin-top: 12px; font-size: var(--fs-xs); padding: 9px 18px; min-height: 40px; }

.studio-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.studio-photo { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); aspect-ratio: 4/3; }
.studio-photo:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.studio-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.studio-photo:hover img { transform: scale(1.06); }

/* ─── ACTION BAND ─── */
.action-band { position: relative; overflow: hidden; padding: clamp(64px, 9vw, 110px) 0; display: flex; align-items: center; border-block: 1px solid var(--border); }
.action-band-img { position: absolute; inset: -10% 0; z-index: 0; }
.action-band-img img { width: 100%; height: 120%; object-fit: cover; object-position: 50% 30%; will-change: transform; }
.action-band-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, var(--navy-deep) 0%, rgba(14,26,38,.92) 36%, rgba(14,26,38,.5) 72%, rgba(14,26,38,.3) 100%),
    linear-gradient(0deg, rgba(14,26,38,.6) 0%, transparent 42%);
}
.action-inner { position: relative; z-index: 2; }
.action-title { font-size: clamp(1.9rem, 4vw, 3.1rem); font-weight: 900; line-height: 1.12; letter-spacing: -.02em; margin-bottom: 22px; max-width: 800px; text-wrap: balance; }
.action-title em { font-style: italic; font-family: 'Lora', serif; color: var(--mint); font-weight: 600; }
.action-sub { font-size: var(--fs-lg); color: var(--off-white); line-height: 1.6; max-width: 560px; margin-bottom: 34px; }

/* ─── SOCIAL ─── */
.social-strip { padding: 44px 0; border-block: 1px solid var(--border); position: relative; z-index: 2; }
.social-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.social-text { font-size: var(--fs-sm); color: var(--text-muted); }
.social-text strong { color: var(--white); font-size: var(--fs-md); display: block; margin-bottom: 4px; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn { display: flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 99px; min-height: 46px; border: 1.5px solid var(--border); font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); transition: border-color .3s, color .3s, background .3s; }
.social-btn:hover { border-color: var(--mint); color: var(--mint); background: var(--mint-pale); }
.social-btn svg { width: 16px; height: 16px; }

/* ─── FAQ ─── */
#faq { background: var(--navy-deep); }
.faq-list { display: grid; gap: 14px; margin-top: 44px; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(22px, 3vw, 30px) clamp(22px, 3vw, 32px); transition: border-color .3s; }
.faq-item:hover { border-color: rgba(78,203,163,.45); }
.faq-q { font-size: var(--fs-lg); font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.faq-a { color: var(--text-muted); line-height: 1.8; font-size: var(--fs-md); }
.faq-a + .faq-a { margin-top: 12px; }
.faq-a ul { margin: 14px 0 0; padding-left: 22px; list-style: disc; display: grid; gap: 8px; }
.faq-a ul li::marker { color: var(--mint); }
.price-table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: var(--fs-sm); }
.price-table caption { text-align: left; color: var(--text-muted); font-size: var(--fs-xs); margin-bottom: 8px; }
.price-table th, .price-table td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--border); }
.price-table thead th { color: var(--mint); text-transform: uppercase; letter-spacing: .06em; font-size: var(--fs-xs); }
.price-table td:last-child, .price-table th:last-child { text-align: right; font-weight: 700; color: var(--white); }
.price-table tbody tr:last-child td { border-bottom: none; }

/* ─── KONTAKT ─── */
#kontakt { background: var(--navy-deep); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .ic { font-size: 1.4rem; }
.ci-label { font-size: var(--fs-xs); font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }
.ci-value { font-size: var(--fs-md); font-weight: 600; margin-top: 4px; }
.ci-value a { color: var(--mint); transition: color .3s; }
.ci-value a:hover { color: var(--white); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: var(--fs-xs); font-weight: 700; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select {
  background: var(--card-bg); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 15px 16px; font-family: inherit; font-size: var(--fs-sm); color: var(--white); outline: none;
  transition: border-color .3s, background .3s; width: 100%; resize: vertical;
}
.form-group select option { background: var(--navy-mid); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--mint); background: rgba(78,203,163,.05); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(146,166,182,.5); }
.form-group textarea { min-height: 130px; }
.contact-form .btn { width: 100%; margin-top: 6px; }
.form-success { display: none; padding: 16px; background: var(--mint-pale); border: 1px solid var(--mint); border-radius: var(--radius); font-size: var(--fs-sm); color: var(--mint); }
.form-error { display: none; padding: 16px; background: rgba(230,140,90,.1); border: 1px solid rgba(230,140,90,.5); border-radius: var(--radius); font-size: var(--fs-sm); color: #E8A074; }
.form-error a { color: #E8A074; text-decoration: underline; font-weight: 700; }

/* ─── FOOTER ─── */
footer { padding: 52px 0 36px; border-top: 1px solid var(--border); background: var(--navy-deep); position: relative; z-index: 2; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center; }
.footer-logo { font-size: var(--fs-lg); font-weight: 900; }
.footer-logo span { color: var(--mint); }
.footer-tagline { font-size: var(--fs-xs); color: var(--text-muted); margin-top: 4px; }
.footer-meta { font-size: var(--fs-xs); color: var(--text-muted); margin-top: 10px; }
.footer-meta strong { color: var(--off-white); }
.footer-copy { font-size: var(--fs-xs); color: var(--text-muted); text-align: right; }
.footer-copy a { color: var(--mint); }

/* ─── BACK TO TOP ─── */
.back-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 120;
  width: 50px; height: 50px; border-radius: 50%; background: var(--mint); color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center; border: none; cursor: pointer;
  opacity: 0; pointer-events: none; transition: opacity .4s, transform .4s var(--ease-out);
  box-shadow: 0 10px 30px rgba(78,203,163,.4); font-size: 20px;
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-4px); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .hero-photo { width: 44vw; opacity: .32; }
  .hero-photo::after { background: linear-gradient(90deg, var(--navy) 0%, rgba(26,43,60,.85) 50%, transparent 100%), linear-gradient(0deg, var(--navy) 0%, transparent 30%); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 440px; margin: 0 auto; width: 100%; }
  .about-photo .badge-float { right: 16px; }
  .studio-grid { grid-template-columns: 1fr; }
  .studio-gallery { max-width: 560px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .phil-grid { grid-template-columns: 1fr; }
  .phil-item { border-right: none; border-bottom: 1px solid var(--border); }
  .phil-item:last-child { border-bottom: none; }
}

@media (max-width: 680px) {
  /* mobile hero: photo becomes an in-flow framed card */
  #hero { min-height: auto; padding: 110px 0 50px; }
  .hero-photo { display: none; }
  .hero-bg::after { width: 420px; height: 420px; right: -180px; }
  .hero-photo-card {
    display: block; margin-top: 36px; border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border); aspect-ratio: 16/11; position: relative;
  }
  .hero-photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%; }
  .hero-photo-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14,26,38,.5), transparent 50%); }
  .hero-stats { margin-top: 40px; gap: 24px 36px; }
  .hero-stat-num { font-size: var(--fs-xl); }
  .scroll-cue { display: none; }
  .offer-online { grid-template-columns: 1fr; }
  .podcast-videos { grid-template-columns: 1fr; }
  .studio-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .social-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }
  .about-photo .badge-float { position: static; max-width: none; margin-top: 14px; display: inline-flex; align-items: baseline; gap: 12px; }
}

@media (max-width: 420px) {
  .btn { width: 100%; }
  .hero-ctas { width: 100%; }
}
