/* ===== DESIGN TOKENS ===== */
:root {
  --color-bg:          #121613;
  --color-bg-dark:     #0e110b;
  --color-white:       #ffffff;
  --color-text:        #D3D3D3;
  --color-text-dark:   #333333;
  --color-text-muted:  #888;
  --color-accent:       #DDA15E;
  --color-accent2:      #BC6C25;
  /* Zieleń — akcent na JASNYCH tłach (.section--light itd.) */
  --color-accent-alt:   #5e6a38;
  --color-accent-alt-rgb: 94, 106, 56;
  --color-green:        #5e6a38;
  --color-cream:        #FEFAE0;
  /* Pomarańcz / złoto — akcent na CIEMNYCH tłach: --color-accent2, --color-accent */

  --font-heading:      'Cabin', sans-serif;
  --font-body:         'Albert Sans', sans-serif;

  --max-w:             1140px;
  --gap:               20px;
  --header-h:          56px;

  --reed-h:             clamp(36px, 6vw, 52px);
  --reed-overlap:       clamp(20px, 4vw, 34px);
  /* Zaokrąglenie przycisków CTA (jak „Wyślij do weryfikacji” / pełne www + kalendarz klienta) */
  --btn-radius:         12px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Hash / scrollIntoView: odsunięcie od stałego nagłówka (bez tego #jak-rezerwowac ląduje pod .site-header) */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}
body {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 400; line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-cream); }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700; line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-white);
}

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gap); }
.section { padding: 4rem 0; }

/* Dark on #121613 */
.section--dark {
  background: var(--color-bg);
  color: var(--color-text);
}
/* White sections */
.section--light {
  background: var(--color-white);
  color: var(--color-text-dark);
}
.section--light h1, .section--light h2, .section--light h3, .section--light h4 {
  color: var(--color-text-dark);
}
.section--light a { color: var(--color-accent-alt); }
/* Image overlay section */
.section--image {
  position: relative;
  background-size: cover; background-position: center;
  color: var(--color-text);
}
.section--image::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
}
.section--image > .container { position: relative; z-index: 1; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(18,22,19,.92);
  backdrop-filter: blur(6px);
  display: flex; align-items: center;
  padding: 0 var(--gap);
}
.site-header .logo {
  display: flex; align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.site-header .logo-mark {
  height: 50px; width: auto; max-height: none;
  display: block; flex-shrink: 0;
}
/* Naturalna wysokość tekstu, wyśrodkowana w pionie względem ryby */
.logo-wordmark {
  display: flex; flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  line-height: 1.12;
  gap: 0.06em;
}
.logo-wordmark span {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  letter-spacing: 0.07em;
}
/* Łowisko — mniejsze; Zaborce — większe */
.logo-wordmark span:first-child {
  font-size: 0.62rem;
}
.logo-wordmark span:last-child {
  font-size: 0.92rem;
}
@media (min-width: 480px) {
  .site-header .logo-mark { height: 54px; }
  .logo-wordmark span:first-child { font-size: 0.68rem; }
  .logo-wordmark span:last-child { font-size: 1.02rem; }
}
.site-header nav { margin-left: auto; display: flex; align-items: center; }
.site-header nav a {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 700; text-transform: uppercase;
  color: var(--color-white);
  padding: 0 10px; line-height: var(--header-h);
  transition: color .2s;
}
.site-header nav a:hover,
.site-header nav a.active { color: var(--color-accent); }

.mobile-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
@media (max-width: 768px) {
  .site-header nav { display: none; }
  .site-header nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--color-bg); padding: 1rem;
  }
  .site-header nav.open a { line-height: 2.5; }
  .mobile-toggle { display: block; margin-left: auto; }
}

/* ===== HERO ===== */
.hero {
  min-height: 80vh;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: calc(var(--header-h) + 3rem) var(--gap) 3rem;
  background: url('/wp-content/uploads/2024/04/pexels-thirdman-5538270-e1712700344335.jpg') center/cover no-repeat;
  position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: #000; opacity: .55; mix-blend-mode: multiply;
}
.hero .container {
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(2.85rem, 7.5vw, 5.25rem);
  line-height: 1.06;
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}
.hero p {
  font-size: clamp(1.2rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 1.75rem;
  max-width: 28rem;
}
.hero .btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: 14px; font-weight: 700; text-transform: uppercase;
  color: var(--color-white);
  border: 1px solid var(--color-accent2);
  border-radius: var(--btn-radius);
  padding: 10px 22px; transition: background .25s, color .25s;
  cursor: pointer; background: transparent;
}
.btn:hover { background: var(--color-accent2); color: var(--color-bg); }

/* WordPress / CMS: zachowaj ich kolory, ujednolić tylko zaokrąglenie. */
.wp-block-button__link,
.wp-element-button,
.wp-block-file__button,
a.button,
button.button,
input[type="submit"].button,
input[type="button"].button,
input[type="reset"].button {
  border-radius: var(--btn-radius);
}
.section--light .btn {
  border-color: var(--color-accent-alt);
}
.section--light .btn:hover {
  background: var(--color-accent-alt);
  border-color: var(--color-accent-alt);
  color: var(--color-white);
}
.btn svg { width: 14px; height: 14px; fill: currentColor; }

/* ===== STATS ROW ===== */
#statystyki {
  position: relative;
  z-index: 1;
}
#statystyki .container {
  max-width: min(100%, 1520px);
}
.stats-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: clamp(1.75rem, 5.5vw, 5rem);
  width: 100%;
}
.stat {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  padding: 1.75rem clamp(1rem, 3.5vw, 3rem);
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.stat > div:first-child {
  margin-bottom: 0.65rem;
}
.stat-number {
  font-family: var(--font-body);
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 400;
  line-height: 1;
  color: var(--color-text);
}
.stat-suffix {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  margin-left: 3px;
  color: var(--color-text);
}
.stat-label {
  font-family: var(--font-heading);
  font-size: clamp(11px, 1.05vw, 13px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 auto;
  color: var(--color-accent2);
  display: block;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  padding-bottom: 12px;
  position: relative;
  line-height: 1.25;
}
.stat-label::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}

@media (max-width: 900px) and (min-width: 769px) {
  .stats-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 2.25rem;
  }
  .stat {
    flex: 1 1 42%;
    min-width: 140px;
  }
  .stat-label {
    white-space: normal;
  }
}

/* Mobile: jeden wiersz, liczby wyrównane, podkreślenie pod etykietą jak na desktopie */
@media (max-width: 768px) {
  .stats-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 0.2rem;
    width: 100%;
  }
  .stat {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.55rem 0.06rem 0.5rem;
    display: grid;
    grid-template-rows: auto 1fr;
    align-items: stretch;
  }
  .stat + .stat::before {
    display: none;
  }
  .stat > div:first-child {
    grid-row: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 0.4rem;
    min-height: 2.65rem;
  }
  .stat > .stat-label {
    grid-row: 2;
    align-self: end;
    justify-self: center;
    width: 100%;
    max-width: 100%;
  }
  .stat-number {
    font-family: var(--font-heading);
    font-size: clamp(24px, 6.5vw, 34px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .stat-suffix {
    font-size: clamp(0.62rem, 2.2vw, 0.78rem);
    font-weight: 700;
    margin-left: 1px;
  }
  .stat-label {
    font-size: clamp(0.48rem, 1.55vw, 0.58rem);
    letter-spacing: 0.02em;
    white-space: normal;
    line-height: 1.12;
    text-align: center;
    padding-bottom: 11px;
    margin-left: auto;
    margin-right: auto;
  }
  /* podkreślenie z reguły bazowej .stat-label::after (mobile wcześniej je wyłączał) */
}

/* ===== REED / TRZCINA (dolna krawędź ciemnych sekcji) ===== */
.section--reed-bottom {
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}
.section--reed-bottom > .container {
  padding-bottom: 4rem;
}
.section-reed {
  flex-shrink: 0;
  height: var(--reed-h);
  width: 100%;
  margin-bottom: calc(-1 * var(--reed-overlap));
  position: relative;
  z-index: 2;
  pointer-events: none;
  background: url('/reed-edge.svg') no-repeat center top;
  background-size: 100% 100%;
}
.section--after-reed {
  position: relative;
  z-index: 1;
  padding-top: calc(4rem + var(--reed-overlap));
}

/* Link „Rezerwacje” → #jak-rezerwowac: bez tego nagłówek fixed zasłania tytuł („Od rezerwacji…”) */
#jak-rezerwowac {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* ===== HOME — 4 KROKI REZERWACJI ===== */
.home-reserve-journey__title {
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  margin-bottom: 0.5rem;
  text-align: center;
}
.home-reserve-journey__lead {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  font-weight: 500;
  font-style: italic;
  text-transform: none;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 1.25rem;
  line-height: 1.55;
}
.home-reserve-journey__notice {
  max-width: 40rem;
  margin: 0 auto 2rem;
  padding: 1rem 1.15rem 1.1rem;
  background: linear-gradient(165deg, #f7f5ef 0%, #efeae0 100%);
  border: 1px solid rgba(94, 106, 56, 0.28);
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(18, 22, 19, 0.06);
}
.home-reserve-journey__notice-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-heading);
  font-size: clamp(0.82rem, 1.35vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent-alt);
  text-align: center;
}
.home-reserve-journey__notice-list {
  margin: 0 0 0.75rem;
  padding-left: 1.2rem;
  font-size: clamp(0.86rem, 1.35vw, 0.94rem);
  line-height: 1.55;
  color: var(--color-text-dark);
}
.home-reserve-journey__notice-list li {
  margin-bottom: 0.35rem;
}
.home-reserve-journey__notice-list li:last-child {
  margin-bottom: 0;
}
.home-reserve-journey__notice-foot {
  margin: 0;
  padding-top: 0.55rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
  font-size: clamp(0.84rem, 1.3vw, 0.93rem);
  line-height: 1.55;
  color: var(--color-text-dark);
}
.home-reserve-journey__notice-foot a {
  color: var(--color-accent-alt);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.home-reserve-journey__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .home-reserve-journey__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    align-items: stretch;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home-reserve-journey__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home-reserve-journey__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 1.15rem 1.1rem 1.2rem;
  background: linear-gradient(165deg, #fdfcfa 0%, #f4f2ec 100%);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-top: 3px solid var(--color-accent-alt);
  box-shadow: 0 4px 14px rgba(18, 22, 19, 0.06);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
@media (hover: hover) {
  .home-reserve-journey__card:hover {
    border-top-color: var(--color-accent2);
    box-shadow: 0 8px 22px rgba(18, 22, 19, 0.1);
    transform: translateY(-2px);
  }
}
.home-reserve-journey__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-accent-alt);
  border: 2px solid var(--color-accent-alt);
  border-radius: 50%;
  background: rgba(var(--color-accent-alt-rgb), 0.1);
}
.home-reserve-journey__body {
  min-width: 0;
}
.home-reserve-journey__card-title {
  font-size: clamp(0.78rem, 1.25vw, 0.88rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  margin: 0 0 0.45rem;
  color: var(--color-text-dark);
  line-height: 1.25;
}
.home-reserve-journey__text {
  margin: 0;
  font-size: clamp(0.86rem, 1.35vw, 0.94rem);
  line-height: 1.55;
  color: var(--color-text-dark);
  text-transform: none;
  font-weight: 400;
}
.home-reserve-journey__text strong {
  color: var(--color-text-dark);
  font-weight: 700;
}
.home-reserve-journey__cta-wrap {
  margin-top: 2rem;
  text-align: center;
}
.home-reserve-journey__cta {
  display: inline-flex;
}

/* ===== DISCOVER — kolaż (nieregularny, główny kadr nachodzi na statystyki) ===== */
.discover.section--light {
  position: relative;
  z-index: 2;
  overflow: visible;
}
.discover .image-col {
  position: relative;
  z-index: 4;
  margin-top: calc(-1 * clamp(4.75rem, 12vw, 10.5rem));
  align-self: start;
  padding-left: clamp(10px, 2.5vw, 28px);
}
.discover-collage {
  display: grid;
  grid-template-columns: 1.52fr 0.58fr;
  grid-template-rows: 1fr 1fr auto;
  gap: 13px 18px;
  height: clamp(400px, 50vw, 520px);
  min-height: clamp(400px, 50vw, 520px);
  max-height: clamp(400px, 50vw, 520px);
  padding: 8px 0 0 8px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  align-items: stretch;
}
.discover-collage__item {
  overflow: visible;
  background: transparent;
  backface-visibility: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.discover-collage__clip {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  background: #e8e8e6;
  transform: translateZ(0);
}
.discover-collage__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #e8e8e6;
  transition: opacity 500ms ease, transform 0.45s ease;
}
.discover-collage__item--main {
  grid-column: 1;
  grid-row: 1 / -1;
  min-height: 0;
  align-self: stretch;
  border-radius: 0;
  transform: rotate(-2.25deg) translateY(clamp(-14px, -2.2vw, -32px));
  box-shadow:
    0 20px 48px rgba(18, 22, 19, 0.28),
    0 4px 12px rgba(18, 22, 19, 0.12);
  z-index: 2;
}
.discover-collage__item--a {
  grid-column: 2;
  grid-row: 1;
  min-height: 0;
  border-radius: 0;
  transform: rotate(2deg) translate(10px, 14px);
  box-shadow: 0 10px 26px rgba(18, 22, 19, 0.18);
  z-index: 3;
}
.discover-collage__item--b {
  grid-column: 2;
  grid-row: 2;
  min-height: 0;
  border-radius: 0;
  transform: rotate(-1.4deg) translate(-6px, 6px);
  box-shadow: 0 10px 24px rgba(18, 22, 19, 0.16);
  z-index: 3;
}
.discover-collage__item--cta {
  grid-column: 2;
  grid-row: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 100%;
  box-sizing: border-box;
  gap: 8px;
  padding: 10px 22px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-accent-alt);
  border: 1px solid var(--color-accent-alt);
  border-radius: 0;
  overflow: hidden;
  flex-wrap: wrap;
  transform: none;
  box-shadow: none;
  z-index: 4;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.discover-collage__cta-text {
  line-height: 1.2;
  text-align: center;
}
.discover-collage:focus-visible {
  outline: 3px solid var(--color-accent-alt);
  outline-offset: 4px;
}
@media (hover: hover) {
  .discover-collage:hover .discover-collage__item--main img {
    transform: scale(1.035);
  }
  .discover-collage:hover .discover-collage__item--a img,
  .discover-collage:hover .discover-collage__item--b img {
    transform: scale(1.06);
  }
  .discover-collage:hover .discover-collage__item--cta {
    background: color-mix(in srgb, var(--color-accent-alt) 78%, #000);
    border-color: color-mix(in srgb, var(--color-accent-alt) 78%, #000);
    color: var(--color-white);
  }
}

/* ===== DISCOVER (Odkryj Nasze Łowisko) ===== */
/* Ten sam element ma .container — skrót padding nie może zabić padding-inline z .container */
.discover {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: start;
  padding-block: 4rem;
  padding-inline: var(--gap);
  box-sizing: border-box;
}
.discover .text-col {
  padding-top: clamp(0.5rem, 2vw, 1.25rem);
}
.discover h2 { font-size: clamp(1.3rem, 3vw, 2rem); margin-bottom: 1rem; }
.discover .divider { width: 60px; height: 2px; background: var(--color-accent-alt); margin-bottom: 1.2rem; }
.discover .cms-body p { margin-bottom: 1rem; }
@media (max-width: 768px) {
  /* Ciaśniejsza sekcja „Odkryj…” w pionie (bez „4 kroków”) */
  section.section.section--light.section--after-reed:not(.home-reserve-journey) {
    padding-top: calc(2.75rem + var(--reed-overlap));
    padding-bottom: 2.75rem;
  }
  .discover {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 2rem max(var(--gap), 1.125rem) 2.25rem;
    gap: 1.65rem;
  }
  /* Najpierw treść, potem kolaż (w HTML: image-col jest pierwszy) */
  .discover .text-col {
    order: -1;
    padding-top: 0;
    margin-bottom: 0;
  }
  .discover .image-col {
    order: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    max-width: 100%;
  }
  /* Ten sam układ co na desktopie: wysoki główny kadr | 2 mniejsze + CTA */
  .discover-collage {
    display: grid;
    grid-template-columns: 1.48fr 0.58fr;
    grid-template-rows: 1fr 1fr auto;
    gap: 10px 12px;
    height: clamp(280px, 72vw, 360px);
    min-height: clamp(280px, 72vw, 360px);
    max-height: clamp(280px, 72vw, 360px);
    max-width: 100%;
    margin: 0;
    padding: 6px 0 0 4px;
    align-items: stretch;
    overflow: hidden;
  }
  .discover-collage__item--main {
    grid-column: 1;
    grid-row: 1 / -1;
    min-height: 0;
    align-self: stretch;
    transform: rotate(-2deg) translateY(clamp(-6px, -1.2vw, -12px));
    border-radius: 0;
    box-shadow:
      0 14px 36px rgba(18, 22, 19, 0.22),
      0 3px 10px rgba(18, 22, 19, 0.1);
    z-index: 2;
  }
  .discover-collage__item--a {
    grid-column: 2;
    grid-row: 1;
    min-height: 0;
    transform: rotate(1.85deg) translate(4px, 8px);
    border-radius: 0;
    box-shadow: 0 8px 20px rgba(18, 22, 19, 0.16);
    z-index: 3;
  }
  .discover-collage__item--b {
    grid-column: 2;
    grid-row: 2;
    min-height: 0;
    transform: rotate(-1.25deg) translate(-4px, 4px);
    border-radius: 0;
    box-shadow: 0 8px 18px rgba(18, 22, 19, 0.14);
    z-index: 3;
  }
  .discover-collage__item--cta {
    grid-column: 2;
    grid-row: 3;
    padding: 8px 12px;
    font-size: 12px;
    transform: rotate(0.5deg) translate(2px, 2px);
    border-radius: 0;
    z-index: 4;
    box-shadow: 0 4px 14px rgba(18, 22, 19, 0.12);
  }
}
@media (prefers-reduced-motion: reduce) {
  .discover-collage__item--main,
  .discover-collage__item--a,
  .discover-collage__item--b,
  .discover-collage__item--cta {
    transform: none;
  }
  .discover-collage:hover .discover-collage__item--main img,
  .discover-collage:hover .discover-collage__item--a img,
  .discover-collage:hover .discover-collage__item--b img {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) and (min-width: 769px) {
  .discover .image-col {
    margin-top: calc(-1 * clamp(3rem, 7vw, 6rem));
  }
}

/* ===== GATUNKI RYB (kafelki / guziki) ===== */
.species-chips-section {
  padding: 3.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.species-chips-section__title {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  text-align: center;
  margin-bottom: 1.35rem;
}
.species-chips-section .species-chips-scroll {
  margin: 0;
  padding: 0.15rem 0 6px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(221, 161, 94, 0.45) transparent;
}
.species-chips-section .species-chips-scroll::-webkit-scrollbar {
  height: 5px;
}
.species-chips-section .species-chips-scroll::-webkit-scrollbar-thumb {
  background: rgba(221, 161, 94, 0.4);
  border-radius: 999px;
}
.species-chips {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: clamp(0.35rem, 1.2vw, 0.65rem);
  width: fit-content;
  min-width: min(100%, fit-content);
  max-width: none;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}
.species-chips li {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
}
/* Kwadratowe białe ramki (wszystkie szerokości) */
.species-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.38rem 0.7rem 0.35rem;
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: clamp(0.62rem, 1.45vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fefae0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
@media (hover: hover) {
  .species-chip:hover {
    color: #fff;
    border-color: #fff;
  }
}

@media (max-width: 768px) {
  .species-chips-section {
    padding: 2.85rem 0;
  }
  .species-chips-section__title {
    font-size: clamp(1rem, 3.9vw, 1.22rem);
    margin-bottom: 1.1rem;
  }
  .species-chips-section .species-chips-scroll {
    padding: 0.12rem 0 6px;
    overflow: visible;
  }
  .species-chips-section .species-chips-scroll::-webkit-scrollbar {
    display: none;
    height: 0;
  }
  .species-chips {
    flex-wrap: wrap;
    align-content: center;
    gap: 0.32rem 0.42rem;
    width: 100%;
    max-width: 100%;
  }
  .species-chip {
    min-height: 28px;
    padding: 0.2rem 0.4rem 0.18rem;
    font-size: clamp(8.5px, 2.4vw, 11px);
    letter-spacing: 0.04em;
  }
}

/* ===== NEWS (Aktualności — strona główna) ===== */
.news {
  padding: 5rem 0;
  --news-feed-card-h: 400px;
  --news-feed-media-h-mobile: 200px;
}
.news-section-head {
  text-align: center;
  margin-bottom: 2rem;
}
.news h2 { margin-bottom: 0.35rem; }
.news.section--light .news-feed-arrow {
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  color: var(--color-text-dark);
}
.news.section--light .news-feed-arrow:hover:not(:disabled) {
  background: var(--color-accent-alt);
  border-color: var(--color-accent-alt);
  color: var(--color-white);
}
.news.section--light .news-feed-error {
  color: #5a5a5a;
}

.news-feed-wrap {
  width: 100%;
  max-width: 100%;
  min-height: calc(var(--news-feed-card-h) + 3.5rem);
}
.news-feed-carousel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  min-height: calc(var(--news-feed-card-h) + 3.5rem);
}
.news-feed-carousel--single .news-feed-nav {
  display: none;
}
.news-feed-root {
  width: 100%;
  min-width: 0;
  min-height: var(--news-feed-card-h);
}
.news-feed-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.news-feed-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.35);
  color: var(--color-white);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.news-feed-arrow:hover:not(:disabled) {
  background: var(--color-accent2);
  border-color: var(--color-accent2);
  color: var(--color-white);
}
.news-feed-arrow:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}
.news-feed-error {
  text-align: center;
  color: var(--color-text-muted);
  margin: 0;
}

/* Slider poziomy: w viewport widać dokładnie jeden slajd — stała wysokość (bez przeskakiwania stopki) */
.news-feed-viewport {
  overflow: hidden;
  width: 100%;
  height: var(--news-feed-card-h);
  min-height: var(--news-feed-card-h);
  max-height: var(--news-feed-card-h);
}
.news-feed-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  transform: translate3d(0, 0, 0);
  transition: transform 0.48s cubic-bezier(0.32, 0.72, 0.28, 1);
  will-change: transform;
  height: var(--news-feed-card-h);
}
.news-feed-track--instant {
  transition: none !important;
}
.news-feed-slide {
  flex-shrink: 0;
  box-sizing: border-box;
  height: var(--news-feed-card-h);
  min-height: var(--news-feed-card-h);
  max-height: var(--news-feed-card-h);
  align-self: stretch;
}
@media (prefers-reduced-motion: reduce) {
  .news-feed-track {
    transition: none !important;
    will-change: auto;
  }
}

/* Kafel poziomy: stały rozmiar (niezależnie od długości treści) */
.news-feed-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  height: var(--news-feed-card-h);
  min-height: var(--news-feed-card-h);
  max-height: var(--news-feed-card-h);
  background: #f7f7f5;
  color: #1a1a1a;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.news-feed-card__media {
  flex: 0 0 44%;
  max-width: 520px;
  min-width: 140px;
  height: 100%;
  background: #2a2a28;
  overflow: hidden;
  position: relative;
}
.news-feed-card__media img,
.news-feed-card__hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #2a2a28;
  display: block;
}
.news-feed-card__hero-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
  color: inherit;
  text-decoration: none;
}
.news-feed-card__hero-link:focus-visible {
  outline: 2px solid var(--color-accent-alt, #6b7c32);
  outline-offset: 2px;
}
.news-feed-card__hero-link .news-feed-card__hero-img {
  height: 100%;
}
.news-feed-card__hero-hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.42rem 0.65rem 0.48rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.28) 65%, transparent 100%);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
  pointer-events: none;
}
.news-feed-card__hero-hint-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: 0.96;
}
.news-feed-card__hero-hint-text {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}
.news-feed-card__title-link {
  color: inherit;
  text-decoration: none;
}
.news-feed-card__title-link:hover {
  text-decoration: underline;
}
.news-feed-card__readmore {
  display: inline-block;
  margin-top: 0.45rem;
  flex-shrink: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-accent-alt, #6b7c32);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.news-feed-card__readmore:hover {
  text-decoration: underline;
}
.news-feed-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #999;
  background: #3a3a38;
}
.news-feed-card__body {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.1rem 1.25rem 1.15rem;
  justify-content: flex-start;
  box-sizing: border-box;
  overflow: hidden;
}
.news-feed-card__date {
  margin: 0;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #888;
}
.news-feed-card__title {
  margin: 0;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 700;
  line-height: 1.22;
  color: #111;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-feed-card__desc {
  margin: 0;
  flex: 1 1 auto;
  min-height: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #444;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Mobile: jeden kafel na ekran, przewijanie palcem w poziomie (+ scroll-snap) */
@media (max-width: 768px) {
  .news {
    --news-feed-card-h: 480px;
    --news-feed-media-h-mobile: 200px;
  }
  .news-feed-nav {
    display: none;
  }
  .news-feed-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(var(--color-accent-alt-rgb), 0.45) rgba(0, 0, 0, 0.06);
    height: var(--news-feed-card-h);
    min-height: var(--news-feed-card-h);
    max-height: var(--news-feed-card-h);
  }
  .news-feed-viewport::-webkit-scrollbar {
    height: 4px;
  }
  .news-feed-viewport::-webkit-scrollbar-thumb {
    background: rgba(var(--color-accent-alt-rgb), 0.42);
    border-radius: 999px;
  }
  .news-feed-track {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    height: var(--news-feed-card-h);
  }
  .news-feed-slide {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    align-self: stretch;
    height: var(--news-feed-card-h);
    min-height: var(--news-feed-card-h);
    max-height: var(--news-feed-card-h);
  }
  /* Kafel pionowy: stała wysokość — treść obcinana, bez przeskakiwania stopki */
  .news-feed-card {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: var(--news-feed-card-h);
    min-height: var(--news-feed-card-h);
    max-height: var(--news-feed-card-h);
  }
  .news-feed-card__media {
    flex: 0 0 var(--news-feed-media-h-mobile);
    width: 100%;
    max-width: none;
    min-width: 0;
    height: var(--news-feed-media-h-mobile);
    min-height: var(--news-feed-media-h-mobile);
    max-height: var(--news-feed-media-h-mobile);
    overflow: hidden;
    display: block;
    background: #2a2a28;
  }
  .news-feed-card--desc-none .news-feed-card__media,
  .news-feed-card--desc-short .news-feed-card__media,
  .news-feed-card--desc-medium .news-feed-card__media,
  .news-feed-card--desc-long .news-feed-card__media {
    flex: 0 0 var(--news-feed-media-h-mobile);
    height: var(--news-feed-media-h-mobile);
    min-height: var(--news-feed-media-h-mobile);
    max-height: var(--news-feed-media-h-mobile);
  }
  .news-feed-card__media img,
  .news-feed-card__hero-img {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #2a2a28;
  }
  .news-feed-card__hero-link {
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 100%;
    max-height: 100%;
    line-height: 0;
  }
  .news-feed-card__hero-link .news-feed-card__hero-img {
    height: 100%;
    max-height: 100%;
  }
  .news-feed-card__hero-hint {
    font-size: 0.7rem;
    padding: 0.35rem 0.55rem 0.42rem;
    gap: 0.32rem;
  }
  .news-feed-card__body {
    flex: 1 1 auto;
    min-height: 0;
    padding: 0.85rem 1rem 1rem;
    gap: 0.4rem;
    overflow: hidden;
  }
  .news-feed-card__title {
    -webkit-line-clamp: 3;
    font-size: clamp(0.95rem, 3.4vw, 1.08rem);
  }
  .news-feed-card__desc {
    -webkit-line-clamp: 6;
    font-size: 0.86rem;
    line-height: 1.45;
  }
  .news-feed-card--desc-long .news-feed-card__desc {
    -webkit-line-clamp: 6;
  }
}

/* ===== NEWS ARCHIVE (podstrona /aktualnosci/) ===== */
.news-archive-page { padding: 3rem 0; }
.news-archive-head { text-align: center; margin-bottom: 1.25rem; }
.news-archive-page h1 { margin-bottom: 0.5rem; }
.news-archive-lead {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: var(--color-text-dark);
  font-weight: 500;
  text-transform: none;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.5;
}
.news-month-nav-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.news-month-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  text-transform: uppercase;
  min-width: 12ch;
  text-align: center;
}
.news-month-nav-inner .btn {
  border-color: var(--color-accent-alt);
  color: var(--color-text-dark);
  font-size: clamp(12px, 1.4vw, 14px);
  padding: 10px 18px;
  max-width: min(100%, 280px);
  text-align: center;
  line-height: 1.25;
}
.news-month-link.news-month-prev {
  border-color: rgba(var(--color-accent-alt-rgb), 0.85);
  background: rgba(var(--color-accent-alt-rgb), 0.1);
}
.news-month-link.news-month-next {
  border-color: rgba(var(--color-accent-alt-rgb), 0.85);
  background: rgba(var(--color-accent-alt-rgb), 0.1);
}
.news-month-nav-inner .btn:hover:not(.is-disabled) {
  background: var(--color-accent-alt);
  color: var(--color-white);
  border-color: var(--color-accent-alt);
}
.news-month-nav-inner .news-month-link.news-month-prev:hover:not(.is-disabled) {
  background: var(--color-accent-alt);
  border-color: var(--color-accent-alt);
  color: var(--color-white);
}
.news-month-link.is-disabled {
  pointer-events: none;
  opacity: .35;
}
.news-archive-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 44rem;
  margin: 0 auto;
}
.news-feed-list {
  border-top: 2px solid rgba(var(--color-accent-alt-rgb), 0.35);
}

/* Gazetka aktualności — pełny wpis pod wpisem, rozwijany tylko tekst */
.news-feed-article {
  padding: 2rem 0 2.25rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}
.news-feed-article:last-child {
  border-bottom: none;
  padding-bottom: 0.5rem;
}
.news-feed-article__head {
  margin-bottom: 1rem;
  text-align: center;
}
.news-feed-article__date {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}
.news-feed-article__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-text-dark);
}
.news-feed-article__media {
  margin-bottom: 1.1rem;
}
.news-feed-article__media .news-archive-viewport {
  aspect-ratio: 3 / 4;
  max-height: min(88vh, 900px);
  min-height: 260px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.news-feed-article__media .news-archive-slide img {
  object-fit: contain;
  background: #eceae5;
}
.news-feed-article__text {
  max-width: 40rem;
  margin: 0 auto;
}
.news-feed-article__preview,
.news-feed-article__full {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-dark);
}
.news-feed-article__preview {
  margin-bottom: 0.75rem;
}
.news-feed-article__full p {
  margin: 0 0 0.85rem;
}
.news-feed-article__full.is-static {
  margin-bottom: 0;
}
.news-feed-article__text-toggle {
  display: inline-flex;
  align-items: center;
  margin-top: 0.15rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.news-feed-article__text-toggle:hover {
  color: var(--color-accent-alt);
}
.news-feed-article__text-toggle-close { display: none; }
.news-feed-article.is-text-expanded .news-feed-article__text-toggle-open { display: none; }
.news-feed-article.is-text-expanded .news-feed-article__text-toggle-close { display: inline; }
.news-archive-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.5rem 2rem;
  align-items: start;
  margin: 0 0 1.75rem;
  padding: 1.65rem 1.25rem 1.75rem 1.1rem;
  background: linear-gradient(165deg, #fff 0%, #f8f7f4 100%);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-left: 4px solid var(--color-accent-alt);
  box-shadow: 0 2px 14px rgba(18, 22, 19, 0.05);
  position: relative;
}
.news-archive-card::after {
  content: '';
  position: absolute;
  left: 1.1rem;
  right: 1.25rem;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-accent-alt) 0%,
    rgba(var(--color-accent-alt-rgb), 0.55) 40%,
    rgba(221, 161, 94, 0.2) 70%,
    transparent 100%
  );
  pointer-events: none;
}
.news-archive-card:last-child {
  margin-bottom: 0;
}
.news-archive-card:last-child::after {
  display: none;
}
.news-archive-card-media { min-width: 0; }
.news-archive-slider {
  position: relative;
  display: block;
}
.news-archive-viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  max-height: min(960px, 90vh);
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
}
/* Wskazówka „powiększ” — tylko na wąskim ekranie (patrz media query niżej) */
.news-archive-tap-hint {
  display: none;
}
.news-archive-img-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  pointer-events: none;
  z-index: 2;
}
.news-archive-img-nav .news-arrow {
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.news-archive-img-nav .news-arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
.news-archive-img-nav .news-arch-prev {
  pointer-events: auto;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(221, 161, 94, 0.9);
  background: rgba(35, 32, 28, 0.65);
  color: var(--color-accent);
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.news-archive-img-nav .news-arch-prev:hover:not(:disabled) {
  background: rgba(221, 161, 94, 0.4);
  color: var(--color-bg);
}
.news-archive-img-nav .news-arch-next {
  pointer-events: auto;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(188, 108, 37, 0.95);
  background: rgba(32, 26, 22, 0.7);
  color: #f0e0d0;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.news-archive-img-nav .news-arch-next:hover:not(:disabled) {
  background: var(--color-accent2);
  color: var(--color-white);
  border-color: var(--color-accent2);
}
.news-archive-img-nav .news-arrow svg { width: 18px; height: 18px; }
.news-archive-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-archive-slide.is-active { opacity: 1; pointer-events: auto; }
.news-archive-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #e8e8e8;
}
.news-archive-counter {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 3;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  pointer-events: none;
  line-height: 1.2;
}
.news-archive-thumbs {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  padding: 2px 0 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(221, 161, 94, 0.45) transparent;
}
.news-archive-thumbs::-webkit-scrollbar {
  height: 4px;
}
.news-archive-thumbs::-webkit-scrollbar-thumb {
  background: rgba(221, 161, 94, 0.42);
  border-radius: 999px;
}
.news-archive-thumb {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: #d8d8d8;
  opacity: 0.72;
  transition: opacity 0.2s, border-color 0.2s, transform 0.15s;
}
.news-archive-thumb.is-active {
  border-color: var(--color-accent2);
  opacity: 1;
  transform: scale(1.03);
}
.news-archive-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.news-archive-empty { text-align: center; color: var(--color-text-muted); padding: 2rem; }

/* Archiwum: tap zdjęcia na smartfonie → pełny ekran, tylko zdjęcia, przesuwanie w poziomie */
.news-archive-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  background: #000;
}
.news-archive-fullscreen__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.82);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.news-archive-fullscreen__nav:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}
.news-archive-fullscreen__prev {
  left: max(8px, env(safe-area-inset-left));
}
.news-archive-fullscreen__next {
  right: max(8px, env(safe-area-inset-right));
}
.news-archive-fullscreen__nav:hover:not(:disabled),
.news-archive-fullscreen__nav:focus-visible:not(:disabled) {
  outline: none;
  background: rgba(221, 161, 94, 0.55);
  border-color: rgba(255, 255, 255, 0.55);
}
.news-archive-fullscreen__counter {
  position: absolute;
  top: max(10px, calc(env(safe-area-inset-top) + 6px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  margin: 0;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  pointer-events: none;
}
.news-archive-fullscreen__thumbs {
  flex: 0 0 auto;
  display: flex;
  gap: 8px;
  padding: 10px max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.45));
  scrollbar-width: none;
}
.news-archive-fullscreen__thumbs::-webkit-scrollbar {
  display: none;
}
.news-archive-fullscreen__thumb {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #222;
  opacity: 0.7;
}
.news-archive-fullscreen__thumb.is-active {
  border-color: var(--color-accent);
  opacity: 1;
}
.news-archive-fullscreen__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.news-archive-fullscreen[hidden] {
  display: none !important;
}
.news-archive-fullscreen__close {
  position: absolute;
  top: max(6px, calc(env(safe-area-inset-top) + 2px));
  right: max(6px, calc(env(safe-area-inset-right) + 2px));
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.92);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-archive-fullscreen__close:hover,
.news-archive-fullscreen__close:focus-visible {
  outline: none;
  background: rgba(60, 60, 60, 0.95);
  border-color: rgba(255, 255, 255, 0.55);
}
.news-archive-fullscreen__viewport {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scrollbar-width: none;
}
.news-archive-fullscreen__viewport::-webkit-scrollbar {
  display: none;
}
.news-archive-fullscreen__viewport:focus {
  outline: none;
}
.news-archive-fullscreen__cell {
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  box-sizing: border-box;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.news-archive-fullscreen__cell img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  user-select: none;
  -webkit-user-select: none;
}
body.news-archive-fs-open {
  overflow: hidden;
}

.news-feature-placeholder {
  aspect-ratio: 16 / 10;
  max-height: min(960px, 90vh);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .news-feed-article {
    padding: 1.5rem 0 1.75rem;
  }
  .news-feed-article__media .news-archive-viewport {
    min-height: 180px;
  }
  .news-archive-card { grid-template-columns: 1fr; }
  .news-archive-slide img {
    cursor: pointer;
  }
  .news-archive-img-nav .news-arch-prev,
  .news-archive-img-nav .news-arch-next {
    width: 38px;
    height: 38px;
  }
  .news-archive-img-nav .news-arrow svg {
    width: 15px;
    height: 15px;
  }
  .news-archive-tap-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 8px;
    bottom: 8px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.42);
    color: #fff;
    pointer-events: none;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.22);
  }
  .news-archive-slider:has(.news-archive-counter) .news-archive-tap-hint {
    top: 8px;
    right: 8px;
    bottom: auto;
  }
  .news-archive-tap-hint__icon {
    display: block;
    opacity: 0.95;
  }
  .news-archive-thumb {
    width: 52px;
    height: 52px;
  }
}

/* ===== GALLERY (page) ===== */
.gallery-page { padding: 3rem 0; }
.gallery-page h1 { text-align: center; margin-bottom: 2rem; }

.gallery-page-slider-wrap {
  margin: 0 0 1.35rem;
  max-width: 100%;
}
.gallery-page-slider__viewport {
  position: relative;
  /* Stały kadr — zdjęcia skalują się w środku (contain), bez ucinania i bez skakania layoutu. */
  width: 100%;
  height: clamp(220px, 56vw, 520px);
  min-height: clamp(220px, 56vw, 520px);
  max-height: clamp(220px, 56vw, 520px);
  background: linear-gradient(180deg, #151915 0%, #1a1f1a 100%);
  border-radius: 10px;
  overflow: hidden;
  border: none;
  box-shadow: none;
}
.gallery-page-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-page-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.gallery-page-slider__open {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
}
.gallery-page-slider__open:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}
.gallery-page-slider__open img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: middle;
  display: block;
  background: #121512;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}
.gallery-grid .gallery-tile {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
  font: inherit;
  color: inherit;
  border-radius: 0;
}
.gallery-grid .gallery-tile:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  /* Nie ucinaj zdjęć w kafelkach — całe zdjęcie ma się mieścić. */
  object-fit: contain;
  background: #121512;
  cursor: zoom-in; transition: transform .3s;
  display: block;
}
.gallery-grid .gallery-tile:hover img { transform: scale(1.03); }

@media (max-width: 768px) {
  /* Siatka na całą szerokość viewportu; zdjęcia bez stałej wysokości — pionowe rosną z szerokością ekranu */
  .gallery-page {
    overflow-x: hidden;
  }
  .gallery-page .gallery-page-slider-wrap {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0;
  }
  .gallery-page-slider__viewport {
    border-radius: 0;
    height: clamp(200px, 52vw, 420px);
    min-height: clamp(200px, 52vw, 420px);
    max-height: clamp(200px, 52vw, 420px);
  }
  .gallery-page .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
  }
  .gallery-page .gallery-grid img {
    width: 100%;
    height: auto;
    max-height: none;
  }
  .gallery-page .gallery-grid .gallery-tile {
    width: 100%;
  }
  .gallery-page .gallery-grid .gallery-tile:hover img {
    transform: none;
  }
}

/* Lightbox galerii — kolory i fonty jak na stronie */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  box-sizing: border-box;
  background: rgba(14, 17, 11, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  touch-action: none;
}
.gallery-lightbox[hidden] {
  display: none !important;
}
.gallery-lightbox__close {
  position: absolute;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(221, 161, 94, 0.45);
  border-radius: var(--btn-radius);
  background: rgba(18, 22, 19, 0.95);
  color: var(--color-accent);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible {
  outline: none;
  background: var(--color-accent2);
  color: var(--color-bg);
  border-color: var(--color-accent2);
}
.gallery-lightbox__panel {
  width: 100%;
  max-width: min(96vw, 1100px);
  min-width: 0;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.gallery-lightbox__stage {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-height: 100%;
  /* none: żeby iOS/Android nie przejmowały poziomego gestu (scroll / zoom) zamiast naszego swipe */
  touch-action: none;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
}
.gallery-lightbox__counter {
  width: 100%;
  max-width: min(720px, 100%);
  margin: 0;
  padding: 0.4rem 8px 0;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(245, 240, 232, 0.72);
  text-align: center;
}
.gallery-lightbox__counter[hidden] {
  display: none !important;
}
.gallery-lightbox__img {
  max-width: 100%;
  max-height: min(78vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  touch-action: none;
}
.gallery-lightbox__caption {
  width: 100%;
  max-width: min(720px, 100%);
  min-width: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 1.1rem 12px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-text);
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.gallery-lightbox__caption::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-accent2);
  margin: 0 auto 0.85rem;
}
.gallery-lightbox__caption[hidden] {
  display: none !important;
}

/* ===== Zgłoszenie zdjęć (galeria — gość) ===== */
.photo-submit-section {
  padding: 2.5rem 0 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1rem;
}
.photo-submit-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  text-align: center;
}
.photo-submit-lead {
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}
.photo-submit-form {
  max-width: 520px;
  margin: 0 auto;
}
.photo-submit-form label[for="site-photo-desc"],
.photo-submit-form label[for="site-drive-media-desc"] {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-text-muted);
}
.photo-submit-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.25);
  color: var(--color-white);
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
  min-height: 88px;
  margin-bottom: 1rem;
}
.photo-submit-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.photo-submit-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 140px;
  padding: 1.25rem;
  border: 2px dashed rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}
.photo-submit-drop:hover,
.photo-submit-drop:focus,
.photo-submit-drop.photo-submit-drop--drag-over {
  outline: none;
  border-color: var(--color-accent2, #4fc3f7);
  background: rgba(255, 255, 255, 0.04);
}
.photo-submit-drop.photo-submit-drop--drag-over {
  border-style: solid;
  box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.18);
}
.photo-submit-plus {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-accent2, #4fc3f7);
  opacity: 0.95;
}
.photo-submit-drop-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  max-width: 340px;
  line-height: 1.45;
}

.photo-submit-preview {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 10px;
}

.photo-submit-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 1 / 1;
}

.photo-submit-thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-submit-thumb__remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.photo-submit-thumb__remove:hover,
.photo-submit-thumb__remove:focus-visible {
  outline: none;
  background: rgba(0, 0, 0, 0.75);
  border-color: rgba(255, 255, 255, 0.55);
}

.photo-submit-drop.photo-submit-drop--has-files {
  align-items: stretch;
  justify-content: flex-start;
  text-align: left;
}
.photo-submit-file-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.photo-submit-file-list li {
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.photo-submit-btn {
  display: block;
  width: 100%;
  margin-top: 1.25rem;
  padding: 14px 20px;
  border: none;
  border-radius: var(--btn-radius);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  background: var(--color-accent, #2e7d32);
  color: #fff;
  transition: filter 0.2s, transform 0.15s;
}
.photo-submit-btn:hover {
  filter: brightness(1.08);
}
.photo-submit-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.photo-submit-msg {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.4em;
}
.photo-submit-msg.is-ok { color: #a5d6a7; }
.photo-submit-msg.is-err { color: #ef9a9a; }

.photo-submit-progress {
  margin-top: 0.85rem;
  display: none;
}
.photo-submit-progress.is-visible {
  display: block;
}
.photo-submit-progress__bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.photo-submit-progress__fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #4fc3f7, #66bb6a);
  transition: width 0.15s ease;
}
.photo-submit-progress__text {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  text-align: center;
  color: var(--color-text-muted);
}
.photo-submit-progress__hint {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
}
.photo-submit-form--uploading .photo-submit-drop,
.photo-submit-form--uploading textarea {
  pointer-events: none;
  opacity: 0.65;
}

/* ===== RESERVATIONS ===== */
.reservations { padding: 4rem 0; }
.reservations h2 { margin-bottom: .6rem; }
.reservations h3 { font-size: 1.15rem; font-weight: 400; margin-bottom: 1.5rem; color: inherit; text-transform: none; }
.reservations .divider { width: 60px; height: 2px; background: var(--color-accent2); margin-bottom: 2rem; }
.section--light .reservations .divider { background: var(--color-accent-alt); }
.steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.step { display: flex; gap: 14px; align-items: flex-start; }
.step-num {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 700; line-height: 1;
  color: var(--color-accent); flex-shrink: 0;
}
.step-text { font-size: .95rem; }
.step-text a { font-weight: 700; text-transform: uppercase; }

/* ===== GUIDE CONTENT (rezerwacje info) ===== */
.guide-content {
  max-width: 720px;
  font-size: 1.05rem; line-height: 1.75;
}
.guide-content p { margin-bottom: 1.2rem; }
.guide-content a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.guide-content strong { color: var(--color-white); }

/* ===== MAP ===== */
.map-section { padding: 3rem 0; text-align: center; }
.map-section h2 { margin-bottom: 1.5rem; }
.map-section iframe { width: 100%; max-width: 900px; height: 480px; border: 0; }

/* ===== FOR ALL (Wędkarstwo dla wszystkich) ===== */
.for-all { padding: 4rem 0; }
.for-all .container {
  text-align: center;
}
.for-all h3.section-title {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  margin-bottom: 0.5rem;
}
.for-all.section--dark h3.section-title {
  color: var(--color-white);
}
.for-all .section-subtitle {
  font-size: clamp(0.94rem, 1.6vw, 1.05rem);
  font-weight: 400;
  text-transform: none;
  color: rgba(254, 250, 224, 0.88);
  margin: 0 auto 1.35rem;
  max-width: 38rem;
  line-height: 1.6;
}
.for-all__divider {
  width: 56px;
  height: 2px;
  margin: 0 auto 1.5rem;
  background: var(--color-accent2);
}
.for-all-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
}
.for-all-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--color-accent2);
  box-sizing: border-box;
}
.for-all-list__mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 0.05rem;
  color: var(--color-accent2);
  border: 1px solid rgba(188, 108, 37, 0.55);
  background: rgba(188, 108, 37, 0.12);
}
.for-all-list__mark svg {
  width: 1.3rem;
  height: 1.3rem;
  display: block;
}
.for-all-list__text {
  margin: 0;
  padding-top: 0.15rem;
  font-size: clamp(0.9rem, 1.65vw, 1rem);
  line-height: 1.55;
  color: var(--color-cream);
}
@media (min-width: 769px) {
  .for-all-list {
    max-width: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1.1rem;
    align-items: stretch;
  }
  .for-all-list__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.1rem 0.9rem;
    border-left-width: 1px;
    border-left-color: rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--color-accent2);
  }
  .for-all-list__item:nth-child(even) {
    border-top-color: var(--color-accent);
  }
  .for-all-list__mark {
    margin-top: 0;
  }
  .for-all-list__text {
    padding-top: 0;
    font-size: clamp(0.82rem, 1.15vw, 0.95rem);
  }
}
@media (max-width: 768px) {
  .for-all-list__item {
    padding: 0.7rem 0.85rem;
    gap: 0.65rem;
  }
  .for-all-list__mark {
    width: 2.25rem;
    height: 2.25rem;
  }
  .for-all-list__mark svg {
    width: 1.15rem;
    height: 1.15rem;
  }
}
.for-all-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.for-all-card { position: relative; overflow: hidden; }
.for-all-card img { width: 100%; height: 280px; object-fit: cover; }
.for-all-card .overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  padding: 1.5rem 1rem .8rem;
}
.for-all-card .overlay h3 { font-size: .95rem; font-weight: 700; color: var(--color-white); }
@media (max-width: 768px) {
  .for-all-grid { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.site-footer {
  position: relative;
  z-index: 2;
  isolation: isolate;
  /* Nad sekcją .section--after-reed (z-index: 1) — inaczej cała stopka + ::before były POD jasną sekcją i niewidoczne */
  overflow: visible;
  background: var(--color-bg);
  border-top: none;
  margin-top: 0;
  padding: calc(3rem + var(--reed-overlap)) 0 clamp(2.25rem, 5vw, 3.25rem);
  color: var(--color-text);
}
/* Trzcina: jak /klient/launcher (launcher-reeds.svg + filter + opacity); wysokość ≥ szerokość×858/2560 żeby nie obcinać gór przy szerokim skalowaniu. */
.site-footer::before {
  --footer-reed-band: max(min(42vh, 24rem), calc(100vw * 858 / 2560));
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: var(--footer-reed-band);
  z-index: 0;
  pointer-events: none;
  background-image: url('/launcher-reeds.svg');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: min(160%, 120rem) auto;
  opacity: 0.42;
  filter: brightness(0) saturate(100%) invert(35%) sepia(22%) hue-rotate(52deg) saturate(420%) brightness(0.72) contrast(1.05);
}
@media (max-width: 480px) {
  .site-footer::before {
    background-size: 200% auto;
    background-position: center bottom;
    opacity: 0.36;
  }
}
.site-footer > .container {
  position: relative;
  z-index: 1;
}
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.site-footer h2 { font-size: 1.3rem; margin-bottom: 1rem; }
.site-footer .contact-list li { margin-bottom: .6rem; display: flex; align-items: center; gap: 8px; }
.site-footer .contact-list a[href^="tel:"] {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.2rem 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.site-footer .contact-list svg { width: 16px; height: 16px; fill: var(--color-accent); flex-shrink: 0; }
.reg-block a[href^="tel:"] {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.section--light a[href^="tel:"] {
  color: var(--color-accent-alt);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
/* Strona rezerwacji — skrót zasad */
.reservations-rules {
  padding: 2.75rem 0 1rem;
}
.reservations-rules h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: var(--color-accent2);
  letter-spacing: 0.06em;
  margin-bottom: 1.1rem;
}
.section--light .reservations-rules h2 {
  color: var(--color-accent-alt);
}
.reservations-rules ul {
  list-style: none;
  margin: 0 0 0.25rem;
  padding: 0;
}
.reservations-rules ul li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.55;
}
.reservations-rules ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}
.reservations-rules a[href^="tel:"] {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.reservations-rules a[href="/klient/"] {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.site-footer .divider { width: 100%; height: 1px; background: rgba(255,255,255,.1); margin: 1.5rem 0; }
.footer-bottom { font-size: .85rem; color: var(--color-text-muted); }
.footer-brand {
  display: flex; align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand .logo-mark {
  height: 52px; width: auto; display: block; flex-shrink: 0;
}
.footer-brand .logo-wordmark {
  display: flex; flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  line-height: 1.12;
  gap: 0.06em;
}
.footer-brand .logo-wordmark span {
  color: var(--color-white);
}
.footer-brand .logo-wordmark span:first-child {
  font-size: 0.65rem;
}
.footer-brand .logo-wordmark span:last-child {
  font-size: 0.95rem;
}
.site-footer iframe { width: 100%; height: 260px; border: 0; margin-top: 1rem; }
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed; bottom: 20px; right: 20px; z-index: 90;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-accent2); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer; border: none;
  opacity: 0; transition: opacity .3s;
}
.scroll-top.visible { opacity: 1; }

/* ===== SUBPAGE HERO ===== */
.subpage-hero {
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  text-align: center;
  background: var(--color-bg);
}
.subpage-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: .5rem; }
.subpage-hero .divider {
  width: 60px; height: 2px; background: var(--color-accent2); margin: 1rem auto 0;
}

/* ===== ZONES (Mapa stanowisk) ===== */
.zone-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  align-items: start; padding: 2.5rem 0;
}
.zone-card + .zone-card {
  border-top: 1px solid rgba(255,255,255,.08);
}
.section--light .zone-card + .zone-card {
  border-top-color: rgba(0,0,0,.08);
}
.zone-header {
  grid-column: 1 / -1;
}
.zone-header h2 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: .3rem; }
.zone-header h3 {
  font-size: .9rem; font-weight: 600; text-transform: uppercase;
  color: var(--color-accent); letter-spacing: .04em;
}
.zone-desc {
  grid-column: 1 / -1;
  font-size: 1rem; line-height: 1.7; margin-bottom: .5rem;
}
.zone-features h4 {
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  color: var(--color-accent2); letter-spacing: .04em; margin-bottom: .8rem;
}
.zone-features ul { list-style: none; }
.zone-features li {
  position: relative;
  padding-left: 1.2rem; margin-bottom: .55rem;
  font-size: .92rem; line-height: 1.55;
}
.zone-features li::before {
  content: ''; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-accent-alt);
}
.zone-map-img { text-align: center; margin: 2rem 0; }
.zone-map-img img { display: inline-block; max-width: 100%; border-radius: 4px; }
.zone-cta { text-align: center; margin-top: 1.5rem; }

/* ===== MAPA LIVE ===== */
.mapa-live-lead {
  max-width: 40rem;
  margin: 0.75rem auto 0;
  color: var(--color-text-muted, #bdbdbd);
  font-size: 1.05rem;
  line-height: 1.45;
  text-align: center;
}
.mapa-live-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 1rem;
}
.mapa-live-status {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  font-size: 0.92rem;
  color: var(--color-text-dark, #2a2a2a);
}
.mapa-live-dot-legend {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid rgba(0, 0, 0, 0.25);
  background: rgba(120, 120, 120, 0.35);
}
.mapa-live-dot-legend--busy {
  background: #ff8a1f;
  border-color: #c45e00;
  box-shadow: 0 0 0 3px rgba(255, 138, 31, 0.25);
}
.mapa-live-meta {
  font-size: 0.88rem;
  color: #666;
  flex: 1 1 200px;
}
.mapa-live-wrap {
  position: relative;
  display: block;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
.mapa-live-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}
.mapa-live-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mapa-live-peg {
  position: absolute;
  transform: translate(-50%, -50%);
  width: clamp(18px, 2.4vw, 28px);
  height: clamp(18px, 2.4vw, 28px);
  border: 0;
  padding: 0;
  background: transparent;
  pointer-events: auto;
  cursor: default;
}
.mapa-live-peg__core {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: rgba(90, 90, 90, 0.45);
  border: 2px solid rgba(40, 40, 40, 0.35);
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
}
.mapa-live-peg__num {
  position: absolute;
  left: 110%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(40, 40, 40, 0.55);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.mapa-live-peg.is-busy .mapa-live-peg__core {
  background: #ff8a1f;
  border-color: #c45e00;
  box-shadow: 0 0 0 3px rgba(255, 138, 31, 0.35), 0 0 14px rgba(255, 120, 0, 0.55);
}
.mapa-live-peg.is-active-now .mapa-live-peg__core {
  animation: mapa-live-pulse 1.6s ease-in-out infinite;
}
.mapa-live-peg.is-busy .mapa-live-peg__num {
  color: #c45e00;
}
@keyframes mapa-live-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}
.mapa-live-hint {
  margin: 1rem auto 0;
  max-width: 52rem;
  text-align: center;
  font-size: 0.92rem;
  color: #666;
  line-height: 1.45;
}
.mapa-live-hint a { color: inherit; font-weight: 600; }
.mapa-live-list {
  margin: 1.5rem auto 0;
  max-width: 40rem;
}
.mapa-live-list__title {
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
}
.mapa-live-list__ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mapa-live-list__ul li {
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  align-items: baseline;
}
.mapa-live-list__meta {
  color: #666;
  font-size: 0.9rem;
}
.mapa-live-list__empty {
  color: #666;
  text-align: center;
}
@media (max-width: 640px) {
  .mapa-live-peg__num { display: none; }
  .mapa-live-toolbar { justify-content: center; text-align: center; }
}

@media (max-width: 768px) {
  .zone-card { grid-template-columns: 1fr; }
}

/* ===== REGULATIONS (Regulamin) ===== */
.reg-block { margin-bottom: 3rem; }
.reg-block:last-child { margin-bottom: 0; }
.reg-block h2 {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  margin-bottom: 1rem; padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.section--light .reg-block h2 { border-bottom-color: rgba(0,0,0,.1); }
.reg-block h3 {
  font-size: 1rem; font-weight: 700; text-transform: uppercase;
  color: var(--color-accent2); margin: 1.5rem 0 .8rem;
}
.section--light .reg-block h3 {
  color: var(--color-accent-alt);
}
.reg-block ul { list-style: none; margin-bottom: 1rem; }
.reg-block li {
  position: relative; padding-left: 1.3rem;
  margin-bottom: .5rem; font-size: .93rem; line-height: 1.6;
  font-weight: 400;
}
.reg-block li a,
.reg-block li strong,
.reg-block li b {
  font-weight: inherit;
}
.reg-block li::before {
  content: ''; position: absolute; left: 0; top: .6em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--color-accent);
}
.reg-block p {
  font-size: .95rem; line-height: 1.65; margin-bottom: .8rem;
}
.reg-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-bottom: 2.5rem;
}
.reg-tab-wrap {
  display: inline-flex;
  align-items: stretch;
  gap: 4px;
  max-width: 100%;
}
.reg-tab-wrap .reg-tab {
  flex: 1 1 auto;
  min-width: 0;
}
.reg-tab-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 40px;
  min-height: 42px;
  padding: 0;
  border: 1px solid rgba(221, 161, 94, 0.45);
  border-radius: var(--btn-radius);
  color: var(--color-accent);
  background: rgba(221, 161, 94, 0.08);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.reg-tab-download:hover {
  background: var(--color-accent2);
  border-color: var(--color-accent2);
  color: var(--color-white);
}
.reg-tab-download:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.reg-tabs-download-all {
  flex: 1 1 100%;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 2px;
}
.reg-tabs-download-all:hover {
  color: var(--color-accent);
}
.reg-tab {
  font-family: var(--font-heading); font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .03em;
  padding: .6rem 1.4rem; border: 1px solid var(--color-accent2);
  background: transparent; color: var(--color-white); cursor: pointer;
  border-radius: var(--btn-radius);
  transition: background .25s, color .25s;
}
.section--light .reg-tab { color: var(--color-text-dark); }
.reg-tab:hover, .reg-tab.active {
  background: var(--color-accent2); color: var(--color-white);
}
.reg-panel { display: none; }
.reg-panel.active { display: block; }
@media (max-width: 768px) {
  .reg-tab-wrap {
    width: 100%;
  }
  .reg-tab-wrap .reg-tab {
    flex: 1 1 auto;
  }
  .reg-tab-download {
    width: 44px;
  }
}

/* ===== PRICING (Cennik) ===== */
.price-section { margin-bottom: 3rem; }
.price-section:last-child { margin-bottom: 0; }
.price-section h2 {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  margin-bottom: 1.2rem;
}
.price-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.price-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1rem 1.2rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.section--light .price-card {
  background: #f7f7f7; border-color: #e0e0e0;
}
.price-card .label { font-size: .92rem; line-height: 1.4; }
.price-card .price {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 700;
  color: var(--color-accent); white-space: nowrap;
}
.price-note {
  font-size: .85rem; color: var(--color-text-muted);
  margin-top: .5rem; font-style: italic;
}
.price-section h3 {
  font-size: .95rem; font-weight: 700; text-transform: uppercase;
  color: var(--color-accent2); margin: 1.5rem 0 .8rem;
}
.section--light .price-section h3 {
  color: var(--color-accent-alt);
}

/* ===== POLITYKA PRYWATNOŚCI (/polityka-prywatnosci.html) ===== */
.pp-prose {
  max-width: 42rem;
  margin: 0 auto;
  padding-bottom: 0.5rem;
}
.pp-prose__title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 0.5rem;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0;
}
.pp-prose .pp-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}
.pp-prose .pp-note {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem 1.15rem;
  margin: 0 0 2rem;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--color-text);
}
.pp-prose .pp-note strong {
  color: var(--color-white);
  font-weight: 600;
}
.pp-prose .pp-actions {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.pp-prose .pp-actions .btn {
  text-align: center;
}
.pp-prose .pp-footer-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 2rem 0 1rem;
  text-align: center;
}
.pp-prose .pp-back-wrap--bottom {
  text-align: center;
  margin-top: 0.5rem;
}
.pp-prose .reg-block h2 {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: clamp(1.02rem, 2.2vw, 1.25rem);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== FILMY (YouTube) ===== */
.filmy-page-lead {
  text-align: center;
  color: var(--color-text-muted, rgba(255, 255, 255, 0.78));
  max-width: 640px;
  margin: 0 auto 1.75rem;
  line-height: 1.55;
  font-size: 1.02rem;
}
.filmy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.filmy-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}
.filmy-card__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.filmy-card__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.filmy-card__meta {
  padding: 0.85rem 1rem 1rem;
}
.filmy-card__caption {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
.filmy-empty {
  text-align: center;
  color: var(--color-text-muted);
  grid-column: 1 / -1;
  padding: 2rem 1rem;
}
.filmy-submit-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}
.filmy-submit-section .photo-submit-form {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}
.photo-submit-thumb--video {
  position: relative;
}
.photo-submit-thumb--video::after {
  content: '▶';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.75);
  pointer-events: none;
}
.photo-submit-thumb video.photo-submit-thumb__img {
  object-fit: cover;
  background: #111;
}
.filmy-submit-title {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  color: var(--color-accent2, #4fc3f7);
}
.filmy-submit-lead {
  margin: 0 auto 1.25rem;
  max-width: 560px;
  line-height: 1.55;
  color: var(--color-text-muted);
}
.filmy-submit-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.filmy-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  text-decoration: none;
}
.filmy-submit-btn--alt {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
