/* =========================================================================
   PERFECT MIND — Hodowla Border Collie
   Paleta: monochrom (bogata czerń + chłodna kość + skala szarości)
   Akcent: highland green (głęboka leśna zieleń) — używana oszczędnie
   Typografia: Cormorant (display) + Inter (UI/treść)
   ========================================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 104px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Zmienne ---------- */
:root {
  --ink:        #111210;   /* bogata czerń z nutą chłodu */
  --ink-2:      #1a1c19;
  --ink-3:      #242723;
  --paper:      #f3f4f1;   /* chłodna kość (NIE beż) */
  --paper-2:    #ffffff;
  --mist:       #e9ebe7;
  --smoke:      #d6d9d2;
  --stone:      #6c716a;   /* szarozielona średnia */
  --stone-2:    #999e93;
  --line:       rgba(17, 18, 16, 0.13);
  --line-soft:  rgba(17, 18, 16, 0.07);
  --line-dark:  rgba(243, 244, 241, 0.16);
  --line-dark-soft: rgba(243, 244, 241, 0.08);

  --moss:       #3a5a40;   /* highland green */
  --moss-deep:  #2b4233;
  --sage:       #87a98e;   /* jasny akcent na ciemnym */

  --font-display: "Cormorant", "Georgia", "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(1.15rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);
  --radius: 3px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Baza ---------- */
html, body { overflow-x: hidden; }   /* twarda bariera przeciw ucieczce w prawo */
body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
body.is-locked { overflow: hidden; }  /* blokada scrolla pod otwartym menu */

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform .25s var(--ease);
}
.skip-link:focus-visible { transform: translateY(0); }

/* ---------- Typografia ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
  font-optical-sizing: auto;
}
/* Cormorant domyślnie ma cyfry nautyczne (oldstyle) — dla kodów i dużych liczb
   wymuszamy cyfry równej wysokości (lining), żeby np. „MDR1" nie miało zwisającej jedynki */
h1, h2, h3, h4, .display, .h-section, .trust__item .n, .test__code, .step::before, .dog__name {
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1, "onum" 0;
}
.display {
  font-size: clamp(2.9rem, 1.7rem + 5.4vw, 6.3rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.005em;
}
.h-section {
  font-size: clamp(2.2rem, 1.5rem + 3.2vw, 4rem);
  font-weight: 600;
  line-height: 1.06;
}
.lead {
  font-size: clamp(1.08rem, 1rem + 0.5vw, 1.32rem);
  line-height: 1.6;
  color: var(--stone);
  font-weight: 400;
}
p + p { margin-top: 1em; }
em, .italic { font-style: italic; }

/* nadtytuł / eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-sans);
  font-size: clamp(0.66rem, 0.62rem + 0.15vw, 0.74rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--moss);
}
.eyebrow::before {
  content: "";
  width: clamp(20px, 4vw, 38px);
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow.center { justify-content: center; }
.on-dark .eyebrow { color: var(--sage); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); position: relative; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--dark .lead { color: rgba(243,244,241,0.66); }
.section--tight { padding-block: clamp(3rem, 7vw, 5.5rem); }

.section-head { max-width: 46rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.3rem; }
.section-head .lead { margin-top: 1.4rem; }

/* ---------- Przyciski ---------- */
.btn {
  --bg: var(--ink);
  --fg: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  padding: 1.02em 1.7em;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  border: 1px solid var(--bg);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
  will-change: transform;
}
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover { background: var(--moss); border-color: var(--moss); color: #fff; }
.btn:hover .arrow { transform: translateX(5px); }
.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.on-dark .btn { --bg: var(--paper); --fg: var(--ink); }
.on-dark .btn:hover { background: var(--sage); border-color: var(--sage); color: var(--ink); }
.on-dark .btn--ghost { --bg: transparent; --fg: var(--paper); border-color: var(--line-dark); }
.on-dark .btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 3px;
}

/* tekstowy link ze strzałką */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  padding-bottom: 0.35em;
  border-bottom: 1px solid var(--line);
  transition: border-color .4s var(--ease), gap .4s var(--ease);
}
.link-arrow:hover { border-color: var(--moss); gap: 0.95em; color: var(--moss); }
.on-dark .link-arrow { border-color: var(--line-dark); }
.on-dark .link-arrow:hover { color: var(--sage); border-color: var(--sage); }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.site-header {
  position: sticky;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-top: clamp(0.52rem, 1.25vw, 0.82rem);
  padding-bottom: clamp(0.62rem, 1.35vw, 0.92rem);
  background: rgba(243, 244, 241, 0.95);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 var(--line-soft);
  transition: box-shadow .45s var(--ease), padding .45s var(--ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--line-soft), 0 16px 38px -34px rgba(17,18,16,.65);
}

/* logo */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--ink); z-index: 2; flex: 0 0 auto; }
.brand__logo {
  width: clamp(176px, 55vw, 255px);
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: left center;
}
.brand__logo--footer {
  width: min(100%, 335px);
  max-height: none;
}
.brand__crest { width: clamp(34px, 6vw, 42px); height: auto; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.05rem + 0.8vw, 1.62rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand__sub {
  font-family: var(--font-sans);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.35em;
}
/* header na hero (przed scrollem) = jasny tekst, bo hero jasne? Hero jest jasne -> ink. */

/* nawigacja desktop */
.nav { display: flex; align-items: center; gap: clamp(1.3rem, 2.4vw, 2.4rem); }
.nav__list { display: flex; align-items: center; gap: clamp(0.8rem, 1.55vw, 1.55rem); }
.nav__link {
  position: relative;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding-block: 0.4rem;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--moss);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__cta { margin-left: 0.4rem; }

/* hamburger */
.nav-toggle {
  display: none;
  position: relative;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  z-index: 130;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav-toggle__bars { position: absolute; inset: 0; }
.nav-toggle__bars span {
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 1.6px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .4s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}
.nav-toggle__bars span:nth-child(1) { transform: translate(-50%, -6px); }
.nav-toggle__bars span:nth-child(3) { transform: translate(-50%, 6px); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  padding-top: clamp(3.8rem, 8vw, 6.2rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.hero__grid {
  max-width: 1380px;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: center;
}
.hero__content { max-width: 33rem; }
.hero .eyebrow { margin-bottom: 1.6rem; }
.hero__title { margin-bottom: 1.6rem; }
.hero__title .accent { font-style: italic; color: var(--moss); }
.hero__lead { max-width: 30rem; margin-bottom: 2.3rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero__figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--mist);
}
.hero__figure picture { display: block; width: 100%; height: 100%; }
.hero__figure img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hero__figure::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px var(--line);
  border-radius: var(--radius);
  pointer-events: none;
}
/* znaczek na zdjęciu hero */
.hero__badge {
  position: absolute;
  left: clamp(0.9rem, 2vw, 1.4rem);
  bottom: clamp(0.9rem, 2vw, 1.4rem);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1rem 0.6rem 0.7rem;
  background: rgba(17,18,16,0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  color: var(--paper);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 3px rgba(135,169,142,0.25); flex:none; }
.hero__badge .t1 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em; }
.hero__badge .t2 { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(243,244,241,0.6); }

/* pasek zaufania pod hero */
.trust {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(1.6rem, 3vw, 2.2rem);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
}
.trust__item .n {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.3rem + 1.8vw, 2.9rem);
  font-weight: 600;
  line-height: 1;
  display: block;
  letter-spacing: 0;
}
.trust__item .n .unit { font-size: 0.5em; color: var(--moss); }
.trust__item .l {
  margin-top: 0.55rem;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--stone);
  line-height: 1.4;
}

/* =========================================================================
   O NAS (split)
   ========================================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split--reverse .split__media { order: -1; }
.split__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5 / 6;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media.media--wide { aspect-ratio: 6 / 5; }
.split__media::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px var(--line-dark);
  pointer-events: none;
}
.section:not(.section--dark) .split__media::after { box-shadow: inset 0 0 0 1px var(--line); }
.split__body .eyebrow { margin-bottom: 1.3rem; }
.split__body .h-section { margin-bottom: 1.4rem; }
.split__body .lead { margin-bottom: 1.4rem; }
.split__body .prose { color: inherit; }
.section--dark .split__body .prose { color: rgba(243,244,241,0.74); }
.split__body .btn, .split__body .link-arrow { margin-top: 1.4rem; }

/* sygnatura / motto wewnątrz O nas */
.signature {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--sage);
}

/* =========================================================================
   WARTOŚCI
   ========================================================================= */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.value {
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.section--dark .value { border-color: var(--line-dark); }
.value__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem; height: 2.7rem;
  color: var(--moss);
  margin-bottom: 1.3rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1;
}
.section--dark .value__icon { color: var(--sage); }
.value__icon svg { display: none; }
.value:nth-child(1) .value__icon::before { content: "01"; }
.value:nth-child(2) .value__icon::before { content: "02"; }
.value:nth-child(3) .value__icon::before { content: "03"; }
.value:nth-child(4) .value__icon::before { content: "04"; }
.value h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.value p { font-size: 0.92rem; color: var(--stone); line-height: 1.6; }
.section--dark .value p { color: rgba(243,244,241,0.6); }

/* =========================================================================
   NASZE SUKI (profile)
   ========================================================================= */
.dogs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 3.8rem);
}
.dog {
  display: flex;
  flex-direction: column;
}
.dog__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink-2);
  margin-bottom: 1.6rem;
}
.dog__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 44%; transition: transform 1.1s var(--ease); }
.dog:hover .dog__media img { transform: scale(1.04); }
.dog__media::after { content:""; position:absolute; inset:0; box-shadow: inset 0 0 0 1px var(--line-dark); pointer-events:none; }
.dog__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.4rem 0.85rem;
  background: rgba(17,18,16,0.66);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: var(--paper);
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: var(--radius);
}
.dog__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.dog__name { font-size: clamp(2rem, 1.5rem + 1.2vw, 2.7rem); font-weight: 600; }
.dog__role { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--moss); }
.section--dark .dog__role { color: var(--sage); }
.dog__desc { color: var(--stone); font-size: 0.96rem; }
.section--dark .dog__desc { color: rgba(243,244,241,0.66); }
.dog__meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }
.chip {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--stone);
}
.section--dark .chip { border-color: var(--line-dark); color: rgba(243,244,241,0.7); }

/* =========================================================================
   PASTERSTWO (full-bleed obraz + tekst)
   ========================================================================= */
#pasterstwo {
  padding-block: 0;
  background: var(--ink);
  color: var(--paper);
}
#pasterstwo > .container {
  max-width: none;
  padding-inline: 0;
}
.feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: stretch;
  background: var(--ink);
  color: var(--paper);
  border-radius: 0;
  overflow: hidden;
  min-height: clamp(560px, 72vh, 820px);
}
.feature__media {
  position: relative;
  min-height: 0;
  min-width: 0;
}
.feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 35% 58%; }
.feature__body {
  align-self: center;
  width: min(100%, 42rem);
  padding: clamp(3rem, 7vw, 6.5rem);
  min-width: 0;
}
.feature__body .eyebrow { margin-bottom: 1.3rem; color: var(--sage); }
.feature__body .h-section {
  margin-bottom: 1.4rem;
  font-size: clamp(2.1rem, 1.45rem + 2.5vw, 3.45rem);
}
.feature__body .prose { color: rgba(243,244,241,0.74); }
.feature__quote {
  margin-top: 1.8rem;
  padding-left: 1.3rem;
  border-left: 2px solid var(--moss);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--paper);
}

/* =========================================================================
   SZCZENIĘTA
   ========================================================================= */
.litter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.litter__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 7/6; }
.litter__media img { width:100%; height:100%; object-fit: cover; object-position: 72% 50%; }
.litter__media::after { content:""; position:absolute; inset:0; box-shadow: inset 0 0 0 1px var(--line); pointer-events:none; }
.litter__status {
  position: absolute; top: 1rem; left: 1rem;
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.5rem 1rem;
  background: rgba(243,244,241,0.92);
  border-radius: 100px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--moss);
}
.litter__status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--moss); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(58,90,64,0.5);} 50%{ box-shadow: 0 0 0 6px rgba(58,90,64,0);} }
@media (prefers-reduced-motion: reduce){ .litter__status .dot { animation: none; } }

.litter__list { margin: 1.8rem 0; display: grid; gap: 0; }
.litter__list li {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}
.litter__list li:last-child { border-bottom: 1px solid var(--line); }
.litter__list .ic { color: var(--moss); flex: none; margin-top: 0.15rem; }

/* =========================================================================
   ZDROWIE (grid badań)
   ========================================================================= */
.tests {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 3.8rem);
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.test {
  background: var(--ink);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  transition: background .4s var(--ease);
}
.test:hover { background: var(--ink-2); }
.test__code {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.test__name { font-size: 1.02rem; font-weight: 500; margin-bottom: 0.4rem; color: var(--paper); }
.test__desc { font-size: 0.85rem; color: rgba(243,244,241,0.58); line-height: 1.5; }

.health-note {
  margin-top: clamp(1.8rem, 3vw, 2.4rem);
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: rgba(243,244,241,0.74);
  font-size: 0.92rem;
}
.health-note .ic { color: var(--sage); flex: none; }

/* =========================================================================
   PROCES (timeline)
   ========================================================================= */
.steps {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 5vw, 4rem);
  counter-reset: step;
}
.step {
  position: relative;
  padding-left: 4.2rem;
  padding-top: 0.2rem;
  min-height: 3rem;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--moss);
  width: 3rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}
.section--dark .step::before { color: var(--sage); border-color: var(--line-dark); }
.step h3 { font-size: 1.3rem; font-weight: 420; margin-bottom: 0.45rem; }
.step p { font-size: 0.92rem; color: var(--stone); line-height: 1.6; }
.section--dark .step p { color: rgba(243,244,241,0.62); }

/* =========================================================================
   GALERIA
   ========================================================================= */
.gallery-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: clamp(0.6rem, 1.2vw, 0.9rem);
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--mist);
  aspect-ratio: 4 / 3;
}
.gallery__item:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
}
.gallery__item::before { content: ""; display: none; }
.gallery__item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter .6s var(--ease);
}
.gallery__item.tall,
.gallery__item.wide {
  grid-row: auto;
  grid-column: auto;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,18,16,0.35), transparent 55%);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__plus {
  position: absolute;
  right: 0.9rem; bottom: 0.9rem;
  width: 34px; height: 34px;
  border: 1px solid rgba(243,244,241,0.7);
  border-radius: 50%;
  color: var(--paper);
  display: grid; place-items: center;
  opacity: 0; transform: scale(0.8);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  z-index: 2;
}
.gallery__item:hover .gallery__plus { opacity: 1; transform: scale(1); }

.gallery__item img[src$="gallery-eyes.webp"] { object-position: 50% 55%; }
.gallery__item img[src$="herding.webp"] { object-position: 35% 58%; }
.gallery__item img[src$="gallery-run.webp"] { object-position: 68% 50%; }
.gallery__item img[src$="gallery-pups.webp"] { object-position: 50% 58%; }
.gallery__item img[src$="nela.webp"] { object-position: 50% 44%; }
.gallery__item img[src$="aura.webp"] { object-position: 56% 44%; }
.gallery__item img[src$="gallery-ridge.webp"] { object-position: 38% 52%; }

/* =========================================================================
   CYTAT / MOTTO
   ========================================================================= */
.motto { text-align: center; }
.motto__mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--moss);
  opacity: 0.5;
  margin-bottom: 1rem;
}
.section--dark .motto__mark { color: var(--sage); }
.motto blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.9rem, 1.2rem + 2.8vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: 0;
  max-width: 20ch;
  margin-inline: auto;
}
.motto cite {
  display: block;
  margin-top: 1.8rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
}
.section--dark .motto cite { color: var(--stone-2); }

/* =========================================================================
   KONTAKT
   ========================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.contact__title { margin-bottom: 1.4rem; }
.contact__cards { display: grid; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; }
.contact__card {
  background: var(--ink);
  padding: 1.4rem 1.5rem;
  display: flex; align-items: center; gap: 1.1rem;
  transition: background .4s var(--ease);
}
.contact__card:hover { background: var(--ink-2); }
.contact__card .ic { width: 34px; height: 34px; color: var(--sage); flex: none; }
.contact__card .k { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(243,244,241,0.5); margin-bottom: 0.25rem; }
.contact__card .v { font-size: 1.04rem; font-weight: 500; }
.contact__card .v:hover { color: var(--sage); }
.contact__socials { display: flex; gap: 0.7rem; margin-top: 1.6rem; }
.social {
  width: 46px; height: 46px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: var(--paper);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.social:hover { background: var(--sage); color: var(--ink); border-color: var(--sage); transform: translateY(-3px); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  background: linear-gradient(180deg, var(--mist), var(--paper));
  color: var(--stone);
  padding-block: clamp(3rem, 5vw, 4rem) 2rem;
  border-top: 1px solid var(--line);
}
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); padding-bottom: 2.4rem; border-bottom: 1px solid var(--line); }
.footer__brand .brand { color: var(--ink); margin-bottom: 1.2rem; }
.footer__brand .brand__sub { color: var(--stone); }
.footer__tagline { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--moss); max-width: 24rem; line-height: 1.4; }
.footer__col h4 { font-family: var(--font-sans); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); margin-bottom: 1.2rem; }
.footer__col ul { display: grid; gap: 0.7rem; }
.footer__col a { font-size: 0.9rem; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--moss); }
.footer__notice {
  max-width: 58rem;
  padding-top: 1.15rem;
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(108, 113, 106, 0.82);
}
.footer__notice strong { color: var(--ink); font-weight: 600; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.2rem; font-size: 0.76rem; }
.footer__bottom a { color: var(--ink); font-weight: 700; }
.footer__bottom a:hover { color: var(--moss); }

/* =========================================================================
   SCROLL-REVEAL  (FAILSAFE: bez JS treść jest w pełni widoczna)
   tylko gdy <html class="js"> elementy startują ukryte
   ========================================================================= */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal--d1 { transition-delay: .08s; }
.js .reveal--d2 { transition-delay: .16s; }
.js .reveal--d3 { transition-delay: .24s; }
.js .reveal--d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* =========================================================================
   LIGHTBOX
   ========================================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  display: none;
  align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(8,9,7,0.94);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .4s var(--ease);
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox img { max-width: 100%; max-height: 84vh; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(243,244,241,0.1);
  border: 1px solid rgba(243,244,241,0.25);
  color: var(--paper);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .3s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(243,244,241,0.22); }
.lightbox__close { top: clamp(1rem,3vw,2rem); right: clamp(1rem,3vw,2rem); }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: clamp(0.6rem,2vw,2rem); }
.lightbox__nav--next { right: clamp(0.6rem,2vw,2rem); }
.lightbox__count { position: absolute; bottom: clamp(1rem,3vw,2rem); left: 50%; transform: translateX(-50%); color: rgba(243,244,241,0.7); font-size: 0.8rem; letter-spacing: 0.1em; }

/* =========================================================================
   RESPONSYWNOŚĆ
   ========================================================================= */
@media (min-width: 861px) {
  html { scroll-padding-top: 142px; }
  .site-header {
    padding-top: clamp(0.38rem, 0.8vw, 0.62rem);
    padding-bottom: clamp(0.48rem, 0.9vw, 0.72rem);
  }
  .brand__logo { width: clamp(305px, 34vw, 405px); }
  .nav { gap: clamp(0.9rem, 1.4vw, 1.5rem); }
  .nav__list { gap: clamp(0.65rem, 1.15vw, 1.15rem); }
  .nav__link { font-size: 0.72rem; }
  .nav__cta .btn { padding-inline: 1.35em; }
}

@media (min-width: 1240px) {
  html { scroll-padding-top: 150px; }
  .site-header {
    padding-top: clamp(0.1rem, 0.28vw, 0.22rem);
    padding-bottom: clamp(0.24rem, 0.38vw, 0.46rem);
  }
  .site-header__inner { max-width: 1680px; }
  .brand__logo { width: clamp(405px, 30vw, 440px); }
  .nav { gap: clamp(0.8rem, 1.15vw, 1.25rem); }
  .nav__list { gap: clamp(0.7rem, 1.05vw, 1.25rem); }
  .nav__link { font-size: clamp(0.68rem, 0.56rem + 0.14vw, 0.76rem); }
}

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (min-width: 861px) and (max-width: 1239px) {
  .site-header__inner { gap: clamp(1rem, 3vw, 2rem); }
  .nav-toggle { display: block; flex: 0 0 auto; }
  .nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    padding: 6.5rem var(--gutter) 2.8rem;
    transform: translateX(100%);
    transition: transform .55s var(--ease);
    z-index: 120;
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav__list li { width: 100%; opacity: 0; transform: translateY(12px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
  .nav.is-open .nav__list li { opacity: 1; transform: none; }
  .nav.is-open .nav__list li:nth-child(1){ transition-delay:.12s;}
  .nav.is-open .nav__list li:nth-child(2){ transition-delay:.18s;}
  .nav.is-open .nav__list li:nth-child(3){ transition-delay:.24s;}
  .nav.is-open .nav__list li:nth-child(4){ transition-delay:.30s;}
  .nav.is-open .nav__list li:nth-child(5){ transition-delay:.36s;}
  .nav.is-open .nav__list li:nth-child(6){ transition-delay:.42s;}
  .nav.is-open .nav__list li:nth-child(7){ transition-delay:.48s;}
  .nav__link {
    display: block;
    width: 100%;
    color: var(--paper);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 360;
    letter-spacing: 0;
    padding: 0.72rem 0;
    border-bottom: 1px solid var(--line-dark-soft);
  }
  .nav__link::after { display: none; }
  .nav__link.is-active { color: var(--sage); }
  .nav__cta { margin-left: 0; margin-top: 1.8rem; width: 100%; }
  .nav__cta .btn { width: min(100%, 360px); justify-content: center; --bg: var(--paper); --fg: var(--ink); }
  body.menu-open .nav-toggle { border-color: var(--line-dark); }
  body.menu-open .nav-toggle__bars span { background: var(--paper); }
  body.menu-open .brand__logo { filter: brightness(0) invert(1); }
  body.menu-open .nav-toggle__bars span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
  body.menu-open .nav-toggle__bars span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle__bars span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }
  body.menu-open .site-header.is-scrolled { background: transparent; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
}

@media (max-width: 860px) {
  /* --- przełączenie nawigacji na mobile --- */
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    background: var(--ink);     /* PEŁNE, nieprzezroczyste tło — treść strony nie przebija */
    padding: clamp(4.3rem, 13vh, 5.6rem) var(--gutter) 2.5rem;
    transform: translateX(100%);
    transition: transform .55s var(--ease);
    z-index: 120;
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav__list li { width: 100%; opacity: 0; transform: translateY(12px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
  .nav.is-open .nav__list li { opacity: 1; transform: none; }
  .nav.is-open .nav__list li:nth-child(1){ transition-delay:.12s;}
  .nav.is-open .nav__list li:nth-child(2){ transition-delay:.18s;}
  .nav.is-open .nav__list li:nth-child(3){ transition-delay:.24s;}
  .nav.is-open .nav__list li:nth-child(4){ transition-delay:.30s;}
  .nav.is-open .nav__list li:nth-child(5){ transition-delay:.36s;}
  .nav.is-open .nav__list li:nth-child(6){ transition-delay:.42s;}
  .nav.is-open .nav__list li:nth-child(7){ transition-delay:.48s;}
  .nav__link {
    display: block;
    width: 100%;
    color: var(--paper);
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 360;
    letter-spacing: 0;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line-dark-soft);
  }
  .nav__link::after { display: none; }
  .nav__link.is-active { color: var(--sage); }
  .nav__cta { margin-left: 0; margin-top: 1.8rem; width: 100%; }
  .nav__cta .btn { width: 100%; justify-content: center; --bg: var(--paper); --fg: var(--ink); }

  /* hamburger -> X */
  body.menu-open .nav-toggle { border-color: var(--line-dark); }
  body.menu-open .nav-toggle__bars span { background: var(--paper); }
  body.menu-open .brand__logo { filter: brightness(0) invert(1); }
  body.menu-open .nav-toggle__bars span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
  body.menu-open .nav-toggle__bars span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle__bars span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }
  /* gdy menu otwarte, header nie zmienia tła */
  body.menu-open .site-header.is-scrolled { background: transparent; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }

  /* --- layouty na 2->1 kolumnę --- */
  .hero__grid { grid-template-columns: 1fr; gap: clamp(2rem,6vw,3rem); }
  .hero__figure { order: -1; aspect-ratio: 3/4; }
  .hero__content { max-width: 40rem; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split--reverse .split__media { order: 0; }
  .split__media, .split__media.media--wide { aspect-ratio: 16/11; }
  .values { grid-template-columns: 1fr 1fr; gap: 1.6rem 1.4rem; }
  .dogs { grid-template-columns: 1fr; gap: 2.5rem; }
  .dog__media { aspect-ratio: 16/12; }
  #pasterstwo { padding-block: 0; }
  .feature {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }
  .feature__media { min-height: 0; aspect-ratio: 16/10; }
  .feature__body {
    align-self: auto;
    width: 100%;
    padding: clamp(2.2rem, 8vw, 3.3rem);
  }
  .litter { grid-template-columns: 1fr; gap: 2rem; }
  .litter__media { order: -1; }
  .tests { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.6rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .trust { grid-template-columns: 1fr 1fr; gap: 1.4rem 1rem; }
  .values { grid-template-columns: 1fr; }
  .tests { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item { aspect-ratio: 4 / 3; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .brand__sub { display: none; }
  .lightbox__nav { width: 44px; height: 44px; }
}

/* drobne pomocnicze */
.u-mt-sm { margin-top: 1rem; }
.prose p { max-width: 60ch; }
.center-cta { text-align: center; margin-top: clamp(2.5rem,5vw,3.5rem); }
.divider-dot { color: var(--moss); }

/* =========================================================================
   ░░ HIGHLAND EDITORIAL ░░  — warstwa atmosfery i charakteru
   Motyw przewodni: warstwice topograficzne (szkockie wzgórza / pasterstwo)
   ========================================================================= */

/* --- 1. Filmowy grain / papierowa faktura na całej stronie --- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* --- 2. Warstwice topograficzne jako tło --- */
.hero, .section--dark { position: relative; isolation: isolate; }
.hero > .container,
.section--dark > .container { position: relative; z-index: 2; }

.hero::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 80%;
  background: url("../topo-ink.svg") center bottom / cover no-repeat;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 45%);
  mask-image: linear-gradient(to bottom, transparent, #000 45%);
}
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../topo-paper.svg") center / cover no-repeat;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

/* --- 3. Większa głębia ciemnych sekcji --- */
.section--dark {
  background-color: var(--ink);
  background-image: radial-gradient(140% 105% at 50% -10%, #1d201c 0%, var(--ink) 55%);
}

/* --- 4. HERO — dramatyczny page-load --- */
/* maska-odsłonięcie tytułu (linie wyłaniają się od góry) */
.js .hero__title.reveal {
  opacity: 0;
  transform: translateY(20px);
  clip-path: none;
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.js .hero__title.reveal.is-visible { opacity: 1; transform: none; clip-path: none; }

/* powolny ken-burns na zdjęciu hero */
@keyframes kenburns { from { transform: scale(1.085); } to { transform: scale(1); } }
.hero__figure img { animation: kenburns 14s cubic-bezier(0.22,0.61,0.36,1) both; }

/* delikatny blur w odsłanianiu treści — bardziej "premium" */
.js .reveal:not(.hero__title) { filter: blur(6px); transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); }
.js .reveal.is-visible { filter: blur(0); }

/* hero badge — wjazd */
.hero__badge { transition: transform .9s .5s var(--ease), opacity .9s .5s var(--ease); }
.js .hero__figure:not(.is-visible) .hero__badge { opacity: 0; transform: translateY(10px); }

/* --- 5. Drop cap — pierwszy akapit „O hodowli" --- */
#o-hodowli .prose > p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3.5em;
  line-height: 0.72;
  padding: 0.08em 0.14em 0 0;
  color: var(--sage);
}

/* --- 6. Mikro-interakcje --- */
/* przyciski: subtelne podniesienie + wypełnienie */
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px -12px rgba(17,18,16,0.55); }
.on-dark .btn:hover { box-shadow: 0 10px 30px -12px rgba(0,0,0,0.6); }

/* karta psa — podpis z linią */
.dog__media::before {
  content: "";
  position: absolute;
  left: 1rem; bottom: 1rem;
  width: 0; height: 1px;
  background: var(--sage);
  z-index: 2;
  transition: width .6s var(--ease);
}
.dog:hover .dog__media::before { width: calc(100% - 2rem); }

/* galeria — znak + zmienia się w pełnym kółku z obwódką sage przy hover całości */
.gallery__item:hover .gallery__plus { border-color: var(--sage); color: var(--sage); }

/* eyebrow — kropka akcentu zamiast samego myślnika na ciemnym */
.signature::before {
  content: "";
  display: block;
  width: 2.2rem; height: 1px;
  background: var(--sage);
  margin-bottom: 1.1rem;
  opacity: 0.7;
}

/* sekcyjny separator-herb (subtelny rozdzielnik motywu) */
.motto__mark { position: relative; }

/* --- 7. Ochrona mobile + reduced-motion --- */
@media (max-width: 860px) {
  .hero::before { height: 60%; opacity: 0.05; }
  body::after { display: none; }
  .site-header.is-scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .site-header.is-scrolled { background: rgba(243, 244, 241, 0.96); }
  .hero__figure img { animation: none; transform: none; }
  .js .reveal,
  .js .reveal:not(.hero__title) {
    filter: none;
    will-change: auto;
    transition: opacity .45s var(--ease), transform .45s var(--ease);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__figure img { animation: none; }
  .js .hero__title.reveal { clip-path: none !important; }
  .js .reveal:not(.hero__title) { filter: none !important; }
}

/* Wariant A: portretowy duet działa lepiej jako wysoka karta niż panorama. */
.hero__figure { aspect-ratio: 7 / 6; }
.hero__badge {
  left: auto;
  right: clamp(0.9rem, 2vw, 1.4rem);
  top: clamp(0.9rem, 2vw, 1.4rem);
  bottom: auto;
}
@media (max-width: 860px) {
  .hero__figure { aspect-ratio: 3 / 4; }
  .hero__badge {
    left: clamp(0.9rem, 2vw, 1.4rem);
    right: auto;
    top: auto;
    bottom: clamp(0.9rem, 2vw, 1.4rem);
  }
}
