/* =====================================================================
   Legend of the North — wariant 0010 (minimalizm, cisza, precyzja)
   Paleta: mgła / grafit / burza (zgaszony łupkowo-niebieski) / rdza (mikroakcent)
   Typo:    Brygada 1918 + Alegreya Sans z lokalnego katalogu Google Fonts.
   Brak beżu, brak butelkowej zieleni, brak presetowej typografii.
   ===================================================================== */

@font-face {
  font-family: "Brygada 1918 Local";
  src: url("../assets/fonts/brygada1918.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Brygada 1918 Local";
  src: url("../assets/fonts/brygada1918-italic.woff2") format("woff2");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Alegreya Sans Local";
  src: url("../assets/fonts/alegreya-sans-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alegreya Sans Local";
  src: url("../assets/fonts/alegreya-sans-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alegreya Sans Local";
  src: url("../assets/fonts/alegreya-sans-bold.woff2") format("woff2");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ---- kolory ---- */
  --mgla:        #f1f2ee;   /* tło, chłodna biel */
  --mgla-2:      #e7e9e4;   /* tło sekcji wtórne */
  --tinta:       #15171a;   /* tekst główny, grafit */
  --tinta-soft:  #2a2d32;
  --kamien:      #5e636b;   /* tekst 2-goplanowy */
  --kamien-2:    #878d95;
  --burza:       #233b49;   /* akcent łupkowo-niebieski (północ) */
  --burza-deep:  #16242e;
  --rdza:        #9c4a2e;   /* mikroakcent (oszczędnie) */
  --rdza-soft:   #d7a48f;
  --linia:       #d7dbd6;   /* hairline */
  --linia-2:     #c4c9c3;
  --biale:       #fbfbf9;

  /* ---- typografia ---- */
  --f-serif: "Brygada 1918 Local", Georgia, "Times New Roman", serif;
  --f-sans:  "Alegreya Sans Local", "Trebuchet MS", Arial, sans-serif;
  --f-label:  var(--f-sans);

  /* ---- rytm ---- */
  --container: 1240px;
  --container-narrow: 880px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-pad-y: clamp(72px, 11vw, 150px);
  --radius: 2px;

  /* ---- cień ---- */
  --shadow-soft: 0 18px 60px -28px rgba(22, 36, 46, 0.45);
}

/* ============ RESET ============ */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-serif);
  background: var(--mgla);
  color: var(--tinta);
  line-height: 1.6;
  font-weight: 400;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }

::selection { background: var(--burza); color: var(--mgla); }

:focus-visible {
  outline: 2px solid var(--rdza-soft);
  outline-offset: 4px;
}

[id] { scroll-margin-top: 96px; }

.skip-link {
  position: fixed;
  left: var(--gutter);
  top: 14px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--mgla);
  color: var(--tinta);
  border: 1px solid var(--burza);
  padding: 10px 14px;
  font-family: var(--f-label);
  font-size: 14px;
  transition: transform .2s ease;
}
.skip-link:focus-visible { transform: translateY(0); }

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }
.container--split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.container--split-rev > :first-child { order: 2; }
.container--split-rev > :last-child  { order: 1; }

.section { padding-block: var(--section-pad-y); position: relative; }

/* ---- numer sekcji / etykieta ---- */
.section__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-label);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--burza);
  margin-bottom: 34px;
}
.section__label span:first-child {
  font-weight: 600;
  color: var(--rdza);
}
.section__label-rule {
  width: 46px;
  height: 1px;
  background: var(--linia-2);
  display: inline-block;
}
.section__label span:last-child { color: var(--kamien); }

/* ---- display ---- */
.display {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.4vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--tinta);
  margin-bottom: 40px;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--burza);
}
.display--sm {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  margin-bottom: 30px;
}

.lead {
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.55;
  color: var(--tinta-soft);
  font-weight: 400;
}
.section p { color: var(--tinta-soft); max-width: 52ch; }
.section p + p { margin-top: 1.1em; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-label);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1px solid transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  cursor: pointer;
}
.btn--solid { background: var(--burza); color: var(--mgla); }
.btn--solid:hover { background: var(--burza-deep); transform: translateY(-2px); }
.btn--ghost { border-color: var(--linia-2); color: var(--tinta); }
.btn--ghost:hover { border-color: var(--tinta); background: var(--tinta); color: var(--mgla); }
.btn--block { display: flex; width: 100%; margin-top: 26px; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .35s ease, border-color .35s ease, padding .35s ease;
  padding-block: 18px;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav.is-scrolled {
  background: rgba(241, 242, 238, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--linia);
  padding-block: 12px;
}

.nav__brand { display: flex; align-items: center; gap: 12px; color: var(--mgla); transition: color .35s ease; }
.nav.is-scrolled .nav__brand { color: var(--tinta); }
.nav__mark {
  position: relative;
  display: inline-flex;
  width: 57px;
  height: 57px;
  flex: 0 0 57px;
}
.nav__symbol {
  position: absolute;
  inset: 0;
  display: block;
  width: 57px;
  height: 57px;
  transition: opacity .35s ease;
}
.nav__symbol--dark { opacity: 0; }
.nav.is-scrolled .nav__symbol--light { opacity: 0; }
.nav.is-scrolled .nav__symbol--dark { opacity: 1; }
.nav__name { display: flex; flex-direction: column; line-height: 1.1; }
.nav__name-l1 { font-family: var(--f-serif); font-size: 18px; font-weight: 500; letter-spacing: 0; }
.nav__name-l2 { font-family: var(--f-label); font-size: 11px; letter-spacing: 0; text-transform: uppercase; color: rgba(241,242,238,0.96); margin-top: 2px; }
.nav.is-scrolled .nav__name-l2 { color: var(--kamien); }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-family: var(--f-label);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(241,242,238,0.9);
  transition: color .25s ease;
  position: relative;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .3s ease;
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav.is-scrolled .nav__links a:not(.nav__cta) { color: var(--tinta-soft); }
.nav.is-scrolled .nav__links a:not(.nav__cta):hover { color: var(--burza); }

.nav__cta {
  border: 1px solid rgba(241,242,238,0.5);
  padding: 10px 20px;
  color: var(--mgla) !important;
}
.nav__cta:hover { background: var(--mgla); color: var(--burza) !important; border-color: var(--mgla); }
.nav.is-scrolled .nav__cta { border-color: var(--burza); color: var(--burza) !important; }
.nav.is-scrolled .nav__cta:hover { background: var(--burza); color: var(--mgla) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--mgla);
  transition: transform .3s ease, opacity .3s ease, background .35s ease;
}
.nav.is-scrolled .nav__burger span { background: var(--tinta); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* ---- mobile menu ---- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--burza-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 26px; text-align: center; }
.mobile-menu a {
  font-family: var(--f-serif);
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  color: var(--mgla);
  font-weight: 400;
  letter-spacing: 0;
}
.mobile-menu a:hover { color: var(--kamien-2); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-block: clamp(120px, 18vh, 200px) clamp(60px, 9vh, 110px);
  padding-inline: var(--gutter);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__picture,
.hero__picture img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,24,30,0.62) 0%, rgba(15,24,30,0.30) 42%, rgba(15,24,30,0.12) 70%, rgba(15,24,30,0.32) 100%),
    linear-gradient(0deg, rgba(15,24,30,0.55) 0%, rgba(15,24,30,0) 38%);
}

.hero__content { max-width: 720px; }
.hero__place {
  font-family: var(--f-label);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(241,242,238,0.88);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__place .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rdza);
  box-shadow: 0 0 0 4px rgba(156,74,46,0.25);
}

.hero__title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(3.4rem, 10vw, 8.2rem);
  line-height: 1;
  letter-spacing: 0;
  color: var(--mgla);
}
.hero__title-l1 { display: block; }
.hero__title-l2 {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: rgba(241,242,238,0.92);
  margin-top: 0.02em;
}

.hero__tag {
  font-family: var(--f-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(241,242,238,0.85);
  margin-top: 22px;
  letter-spacing: 0;
}

.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__actions .btn--ghost { color: var(--mgla); border-color: rgba(241,242,238,0.45); }
.hero__actions .btn--ghost:hover { background: var(--mgla); color: var(--burza); border-color: var(--mgla); }

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(28px, 6vh, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(241,242,238,0.78);
}
.hero__scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(180deg, rgba(241,242,238,0.7), rgba(241,242,238,0));
  position: relative;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 18px;
  background: var(--mgla);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(38px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============ MANIFEST ============ */
.section--manifest { background: var(--mgla); }
.section--manifest .display { max-width: 16ch; }
.manifest__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  margin-top: 18px;
  max-width: 1000px;
}
.manifest__grid .lead { color: var(--tinta-soft); }

/* ============ KRAJOBRAZ BAND ============ */
.band {
  position: relative;
  height: clamp(360px, 56vw, 640px);
  overflow: hidden;
}
.band__figure { width: 100%; height: 100%; position: relative; }
.band__figure > picture,
.rasa__figure > picture,
.dom__figure > picture,
.macro__item > picture,
.wzrost__figure > picture {
  display: block;
  width: 100%;
  height: 100%;
}
.band__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.band__caption {
  position: absolute;
  left: var(--gutter);
  bottom: clamp(24px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 30ch;
}
.band__caption-tag {
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--rdza);
}
.band__caption-text {
  font-family: var(--f-serif);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--mgla);
  text-shadow: 0 2px 30px rgba(15,24,30,0.6);
}
.band__figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,24,30,0.55) 0%, rgba(15,24,30,0) 45%);
}

/* ============ RASA ============ */
.section--rasa { background: var(--mgla-2); }
.rasa__note {
  font-style: italic;
  color: var(--kamien) !important;
  margin-top: 26px !important;
  font-size: 1.02rem;
}

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--linia-2);
}
.stats__item {
  padding: 22px 0;
  border-bottom: 1px solid var(--linia-2);
}
.stats__item:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--linia-2); }
.stats__item:nth-child(even) { padding-left: 24px; }
.stats dt {
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--kamien);
  margin-bottom: 8px;
}
.stats dd { display: flex; align-items: baseline; gap: 8px; }
.stats__num {
  font-family: var(--f-serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 500;
  color: var(--tinta);
  letter-spacing: 0;
}
.stats__unit {
  font-family: var(--f-label);
  font-size: 13px;
  color: var(--kamien-2);
  letter-spacing: 0;
}

/* rasa portrait (overlap) */
.rasa__visual { position: relative; }
.rasa__figure {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.rasa__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: contrast(1.02) saturate(0.95);
}
.rasa__cap {
  position: absolute;
  left: -1px;
  bottom: 22px;
  background: var(--mgla);
  padding: 14px 22px 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 2px solid var(--rdza);
}
.rasa__cap-name {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--tinta);
}
.rasa__cap-role {
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--kamien);
}

/* ============ DOM ============ */
.section--dom { background: var(--mgla); }
.dom__figure {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.dom__img { width: 100%; height: 100%; object-fit: cover; }

.ticks { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.ticks li {
  font-family: var(--f-label);
  font-size: 13px;
  letter-spacing: 0;
  color: var(--tinta-soft);
  padding-left: 28px;
  position: relative;
}
.ticks li::before {
  content: "+";
  position: absolute;
  left: 0; top: -1px;
  color: var(--burza);
  font-weight: 600;
}

/* ============ PSY ============ */
.section--psy { background: var(--burza-deep); color: var(--mgla); }
.section--psy .section__label span:last-child,
.section--psy .section__label { color: rgba(241,242,238,0.7); }
.section--psy .section__label-rule { background: rgba(241,242,238,0.25); }
.section--psy .display { color: var(--mgla); }
.section--psy .display em { color: #b9cdd6; }

.dogs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(241,242,238,0.14);
  border: 1px solid rgba(241,242,238,0.14);
  margin-top: 14px;
}
.dog {
  background: var(--burza-deep);
  padding: clamp(26px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .3s ease;
}
.dog:hover { background: #1d3340; }
.dog__head { display: flex; align-items: baseline; gap: 14px; }
.dog__no {
  font-family: var(--f-label);
  font-size: 13px;
  letter-spacing: 0;
  color: var(--rdza);
}
.dog__name {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 400;
  color: var(--mgla);
  letter-spacing: 0;
}
.dog--accent .dog__name { color: #d7e6eb; }
.section--psy .dog__role {
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(241,242,238,0.74);
}
.section--psy .dog__desc {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(241,242,238,0.86);
}

/* ============ ZDROWIE ============ */
.section--zdrowie { background: var(--mgla); }
.zdrowie__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: end;
  margin-bottom: 56px;
}
.zdrowie__head .display { margin-bottom: 0; }
.zdrowie__lead { color: var(--kamien) !important; }

/* macro stripe */
.macro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 60px;
  border: 1px solid var(--linia);
  background: var(--mgla-2);
  overflow: hidden;
}
.macro__item {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.macro__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.macro:hover .macro__img { transform: scale(1.04); }
.macro__item figcaption {
  position: absolute;
  margin: 0;
}
.macro__text {
  padding: clamp(30px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.macro__quote {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  color: var(--tinta);
  letter-spacing: 0;
}
.macro__sub {
  font-family: var(--f-label);
  font-size: 13px;
  line-height: 1.6;
  color: var(--kamien);
  max-width: 36ch;
}

/* health list */
.health {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--linia);
  border: 1px solid var(--linia);
}
.health__item {
  background: var(--mgla);
  padding: clamp(26px, 2.6vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .3s ease;
}
.health__item:hover { background: var(--mgla-2); }
.health__tag {
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--rdza);
}
.health__title {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--tinta);
  letter-spacing: 0;
}
.health__desc {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--tinta-soft);
}
.health__item--proof { background: var(--burza); }
.health__item--proof .health__tag { color: #d7a48f; }
.health__item--proof .health__title { color: var(--mgla); }
.health__item--proof .health__desc { color: rgba(241,242,238,0.82); }
.health__item--proof:hover { background: var(--burza-deep); }

/* ============ WZROST ============ */
.section--wzrost { background: var(--mgla-2); }
.wzrost__figure {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.wzrost__img { width: 100%; height: 100%; object-fit: cover; }
.steps { margin-top: 34px; display: flex; flex-direction: column; gap: 0; }
.steps li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--linia-2);
  font-family: var(--f-serif);
  font-size: 1.1rem;
  color: var(--tinta-soft);
}
.steps__no {
  font-family: var(--f-label);
  font-size: 13px;
  color: var(--burza);
  width: 20px;
}

/* ============ ZASADA ============ */
.section--zasada {
  background: var(--burza-deep);
  color: var(--mgla);
  text-align: left;
}
.section--zasada .section__label span:last-child { color: rgba(241,242,238,0.7); }
.section--zasada .section__label-rule { background: rgba(241,242,238,0.25); }
.bigquote {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4.4vw, 3.2rem);
  line-height: 1.22;
  letter-spacing: 0;
  color: var(--mgla);
  margin-bottom: 48px;
}
.bigquote p { color: var(--mgla); max-width: none; }
.bigquote p + p { margin-top: 0.4em; }
.bigquote em { font-style: italic; color: #b9cdd6; }
.bigquote__no { color: var(--rdza); font-style: italic; }
.zasada__note { border-top: 1px solid rgba(241,242,238,0.18); padding-top: 30px; }
.zasada__note p {
  color: rgba(241,242,238,0.75) !important;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ============ KORZEŃ ============ */
.section--korzen { background: var(--mgla); }
.etym { display: flex; flex-direction: column; gap: 0; }
.etym li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--linia-2);
}
.etym__name {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--burza);
  font-style: italic;
}
.etym__meaning {
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: 0;
  color: var(--kamien);
  text-align: right;
}

/* ============ KONTAKT ============ */
.section--kontakt { background: var(--mgla-2); }
.kontakt__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.kontakt__closing {
  margin-top: 26px !important;
  color: var(--tinta-soft) !important;
  font-size: 1.08rem;
}
.kontakt__invite {
  margin-top: 18px !important;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--burza) !important;
}

.kontakt__card {
  background: var(--burza-deep);
  color: var(--mgla);
  padding: clamp(30px, 4vw, 48px);
}
.kontakt__card p { max-width: none; }
.kontakt__card .kontakt__card-name {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  line-height: 1.4;
  color: rgba(241,242,238,0.94);
}
.kontakt__card-name strong { color: var(--mgla); font-weight: 500; }
.kontakt__card .kontakt__card-sub {
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--rdza-soft);
  margin-top: 8px;
}
.kontakt__data { margin-top: 24px; display: flex; flex-direction: column; gap: 18px; }
.kontakt__data div { display: flex; flex-direction: column; gap: 4px; }
.kontakt__data dt {
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(241,242,238,0.66);
}
.kontakt__data dd { font-size: 1rem; color: var(--mgla); }
.kontakt__data a { transition: color .2s ease; border-bottom: 1px solid rgba(241,242,238,0.25); }
.kontakt__data a:hover { color: var(--rdza-soft); border-bottom-color: var(--rdza-soft); }
.kontakt__card .btn--solid { background: var(--mgla); color: var(--burza-deep); }
.kontakt__card .btn--solid:hover { background: var(--rdza); color: var(--mgla); }

/* ============ FOOTER ============ */
.footer {
  background: var(--tinta);
  color: var(--mgla);
  padding-top: 56px;
  padding-bottom: 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(241,242,238,0.14);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__symbol {
  width: 57px;
  height: 57px;
  flex: 0 0 57px;
}
.footer__brand-copy { display: flex; flex-direction: column; gap: 4px; }
.footer__mark {
  display: block;
  font-family: var(--f-serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0;
}
.footer__sub {
  display: block;
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--kamien-2);
}
.footer__nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
  font-family: var(--f-label);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(241,242,238,0.72);
}
.footer__nav a {
  transition: color .2s ease;
}
.footer__nav a:hover {
  color: var(--rdza-soft);
}
.footer__notice {
  max-width: 940px;
  padding-top: 20px;
  font-family: var(--f-label);
  font-size: 12px;
  line-height: 1.55;
  color: rgba(241,242,238,0.62);
}
.footer__notice strong {
  color: rgba(241,242,238,0.9);
  font-weight: 600;
}
.footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: 0;
  color: rgba(241,242,238,0.66);
}
.footer__sig {
  color: rgba(241,242,238,0.68);
  font-family: var(--f-label);
  font-size: 12px;
  font-style: normal;
}
.footer__sig a {
  border-bottom: 1px solid rgba(241,242,238,0.22);
  transition: color .2s ease, border-color .2s ease;
}
.footer__sig a:hover {
  color: var(--rdza-soft);
  border-bottom-color: var(--rdza-soft);
}

/* ============ REVEAL ANIM ============ */
.reveal {
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ============ PLACEHOLDER (gdy brak obrazu) ============ */
img:not([src]),
img[src=""] { background: var(--mgla-2); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .container--split,
  .container--split-rev { grid-template-columns: 1fr; gap: 48px; }
  .container--split-rev > :first-child { order: 0; }
  .container--split-rev > :last-child  { order: 0; }

  .manifest__grid { grid-template-columns: 1fr; }
  .zdrowie__head { grid-template-columns: 1fr; align-items: start; }
  .macro { grid-template-columns: 1fr; }
  .kontakt__grid { grid-template-columns: 1fr; }
  .dogs { grid-template-columns: repeat(2, 1fr); }
  .health { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 22px; align-items: start; }
  .footer__nav { justify-content: flex-start; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

@media (max-width: 620px) {
  :root { --gutter: 22px; }
  .dogs { grid-template-columns: 1fr; }
  .health { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stats__item:nth-child(odd) { border-right: none; padding-right: 0; }
  .stats__item:nth-child(even) { padding-left: 0; }
  .hero__scroll { display: none; }
  .hero__img {
    object-position: center;
    transform: none;
  }
  .rasa__cap { bottom: 16px; }
  .footer__base { justify-content: flex-start; }
}

/* ============ REDUKCJA RUCHU ============ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
