/* ─── Zmienne ──────────────────────────────────────────────────────────── */
:root {
  --green:      #1da000;
  --green-dark: #0f5c08;
  --ink:        #1a2636;
  --muted:      #56697e;
  --bg:         #f3f5f9;
  --surface:    #ffffff;
  --gold:       #f4c026;
  --radius:     16px;
  --shadow:     0 12px 32px rgba(8, 18, 36, 0.12);
  --max:        1280px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
iframe,
video,
embed,
object { max-width: 100%; }
a   { color: inherit; text-decoration: none; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ─── Sekcje ────────────────────────────────────────────────────────────── */
.section { padding: 72px 0; }

.section-dark {
  background: linear-gradient(170deg, #101d2e, #0a1420);
  color: #dce9f8;
}

.eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.section-dark .eyebrow { color: #7de363; }

.section-head { margin-bottom: 28px; }

.section h2 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.subtabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.subtabs-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #cdd9e8;
  background: #fff;
  color: #1d3557;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}

.subtabs-nav a:hover {
  border-color: #8fb0d3;
  background: #f5f9ff;
  transform: translateY(-1px);
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: zoomIn 14s ease forwards;
}

@keyframes zoomIn {
  from { transform: scale(1.08); }
  to   { transform: scale(1.02); }
}

@media (max-width: 640px) {
  .subtabs-nav a {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    rgba(8, 15, 26, 0.88) 0%,
    rgba(10, 22, 38, 0.55) 55%,
    rgba(15, 60, 10, 0.28) 100%);
}

.hero-body {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 100px 0 80px;
  max-width: 760px;
}

.hero-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #96e87a;
}

.hero h1 {
  margin: 0;
  font-weight: 800;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.025em;
}

.hero-sub {
  margin: 18px 0 0;
  font-size: clamp(16px, 2vw, 20px);
  color: #d6e6f5;
  max-width: 620px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ─── Przyciski ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(130deg, var(--gold), #ffd86d);
  color: #1a1a1a;
  box-shadow: 0 8px 24px rgba(244, 192, 38, 0.32);
}

.btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* ─── Siatka info (ciemna sekcja) ───────────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-grid article {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
}

.info-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.info-grid p { margin: 0; color: #a8c4dc; }

/* ─── Aktualności feed ──────────────────────────────────────────────────── */
.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.news-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  border: 1px solid #c4d8c4;
  border-radius: 999px;
  padding: 7px 16px;
  white-space: nowrap;
  transition: background 0.15s;
}

.news-all-link:hover { background: #edf7ea; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  background: var(--surface);
  border: 1px solid #dde6f0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(8, 18, 36, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.news-thumb {
  display: block;
  aspect-ratio: 16/9;
  background: linear-gradient(140deg, #cdd9ea, #edf2fa);
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.news-card:hover .news-thumb img { transform: scale(1.04); }

.news-body { padding: 18px; }

.news-date {
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.news-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.news-excerpt {
  margin: 0 0 12px;
  font-size: 14px;
  color: #4a5e74;
}

.news-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
}

.news-loading { grid-column: 1/-1; padding: 20px; color: var(--muted); }

/* ─── Stopka ─────────────────────────────────────────────────────────────  */
.site-footer {
  background: #060e18;
  color: #c0d0e4;
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-footer p { margin: 0 0 6px; font-size: 14px; }
.site-footer a { color: #8dbde0; }
.site-footer a:hover { color: #fff; }

.footer-iban {
  font-family: 'Inter', monospace;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #c8dcea;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}

.footer-bottom p { margin: 0; font-size: 13px; color: #6888a8; }

/* ─── Focus ─────────────────────────────────────────────────────────────── */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Animacje wejścia ──────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsywność ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .info-grid, .news-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid           { grid-template-columns: 1fr; }
  .hero-body             { padding: 80px 0 60px; }
}

@media (max-width: 580px) {
  .section          { padding: 52px 0; }
  .info-grid, .news-grid { grid-template-columns: 1fr; }
  .news-header      { flex-direction: column; align-items: flex-start; }
  .wrap             { width: calc(100% - 28px); }
}

/* ═══════════════════════════════════════════════════════
   STYLE SUBSTRON (foldery, dokumenty, galeria, okruchy)
   ═══════════════════════════════════════════════════════ */

/* ─── Breadcrumbs ────────────────────────────────────── */
.breadcrumbs {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 600;
  color: #4f617a;
}

.breadcrumbs span { color: #96a8c0; }

.breadcrumbs a {
  color: #204a72;
  text-decoration: none;
}

.breadcrumbs a:hover { text-decoration: underline; }

/* ─── Nagłówek wewnętrznej sekcji ────────────────────── */
.section-inner-head { padding-bottom: 40px; }

.section-inner-head h1 {
  margin: 8px 0 0;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* ─── Karty folderów ─────────────────────────────────── */
.folder-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.folder-card {
  display: block;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #d3deec;
  background: var(--surface);
  box-shadow: 0 6px 18px rgba(8, 18, 36, 0.08);
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
}

.folder-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(8, 18, 36, 0.14);
}

.folder-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.folder-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

/* ─── Lista dokumentów ───────────────────────────────── */
.doc-list { display: grid; gap: 10px; }

.doc-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid #d4dfee;
  background: var(--surface);
  border-radius: 12px;
  padding: 11px 14px;
  text-decoration: none;
  transition: background 0.14s;
}

.doc-item:hover { background: #f0f6ff; }

.doc-tag {
  display: inline-flex;
  min-width: 46px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ddf6ce;
  color: #0b6008;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.doc-name {
  color: #173a5e;
  font-weight: 600;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.doc-size {
  color: #617389;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* ─── Galeria obrazów ────────────────────────────────── */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.image-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d5e0ef;
  background: var(--surface);
  box-shadow: 0 6px 18px rgba(8, 18, 36, 0.08);
  text-decoration: none;
  transition: transform 0.18s;
}

.image-card:hover { transform: translateY(-2px); }

.image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-card span {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #2a3f5e;
  overflow-wrap: anywhere;
}

/* ─── Brak elementów ──────────────────────────────────── */
.empty-note {
  margin: 0;
  border: 1px dashed #bfd0e5;
  border-radius: 12px;
  padding: 14px 16px;
  background: #f6f9ff;
  color: #4d6079;
  font-weight: 600;
}

/* ─── Responsywność substron ─────────────────────────── */
@media (max-width: 900px) {
  .folder-cards { grid-template-columns: 1fr 1fr; }
  .image-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .folder-cards,
  .image-grid    { grid-template-columns: 1fr; }
  .doc-item      { grid-template-columns: auto 1fr; }
  .doc-size      { display: none; }
}

/* ═══════════════════════════════════════════════════════
   TYPY PODSTRON — POBIERANIE, OGLĄDANIE, MIESZANY
   ═══════════════════════════════════════════════════════ */

/* ─── Przyciski Pobierz / Wydrukuj ───────────────────── */
.btn-download,
.btn-print {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.14s, box-shadow 0.14s;
  white-space: nowrap;
  border: none;
}

.btn-download {
  background: linear-gradient(130deg, var(--green), #0f5c08);
  color: #fff;
  box-shadow: 0 6px 18px rgba(20, 140, 10, 0.28);
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20, 140, 10, 0.38);
}

.btn-print {
  background: transparent;
  color: var(--ink);
  border: 2px solid #ccd6e8;
}

.btn-print:hover { background: #f0f5ff; }

/* ─── Siatka kart pobierania ──────────────────────────── */
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.download-card {
  background: var(--surface);
  border: 1px solid #d4e0f0;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 6px 20px rgba(8, 18, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.download-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #e6f7df, #c8eebc);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.download-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.download-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  flex: 1;
}

.download-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
  margin-bottom: 36px;
}

.download-card-actions select {
  max-width: 100%;
}

/* ─── Pojedyncza karta pobierania (full-width) ────────── */
.download-single {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--surface);
  border: 1px solid #d4e0f0;
  border-radius: var(--radius);
  padding: 32px 36px;
  box-shadow: 0 6px 20px rgba(8, 18, 36, 0.08);
}

.download-single .dl-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e6f7df, #c8eebc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}

.download-single .dl-body { flex: 1; }

.download-single h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 800;
}

.download-single p {
  margin: 0 0 16px;
  color: var(--muted);
}

.download-single .download-card-actions { margin-top: 0; }

/* ─── Grid ludzi (Władze związku) ────────────────────── */
.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.member-card {
  background: var(--surface);
  border: 1px solid #dde6f2;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(8, 18, 36, 0.07);
}

.member-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cdd9ea, #e8eef8);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  overflow: hidden;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
}

.member-role {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Layout "O nas" ─────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: #cdd9ea;
  aspect-ratio: 4/3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  margin: 0 0 16px;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-text p { margin: 0 0 14px; font-size: 16px; }

/* ─── Tabela danych ──────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.data-table th {
  text-align: left;
  padding: 12px 16px;
  background: #0d1a2b;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.data-table th:first-child { border-radius: 10px 0 0 0; }
.data-table th:last-child  { border-radius: 0 10px 0 0; }

.data-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #e8eef6;
  vertical-align: top;
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: #f7faff; }

/* ─── Pakiety (karty z ikonami) ──────────────────────── */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.package-card {
  background: var(--surface);
  border: 1px solid #dde6f2;
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: 0 6px 18px rgba(8, 18, 36, 0.07);
}

.package-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.package-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.package-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ─── Lista gastronomiczna ───────────────────────────── */
.gastro-list {
  display: grid;
  gap: 12px;
}

.gastro-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid #d4e0f0;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 4px 12px rgba(8, 18, 36, 0.06);
}

.gastro-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #0f5c08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.gastro-item h4 { margin: 0 0 2px; font-size: 16px; font-weight: 700; }
.gastro-item p  { margin: 0; font-size: 13px; color: var(--muted); }

/* ─── Filmy ──────────────────────────────────────────── */
.film-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.film-card {
  background: var(--surface);
  border: 1px solid #d4e0f0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(8, 18, 36, 0.08);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}

.film-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(8, 18, 36, 0.14);
}

.film-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(140deg, #0d1a2b, #1c3050);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 52px;
  position: relative;
  overflow: hidden;
}

.film-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-play {
  position: absolute;
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  backdrop-filter: blur(4px);
}

.film-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }

.film-body h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.film-body p { margin: 0 0 12px; font-size: 14px; color: var(--muted); flex: 1; }

.film-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
}

/* ─── Linki do stron (logo grid) ─────────────────────── */
.links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: var(--surface);
  border: 1px solid #d4e0f0;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(8, 18, 36, 0.06);
  transition: transform 0.18s, box-shadow 0.18s;
}

.link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(8, 18, 36, 0.14);
  color: var(--green-dark);
}

.link-logo {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: linear-gradient(140deg, #dde8f8, #c5d4ea);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: #1a2b40;
  overflow: hidden;
}

.link-logo img { width: 100%; height: 100%; object-fit: contain; }

/* ─── Formularz kontaktowy ────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid #ccd6e8;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.14s;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-submit {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  background: linear-gradient(130deg, var(--green), #0f5c08);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(20, 140, 10, 0.28);
  transition: transform 0.14s;
}

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

.contact-info-box {
  background: linear-gradient(160deg, #0d1a2b, #142438);
  color: #d6e6f8;
  border-radius: var(--radius);
  padding: 32px 28px;
}

.contact-info-box h3 {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.contact-row-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-row-text p { margin: 0; font-size: 14px; }
.contact-row-text strong { color: #fff; font-size: 15px; }
.contact-info-box a { color: #8dbde0; }

/* ─── Sekcja SIP ─────────────────────────────────────── */
.sip-content { max-width: 820px; }
.sip-content h2 { margin: 0 0 16px; font-size: 34px; font-weight: 800; }
.sip-content p { font-size: 16px; margin: 0 0 14px; color: #374a60; }

/* ─── Mixed sekcja (galeria + pobieranie) ────────────── */
.mixed-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ─── Responsywność nowych komponentów ───────────────── */
@media (max-width: 900px) {
  .members-grid   { grid-template-columns: repeat(2, 1fr); }
  .about-layout   { grid-template-columns: 1fr; }
  .about-image    { max-width: 100%; aspect-ratio: 16/9; }
  .package-grid   { grid-template-columns: 1fr 1fr; }
  .links-grid     { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .film-grid      { grid-template-columns: 1fr; }
  .download-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .members-grid   { grid-template-columns: 1fr 1fr; }
  .package-grid   { grid-template-columns: 1fr; }
  .links-grid     { grid-template-columns: repeat(2, 1fr); }
  .download-single { flex-direction: column; }

  .download-card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-download,
  .btn-print {
    width: 100%;
    justify-content: center;
  }
}
