/* =========================================================
   OPATULO · strona główna (hub)
   Estetyka: ciepły off-white · editorial · lime „neon" + rose/sage
   Czcionka: Inter (jedna, tekstowa czcionka marki — nagłówki cięższą wagą)
   ========================================================= */

:root {
  /* Tła i tekst */
  --bg:        #F7F3EC;
  --bg-soft:   #EFEAE2;
  --bg-deep:   #E6DFD0;
  --card:      #FFFFFF;
  --ink:       #2A2528;
  --ink-soft:  #6C6470;
  --line:      rgba(31, 26, 36, 0.10);
  --line-soft: rgba(31, 26, 36, 0.06);

  /* Akcenty marki */
  --lime:      #DAFF99;   /* brandowy „nasz neon" */
  --lime-mid:  #CEF897;
  --lime-deep: #B5E893;
  --accent:    #B5D43E;   /* zielony akcent UI (NIE lime) */
  --lime-ink:  #41510A;   /* tekst na lime */

  /* Drugorzędne */
  --rose:      #D8C7E2;
  --rose-soft: #ECE3F1;
  --rose-ink:  #5A4866;
  --sage:      #A8B58E;
  --sage-soft: #DCE2D1;
  --sage-ink:  #4C5840;

  /* Key visual — koral + granat (z logo/wideo) */
  --coral:      #E8543D;
  --coral-soft: #FBE3DC;
  --coral-ink:  #5A1B0E;
  --cobalt:     #000493;
  --cobalt-deep:#060761;

  /* Gradienty ombre (z key visual) */
  --grad-green-vivid: linear-gradient(165deg, #5BB97E 0%, #1E8A5F 55%, #0C5E45 100%);
  --grad-green-soft:  linear-gradient(180deg, #EDF8D6 0%, #DBEFCF 55%, #F7F3EC 100%);
  --grad-navy:        linear-gradient(155deg, #000493 0%, #060761 100%);

  /* Typografia */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-ui:      'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Layout */
  --maxw:   1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius:    14px;
  --radius-sm: 9px;
  --radius-lg: 24px;
  --shadow-1: 0 1px 2px rgba(26,29,28,0.04), 0 6px 18px rgba(26,29,28,0.06);
  --shadow-2: 0 2px 8px rgba(26,29,28,0.06), 0 24px 60px rgba(26,29,28,0.10);
}

/* RESET / BASE */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 0.4em;
  color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 6.4vw, 5.4rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
p { margin: 0 0 1em; }
em { font-style: italic; color: var(--sage-ink); }
::selection { background: var(--lime); color: var(--lime-ink); }

/* HELPERS */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(2.2rem, 5vw, 4rem); }
.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft); margin: 0 0 1.1rem;
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--accent); display:inline-block; }
.lead { font-size: clamp(1.1rem, 1.8vw, 1.3rem); color: var(--ink-soft); max-width: 60ch; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); border:0; }
.skip { position:absolute; left:-9999px; top:0; background:var(--ink); color:var(--bg); padding:.75rem 1rem; z-index:9999; border-radius: 0 0 var(--radius-sm) 0; }
.skip:focus { left:0; top:0; }
.mark { background: linear-gradient(transparent 62%, var(--lime) 62%); padding: 0 .06em; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.7rem; border-radius: 999px;
  font-family: var(--font-ui); font-weight: 500; font-size: .95rem;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--lime-deep); }
.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn--lime { background: var(--lime); color: var(--lime-ink); }
.btn--lime:hover { transform: translateY(-2px); background: var(--lime-mid); box-shadow: var(--shadow-1); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--sm { padding: .6rem 1.1rem; font-size: .85rem; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: .85rem var(--gutter);
  background: rgba(247,243,236,0.82);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__logo { display: flex; align-items: center; gap: .55rem; }
.nav__sygnet { width: 40px; height: 40px; flex: none; display: block; }
.nav__sygnet svg { display: block; width: 100%; height: 100%; }
.nav__wordmark { height: 54px; width: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: .82rem; }
.nav__links a { font-weight: 600; font-size: .83rem; color: var(--ink-soft); transition: color .2s ease; position: relative; white-space: nowrap; }
.nav__links a:hover { color: var(--ink); }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-5px; width:0; height:2px; background: var(--accent); transition: width .22s ease; }
.nav__links a:hover::after { width: 100%; }
.nav__home { display: inline-flex; align-items: center; }
.nav__home svg { width: 19px; height: 19px; }
.nav__home::after { display: none !important; }
.nav__cta { display: flex; align-items: center; gap: .7rem; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; color: var(--ink); }
.nav__toggle svg { width: 26px; height: 26px; }

/* HERO */
.hero { position: relative; padding-top: clamp(.8rem, 2.2vw, 1.6rem); padding-bottom: clamp(2rem, 4vw, 3.4rem); }
.hero__head { max-width: 960px; margin: 0 auto clamp(.8rem, 1.8vw, 1.3rem); text-align: center; }
.hero__eyebrow { color: var(--sage-ink); justify-content: center; margin-bottom: .7rem; }
.hero__eyebrow::before { background: var(--accent); }
.hero h1 { margin-bottom: .2em; white-space: nowrap; font-size: clamp(1.6rem, 4.3vw, 3.4rem); }
.hero h1 .em { font-style: italic; color: var(--sage-ink); }
.hero__lead { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--ink-soft); max-width: 56ch; margin: 0 auto 1rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-bottom: .75rem; }
.hero__trust { display: flex; align-items: center; justify-content: center; gap: .7rem; font-size: .86rem; color: var(--ink-soft); }
.hero__trust .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }

.hero__stage { position: relative; display: flex; justify-content: center; }
.hero__stage::before { content: ""; position: absolute; inset: -7% -5%; z-index: 0; background: radial-gradient(48% 58% at 50% 46%, rgba(140,224,138,.5), rgba(140,224,138,0) 70%); filter: blur(10px); }
.hero__video {
  position: relative; z-index: 1; height: min(52vh, 56.25vw); width: auto;
  aspect-ratio: 16 / 9; max-width: 100%;
  border-radius: var(--radius-lg); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-2);
}
.hero__video video { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 640px){ .hero h1 { white-space: normal; font-size: clamp(1.9rem, 7vw, 2.5rem); } }

/* MISSION */
.mission { background: var(--bg-soft); }
.mission__inner { max-width: 23ch; }
.mission .statement { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.8rem, 3.6vw, 3rem); line-height: 1.18; color: var(--ink); max-width: 20ch; letter-spacing: -0.01em; }
.mission .statement em { color: var(--sage-ink); }
.mission__cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: end; }
.mission__note { font-size: 1.05rem; color: var(--ink-soft); max-width: 42ch; }
@media (max-width: 760px){ .mission__cols { grid-template-columns: 1fr; } }

/* MISJA — pełnoekranowy, kinowy moment z wideo psa */
.mission-full { position: relative; height: clamp(470px, 82vh, 760px); overflow: hidden; background: var(--cobalt-deep); }
.mission-full__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.mission-full__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(95deg, rgba(6,7,97,.92) 0%, rgba(6,7,97,.7) 26%, rgba(6,7,97,.22) 52%, rgba(6,7,97,0) 72%); }
.mission-full__inner { position: relative; z-index: 2; height: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); display: flex; flex-direction: column; justify-content: center; }
.mission-full__copy { max-width: 34ch; }
.mission-full .eyebrow { color: var(--lime); }
.mission-full .eyebrow::before { background: var(--lime); }
.mission-full h2 { color: #fff; font-size: clamp(2.2rem, 4.8vw, 3.7rem); line-height: 1.04; margin-bottom: .35em; }
.mission-full h2 em { font-style: italic; color: var(--lime); }
.mission-full p { color: rgba(247,243,236,.9); font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 44ch; margin: 0; }
.mission-full .deco--ring-sm { width: 72px; top: 13%; right: 9%; }
.mission-full .deco--ring-xs { width: 44px; bottom: 16%; right: 17%; }
@media (max-width: 760px){
  .mission-full { height: clamp(540px, 86vh, 740px); }
  .mission-full__scrim { background: linear-gradient(to top, rgba(6,7,97,.95) 0%, rgba(6,7,97,.62) 44%, rgba(6,7,97,.05) 78%); }
  .mission-full__inner { justify-content: flex-end; padding-bottom: clamp(2rem,7vw,3rem); }
  .mission-full__copy { max-width: none; }
  .mission-full .deco--ring-sm { top: 7%; right: 7%; }
}

/* OŚ ŻYCIA */
.axis__head { max-width: 52ch; margin-bottom: clamp(2.5rem,5vw,4rem); }
.axis__track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; position: relative; }
.axis__track::before { content:""; position:absolute; top: 34px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, var(--sage) 0%, var(--accent) 50%, var(--rose) 100%); opacity: .5; z-index: 0; }
.phase { position: relative; z-index: 1; text-align: center; padding: 0 .5rem; }
.phase__dot { width: 68px; height: 68px; margin: 0 auto 1.3rem; border-radius: 50%; background: var(--card); border: 1.5px solid var(--line); display: grid; place-items: center; box-shadow: var(--shadow-1); }
.phase__dot svg { width: 30px; height: 30px; stroke: var(--ink); }
.phase:nth-child(1) .phase__dot { background: var(--sage-soft); border-color: transparent; }
.phase:nth-child(2) .phase__dot { background: var(--lime); border-color: transparent; }
.phase:nth-child(3) .phase__dot { background: var(--rose-soft); border-color: transparent; }
.phase h3 { font-size: clamp(1.3rem,2vw,1.7rem); margin-bottom: .3em; }
.phase p { font-size: .98rem; color: var(--ink-soft); max-width: 30ch; margin-inline: auto; }
@media (max-width: 760px){
  .axis__track { grid-template-columns: 1fr; gap: 2.2rem; }
  .axis__track::before { display: none; }
}

/* TROJE DRZWI */
.doors { background: var(--bg-soft); }
.doors__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2rem,4vw,3.2rem); }
.doors__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.door {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem 1.8rem 1.8rem;
  display: flex; flex-direction: column; gap: .9rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.door:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: transparent; }
.door__tag { align-self: flex-start; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: .35rem .7rem; border-radius: 999px; }
.door--d2c   .door__tag { background: var(--lime); color: var(--lime-ink); }
.door--klinik .door__tag { background: var(--sage-soft); color: var(--sage-ink); }
.door--firma .door__tag { background: var(--rose-soft); color: var(--rose-ink); }
.door h3 { margin: 0; font-size: 1.7rem; }
.door p { font-size: .98rem; color: var(--ink-soft); margin: 0; flex: 1; }
.door__list { display: flex; flex-direction: column; gap: .4rem; margin: .2rem 0 .4rem; }
.door__list li { font-size: .92rem; color: var(--ink); display: flex; align-items: flex-start; gap: .55rem; }
.door__list li::before { content:""; width: 6px; height: 6px; margin-top: .55em; border-radius: 50%; background: var(--accent); flex: none; }
.door__link { font-size: .95rem; font-weight: 500; color: var(--ink); display: inline-flex; align-items: center; gap: .4rem; }
.door__link svg { width: 17px; height: 17px; transition: transform .2s ease; }
.door:hover .door__link svg { transform: translateX(3px); }
@media (max-width: 880px){ .doors__grid { grid-template-columns: 1fr; } }

/* CZEGO SZUKASZ — rozdrożnik destynacji */
.finder__head { max-width: 56ch; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.finder__head .eyebrow { justify-content: center; }
.finder__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.dest { display: flex; flex-direction: column; gap: .55rem; padding: 1.7rem 1.6rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.dest:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: transparent; }
.dest__icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--bg-soft); margin-bottom: .3rem; }
.dest__icon svg { width: 24px; height: 24px; stroke: var(--ink); fill: none; stroke-width: 1.7; }
.dest h3 { margin: 0; font-size: 1.45rem; display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; }
.dest p { margin: 0; font-size: .96rem; color: var(--ink-soft); flex: 1; line-height: 1.55; }
.dest__more { font-size: .9rem; font-weight: 500; color: var(--ink); display: inline-flex; align-items: center; gap: .35rem; margin-top: .3rem; }
.dest__more svg { width: 16px; height: 16px; transition: transform .2s ease; }
.dest:hover .dest__more svg { transform: translateX(3px); }
.dest--biz { background: linear-gradient(155deg, var(--cobalt) 0%, var(--cobalt-deep) 100%); border-color: transparent; }
.dest--biz h3 { color: var(--bg); }
.dest--biz p { color: rgba(247,243,236,.82); }
.dest--biz .dest__icon { background: rgba(255,255,255,.14); }
.dest--biz .dest__icon svg { stroke: #fff; }
.dest--biz .dest__more { color: var(--lime); }
@media (max-width: 900px){ .finder__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .finder__grid { grid-template-columns: 1fr; } }

/* W LICZBACH */
.stats__head { max-width: 50ch; margin-bottom: clamp(2.2rem,4vw,3.4rem); }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.stat { padding: 2rem 1.7rem; border-radius: var(--radius-lg); background: var(--card); border: 1px solid var(--line); }
.stat__num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.8rem, 5vw, 4rem); line-height: 1; color: var(--ink); }
.stat__num .u { font-size: .5em; color: var(--ink-soft); }
.stat__bar { width: 46px; height: 5px; border-radius: 3px; background: var(--accent); margin: 1rem 0 1.1rem; }
.stat p { font-size: .98rem; color: var(--ink); margin: 0 0 .8rem; }
.stat cite { font-style: normal; font-size: .8rem; color: var(--ink-soft); }
@media (max-width: 880px){ .stats__grid { grid-template-columns: 1fr; } }

/* DLACZEGO TERAZ (market) — granatowy gradient key visual */
.now { position: relative; overflow: hidden; background: linear-gradient(155deg, var(--cobalt) 0%, var(--cobalt-deep) 100%); color: var(--bg); }
.now .wrap { position: relative; z-index: 1; }
.now h2 { color: var(--bg); }
.now .lead { color: rgba(247,243,236,0.78); }
.now__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.now__points { display: flex; flex-direction: column; gap: 1.3rem; }
.now__point { display: flex; gap: 1rem; align-items: flex-start; }
.now__point .k { font-family: var(--font-display); font-weight: 600; font-size: 2rem; line-height: 1; color: var(--lime); flex: none; width: 4.6rem; }
.now__point .t { font-size: .98rem; color: rgba(247,243,236,0.82); }
.now__point .t strong { color: var(--bg); font-weight: 500; }
@media (max-width: 820px){ .now__grid { grid-template-columns: 1fr; } }

/* KSZTAŁTY KEY VISUAL — donut + serce */
.deco { position: absolute; pointer-events: none; z-index: 0; }
.deco svg { display: block; width: 100%; height: 100%; }
.now .deco--ring-lg { width: clamp(120px, 16vw, 210px); aspect-ratio: 1; top: -8%; right: -3%; }
.now .deco--ring-sm { width: 64px; aspect-ratio: 1; bottom: 14%; right: 14%; }
.now .deco--ring-xs { width: 40px; aspect-ratio: 1; bottom: 8%; right: 9%; }
.contact { position: relative; overflow: hidden; background: var(--grad-green-soft); }
.contact .wrap { position: relative; z-index: 1; }
.contact .deco--heart { width: clamp(96px, 12vw, 150px); aspect-ratio: 1; top: -7%; left: -3%; opacity: .9; }
.contact .deco--ring-xs { width: 46px; aspect-ratio: 1; bottom: 12%; left: 4%; }
@media (max-width: 640px){ .deco--ring-sm, .deco--ring-xs { display: none; } }

/* delikatny „oddech" symboli — żeby strona żyła */
@keyframes op-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: no-preference) {
  .deco { animation: op-float 7s ease-in-out infinite; }
  .deco--ring-sm { animation-duration: 5.5s; }
  .deco--ring-xs { animation-duration: 6.2s; animation-delay: .4s; }
  .deco--heart { animation-duration: 8s; }
  .deco--ring-lg { animation-duration: 9s; }
}

/* więcej symboli w sekcjach */
.finder { position: relative; overflow: hidden; }
.finder .wrap { position: relative; z-index: 1; }
.finder .deco--ring-sm { width: 60px; top: 7%; right: 5%; }
.finder .deco--ring-xs { width: 38px; bottom: 9%; left: 4%; }
.stats { position: relative; overflow: hidden; }
.stats .wrap { position: relative; z-index: 1; }
.stats .deco--ring-xs { width: 44px; top: 16%; right: 6%; }
.about { position: relative; overflow: hidden; }
.about .wrap { position: relative; z-index: 1; }
.about .deco--heart { width: clamp(78px,9vw,120px); bottom: 7%; right: 5%; opacity: .92; }

/* MANIFEST — zielone ombre */
.manifest { position: relative; overflow: hidden; background: var(--grad-green-vivid); color: #F7F3EC; text-align: center; }
.manifest .wrap { position: relative; z-index: 1; }
.manifest h2 { color: #fff; font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.02; margin-bottom: .2em; }
.manifest h2 em { font-style: italic; }
.manifest p { color: rgba(255,255,255,.92); max-width: 48ch; margin: 0 auto; font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
.manifest .deco--heart { width: clamp(78px,10vw,128px); top: 14%; left: 6%; }
.manifest .deco--ring-lg { width: clamp(86px,11vw,150px); bottom: 8%; right: 7%; }
.manifest .deco--ring-xs { width: 42px; top: 24%; right: 13%; }

/* MISJA — wideo + akcent */
.mission { position: relative; overflow: hidden; }
.mission__cols { align-items: center; }
.mission__media { position: relative; }
.mission__video {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-2);
}
.mission__video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.mission__media .deco--heart { width: clamp(90px, 12vw, 140px); aspect-ratio: 1; top: -7%; left: -5%; z-index: 0; }
@media (max-width: 760px){ .mission__media { margin-top: 1.5rem; } }

/* PARTNERZY */
.trust { text-align: center; }
.trust__label { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1.6rem; }
.trust__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(1.5rem, 5vw, 3.4rem); }
.trust__row span { font-family: var(--font-display); font-size: clamp(1.3rem,2.4vw,1.9rem); color: var(--ink); opacity: .72; }

/* O NAS */
.about { background: var(--bg-soft); }
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.about__photos { display: flex; gap: 1rem; }
.about__photos figure { margin: 0; flex: 1; }
.about__photos img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-1); }
.about__photos figcaption { font-size: .82rem; color: var(--ink-soft); margin-top: .55rem; text-align: center; }
.about__photos figure:nth-child(2) { margin-top: 2rem; }
.about blockquote { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem,2.6vw,2.1rem); line-height: 1.25; margin: 0 0 1.2rem; color: var(--ink); }
@media (max-width: 820px){ .about__grid { grid-template-columns: 1fr; } }

/* CTA BAND */
.cta-band { text-align: center; }
.cta-band__inner { background: var(--lime); border-radius: var(--radius-lg); padding: clamp(2.6rem,6vw,4.6rem) var(--gutter); max-width: var(--maxw); margin-inline: auto; }
.cta-band h2 { color: var(--lime-ink); margin-bottom: .3em; }
.cta-band p { color: var(--lime-ink); opacity: .85; max-width: 48ch; margin: 0 auto 2rem; }
.cta-band .btn--primary:focus-visible { box-shadow: 0 0 0 3px var(--ink); }

/* FOOTER */
.footer { background: var(--ink); color: rgba(247,243,236,0.72); padding-block: clamp(3rem,6vw,5rem) 2rem; font-size: .92rem; }
.footer a { color: rgba(247,243,236,0.72); transition: color .2s ease; }
.footer a:hover { color: var(--bg); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.6rem; border-bottom: 1px solid rgba(247,243,236,0.14); }
.footer__brand img { height: 26px; margin-bottom: 1rem; }
.footer__brand p { max-width: 30ch; color: rgba(247,243,236,0.6); }
.footer h4 { font-family: var(--font-ui); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,243,236,0.5); margin: 0 0 1rem; font-weight: 600; }
.footer__col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding-top: 1.8rem; font-size: .84rem; color: rgba(247,243,236,0.5); }
.footer__bottom a { text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 820px){ .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer__top { grid-template-columns: 1fr; } }

/* REVEAL ANIMATION */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* LANG SWITCH */
.lang { display: inline-flex; align-items: center; gap: .35rem; font-size: .85rem; color: var(--ink-soft); }
.lang a { color: var(--ink-soft); transition: color .2s ease; }
.lang a:hover { color: var(--ink); }
.lang__active { color: var(--ink); font-weight: 500; }

/* PILL „wkrótce" */
.pill-soon { display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; background: var(--rose-soft); color: var(--rose-ink); padding: .12rem .5rem; border-radius: 999px; margin-left: .3rem; vertical-align: middle; }

/* CITE LINK */
.stat cite a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--line); }
.stat cite a:hover { color: var(--ink); }

/* KONTAKT + FORMULARZ */
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.contact__direct { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.6rem; font-size: 1.02rem; }
.contact__direct a { border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.contact__form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem,3vw,2.4rem); box-shadow: var(--shadow-1); }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field label, .consent { font-size: .9rem; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--font-ui); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .8rem .9rem; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(181,212,62,0.18); }
.field textarea { resize: vertical; }
.consent { display: flex; align-items: flex-start; gap: .6rem; margin: .2rem 0 1.4rem; line-height: 1.45; }
.consent input { margin-top: .2rem; accent-color: var(--accent); }
.consent a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.contact__form .btn { width: 100%; }
.hp { position: absolute; left: -9999px; }
@media (max-width: 820px){ .contact__grid { grid-template-columns: 1fr; } }

/* BANER COOKIES */
.cookie { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 200; display: flex; justify-content: center; }
.cookie[hidden] { display: none; }
.cookie__inner {
  max-width: 760px; width: 100%; background: var(--ink); color: rgba(247,243,236,0.86);
  border-radius: var(--radius); padding: 1.1rem 1.3rem; box-shadow: var(--shadow-2);
  display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
}
.cookie__inner p { margin: 0; font-size: .9rem; flex: 1; min-width: 240px; }
.cookie__inner a { color: var(--lime); text-decoration: underline; text-underline-offset: 2px; }
.cookie__actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie .btn--ghost { color: var(--bg); border-color: rgba(247,243,236,0.4); }
.cookie .btn--ghost:hover { background: rgba(247,243,236,0.12); }

/* PODSTRONY */
.subhero { background: var(--bg-soft); padding-block: clamp(2.2rem,5vw,4rem) clamp(2rem,4vw,3.2rem); }
.subhero__inner { max-width: 64ch; }
.subhero__back { display: inline-flex; align-items: center; gap: .4rem; font-size: .9rem; color: var(--ink-soft); margin-bottom: 1.3rem; }
.subhero__back:hover { color: var(--ink); }
.subhero h1 { font-size: clamp(2.4rem,5vw,3.9rem); margin-bottom: .25em; }
.subhero .lead { max-width: 58ch; }
.panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem,3vw,2.4rem); box-shadow: var(--shadow-1); }
.panel--lime { background: var(--lime); border-color: transparent; box-shadow: none; }
.panel--lime h2, .panel--lime h3 { color: var(--lime-ink); }
.panel--lime p { color: var(--lime-ink); opacity: .88; }
.panel__row { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; justify-content: space-between; }
.checklist { display: flex; flex-direction: column; gap: .65rem; margin: 1.1rem 0; }
.checklist li { display: flex; gap: .6rem; align-items: flex-start; font-size: 1rem; color: var(--ink); }
.checklist li svg { width: 20px; height: 20px; flex: none; margin-top: .18rem; stroke: var(--accent); fill: none; stroke-width: 2; }
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.cards2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.infocard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; display: flex; flex-direction: column; gap: .5rem; }
.infocard__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--bg-soft); display: grid; place-items: center; margin-bottom: .3rem; }
.infocard__icon svg { width: 23px; height: 23px; stroke: var(--ink); fill: none; stroke-width: 1.7; }
.infocard h3 { font-size: 1.3rem; margin: 0; }
.infocard p { font-size: .95rem; color: var(--ink-soft); margin: 0; }
.newsletter { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.2rem; }
.newsletter input { flex: 1; min-width: 200px; font-family: var(--font-ui); font-size: 1rem; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); color: var(--ink); }
.newsletter input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(181,212,62,.18); }
@media (max-width: 820px){ .cards3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .cards3, .cards2 { grid-template-columns: 1fr; } }

/* STRONY PRAWNE */
.legal { max-width: 760px; margin-inline: auto; padding-block: clamp(3rem,7vw,6rem); }
.legal h1 { font-size: clamp(2.2rem,4.5vw,3.2rem); margin-bottom: .6em; }
.legal h2 { font-size: clamp(1.4rem,2.4vw,1.8rem); margin: 2rem 0 .5em; }
.legal p, .legal li { color: var(--ink-soft); font-size: 1rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1em; }
.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.legal .back { display: inline-flex; align-items: center; gap: .4rem; font-size: .92rem; margin-bottom: 2rem; color: var(--ink-soft); }
.legal table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: .92rem; }
.legal th, .legal td { text-align: left; padding: .6rem .7rem; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.legal th { color: var(--ink); font-weight: 500; }

/* MOBILE NAV */
@media (max-width: 1240px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1.2rem;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); padding: 1.5rem var(--gutter) 2rem;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-1);
  }
  .nav.is-open .nav__links a { font-size: 1.1rem; }
}
