/**
 * LKS Gepard (Lekkoatletyczny Klub Sportowy „Gepard”) - style główne
 * Kolory: turkus, granat, ciemna zieleń, biel, akcent złota
 * Mobile-first, łatwa edycja zmiennych w :root
 */

:root {
 /* Paleta - podmień wartości HEX po materiałach klubu */
 --color-turquoise: #2ec4b6;
 --color-turquoise-dark: #1fa89c;
 --color-navy: #0c2340;
 --color-navy-light: #153a5c;
 --color-logo-bg: #001135;
 --color-forest: #1b4332;
 --color-forest-light: #2d6a4f;
 --color-white: #ffffff;
 --color-gold: #c9a227;
 --color-gold-soft: #e8c547;
 --color-link-camp-hover: #ffeb3b;

 --color-text: #0f172a;
 --color-text-muted: #475569;
 --cream: #f4fbf9;
 --cream-dark: #e8f5f1;

 --font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Roboto", sans-serif;
 --font-display: var(--font-sans);

 --radius-sm: 8px;
 --radius-md: 14px;
 --radius-lg: 22px;

 --shadow-sm: 0 2px 8px rgba(12, 35, 64, 0.08);
 --shadow-md: 0 8px 30px rgba(12, 35, 64, 0.12);
 --shadow-glow: 0 0 0 3px rgba(46, 196, 182, 0.35);

 --header-main-min-h: 64px;
 --header-h: var(--header-main-min-h);
 --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

 --max-w: 1120px;
}

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

html {
 scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
 html {
 scroll-behavior: auto;
 }
 *,
 *::before,
 *::after {
 animation-duration: 0.01ms !important;
 animation-iteration-count: 1 !important;
 transition-duration: 0.01ms !important;
 }
}

body {
 margin: 0;
 font-family: var(--font-sans);
 font-size: 1rem;
 line-height: 1.6;
 color: var(--color-text);
 background: var(--cream);
}

/* Offset pod sticky header przy linkach #sekcja */
section[id],
#hero,
#main {
 scroll-margin-top: calc(var(--header-h) + 12px);
}

#hero {
 scroll-margin-top: 0;
}

#main {
 scroll-margin-top: 0;
}

/**
 * Ujawnianie przy przewijaniu - nagłówek: [data-reveal], klasa .is-revealed dodawana w script.js (Intersection Observer).
 * Bez JS treść pozostaje widoczna dzięki <noscript> w szablonach. Szanuje prefers-reduced-motion (skrypt ustawia od razu .is-revealed).
 */
@media (prefers-reduced-motion: no-preference) {
 [data-reveal] {
 opacity: 0;
 transform: translate3d(0, 14px, 0);
 transition:
 opacity 0.58s var(--ease-out),
 transform 0.58s var(--ease-out);
 transition-delay: var(--reveal-delay, 0s);
 }

 [data-reveal].is-revealed {
 opacity: 1;
 transform: translate3d(0, 0, 0);
 }
}

.reveal-stagger > [data-reveal]:nth-child(1) {
 --reveal-delay: 0ms;
}
.reveal-stagger > [data-reveal]:nth-child(2) {
 --reveal-delay: 50ms;
}
.reveal-stagger > [data-reveal]:nth-child(3) {
 --reveal-delay: 100ms;
}
.reveal-stagger > [data-reveal]:nth-child(4) {
 --reveal-delay: 150ms;
}
.reveal-stagger > [data-reveal]:nth-child(5) {
 --reveal-delay: 200ms;
}
.reveal-stagger > [data-reveal]:nth-child(6) {
 --reveal-delay: 250ms;
}
.reveal-stagger > [data-reveal]:nth-child(7) {
 --reveal-delay: 300ms;
}
.reveal-stagger > [data-reveal]:nth-child(8) {
 --reveal-delay: 350ms;
}
.reveal-stagger > [data-reveal]:nth-child(9) {
 --reveal-delay: 400ms;
}
.reveal-stagger > [data-reveal]:nth-child(10) {
 --reveal-delay: 450ms;
}
.reveal-stagger > [data-reveal]:nth-child(11) {
 --reveal-delay: 500ms;
}
.reveal-stagger > [data-reveal]:nth-child(12) {
 --reveal-delay: 550ms;
}
.reveal-stagger > [data-reveal]:nth-child(13) {
 --reveal-delay: 600ms;
}
.reveal-stagger > [data-reveal]:nth-child(14) {
 --reveal-delay: 650ms;
}
.reveal-stagger > [data-reveal]:nth-child(15) {
 --reveal-delay: 700ms;
}
.reveal-stagger > [data-reveal]:nth-child(n + 16) {
 --reveal-delay: 750ms;
}

img {
 max-width: 100%;
 height: auto;
 display: block;
}

a {
 color: var(--color-turquoise-dark);
 text-decoration-thickness: 1px;
 text-underline-offset: 3px;
 transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
 color: var(--color-navy);
}

.skip-link {
 position: absolute;
 left: -9999px;
 top: 0;
 z-index: 1000;
 padding: 12px 16px;
 background: var(--color-navy);
 color: var(--color-white);
}

.skip-link:focus {
 left: 8px;
 top: 8px;
}

.container {
 width: 100%;
 max-width: var(--max-w);
 margin-inline: auto;
 padding-inline: 1.25rem;
}

/* ===== Nagłówek / nawigacja ===== */
.site-header {
 position: sticky;
 top: 0;
 z-index: 100;
 background: var(--color-logo-bg);
 backdrop-filter: none;
 border-bottom: none;
 transition: box-shadow 0.3s var(--ease-out);
}

.site-header.is-scrolled {
 box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.header__end {
 display: flex;
 align-items: center;
 justify-content: flex-end;
 gap: 0.55rem;
 flex: 1;
 min-width: 0;
}

.header-social {
 flex-shrink: 0;
}

.header-social .social-links {
 margin: 0;
}

.header-social .social-links__list {
 gap: 0.35rem;
 margin: 0;
 justify-content: flex-end;
}

@media (min-width: 900px) {
 .header__end {
  gap: 0.65rem;
 }
}

.social-links--compact .social-link {
 --social-icon: 34px;
 --social-sheet-row-h: 45.333px; /* 34 × (1000/750) */
 border-radius: 10px;
 box-shadow: 0 1px 5px rgba(0, 0, 0, 0.14);
}

.social-links--compact .social-link:hover,
.social-links--compact .social-link:focus-visible {
 transform: scale(1.05);
}

/* Ikony FB / IG w belce - kolorowy rząd spritesheetu (widoczne na granacie) */
.site-header .header-social .social-links--compact .social-link {
 box-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
 border: 1px solid rgba(255, 255, 255, 0.12);
 filter: none;
 opacity: 1;
}

.site-header .header-social .social-links--compact .social-link:hover,
.site-header .header-social .social-links--compact .social-link:focus-visible {
 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
 border-color: rgba(232, 197, 71, 0.5);
 filter: none;
 opacity: 1;
}

.header__inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
 min-height: var(--header-main-min-h);
 gap: 1rem;
}

.logo {
 display: inline-flex;
 align-items: flex-start;
 text-decoration: none;
 color: var(--color-white);
 flex-shrink: 0;
 overflow: hidden;
 height: 58px;
}

.logo__img {
 display: block;
 height: 88px;
 width: auto;
 max-width: min(320px, 52vw);
 object-fit: contain;
 object-position: center;
 margin-top: -10px;
}

@media (min-width: 480px) {
 .logo {
  height: 66px;
 }

 .logo__img {
  height: 96px;
  max-width: 340px;
  margin-top: -10px;
 }
}

.nav-toggle {
 display: flex;
 flex-direction: column;
 justify-content: center;
 gap: 5px;
 width: 44px;
 height: 44px;
 padding: 0;
 border: none;
 background: transparent;
 cursor: pointer;
 border-radius: var(--radius-sm);
}

.nav-toggle:focus-visible {
 outline: 2px solid var(--color-turquoise);
 outline-offset: 2px;
}

.nav-toggle__bar {
 display: block;
 width: 24px;
 height: 3px;
 background: var(--color-white);
 border-radius: 2px;
 transition: transform 0.25s var(--ease-out), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
 transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
 opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
 transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
 position: fixed;
 inset: var(--header-h) 0 auto 0;
 background: var(--color-logo-bg);
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.35s var(--ease-out);
 box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
 border-bottom: none;
}

.site-nav.is-open {
 max-height: min(80vh, 480px);
 overflow-y: auto;
}

.site-nav__list {
 list-style: none;
 margin: 0;
 padding: 0.5rem 0 1rem;
}

.site-nav__list a {
 display: block;
 padding: 0.75rem 1.25rem;
 color: var(--color-white);
 text-decoration: none;
 font-weight: 600;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
 background: rgba(255, 255, 255, 0.08);
 color: var(--color-gold-soft);
}

.site-nav__cta {
 color: var(--color-gold-soft) !important;
}

@media (min-width: 900px) {
 .nav-toggle {
 display: none;
 }

 .site-nav {
 position: static;
 max-height: none !important;
 overflow: visible;
 background: transparent;
 box-shadow: none;
 }

 .site-nav__list {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 0.25rem;
 padding: 0;
 }

 .site-nav__list a {
 padding: 0.5rem 0.85rem;
 border-radius: var(--radius-sm);
 font-size: 0.95rem;
 color: rgba(255, 255, 255, 0.94);
 }

 .site-nav__list a:hover,
 .site-nav__list a:focus-visible {
 background: rgba(255, 255, 255, 0.1);
 color: var(--color-white);
 }

 .site-nav__cta {
 color: var(--color-gold-soft) !important;
 }

 .site-nav__cta:hover,
 .site-nav__cta:focus-visible {
 color: var(--color-white) !important;
 background: rgba(201, 162, 39, 0.22) !important;
 }
}

/* ===== Sekcje ogólne ===== */
.section {
 padding-block: 3.5rem;
}

@media (min-width: 768px) {
 .section {
 padding-block: 4.5rem;
 }
}

.section__header {
 text-align: center;
 margin-bottom: 2.5rem;
}

.section__header--light .section__title,
.section__header--light .section__subtitle {
 color: var(--color-white);
}

.section__header--align-left {
 text-align: left;
 margin-bottom: 1.5rem;
}

.section__title {
 font-family: var(--font-display);
 font-size: clamp(1.75rem, 4vw, 2.5rem);
 font-weight: 800;
 letter-spacing: -0.03em;
 margin: 0 0 0.35rem;
 color: var(--color-navy);
 line-height: 1.15;
}

.section__subtitle {
 margin: 0;
 font-size: 1.05rem;
 color: var(--color-text-muted);
}

.section__title-inline {
 margin-top: 2rem;
}

.h3 {
 font-size: 1.2rem;
 font-weight: 700;
 color: var(--color-navy);
 margin: 1.75rem 0 0.75rem;
}

.eyebrow {
 display: inline-block;
 font-size: 0.8rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.08em;
 color: var(--color-forest-light);
}

.prose p {
 margin: 0 0 1rem;
}

.muted {
 color: var(--color-text-muted);
 font-size: 0.95rem;
}

.small {
 font-size: 0.85rem;
}

.center {
 text-align: center;
}

code {
 font-size: 0.88em;
 background: rgba(12, 35, 64, 0.06);
 padding: 0.12em 0.35em;
 border-radius: 4px;
}

/* ===== Przyciski ===== */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 0.5rem;
 padding: 0.85rem 1.35rem;
 font-size: 0.95rem;
 font-weight: 700;
 font-family: inherit;
 border-radius: 999px;
 border: 2px solid transparent;
 cursor: pointer;
 text-decoration: none;
 transition:
 transform 0.2s var(--ease-out),
 box-shadow 0.2s var(--ease-out),
 background 0.2s,
 color 0.2s;
}

.btn:focus-visible {
 outline: none;
 box-shadow: var(--shadow-glow);
}

.btn:hover {
 transform: translateY(-1px);
}

.btn--primary {
 background: linear-gradient(135deg, var(--color-turquoise), var(--color-turquoise-dark));
 color: var(--color-navy);
 box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
 color: var(--color-navy);
 box-shadow: var(--shadow-md);
}

.btn--secondary {
 background: var(--color-navy);
 color: var(--color-white);
 border-color: var(--color-navy);
}

.btn--secondary:hover {
 background: var(--color-navy-light);
 color: var(--color-white);
}

.btn--ghost {
 background: transparent;
 color: var(--color-navy);
 border-color: rgba(12, 35, 64, 0.25);
}

.btn--ghost:hover {
 border-color: var(--color-gold);
 color: var(--color-navy);
}

.btn--small {
 padding: 0.55rem 1rem;
 font-size: 0.85rem;
}

.btn--large {
 padding: 1.05rem 1.85rem;
 font-size: 1.05rem;
}

.btn--block {
 width: 100%;
}

/* ===== Hero ===== */
.hero {
 position: relative;
 /* Co najmniej 900 px wysokości; na wysokich ekranach proporcjonalnie więcej (72vh) */
 min-height: max(900px, 72vh);
 display: flex;
 flex-direction: column;
 justify-content: center;
 padding-block: 2.5rem 3.5rem;
 overflow: hidden;
 /* rezerwa przy wolnym ładowaniu obrazka */
 background-color: #0c2340;
}

/* Tylko plakat (grafika): iOS/WebKit potrafi uciąć dół przy aspect-ratio + max-height(vh). */
@media (max-width: 768px) {
 .hero {
  /* Większa sekcja niż na desktopie względem vh + wyższy próg px - więcej miejsca na plakat przy paralaksie */
  min-height: max(1050px, 92vh);
 }

 .hero__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
 }
}

@supports (height: 100svh) {
 @media (max-width: 768px) {
  .hero {
   min-height: max(1050px, 92svh);
  }
 }
}

/* Paralaksa hero (sterowana w script.js) */
.parallax-bg {
 will-change: transform;
}

.parallax-content,
.parallax-card {
 will-change: transform;
 backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
 .parallax-bg,
 .parallax-content,
 .parallax-card {
 transform: none !important;
 will-change: auto;
 }

 .hero__bg.parallax-bg,
 .camp__bg.parallax-bg,
 .offers__bg.parallax-bg {
 top: 0;
 height: 100%;
 background-position: center, center bottom;
 }

 .camp__bg.parallax-bg {
 background-position: center, center 40%;
 }

 .offers__bg.parallax-bg {
 background-position: center, center 42%;
 }
}

.hero__bg {
 position: absolute;
 /* Zapas na przesuwanie - bez szarych krawędzi */
 left: 0;
 right: 0;
 top: -14%;
 height: 128%;
 z-index: 0;
 background-color: #0c2340;
 background-image:
 linear-gradient(
 105deg,
 rgba(248, 251, 249, 0.96) 0%,
 rgba(248, 251, 249, 0.78) 28%,
 rgba(248, 251, 249, 0.35) 48%,
 rgba(12, 35, 64, 0.2) 72%,
 rgba(12, 35, 64, 0.45) 100%
 ),
 url("assets/images/background.jpg");
 background-size: cover;
 background-position: center, center center;
 background-repeat: no-repeat;
 pointer-events: none;
 backface-visibility: hidden;
}

.hero__grid {
 position: relative;
 z-index: 1;
 display: grid;
 gap: 2rem;
 align-items: center;
}

@media (min-width: 900px) {
 .hero__grid {
 grid-template-columns: 1fr 1fr;
 gap: 3rem;
 padding-block: 1rem;
 }
}

.hero__eyebrow {
 margin-bottom: 0.75rem;
}

.hero__title {
 font-family: var(--font-display);
 font-size: clamp(2rem, 5vw, 3rem);
 font-weight: 900;
 letter-spacing: -0.03em;
 line-height: 1.08;
 margin: 0 0 1rem;
 color: var(--color-navy);
 text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.hero__lead {
 font-size: 1.1rem;
 color: var(--color-text-muted);
 margin: 0 0 1rem;
 max-width: 38ch;
 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.45);
}

.hero__detail {
 margin: 0 0 1.5rem;
 max-width: 42ch;
 font-size: 0.98rem;
 color: var(--color-text-muted);
}

.hero__detail p {
 margin: 0 0 0.85rem;
 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
}

.hero__detail p:last-child {
 margin-bottom: 0;
}

.hero__detail a {
 color: var(--color-turquoise-dark);
 font-weight: 600;
 text-decoration: underline;
 text-underline-offset: 0.15em;
}

.hero__detail a:hover,
.hero__detail a:focus-visible {
 color: var(--color-navy);
}

.hero__actions {
 display: flex;
 flex-wrap: wrap;
 gap: 0.75rem;
}

.hero__promo {
 display: block;
 max-width: 76%;
 margin: 0 auto;
 text-decoration: none;
 color: inherit;
}

.hero__promo:focus-visible {
 outline: 3px solid var(--color-turquoise);
 outline-offset: 4px;
 border-radius: var(--radius-lg);
}

.hero__figure {
 margin: 0;
 max-width: none;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-md);
 border: 4px solid var(--color-white);
 background: var(--cream-dark);
}

.hero__promo-heading {
 margin-bottom: 0.75rem;
 padding: 0.7rem 1rem;
 text-align: center;
 border-radius: var(--radius-md);
 background: rgba(255, 255, 255, 0.92);
 box-shadow: 0 4px 18px rgba(12, 35, 64, 0.14);
}

.hero__promo-eyebrow {
 margin: 0 0 0.25rem;
 font-size: 1.06rem;
 font-weight: 700;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 color: var(--color-turquoise-dark);
 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero__promo-title {
 margin: 0;
 font-family: var(--font-display);
 font-size: clamp(1.5rem, 3.1vw, 1.9rem);
 font-weight: 800;
 line-height: 1.15;
 color: var(--color-navy);
 text-shadow: 0 1px 2px rgba(255, 255, 255, 0.65);
}

.hero__promo-footer {
 margin: 0.85rem 0 0;
 padding: 0.55rem 1rem;
 text-align: center;
 border-radius: var(--radius-md);
 background: rgba(255, 255, 255, 0.92);
 box-shadow: 0 4px 18px rgba(12, 35, 64, 0.14);
}

.hero__promo-link {
 display: inline-block;
 font-size: 1.15rem;
 font-weight: 700;
 color: var(--color-turquoise-dark);
 text-decoration: underline;
 text-underline-offset: 0.18em;
 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero__promo:hover .hero__promo-link,
.hero__promo:focus-visible .hero__promo-link {
 color: var(--color-navy);
}

.hero__img {
 width: 100%;
 aspect-ratio: 723 / 1024;
 max-height: min(62vh, 580px);
 object-fit: contain;
 object-position: center;
}

/* ===== O klubie ===== */
.about__grid {
 display: grid;
 gap: 2rem;
}

@media (min-width: 800px) {
 .about__grid {
 grid-template-columns: 1.4fr 1fr;
 align-items: start;
 }
}

.card {
 padding: 1.5rem;
 border-radius: var(--radius-md);
 background: var(--color-white);
 box-shadow: var(--shadow-sm);
}

.card--accent {
 background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
 color: var(--color-white);
 border-top: 4px solid var(--color-gold);
}

.card--accent .card__title {
 color: var(--color-gold-soft);
 margin-top: 0;
}

.card__text {
 margin: 0;
 opacity: 0.95;
}

.about__card .card__text + .card__text {
 margin-top: 0.85rem;
}

.icon-list {
 list-style: none;
 padding: 0;
 margin: 1rem 0 0;
}

.icon-list li {
 display: flex;
 gap: 0.65rem;
 margin-bottom: 0.75rem;
 align-items: flex-start;
}

.icon-list__icon {
 flex-shrink: 0;
 font-size: 1.25rem;
}

.about__activities {
 margin-top: 2.5rem;
 padding-top: 2rem;
 border-top: 1px solid rgba(12, 35, 64, 0.08);
}

.about__activities-title {
 margin: 0 0 1.25rem;
 color: var(--color-navy);
 font-size: 1.2rem;
}

.activity-grid {
 list-style: none;
 margin: 0;
 padding: 0;
 display: grid;
 gap: 0.85rem;
 grid-template-columns: 1fr;
}

@media (min-width: 560px) {
 .activity-grid {
  grid-template-columns: repeat(2, 1fr);
 }
}

@media (min-width: 768px) {
 .activity-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
 }
}

.activity-card {
 display: flex;
 align-items: flex-start;
 gap: 0.85rem;
 padding: 1rem 1rem 1rem 0.85rem;
 border-radius: var(--radius-md);
 background: linear-gradient(145deg, var(--color-white) 0%, var(--cream) 100%);
 border: 1px solid rgba(12, 35, 64, 0.07);
 border-left: 4px solid var(--color-turquoise);
 box-shadow: var(--shadow-sm);
 transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.activity-card:hover {
 border-left-color: var(--color-gold);
 box-shadow: var(--shadow-md);
 transform: translateY(-2px);
}

.activity-card__icon {
 flex-shrink: 0;
 display: flex;
 align-items: center;
 justify-content: center;
 width: 2.5rem;
 height: 2.5rem;
 font-size: 1.35rem;
 line-height: 1;
 border-radius: var(--radius-sm);
 background: rgba(46, 196, 182, 0.14);
}

.activity-card__body {
 min-width: 0;
}

.activity-card__title {
 margin: 0 0 0.25rem;
 font-size: 0.98rem;
 font-weight: 700;
 line-height: 1.25;
 color: var(--color-navy);
}

.activity-card__meta {
 margin: 0;
 font-size: 0.82rem;
 line-height: 1.4;
 color: var(--color-text-muted);
}

/* ===== Półkolonie ===== */
.camp {
 background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-forest) 100%);
 color: var(--color-white);
}

.camp.camp--parallax {
 position: relative;
 overflow: hidden;
 background: #0c2340;
}

.camp__bg {
 position: absolute;
 left: 0;
 right: 0;
 top: -12%;
 height: 124%;
 z-index: 0;
 background-color: #0c2340;
 background-image:
 linear-gradient(
 125deg,
 rgba(12, 35, 64, 0.92) 0%,
 rgba(12, 35, 64, 0.78) 32%,
 rgba(17, 65, 52, 0.58) 55%,
 rgba(8, 22, 40, 0.72) 100%
 ),
 url("assets/images/skok.jpg");
 background-size: cover;
 background-position: center, 52% 38%;
 background-repeat: no-repeat;
 pointer-events: none;
 backface-visibility: hidden;
}

.camp__inner {
 position: relative;
 z-index: 1;
}

.camp.camp--parallax .section__title {
 text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.camp.camp--parallax .section__subtitle {
 text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
}

.camp .h3,
.camp .section__subtitle {
 color: rgba(255, 255, 255, 0.92);
}

.camp .prose strong {
 color: var(--color-gold-soft);
}

.camp__highlights {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 0.85rem;
 margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
 .camp__highlights {
 grid-template-columns: repeat(3, 1fr);
 }
}

@media (min-width: 900px) {
 .camp__highlights {
 grid-template-columns: repeat(6, 1fr);
 }
}

.hl-card {
 background: rgba(255, 255, 255, 0.1);
 border: 1px solid rgba(232, 197, 71, 0.35);
 border-radius: var(--radius-md);
 padding: 1rem 0.85rem;
 text-align: center;
}

.hl-card__value {
 display: block;
 font-weight: 800;
 font-size: 0.95rem;
 color: var(--color-gold-soft);
 line-height: 1.25;
}

.hl-card__label {
 font-size: 0.75rem;
 opacity: 0.9;
}

.camp__grid-two {
 display: grid;
 gap: 2rem;
 margin-bottom: 2rem;
}

@media (min-width: 900px) {
 .camp__grid-two {
 grid-template-columns: 1fr 340px;
 align-items: start;
 }
}

.def-list {
 margin: 0;
}

.def-list > div {
 margin-bottom: 1rem;
 padding-bottom: 1rem;
 border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.def-list dt {
 font-weight: 700;
 color: var(--color-turquoise);
 font-size: 0.85rem;
 text-transform: uppercase;
 letter-spacing: 0.04em;
}

.def-list dd {
 margin: 0.35rem 0 0;
}

.check-list {
 padding-left: 1.2rem;
 margin: 0;
}

.check-list li {
 margin-bottom: 0.45rem;
}

.camp .muted {
 color: rgba(255, 255, 255, 0.75);
}

/* Linki w sekcji półkolonii (granatowe tło): domyślnie jasny tekst zamiast „niebieskiego”, hover - żółty */
.camp a:not(.btn),
.camp a:not(.btn):visited {
 color: var(--color-white);
 text-decoration-color: rgba(232, 197, 71, 0.75);
}

.camp a:not(.btn):hover,
.camp a:not(.btn):focus-visible {
 color: var(--color-link-camp-hover);
 text-decoration-color: var(--color-link-camp-hover);
}

.camp code {
 background: rgba(0, 0, 0, 0.25);
 color: var(--cream);
}

.flyer-frame {
 margin: 1rem 0 0;
 border-radius: var(--radius-md);
 overflow: hidden;
 border: 3px solid var(--color-gold);
 box-shadow: var(--shadow-md);
}

.flyer-frame img {
 width: 100%;
 display: block;
}

.chip-grid {
 list-style: none;
 padding: 0;
 margin: 0;
 display: grid;
 gap: 0.65rem;
}

@media (min-width: 640px) {
 .chip-grid {
 grid-template-columns: repeat(2, 1fr);
 }
}

.chip-grid li {
 background: rgba(255, 255, 255, 0.08);
 border-radius: var(--radius-sm);
 padding: 0.65rem 0.85rem;
 font-size: 0.92rem;
 border-left: 3px solid var(--color-turquoise);
}

.camp__schedule-wrap {
 margin-top: 2.5rem;
 padding-top: 2rem;
 border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.camp__cta-row {
 display: flex;
 flex-wrap: wrap;
 gap: 0.75rem;
 margin-top: 2rem;
 justify-content: center;
}

.camp .btn--ghost {
 color: var(--color-white);
 border-color: rgba(255, 255, 255, 0.4);
}

.camp .btn--ghost:hover {
 border-color: var(--color-gold);
 color: var(--color-gold-soft);
}

.disclosure {
 font-size: 0.8rem;
 color: rgba(255, 255, 255, 0.75);
 margin-top: 1.25rem;
 line-height: 1.5;
}

/* Skrót półkolonii na stronie głównej */
.camp-teaser__heading {
 margin: 1.75rem 0 0.85rem;
 font-size: 1.05rem;
}

.camp__intro-prose--teaser {
 margin: 0 0 1.25rem;
 max-width: 72ch;
 color: rgba(255, 255, 255, 0.92);
 font-size: 1rem;
 line-height: 1.6;
}

.camp__intro-prose--full {
 max-width: none;
 width: 100%;
}

.camp-teaser__heading--past {
 margin-top: 2rem;
 opacity: 0.92;
}

.camp-teaser__past {
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: 0.85rem;
 margin-bottom: 0.25rem;
}

@media (max-width: 720px) {
 .camp-teaser__past {
  grid-template-columns: 1fr;
 }
}

.camp-info-box--past {
 opacity: 0.82;
 border-color: rgba(255, 255, 255, 0.28);
 background: rgba(0, 0, 0, 0.14);
}

.camp-teaser__terms {
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: 0.85rem;
 margin-bottom: 0.25rem;
}

@media (max-width: 720px) {
 .camp-teaser__terms {
  grid-template-columns: 1fr;
 }
}

.camp__program-heading {
 margin-top: 1.35rem;
}

.camp-teaser__venues {
 display: grid;
 grid-template-columns: 1fr;
 gap: 0.85rem;
 margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
 .camp-teaser__venues {
 grid-template-columns: repeat(3, 1fr);
 }
}

.camp-teaser__spotlights {
 display: grid;
 grid-template-columns: 1fr;
 gap: 0.85rem;
 margin: 1rem 0 1.25rem;
}

@media (min-width: 640px) {
 .camp-teaser__spotlights {
 grid-template-columns: repeat(3, 1fr);
 align-items: stretch;
 }
}

.camp-info-box--care-block {
 border-color: rgba(105, 209, 197, 0.55);
 background: rgba(0, 0, 0, 0.2);
}

.camp-info-box {
 background: rgba(255, 255, 255, 0.12);
 border: 2px solid rgba(232, 197, 71, 0.45);
 border-radius: var(--radius-md);
 padding: 1rem 1rem 1.05rem;
 text-align: center;
 box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.camp-info-box--spotlight {
 border-width: 2px;
 border-color: rgba(105, 209, 197, 0.55);
 background: rgba(0, 0, 0, 0.2);
}

.camp-info-box--price {
 border-color: rgba(232, 197, 71, 0.6);
}

.camp-info-box__label {
 margin: 0 0 0.35rem;
 font-size: 0.72rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.06em;
 color: var(--color-turquoise);
 opacity: 0.95;
}

.camp-info-box__value {
 margin: 0;
 font-weight: 800;
 font-size: 1.05rem;
 line-height: 1.3;
 color: var(--color-gold-soft);
}

.camp-info-box--venue .camp-info-box__value {
 font-size: 0.98rem;
 color: var(--color-white);
}

.camp-info-box__address {
 margin: 0.55rem 0 0;
 font-size: 0.74rem;
 font-weight: 600;
 line-height: 1.4;
 color: rgba(255, 255, 255, 0.88);
}

.camp-info-box__address a {
 color: var(--color-white);
 text-decoration-thickness: 1px;
 text-underline-offset: 2px;
 text-decoration-color: rgba(232, 197, 71, 0.75);
}

.camp-info-box__address a:hover,
.camp-info-box__address a:focus-visible {
 color: var(--color-link-camp-hover);
 text-decoration-color: var(--color-link-camp-hover);
}

.camp-info-box__label--stack {
 margin: 0.85rem 0 0.35rem;
}

.camp-info-box__value--care {
 margin: 0;
 font-weight: 800;
 font-size: clamp(1.15rem, 3.2vw, 1.45rem);
 letter-spacing: 0.02em;
 color: var(--color-gold-soft);
 line-height: 1.3;
}

.camp-info-box__value--large {
 font-size: clamp(1.35rem, 4vw, 1.75rem);
 letter-spacing: 0.02em;
}

.camp-info-box__suffix {
 font-weight: 600;
 font-size: 0.75em;
 opacity: 0.88;
}

.camp__highlights--compact {
 grid-template-columns: repeat(2, 1fr);
 margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
 .camp__highlights--compact {
 grid-template-columns: repeat(4, 1fr);
 gap: 0.75rem;
 }
}

.camp__cta-main {
 margin-top: 1.75rem;
 text-align: center;
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 0.75rem;
}

.camp__cta-main .btn--large {
 width: 100%;
 max-width: 26rem;
}

.camp__patron-row {
 display: flex;
 flex-wrap: wrap;
 align-items: flex-start;
 gap: 0.85rem 1rem;
 margin-top: 1.35rem;
 padding-top: 1.1rem;
 border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.camp__patron-logo-link {
 display: inline-flex;
 flex: 0 0 auto;
 align-items: center;
 justify-content: center;
 padding: 0.35rem 0.45rem;
 background: var(--color-white);
 border-radius: var(--radius-sm);
 border: 1px solid rgba(255, 255, 255, 0.22);
 text-decoration: none;
 transition: border-color 0.2s, box-shadow 0.2s;
}

.camp__patron-logo-link:hover,
.camp__patron-logo-link:focus-visible {
 border-color: rgba(232, 197, 71, 0.65);
 box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.camp__patron-logo-link:focus-visible {
 outline: 2px solid var(--color-gold-soft);
 outline-offset: 2px;
}

.camp__patron-logo {
 display: block;
 width: auto;
 max-width: 88px;
 height: auto;
}

@media (min-width: 640px) {
 .camp__patron-logo {
  max-width: 100px;
 }
}

.camp__patron-row .camp__patron-note {
 flex: 1 1 12rem;
 min-width: 0;
 margin: 0;
 text-align: left;
 font-size: 0.9rem;
 line-height: 1.5;
 opacity: 0.95;
}

/* Tabele */
.table-responsive {
 overflow-x: auto;
 margin: 1rem 0;
 border-radius: var(--radius-md);
 box-shadow: var(--shadow-sm);
}

.schedule-table {
 width: 100%;
 min-width: 520px;
 border-collapse: collapse;
 font-size: 0.9rem;
 background: var(--color-white);
 color: var(--color-text);
}

.camp .schedule-table caption {
 caption-side: top;
 text-align: left;
 padding: 0.75rem 1rem;
 font-weight: 700;
 background: var(--color-navy-light);
 color: var(--color-white);
}

.schedule-table th,
.schedule-table td {
 padding: 0.65rem 0.85rem;
 text-align: left;
 border-bottom: 1px solid rgba(12, 35, 64, 0.08);
}

.schedule-table th {
 background: var(--cream-dark);
 color: var(--color-navy);
 font-weight: 700;
}

.schedule-table tbody tr:hover {
 background: rgba(46, 196, 182, 0.06);
}

.badge {
 display: inline-block;
 padding: 0.2rem 0.55rem;
 border-radius: 999px;
 font-size: 0.8rem;
 font-weight: 700;
}

.badge--open {
 background: rgba(46, 196, 182, 0.25);
 color: var(--color-forest);
}

/* Oś czasu - alternatywa wizualna (przykładowe sloty) */
.timeline {
 margin: 1.5rem 0;
 padding-left: 1.25rem;
 border-left: 3px solid var(--color-turquoise);
}

.timeline__item {
 position: relative;
 padding-bottom: 1.25rem;
 padding-left: 1rem;
}

.timeline__item::before {
 content: "";
 position: absolute;
 left: -1.5rem;
 top: 0.35rem;
 width: 12px;
 height: 12px;
 border-radius: 50%;
 background: var(--color-gold);
 border: 2px solid var(--color-white);
}

.timeline__time {
 font-weight: 800;
 color: var(--color-navy);
 font-size: 0.9rem;
}

/* ===== FAQ accordion ===== */
.faq {
 background: var(--color-white);
}

.faq__disclaimer {
 max-width: 720px;
 margin: 0 auto 1.25rem;
 text-align: center;
 font-size: 0.95rem;
 line-height: 1.5;
}

.accordion {
 max-width: 720px;
 margin-inline: auto;
}

.accordion__item {
 border-bottom: 1px solid rgba(12, 35, 64, 0.1);
}

.accordion__trigger {
 width: 100%;
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 1rem;
 padding: 1.15rem 0;
 border: none;
 background: none;
 font-size: 1rem;
 font-weight: 700;
 font-family: inherit;
 text-align: left;
 color: var(--color-navy);
 cursor: pointer;
}

.accordion__trigger::after {
 content: "+";
 flex-shrink: 0;
 width: 28px;
 height: 28px;
 display: grid;
 place-items: center;
 border-radius: 8px;
 background: var(--cream-dark);
 transition: transform 0.25s var(--ease-out);
}

.accordion__trigger[aria-expanded="true"]::after {
 content: "−";
 background: var(--color-turquoise);
 color: var(--color-navy);
}

.accordion__panel {
 padding: 0 0 1.15rem;
 color: var(--color-text-muted);
}

.accordion__panel[hidden] {
 display: none;
}

/* ===== Treningi ===== */
.trainings {
 background: var(--cream-dark);
}

/* Intro: grafika z prawej u góry, tekst opływa i zajmuje pełną szerokość poniżej (float + flow-root) */
.trainings__intro-flow {
 display: flow-root;
 margin-bottom: 2rem;
}

.trainings__intro-text {
 max-width: none;
}

.trainings__intro-visual {
 float: right;
 width: min(100%, 420px);
 margin: 0 0 1rem 1.5rem;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-md);
 border: 3px solid var(--color-white);
 background: var(--color-white);
}

.trainings__intro-img {
 display: block;
 width: 100%;
 height: auto;
}

@media (max-width: 767px) {
 .trainings__intro-visual {
  float: none;
  width: 100%;
  margin: 0 0 1.25rem 0;
 }
}

.notice {
 padding: 1rem 1.25rem;
 border-radius: var(--radius-md);
 background: linear-gradient(135deg, rgba(46, 196, 182, 0.15), rgba(201, 162, 39, 0.12));
 border-left: 4px solid var(--color-gold);
 margin-top: 1rem;
}

.offer-bullets {
 columns: 1;
 padding-left: 1.2rem;
}

@media (min-width: 640px) {
 .offer-bullets {
 columns: 2;
 }
}

.offer-bullets li {
 break-inside: avoid;
 margin-bottom: 0.5rem;
}

/* ===== Kadra ===== */
.team__lead {
 max-width: 65ch;
 margin: 0 auto 2rem;
 text-align: center;
}

.team__grid {
 display: grid;
 gap: 1.5rem;
}

@media (min-width: 640px) {
 .team__grid {
 grid-template-columns: repeat(2, 1fr);
 }
}

@media (min-width: 1100px) {
 .team__grid {
 grid-template-columns: repeat(4, 1fr);
 }
}

.person-card {
 background: var(--color-white);
 border-radius: var(--radius-md);
 padding: 1.25rem;
 box-shadow: var(--shadow-sm);
 text-align: center;
 transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
 border-top: 3px solid var(--color-turquoise);
}

.person-card:hover {
 transform: translateY(-4px);
 box-shadow: var(--shadow-md);
}

.person-card__photo {
 width: 100%;
 max-width: 200px;
 margin: 0 auto 1rem;
 border-radius: 50%;
 aspect-ratio: 1;
 object-fit: cover;
 border: 4px solid var(--cream-dark);
}

.person-card__name {
 margin: 0 0 0.25rem;
 font-size: 1.1rem;
 color: var(--color-navy);
}

.person-card__role {
 margin: 0 0 0.5rem;
 font-size: 0.85rem;
 font-weight: 700;
 color: var(--color-forest-light);
}

.person-card__name-extra {
 display: block;
 font-size: 0.82em;
 font-weight: 600;
 color: var(--color-text-muted);
 margin-top: 0.15rem;
}

@media (min-width: 400px) {
 .person-card__name-extra {
 display: inline;
 margin-left: 0.2rem;
 margin-top: 0;
 }
}

.person-card__bio {
 margin: 0;
 font-size: 0.9rem;
 color: var(--color-text-muted);
}

.person-card--link {
 display: block;
 text-decoration: none;
 color: inherit;
 cursor: pointer;
}

.person-card--link:focus-visible {
 outline: 3px solid var(--color-turquoise);
 outline-offset: 3px;
}

.person-card__more {
 display: block;
 margin-top: 0.85rem;
 font-size: 0.82rem;
 font-weight: 700;
 color: var(--color-forest);
}

.person-card--link:hover .person-card__more {
 text-decoration: underline;
}

.team__remote {
 margin-top: 2.25rem;
 padding: 1.35rem 1.5rem;
 max-width: 48rem;
 margin-inline: auto;
 background: var(--color-white);
 border-radius: var(--radius-md);
 box-shadow: var(--shadow-sm);
 border-left: 4px solid var(--color-gold);
}

.team__remote-title {
 margin: 0 0 0.65rem;
 font-size: 1.05rem;
 font-weight: 800;
 color: var(--color-navy);
}

.team__remote-text {
 margin: 0;
 font-size: 0.95rem;
 color: var(--color-text-muted);
 line-height: 1.55;
}

/* Komunikat po wysłaniu formularza (PHP flash) */
.site-flash {
 position: fixed;
 z-index: 200;
 left: 50%;
 transform: translateX(-50%);
 top: calc(var(--header-h) + 10px);
 max-width: min(36rem, calc(100vw - 2rem));
 padding: 0.85rem 1.25rem;
 border-radius: var(--radius-md);
 font-weight: 600;
 font-size: 0.95rem;
 box-shadow: var(--shadow-md);
 animation: site-flash-in 0.35s var(--ease-out);
}

@keyframes site-flash-in {
 from {
 opacity: 0;
 transform: translateX(-50%) translateY(-8px);
 }
 to {
 opacity: 1;
 transform: translateX(-50%) translateY(0);
 }
}

.site-flash--success {
 background: rgba(45, 106, 79, 0.95);
 color: var(--color-white);
 border: 1px solid rgba(255, 255, 255, 0.25);
}

.site-flash--error {
 background: rgba(153, 27, 27, 0.95);
 color: var(--color-white);
 border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Honeypot - ukryte przed użytkownikiem */
.hp-field {
 position: absolute;
 width: 1px;
 height: 1px;
 padding: 0;
 margin: -1px;
 overflow: hidden;
 clip: rect(0, 0, 0, 0);
 white-space: nowrap;
 border: 0;
}

/* ===== Mapa stadionu ===== */
.map-section {
 background: var(--cream-dark);
}

.map-section__address {
 max-width: 50rem;
 margin: 0 auto 1.75rem;
}

.map-grid {
 display: grid;
 gap: 1.75rem;
}

@media (min-width: 768px) {
 .map-grid {
 grid-template-columns: 1fr 1fr;
 align-items: start;
 }
}

.map-block {
 margin: 0;
}

.map-block__caption {
 font-weight: 800;
 color: var(--color-navy);
 margin-bottom: 0.65rem;
 font-size: 1rem;
}

.map-embed {
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-md);
 border: 3px solid var(--color-white);
 max-width: 100%;
 margin-inline: auto;
}

.map-embed iframe {
 width: 100%;
 height: min(380px, 52vh);
 display: block;
 border: 0;
}

.map-embed--consent .lks-embed-host {
 min-height: min(380px, 52vh);
}

.lks-embed-placeholder {
 display: flex;
 align-items: center;
 justify-content: center;
 min-height: min(380px, 52vh);
 margin: 0;
 padding: 1.25rem 1rem;
 text-align: center;
 background: linear-gradient(145deg, rgba(12, 35, 64, 0.06), rgba(46, 196, 182, 0.08));
 box-sizing: border-box;
}

.lks-embed-placeholder__text {
 margin: 0;
 max-width: 32rem;
 font-size: 0.95rem;
 line-height: 1.55;
 color: var(--color-text-muted);
}

.lks-embed-placeholder__btn {
 display: inline;
 background: none;
 border: 0;
 padding: 0;
 margin: 0;
 font: inherit;
 font-weight: 700;
 color: var(--color-turquoise-dark);
 cursor: pointer;
 text-decoration: underline;
 text-underline-offset: 2px;
}

.lks-embed-placeholder__btn:hover,
.lks-embed-placeholder__btn:focus-visible {
 color: var(--color-navy);
 outline: none;
 text-decoration-thickness: 2px;
}

.map-block__links {
 display: flex;
 flex-wrap: wrap;
 gap: 0.5rem;
 margin-top: 0.75rem;
 justify-content: center;
}

/* ===== Oferta ===== */
.offers.offers--parallax {
 position: relative;
 overflow: hidden;
 background: var(--cream);
}

.offers__bg {
 position: absolute;
 left: 0;
 right: 0;
 top: -14%;
 height: 128%;
 z-index: 0;
 background-color: var(--cream-dark);
 background-image:
 linear-gradient(
 155deg,
 rgba(244, 251, 249, 0.9) 0%,
 rgba(244, 251, 249, 0.45) 42%,
 rgba(12, 35, 64, 0.28) 100%
 ),
 url("assets/images/trening_dzieci.jpg");
 background-size: cover;
 background-position: center, center 42%;
 background-repeat: no-repeat;
 pointer-events: none;
 backface-visibility: hidden;
}

.offers__inner {
 position: relative;
 z-index: 1;
}

.offers--parallax .section__title {
 text-shadow: 0 1px 3px rgba(255, 255, 255, 0.85);
}

.offers--parallax .section__subtitle {
 text-shadow: 0 1px 2px rgba(255, 255, 255, 0.75);
}

.offers--parallax .offer-card {
 box-shadow: 0 6px 28px rgba(12, 35, 64, 0.14);
}

.offers__grid {
 display: grid;
 gap: 1.25rem;
}

@media (min-width: 640px) {
 .offers__grid {
 grid-template-columns: repeat(2, 1fr);
 }
}

@media (min-width: 1000px) {
 .offers__grid {
 grid-template-columns: repeat(3, 1fr);
 }
}

.offer-card {
 background: var(--color-white);
 border-radius: var(--radius-md);
 padding: 1.5rem;
 box-shadow: var(--shadow-sm);
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 gap: 0.5rem;
 border: 1px solid rgba(12, 35, 64, 0.06);
 transition: border-color 0.2s, box-shadow 0.2s;
}

.offer-card:hover {
 border-color: rgba(46, 196, 182, 0.45);
 box-shadow: var(--shadow-md);
}

.offer-card__icon {
 font-size: 1.75rem;
 line-height: 1;
}

.offer-card__title {
 margin: 0;
 font-size: 1.05rem;
 color: var(--color-navy);
}

.offer-card__text {
 margin: 0 0 0.5rem;
 font-size: 0.92rem;
 color: var(--color-text-muted);
 flex-grow: 1;
}

/* ===== Kontakt ===== */
.contact {
 background: linear-gradient(180deg, var(--cream) 0%, #dfeff0 100%);
}

.contact__grid {
 display: grid;
 gap: 2.5rem;
}

@media (min-width: 900px) {
 .contact__grid {
 grid-template-columns: 1fr 1.1fr;
 align-items: start;
 }
}

.contact-list {
 list-style: none;
 padding: 0;
 margin: 0 0 1.5rem;
}

.contact-list li {
 margin-bottom: 1rem;
}

.contact-list__label {
 display: block;
 font-size: 0.8rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.05em;
 color: var(--color-forest);
}

.contact-list a {
 font-weight: 700;
 color: var(--color-navy);
}

.contact__quick-actions {
 display: flex;
 flex-wrap: wrap;
 gap: 0.65rem;
}

.contact__partner {
 margin-top: 2rem;
 padding: 1.25rem 1.15rem;
 background: var(--color-white);
 border: 1px solid rgba(12, 35, 64, 0.1);
 border-radius: var(--radius-md);
 box-shadow: var(--shadow-sm);
}

.contact__partner-heading {
 margin: 0 0 0.85rem;
 font-size: 1.05rem;
 font-weight: 800;
 color: var(--color-navy);
 letter-spacing: -0.02em;
}

.contact__partner-row {
 display: flex;
 flex-wrap: wrap;
 align-items: flex-start;
 gap: 1rem 1.15rem;
}

.contact__partner-side {
 flex: 1 1 12rem;
 min-width: 0;
}

.contact__partner-logo-link {
 display: inline-flex;
 justify-content: flex-start;
 align-items: center;
 flex: 0 0 auto;
 margin-bottom: 0;
 padding: 0.5rem;
 background: var(--color-white);
 border-radius: var(--radius-sm);
 border: 1px solid rgba(12, 35, 64, 0.08);
 text-decoration: none;
 transition: border-color 0.2s, box-shadow 0.2s;
 max-width: 100%;
}

.contact__partner-logo-link:hover,
.contact__partner-logo-link:focus-visible {
 border-color: rgba(46, 196, 182, 0.45);
 box-shadow: 0 2px 10px rgba(12, 35, 64, 0.08);
}

.contact__partner-logo-link:focus-visible {
 outline: 2px solid var(--color-turquoise);
 outline-offset: 2px;
}

.contact__partner-logo {
 display: block;
 width: auto;
 max-width: 132px;
 height: auto;
}

@media (min-width: 900px) {
 .contact__partner-logo {
  max-width: 148px;
 }
}

.contact__partner-name {
 margin: 0 0 0.5rem;
 font-size: 1rem;
 font-weight: 700;
 color: var(--color-navy);
}

.contact__partner-text {
 margin: 0 0 0.75rem;
 font-size: 0.92rem;
 line-height: 1.55;
 color: var(--color-text-muted);
}

.contact__partner-social {
 margin: 0;
}

.contact__partner-social .social-links__list {
 margin: 0;
 justify-content: flex-start;
 gap: 0.45rem;
}

.contact-form {
 background: var(--color-white);
 padding: 1.75rem;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 border-top: 5px solid var(--color-gold);
}

.form-row {
 margin-bottom: 1rem;
}

.form-row.two {
 display: grid;
 gap: 1rem;
}

@media (min-width: 500px) {
 .form-row.two {
 grid-template-columns: 1fr 1fr;
 }
}

.form-row label {
 display: block;
 font-size: 0.85rem;
 font-weight: 600;
 margin-bottom: 0.35rem;
 color: var(--color-navy);
}

.req {
 color: #c02626;
}

.form-row input,
.form-row textarea {
 width: 100%;
 padding: 0.65rem 0.85rem;
 font-family: inherit;
 font-size: 1rem;
 border: 1px solid rgba(12, 35, 64, 0.18);
 border-radius: var(--radius-sm);
 background: var(--cream);
 transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus-visible,
.form-row textarea:focus-visible {
 outline: none;
 border-color: var(--color-turquoise);
 box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.25);
}

.form-row--check {
 display: flex;
 gap: 0.65rem;
 align-items: flex-start;
}

.form-row--check input {
 width: auto;
 margin-top: 0.35rem;
 accent-color: var(--color-forest);
}

.form-row--check label {
 margin-bottom: 0;
 font-weight: 500;
 font-size: 0.88rem;
}

.contact-form__recaptcha-legal {
 margin: 0 0 0.5rem;
 font-size: 0.78rem;
 line-height: 1.45;
}

.form-legal {
 margin: 1.25rem 0 1rem;
 padding: 1rem 0 0;
 border-top: 1px solid rgba(12, 35, 64, 0.12);
}

.form-legal__text {
 margin: 0 0 0.65rem;
 font-size: 0.82rem;
 line-height: 1.55;
 color: var(--color-text-muted);
}

.contact-form .form-legal__text {
 font-size: calc(0.82rem - 2px);
}

.contact-form .form-row--check label {
 font-size: calc(0.88rem - 2px);
}

.contact-form p.contact-form__recaptcha-legal {
 font-size: calc(0.78rem - 2px);
}

.form-legal__text:last-child {
 margin-bottom: 0;
}

.form-legal__text--muted {
 font-size: 0.78rem;
 opacity: 0.92;
}

.form-feedback {
 margin-top: 1rem;
 padding: 0.85rem;
 border-radius: var(--radius-sm);
 font-weight: 600;
}

.form-feedback.is-success {
 background: rgba(45, 106, 79, 0.12);
 color: var(--color-forest);
}

.form-feedback.is-error {
 background: rgba(192, 38, 38, 0.1);
 color: #991b1b;
}

/* ===== Footer ===== */
.site-footer {
 background: var(--color-navy);
 color: rgba(255, 255, 255, 0.85);
 padding: 1.5rem 0;
 font-size: 0.9rem;
}

.site-footer a {
 color: var(--color-gold-soft);
}

.site-footer__inner {
 display: flex;
 flex-direction: column;
 gap: 0.75rem;
 text-align: center;
}

.site-footer__meta {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 0.75rem;
}

@media (min-width: 640px) {
 .site-footer__inner {
 flex-direction: row;
 justify-content: space-between;
 align-items: center;
 text-align: left;
 }

 .site-footer__meta {
 align-items: flex-end;
 }

 .site-footer__brand-block {
 align-items: flex-start;
 text-align: left;
 }
}

.site-footer .social-links {
 margin: 0;
}

.site-footer .social-links__list {
 gap: 0.4rem;
}

.site-footer .social-links--compact .social-link {
 box-shadow: 0 1px 5px rgba(0, 0, 0, 0.35);
 border: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer .social-links--compact .social-link:hover,
.site-footer .social-links--compact .social-link:focus-visible {
 border-color: rgba(232, 197, 71, 0.55);
 box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.visually-hidden {
 position: absolute;
 width: 1px;
 height: 1px;
 padding: 0;
 margin: -1px;
 overflow: hidden;
 clip: rect(0, 0, 0, 0);
 white-space: nowrap;
 border: 0;
}

/* Sprite: socials.jpg 3000×2000, siatka 4×2 (komórka 750×1000). Kolorowy rząd - TikTok (kol. 1), Facebook (kol. 2), Instagram (kol. 3), Messenger (kol. 4). */
.social-links__list {
 list-style: none;
 margin: 0;
 padding: 0;
 display: flex;
 flex-wrap: wrap;
 gap: 0.65rem;
 justify-content: center;
}

@media (min-width: 640px) {
 .social-links__list {
 justify-content: flex-end;
 }
}

.social-link {
 --social-icon: 48px;
 --social-sheet-row-h: 64px; /* 48 × (1000/750) - wysokość komórki po przeskalowaniu */
 display: block;
 width: var(--social-icon);
 height: var(--social-icon);
 background-image: url("/assets/images/socials.jpg");
 background-repeat: no-repeat;
 background-size: calc(4 * var(--social-icon)) calc(2 * var(--social-sheet-row-h));
 border-radius: 12px;
 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
 transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
 text-decoration: none;
 color: transparent;
}

.social-link:hover,
.social-link:focus-visible {
 transform: scale(1.06);
 box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.social-link:focus-visible {
 outline: 2px solid var(--color-gold-soft);
 outline-offset: 3px;
}

.social-link--tiktok {
 background-position: 0 calc(-1 * var(--social-sheet-row-h));
}

.social-link--facebook {
 background-position: calc(-1 * var(--social-icon)) calc(-1 * var(--social-sheet-row-h));
}

.social-link--instagram {
 background-position: calc(-2 * var(--social-icon)) calc(-1 * var(--social-sheet-row-h));
}

/* Ikona PNG (poza spritesheetem), ten sam rozmiar co .social-link */
.social-link--youtube {
 background-image: url("/assets/images/youtube.png");
 background-size: contain;
 background-position: center;
 background-repeat: no-repeat;
}

.site-footer__brand {
 margin: 0;
}

.site-footer__brand-block {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 0.35rem;
}

.site-footer__email {
 margin: 0;
 font-size: 0.88em;
 line-height: 1.35;
 color: rgba(255, 255, 255, 0.88);
}

.site-footer__email a {
 color: var(--color-gold-soft);
}

.site-footer__links {
 margin: 0;
}

/* ===== Podstrona - profil trenera (trener.php) ===== */
body.subpage .trainer-page-main {
 padding-block: 0.25rem 3rem;
}

.breadcrumbs {
 padding: 0.35rem 0 1rem;
}

.breadcrumbs__list {
 list-style: none;
 margin: 0;
 padding: 0;
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 0.25rem 0.35rem;
 font-size: 0.85rem;
 color: var(--color-text-muted);
}

.breadcrumbs__item {
 display: inline-flex;
 align-items: center;
 gap: 0.35rem;
}

.breadcrumbs__item + .breadcrumbs__item::before {
 content: "/";
 opacity: 0.45;
 margin-right: 0.35rem;
 font-weight: 500;
 pointer-events: none;
}

.breadcrumbs__link {
 color: var(--color-forest);
 font-weight: 600;
 text-decoration: none;
}

.breadcrumbs__link:hover {
 text-decoration: underline;
}

.breadcrumbs__item--current {
 color: var(--color-navy);
 font-weight: 700;
}

/* ===== Podstrony prawne (polityka prywatności / cookies) ===== */
body.legal-doc-page .legal-doc-main {
 padding-block: 0.25rem 3rem;
}

.legal-doc__header {
 margin-bottom: 1rem;
}

.legal-doc__title {
 margin: 0 0 0.35rem;
 font-family: var(--font-display);
 font-size: clamp(1.75rem, 4vw, 2.35rem);
 font-weight: 900;
 color: var(--color-navy);
 line-height: 1.2;
}

.legal-doc__meta {
 margin: 0;
 line-height: 1.45;
}

/* Polityki: ta sama lewa krawędź co tytuł i nagłówek (bez wyśrodkowanej kolumny) */
.legal-doc__body.prose {
 max-width: none;
 margin-inline: 0;
 font-size: 0.95rem;
 line-height: 1.4;
 color: var(--color-text);
}

.legal-doc__body.prose p {
 margin: 0 0 0.55rem;
}

.legal-doc__body.prose .legal-doc__contact-card p {
 margin: 0 0 0.4rem;
}

.legal-doc__body.prose h2 {
 margin: 1.15rem 0 0.4rem;
 font-size: clamp(1.05rem, 2.2vw, 1.22rem);
 font-weight: 800;
 color: var(--color-navy);
 line-height: 1.3;
}

.legal-doc__body.prose h2:first-of-type,
.legal-doc__body.prose > h2:first-child {
 margin-top: 0.35rem;
}

.legal-doc__body.prose h3 {
 margin: 0.75rem 0 0.25rem;
 font-size: 0.98rem;
 font-weight: 700;
 color: var(--color-navy);
 line-height: 1.3;
}

.legal-doc__body.prose h3 + p {
 margin-bottom: 0.35rem;
}

.legal-doc__body.prose ul {
 margin: 0.1rem 0 0.5rem;
 padding-left: 0;
 padding-inline-start: 1.75rem;
 margin-left: 0.35rem;
 list-style-position: outside;
 line-height: 1.4;
}

.legal-doc__body.prose ul li {
 margin: 0;
 padding: 0;
 padding-inline-start: 0.45rem;
 line-height: 1.4;
}

.legal-doc__body.prose ul li::marker {
 color: var(--color-navy);
}

.legal-doc__lead {
 margin: 0 0 0.6rem;
 font-size: 0.95rem;
 line-height: 1.4;
}

.legal-doc__contact-card {
 margin: 0 0 0.65rem;
 padding: 0.85rem 1rem;
 background: var(--cream);
 border-radius: var(--radius-md);
 border: 1px solid rgba(12, 35, 64, 0.1);
 line-height: 1.4;
}

.legal-doc__contact-card p {
 margin: 0 0 0.45rem;
}

.legal-doc__contact-card p:last-child {
 margin-bottom: 0;
}

.legal-doc__contact-card-name {
 margin-bottom: 0.5rem !important;
}

.legal-doc__cookie-list {
 list-style: none;
 margin: 1rem 0 0;
 padding: 0;
 display: flex;
 flex-direction: column;
 gap: 1.25rem;
}

.legal-doc__cookie-item {
 margin: 0;
 padding: 1rem 1.1rem;
 background: var(--cream);
 border-radius: var(--radius-md);
 border: 1px solid rgba(12, 35, 64, 0.1);
}

.legal-doc__cookie-h {
 margin: 0 0 0.45rem;
 font-size: 1.05rem;
 font-weight: 800;
 color: var(--color-navy);
}

.legal-doc__cookie-desc {
 margin: 0;
 font-size: 0.92rem;
 line-height: 1.55;
 color: var(--color-text-muted);
}

.legal-doc__badge {
 display: inline-block;
 margin-left: 0.35rem;
 padding: 0.12rem 0.45rem;
 font-size: 0.72rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.03em;
 color: var(--color-navy);
 background: rgba(46, 196, 182, 0.25);
 border-radius: var(--radius-sm);
 vertical-align: middle;
}

.trainer-page__header {
 display: grid;
 gap: 1.75rem;
 margin-bottom: 2rem;
}

@media (min-width: 768px) {
 .trainer-page__header {
 grid-template-columns: minmax(200px, 280px) 1fr;
 align-items: start;
 }
}

.trainer-page__media {
 text-align: center;
}

@media (min-width: 768px) {
 .trainer-page__media {
 text-align: left;
 }
}

.trainer-page__photo {
 width: 100%;
 max-width: 280px;
 margin-inline: auto;
 border-radius: var(--radius-md);
 aspect-ratio: 1;
 object-fit: cover;
 border: 4px solid var(--cream-dark);
 box-shadow: var(--shadow-sm);
}

.trainer-page__title {
 margin: 0 0 0.5rem;
 font-size: clamp(1.75rem, 4vw, 2.25rem);
 color: var(--color-navy);
 line-height: 1.2;
}

.trainer-page__role {
 margin: 0 0 0.75rem;
 font-size: 1.05rem;
 font-weight: 700;
 color: var(--color-forest-light);
}

.trainer-page__aka {
 margin: 0 0 0.75rem;
 font-size: 0.92rem;
}

.trainer-page__lede {
 margin: 0 0 1.25rem;
 font-size: 1.05rem;
 line-height: 1.55;
 color: var(--color-text);
}

.trainer-page__actions {
 display: flex;
 flex-wrap: wrap;
 gap: 0.65rem;
}

.trainer-page__body {
 width: 100%;
 max-width: none;
}

.trainer-page__section {
 margin-bottom: 2rem;
}

.trainer-page__section:last-child {
 margin-bottom: 0;
}

.trainer-page__h2 {
 margin: 0 0 1rem;
 font-size: 1.35rem;
 font-weight: 800;
 color: var(--color-navy);
 padding-bottom: 0.35rem;
 border-bottom: 2px solid var(--color-gold);
}

.trainer-page__school {
 margin-bottom: 1.35rem;
}

.trainer-page__school:last-child {
 margin-bottom: 0;
}

.trainer-page__h3 {
 margin: 0 0 0.5rem;
 font-size: 1.02rem;
 font-weight: 700;
 color: var(--color-forest);
 line-height: 1.35;
}

.trainer-page__school p {
 margin: 0 0 0.5rem;
 font-size: 0.98rem;
 line-height: 1.55;
}

.trainer-page__school p:last-child {
 margin-bottom: 0;
}

.trainer-page__courselist {
 margin: 0;
 padding-left: 1.2rem;
 line-height: 1.55;
}

.trainer-page__courselist li {
 margin-bottom: 0.35rem;
}

.trainer-page__courselist li:last-child {
 margin-bottom: 0;
}

.trainer-page__tagline {
 margin: 0 0 0.75rem;
 font-size: 1.15rem;
 font-weight: 800;
 color: var(--color-navy);
 line-height: 1.35;
}

.trainer-page__credentials {
 margin: 0 0 1.25rem;
 padding: 1rem 1.15rem;
 border-radius: var(--radius-md);
 background: var(--cream-dark);
 border-left: 4px solid var(--color-turquoise);
 font-size: 0.98rem;
 line-height: 1.55;
 color: var(--color-text);
}

.trainer-page__body p {
 margin-top: 0;
}

.trainer-page__body p + p {
 margin-top: 0.85rem;
}

/* ===== Lightbox - powiększenie wybranych zdjęć (markup: img[data-lightbox], np. ulotka) ===== */
img[data-lightbox] {
 cursor: zoom-in;
}

img[data-lightbox]:focus-visible {
 outline: 3px solid var(--color-turquoise);
 outline-offset: 3px;
}

/* [hidden] musi wygrywać z display:grid - inaczej dialog byłby widoczny przy ładowaniu strony */
.image-lightbox[hidden] {
 display: none !important;
}

.image-lightbox {
 position: fixed;
 inset: 0;
 z-index: 2500;
 display: grid;
 place-items: center;
 padding: min(5vw, 1.75rem);
 box-sizing: border-box;
}

.image-lightbox__backdrop {
 position: absolute;
 inset: 0;
 margin: 0;
 padding: 0;
 border: 0;
 background: rgba(10, 20, 35, 0.88);
 cursor: pointer;
}

.image-lightbox__panel {
 position: relative;
 z-index: 1;
 width: min(96vw, 1100px);
 max-height: min(92vh, 920px);
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 0.5rem;
 box-sizing: border-box;
 /* Klik w „pustkę” obok grafiki ma przejść do tła (backdrop) i zamknąć lightbox */
 pointer-events: none;
}

.image-lightbox__figure {
 margin: 0;
 max-height: min(90vh, 900px);
 display: flex;
 align-items: center;
 justify-content: center;
 pointer-events: none;
}

.image-lightbox__img {
 display: block;
 max-width: 100%;
 max-height: min(88vh, 880px);
 width: auto;
 height: auto;
 object-fit: contain;
 border-radius: var(--radius-md);
 box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
 border: 3px solid rgba(255, 255, 255, 0.2);
 pointer-events: auto;
}

.image-lightbox__close {
 position: absolute;
 top: -0.25rem;
 right: -0.25rem;
 z-index: 2;
 width: 2.75rem;
 height: 2.75rem;
 border: 0;
 border-radius: 999px;
 font-size: 1.65rem;
 line-height: 1;
 cursor: pointer;
 color: var(--color-navy);
 background: var(--color-gold-soft);
 box-shadow: var(--shadow-md);
 transition: transform 0.15s var(--ease-out), background 0.15s ease;
 pointer-events: auto;
}

.image-lightbox__close:hover,
.image-lightbox__close:focus-visible {
 background: var(--color-gold);
 transform: scale(1.06);
}

.image-lightbox__nav {
 position: absolute;
 top: 50%;
 z-index: 2;
 transform: translateY(-50%);
 width: 2.5rem;
 height: 3.25rem;
 border: 0;
 border-radius: var(--radius-sm);
 font-size: 1.75rem;
 line-height: 1;
 cursor: pointer;
 color: var(--color-white);
 background: rgba(12, 35, 64, 0.75);
 border: 1px solid rgba(232, 197, 71, 0.45);
 transition: background 0.15s ease, transform 0.15s var(--ease-out);
 pointer-events: auto;
}

.image-lightbox__nav:hover,
.image-lightbox__nav:focus-visible {
 background: rgba(12, 35, 64, 0.92);
 transform: translateY(-50%) scale(1.04);
}

.image-lightbox__nav--prev {
 left: 0.25rem;
}

.image-lightbox__nav--next {
 right: 0.25rem;
}

@media (max-width: 640px) {
 .image-lightbox__nav {
  width: 2.1rem;
  height: 2.75rem;
  font-size: 1.4rem;
 }

 .image-lightbox__nav--prev {
  left: 0;
 }

 .image-lightbox__nav--next {
  right: 0;
 }
}

/* ===== Baner cookies / zgody (Consent Mode) ===== */
.site-footer__cookie-btn {
 display: inline;
 background: none;
 border: 0;
 padding: 0;
 margin: 0;
 font: inherit;
 font-weight: inherit;
 font-size: 0.82em;
 letter-spacing: 0.01em;
 color: rgba(255, 255, 255, 0.52);
 cursor: pointer;
 text-decoration: underline;
 text-decoration-color: rgba(255, 255, 255, 0.35);
 text-underline-offset: 2px;
 vertical-align: baseline;
}

.site-footer__cookie-btn:hover,
.site-footer__cookie-btn:focus-visible {
 color: rgba(255, 255, 255, 0.82);
 text-decoration-color: rgba(255, 255, 255, 0.5);
 outline: none;
 text-decoration-thickness: 1px;
}

.cookie-banner {
 position: fixed;
 left: 0;
 right: 0;
 bottom: 0;
 z-index: 100000;
 padding-bottom: env(safe-area-inset-bottom, 0);
 pointer-events: none;
}

.cookie-banner__panel {
 pointer-events: auto;
 background: var(--color-white);
 color: var(--color-text);
 border-top: 4px solid var(--color-turquoise);
 box-shadow: 0 -10px 36px rgba(12, 35, 64, 0.22);
 max-height: min(88vh, 640px);
 overflow-y: auto;
}

.cookie-banner__inner {
 padding: 1.2rem 1rem 1.35rem;
 max-width: var(--max-w);
 margin: 0 auto;
}

.cookie-banner__title {
 margin: 0 0 0.5rem;
 font-size: 1.2rem;
 font-weight: 800;
 color: var(--color-navy);
 letter-spacing: -0.02em;
}

.cookie-banner__title--panel {
 margin-bottom: 0.35rem;
 margin-top: 0;
 font-size: 1.05rem;
}


.cookie-banner__desc {
 margin: 0 0 1rem;
 font-size: 0.9rem;
 line-height: 1.55;
 color: var(--color-text-muted);
}

.cookie-banner__actions {
 display: flex;
 flex-wrap: wrap;
 gap: 0.5rem;
 align-items: center;
}

.cookie-banner__actions--primary {
 margin-bottom: 0;
}

.cookie-banner__actions--secondary {
 margin-top: 1.1rem;
 padding-top: 0.85rem;
 border-top: 1px solid rgba(12, 35, 64, 0.08);
}

.cookie-banner__btn {
 flex: 1 1 auto;
 min-width: min(100%, 11rem);
 justify-content: center;
}

.cookie-banner__details-lead {
 margin: 0 0 0.85rem;
 font-size: 0.88rem;
 color: var(--color-text-muted);
 line-height: 1.5;
}

.cookie-banner__categories {
 list-style: none;
 margin: 0;
 padding: 0;
 display: flex;
 flex-direction: column;
 gap: 0.85rem;
}

.cookie-banner__category {
 margin: 0;
 padding: 0.85rem 1rem;
 border-radius: var(--radius-md);
 background: var(--cream);
 border: 1px solid rgba(12, 35, 64, 0.08);
}

.cookie-banner__category-head {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: space-between;
 gap: 0.35rem 0.75rem;
 margin-bottom: 0.35rem;
}

.cookie-banner__category-label {
 display: flex;
 align-items: flex-start;
 gap: 0.55rem;
 cursor: pointer;
 font-weight: 700;
 font-size: 0.95rem;
 color: var(--color-navy);
 flex: 1 1 12rem;
 margin: 0;
}

.cookie-banner__category-label--locked {
 cursor: default;
}

.cookie-banner__checkbox {
 flex-shrink: 0;
 width: 1.1rem;
 height: 1.1rem;
 margin-top: 0.2rem;
 accent-color: var(--color-turquoise);
}

.cookie-banner__category-title {
 line-height: 1.35;
}

.cookie-banner__badge {
 font-size: 0.72rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.04em;
 color: var(--color-forest-light);
 background: rgba(46, 196, 182, 0.18);
 padding: 0.2rem 0.45rem;
 border-radius: var(--radius-sm);
 white-space: nowrap;
}

.cookie-banner__category-text {
 margin: 0;
 font-size: 0.85rem;
 line-height: 1.5;
 color: var(--color-text-muted);
 padding-left: 1.65rem;
}

@media (min-width: 640px) {
 .cookie-banner__actions--primary .cookie-banner__btn {
  flex: 0 1 auto;
  min-width: 0;
 }
}

