/* tuvefou.com — Styl główny — Podróże u granic */
/* Paleta: oliwkowy #4a5240 + terakota #c4622d + mleczny #fdf8f0 */
/* Styl: śródziemnomorski ciepły */

:root {
  --kolor-oliwkowy: #4a5240;
  --kolor-terakota: #c4622d;
  --kolor-mleczny: #fdf8f0;
  --kolor-oliwkowy-jasny: #6b7560;
  --kolor-terakota-ciemna: #a04e22;
  --kolor-terakota-jasna: #e07a4d;
  --kolor-tlo-sekcji: #f5ede0;
  --kolor-tekst: #2c2a26;
  --kolor-tekst-jasny: #5a5650;
  --cien-ciepły: 0 4px 20px rgba(196,98,45,0.12);
  --cien-karta: 0 2px 12px rgba(74,82,64,0.10);
  --promien: 10px;
  --promien-duzy: 18px;
  --czcionka-naglowki: Georgia, 'Times New Roman', serif;
  --czcionka-tekst: 'Segoe UI', Tahoma, Geneva, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--czcionka-tekst);
  background-color: var(--kolor-mleczny);
  color: var(--kolor-tekst);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   NAWIGACJA z MEGAMENU — .ht1 (nagłówek)
══════════════════════════════════════════ */
.ht1 {
  background-color: var(--kolor-oliwkowy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.ht1-wewnatrz {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.ht1-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.ht1-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.ht1-logo-tekst {
  color: var(--kolor-mleczny);
  font-family: var(--czcionka-naglowki);
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.2;
}

.ht1-logo-tekst span {
  display: block;
  font-size: 0.7rem;
  font-weight: normal;
  opacity: 0.75;
  letter-spacing: 0.05em;
  font-family: var(--czcionka-tekst);
}

/* Menu główne */
.ht1-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  height: 100%;
}

.ht1-menu > li {
  position: relative;
  height: 100%;
}

.ht1-menu > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1.1rem;
  color: var(--kolor-mleczny);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.ht1-menu > li > a:hover,
.ht1-menu > li:hover > a {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.ht1-menu > li > a.aktywny {
  color: var(--kolor-terakota-jasna);
  border-bottom: 2px solid var(--kolor-terakota);
}

.ht1-strzalka {
  margin-left: 0.3rem;
  font-size: 0.65rem;
  opacity: 0.7;
  transition: transform 0.2s;
}

.ht1-menu > li:hover .ht1-strzalka {
  transform: rotate(180deg);
}

/* MEGAMENU 2 kolumny */
.ht2 {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 520px;
  background: var(--kolor-mleczny);
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  border-radius: 0 0 var(--promien-duzy) var(--promien-duzy);
  border-top: 3px solid var(--kolor-terakota);
  padding: 1.5rem;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  z-index: 999;
}

.ht1-menu > li:hover .ht2 {
  display: grid;
}

.ht2-kolumna h4 {
  font-family: var(--czcionka-naglowki);
  color: var(--kolor-oliwkowy);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(74,82,64,0.2);
}

.ht2-kolumna ul {
  list-style: none;
}

.ht2-kolumna ul li a {
  display: block;
  padding: 0.45rem 0;
  color: var(--kolor-tekst);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s, padding-left 0.2s;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.ht2-kolumna ul li a:hover {
  color: var(--kolor-terakota);
  padding-left: 0.5rem;
}

/* Hamburger mobile */
.ht1-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.ht1-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--kolor-mleczny);
  border-radius: 2px;
  transition: all 0.3s;
}

.ht1-hamburger.otwarty span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.ht1-hamburger.otwarty span:nth-child(2) { opacity: 0; }
.ht1-hamburger.otwarty span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* CTA w nav */
.ht1-cta {
  background: var(--kolor-terakota) !important;
  color: white !important;
  border-radius: var(--promien) !important;
  padding: 0.5rem 1.2rem !important;
  height: auto !important;
  margin-left: 0.5rem;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.ht1-cta:hover {
  background: var(--kolor-terakota-ciemna) !important;
}

/* ══════════════════════════════════════════
   HERO SPLIT — .ht3 (grafika lewa / tekst prawa)
══════════════════════════════════════════ */
.ht3 {
  background: var(--kolor-oliwkowy);
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.ht3-grafika {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.ht3-grafika svg,
.ht3-grafika img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ht3-grafika::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--kolor-oliwkowy));
}

.ht3-tekst {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 2rem;
  color: var(--kolor-mleczny);
}

.ht3-etykieta {
  display: inline-block;
  background: var(--kolor-terakota);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.ht3-naglowek {
  font-family: var(--czcionka-naglowki);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #fff;
}

.ht3-naglowek em {
  color: var(--kolor-terakota-jasna);
  font-style: normal;
}

.ht3-opis {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.8;
}

/* Liczniki w hero */
.ht3-liczniki {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.ht3-liczba {
  text-align: center;
}

.ht3-liczba-wartosc {
  font-family: var(--czcionka-naglowki);
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--kolor-terakota-jasna);
  display: block;
  line-height: 1;
}

.ht3-liczba-opis {
  font-size: 0.75rem;
  opacity: 0.7;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ht3-przyciski {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ht4 {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--promien);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.ht4-glowny {
  background: var(--kolor-terakota);
  color: white;
  border-color: var(--kolor-terakota);
}

.ht4-glowny:hover {
  background: var(--kolor-terakota-ciemna);
  border-color: var(--kolor-terakota-ciemna);
  transform: translateY(-2px);
  box-shadow: var(--cien-ciepły);
}

.ht4-drugorzedny {
  background: transparent;
  color: var(--kolor-mleczny);
  border-color: rgba(255,255,255,0.4);
}

.ht4-drugorzedny:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* ══════════════════════════════════════════
   DIAGONALNE PASY między sekcjami
══════════════════════════════════════════ */
.ht5-pas {
  height: 60px;
  background: var(--kolor-mleczny);
  clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 100%);
  margin-top: -2px;
}

.ht5-pas-odwrotny {
  height: 60px;
  background: var(--kolor-tlo-sekcji);
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
  margin-top: -2px;
}

.ht5-pas-oliwkowy {
  background: var(--kolor-oliwkowy);
}

/* ══════════════════════════════════════════
   SEKCJE ogólne
══════════════════════════════════════════ */
.ht5 {
  padding: 5rem 2rem;
}

.ht5-jasna { background: var(--kolor-mleczny); }
.ht5-ciepla { background: var(--kolor-tlo-sekcji); }
.ht5-ciemna { background: var(--kolor-oliwkowy); color: var(--kolor-mleczny); }

.ht5-srodek {
  max-width: 1200px;
  margin: 0 auto;
}

.ht5-naglowek-sekcji {
  text-align: center;
  margin-bottom: 3.5rem;
}

.ht5-naglowek-sekcji h2 {
  font-family: var(--czcionka-naglowki);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--kolor-oliwkowy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.ht5-ciemna .ht5-naglowek-sekcji h2 {
  color: var(--kolor-mleczny);
}

.ht5-naglowek-sekcji p {
  color: var(--kolor-tekst-jasny);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.ht5-ciemna .ht5-naglowek-sekcji p {
  color: rgba(253,248,240,0.75);
}

.ht5-linia-dekoracyjna {
  width: 60px;
  height: 3px;
  background: var(--kolor-terakota);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ══════════════════════════════════════════
   KARTY 4 kolumny — .ht6
══════════════════════════════════════════ */
.ht6-siatka {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ht6-karta {
  background: var(--kolor-mleczny);
  border-radius: var(--promien-duzy);
  overflow: hidden;
  box-shadow: var(--cien-karta);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.ht6-karta:hover {
  transform: translateY(-5px);
  box-shadow: var(--cien-ciepły);
}

.ht6-karta-obraz {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--kolor-tlo-sekcji);
}

.ht6-karta-obraz svg,
.ht6-karta-obraz img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}

.ht6-karta:hover .ht6-karta-obraz svg,
.ht6-karta:hover .ht6-karta-obraz img {
  transform: scale(1.05);
}

.ht6-karta-tresc {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ht6-karta-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kolor-terakota);
  margin-bottom: 0.5rem;
}

.ht6-karta-naglowek {
  font-family: var(--czcionka-naglowki);
  font-size: 1.05rem;
  font-weight: bold;
  color: var(--kolor-oliwkowy);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.ht6-karta-opis {
  font-size: 0.85rem;
  color: var(--kolor-tekst-jasny);
  flex: 1;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.ht6-karta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--kolor-terakota);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.2s;
}

.ht6-karta-link:hover {
  gap: 0.7rem;
}

/* ══════════════════════════════════════════
   QUIZ 2 PYTANIA — .ht7
══════════════════════════════════════════ */
.ht7 {
  background: var(--kolor-oliwkowy);
  padding: 5rem 2rem;
}

.ht7-kontener {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.ht7-naglowek {
  font-family: var(--czcionka-naglowki);
  font-size: 2rem;
  color: var(--kolor-mleczny);
  margin-bottom: 0.5rem;
}

.ht7-podnaglowek {
  color: rgba(253,248,240,0.7);
  margin-bottom: 3rem;
  font-size: 1rem;
}

.ht7-krok {
  display: none;
}

.ht7-krok.aktywny {
  display: block;
  animation: ht7pojawienie 0.4s ease;
}

@keyframes ht7pojawienie {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.ht7-pytanie {
  font-family: var(--czcionka-naglowki);
  font-size: 1.4rem;
  color: var(--kolor-mleczny);
  margin-bottom: 1.75rem;
  line-height: 1.4;
}

.ht7-opcje {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ht7-opcja {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--promien);
  padding: 1rem 1.25rem;
  color: var(--kolor-mleczny);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

.ht7-opcja:hover {
  background: rgba(196,98,45,0.25);
  border-color: var(--kolor-terakota);
}

.ht7-opcja.zaznaczona {
  background: var(--kolor-terakota);
  border-color: var(--kolor-terakota);
}

.ht7-opcja-ikona {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.ht7-postep {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ht7-postep-krok {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.3s;
}

.ht7-postep-krok.aktywny {
  background: var(--kolor-terakota);
}

.ht7-postep-krok.ukonczone {
  background: rgba(255,255,255,0.6);
}

.ht7-przyciski-nawigacji {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.ht7-btn {
  padding: 0.75rem 2rem;
  border-radius: var(--promien);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.ht7-btn-dalej {
  background: var(--kolor-terakota);
  color: white;
  border-color: var(--kolor-terakota);
}

.ht7-btn-dalej:hover {
  background: var(--kolor-terakota-ciemna);
}

.ht7-btn-wstecz {
  background: transparent;
  color: var(--kolor-mleczny);
  border-color: rgba(255,255,255,0.3);
}

.ht7-btn-wstecz:hover {
  background: rgba(255,255,255,0.1);
}

/* Wynik quizu */
.ht7-wynik {
  background: rgba(255,255,255,0.1);
  border-radius: var(--promien-duzy);
  padding: 2.5rem;
  backdrop-filter: blur(5px);
}

.ht7-wynik-naglowek {
  font-family: var(--czcionka-naglowki);
  font-size: 1.2rem;
  color: var(--kolor-mleczny);
  margin-bottom: 0.5rem;
}

.ht7-wynik-cena {
  font-family: var(--czcionka-naglowki);
  font-size: 2.8rem;
  color: var(--kolor-terakota-jasna);
  font-weight: bold;
  margin: 0.5rem 0;
}

.ht7-wynik-opis {
  color: rgba(253,248,240,0.75);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════════
   FORMULARZ KONTAKTOWY — .ht8
══════════════════════════════════════════ */
.ht8 {
  background: var(--kolor-tlo-sekcji);
  padding: 5rem 2rem;
}

.ht8-siatka {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.ht8-info h2 {
  font-family: var(--czcionka-naglowki);
  font-size: 2rem;
  color: var(--kolor-oliwkowy);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.ht8-info p {
  color: var(--kolor-tekst-jasny);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.ht8-info-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ht8-info-lista li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--kolor-tekst);
}

.ht8-info-lista li span:first-child {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.ht8-formularz {
  background: var(--kolor-mleczny);
  border-radius: var(--promien-duzy);
  padding: 2.5rem;
  box-shadow: var(--cien-karta);
}

.ht8-pole {
  margin-bottom: 1.25rem;
}

.ht8-pole label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--kolor-oliwkowy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.ht8-pole input,
.ht8-pole textarea,
.ht8-pole select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(74,82,64,0.2);
  border-radius: var(--promien);
  font-size: 0.95rem;
  font-family: var(--czcionka-tekst);
  background: #fff;
  color: var(--kolor-tekst);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.ht8-pole input:focus,
.ht8-pole textarea:focus,
.ht8-pole select:focus {
  border-color: var(--kolor-terakota);
  box-shadow: 0 0 0 3px rgba(196,98,45,0.1);
}

.ht8-pole textarea {
  resize: vertical;
  min-height: 120px;
}

.ht8-blad {
  color: #c0392b;
  font-size: 0.78rem;
  margin-top: 0.3rem;
  display: none;
}

.ht8-blad.widoczny {
  display: block;
}

.ht8-pole input.nieprawidlowy,
.ht8-pole textarea.nieprawidlowy {
  border-color: #c0392b;
}

.ht8-przycisk {
  width: 100%;
  padding: 1rem;
  background: var(--kolor-terakota);
  color: white;
  border: none;
  border-radius: var(--promien);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.03em;
}

.ht8-przycisk:hover {
  background: var(--kolor-terakota-ciemna);
  transform: translateY(-1px);
}

.ht8-przycisk:active {
  transform: translateY(0);
}

.ht8-przycisk:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Toast */
.ht9-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  border-radius: var(--promien);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 360px;
}

.ht9-toast.sukces { background: #3a7d44; }
.ht9-toast.blad { background: #c0392b; }
.ht9-toast.widoczny { transform: translateY(0); opacity: 1; }

/* ══════════════════════════════════════════
   SEKCJA ZAUFANIA — liczniki
══════════════════════════════════════════ */
.ht10 {
  background: var(--kolor-terakota);
  padding: 3.5rem 2rem;
}

.ht10-siatka {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.ht10-element {
  color: white;
}

.ht10-liczba {
  font-family: var(--czcionka-naglowki);
  font-size: 3rem;
  font-weight: bold;
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.ht10-opis {
  font-size: 0.85rem;
  opacity: 0.85;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   STOPKA — .ht11
══════════════════════════════════════════ */
.ht11 {
  background: #2c2a26;
  color: rgba(253,248,240,0.75);
  padding: 4rem 2rem 2rem;
}

.ht11-siatka {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.ht11-o-nas h3 {
  font-family: var(--czcionka-naglowki);
  color: var(--kolor-mleczny);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.ht11-o-nas p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.ht11-kol h4 {
  font-family: var(--czcionka-naglowki);
  color: var(--kolor-mleczny);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ht11-kol ul {
  list-style: none;
}

.ht11-kol ul li {
  margin-bottom: 0.5rem;
}

.ht11-kol ul li a {
  color: rgba(253,248,240,0.65);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.ht11-kol ul li a:hover {
  color: var(--kolor-terakota-jasna);
}

.ht11-kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.6rem;
}

.ht11-kontakt-item a {
  color: rgba(253,248,240,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.ht11-kontakt-item a:hover {
  color: var(--kolor-terakota-jasna);
}

.ht11-dolna {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.ht11-dolna-linki {
  display: flex;
  gap: 1.5rem;
}

.ht11-dolna-linki a {
  color: rgba(253,248,240,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.ht11-dolna-linki a:hover {
  color: var(--kolor-terakota-jasna);
}

/* ══════════════════════════════════════════
   COOKIE BANNER — .ht12
══════════════════════════════════════════ */
.ht12-nakladka {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,42,38,0.65);
  z-index: 9998;
  backdrop-filter: blur(3px);
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
}

.ht12-baner {
  background: var(--kolor-mleczny);
  border-radius: var(--promien-duzy) var(--promien-duzy) 0 0;
  padding: 2rem 2.5rem;
  max-width: 720px;
  width: 100%;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 2rem;
  border-top: 3px solid var(--kolor-terakota);
}

.ht12-baner-tekst {
  flex: 1;
}

.ht12-baner-tekst h3 {
  font-family: var(--czcionka-naglowki);
  color: var(--kolor-oliwkowy);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.ht12-baner-tekst p {
  font-size: 0.85rem;
  color: var(--kolor-tekst-jasny);
  line-height: 1.6;
}

.ht12-baner-tekst p a {
  color: var(--kolor-terakota);
  text-decoration: underline;
}

.ht12-przyciski {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.ht12-btn-akceptuj {
  padding: 0.7rem 1.5rem;
  background: var(--kolor-terakota);
  color: white;
  border: none;
  border-radius: var(--promien);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.ht12-btn-akceptuj:hover { background: var(--kolor-terakota-ciemna); }

.ht12-btn-odrzuc {
  padding: 0.7rem 1.5rem;
  background: transparent;
  color: var(--kolor-tekst-jasny);
  border: 2px solid rgba(74,82,64,0.3);
  border-radius: var(--promien);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.ht12-btn-odrzuc:hover {
  border-color: var(--kolor-oliwkowy);
  color: var(--kolor-oliwkowy);
}

/* ══════════════════════════════════════════
   STRONY WEWNĘTRZNE — .ht13
══════════════════════════════════════════ */
.ht13-naglowek-strony {
  background: var(--kolor-oliwkowy);
  padding: 5rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ht13-naglowek-strony::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(196,98,45,0.08);
}

.ht13-naglowek-strony h1 {
  font-family: var(--czcionka-naglowki);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--kolor-mleczny);
  margin-bottom: 0.75rem;
  position: relative;
}

.ht13-naglowek-strony p {
  color: rgba(253,248,240,0.75);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.ht13-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: rgba(253,248,240,0.5);
  position: relative;
}

.ht13-breadcrumb a {
  color: rgba(253,248,240,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.ht13-breadcrumb a:hover {
  color: var(--kolor-terakota-jasna);
}

.ht13-breadcrumb span {
  opacity: 0.5;
}

/* Treść stron wewnętrznych */
.ht13-tresc {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.ht13-tresc h2 {
  font-family: var(--czcionka-naglowki);
  font-size: 1.7rem;
  color: var(--kolor-oliwkowy);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(196,98,45,0.2);
}

.ht13-tresc h3 {
  font-family: var(--czcionka-naglowki);
  font-size: 1.2rem;
  color: var(--kolor-oliwkowy);
  margin: 1.75rem 0 0.75rem;
}

.ht13-tresc p {
  color: var(--kolor-tekst-jasny);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.ht13-tresc ul, .ht13-tresc ol {
  margin: 1rem 0 1rem 1.5rem;
  color: var(--kolor-tekst-jasny);
  line-height: 1.9;
}

.ht13-tresc li { margin-bottom: 0.4rem; }

.ht13-tresc strong { color: var(--kolor-tekst); }

.ht13-tresc a {
  color: var(--kolor-terakota);
  text-decoration: underline;
}

.ht13-pole-info {
  background: var(--kolor-tlo-sekcji);
  border-left: 4px solid var(--kolor-terakota);
  border-radius: 0 var(--promien) var(--promien) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.ht13-pole-info p {
  margin: 0;
  font-size: 0.9rem;
}

/* Tabela cookies */
.ht13-tabela {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
}

.ht13-tabela th {
  background: var(--kolor-oliwkowy);
  color: white;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}

.ht13-tabela td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(74,82,64,0.12);
  color: var(--kolor-tekst-jasny);
}

.ht13-tabela tr:nth-child(even) td {
  background: rgba(245,237,224,0.4);
}

/* ══════════════════════════════════════════
   SEKCJA OBSZARY — .ht14
══════════════════════════════════════════ */
.ht14 {
  background: var(--kolor-mleczny);
  padding: 5rem 2rem;
}

.ht14-siatka {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ht14-obszar {
  background: var(--kolor-tlo-sekcji);
  border-radius: var(--promien-duzy);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s;
  border-bottom: 4px solid transparent;
}

.ht14-obszar:hover {
  transform: translateY(-4px);
  border-color: var(--kolor-terakota);
}

.ht14-ikona {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.ht14-obszar h3 {
  font-family: var(--czcionka-naglowki);
  font-size: 1.1rem;
  color: var(--kolor-oliwkowy);
  margin-bottom: 0.6rem;
}

.ht14-obszar p {
  font-size: 0.875rem;
  color: var(--kolor-tekst-jasny);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   404
══════════════════════════════════════════ */
.ht15-404 {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.ht15-404-liczba {
  font-family: var(--czcionka-naglowki);
  font-size: 8rem;
  font-weight: bold;
  color: var(--kolor-terakota);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -1rem;
}

.ht15-404 h1 {
  font-family: var(--czcionka-naglowki);
  font-size: 2rem;
  color: var(--kolor-oliwkowy);
  margin-bottom: 1rem;
}

.ht15-404 p {
  color: var(--kolor-tekst-jasny);
  margin-bottom: 2rem;
  max-width: 400px;
}

/* ══════════════════════════════════════════
   RESPONSYWNOŚĆ
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ht6-siatka {
    grid-template-columns: repeat(2, 1fr);
  }
  .ht11-siatka {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .ht3 {
    grid-template-columns: 1fr;
  }
  .ht3-grafika {
    min-height: 300px;
  }
  .ht3-grafika::after {
    background: linear-gradient(to bottom, transparent 60%, var(--kolor-oliwkowy));
  }
  .ht3-tekst {
    padding: 2.5rem 1.5rem;
  }
  .ht3-liczniki {
    gap: 1.5rem;
  }
  .ht7-opcje {
    grid-template-columns: 1fr;
  }
  .ht8-siatka {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ht10-siatka {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .ht14-siatka {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ht1-menu { display: none; }
  .ht1-hamburger { display: flex; }
  .ht1-menu.otwarte {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--kolor-oliwkowy);
    padding: 2rem;
    overflow-y: auto;
    z-index: 998;
    align-items: flex-start;
    gap: 0;
    height: auto;
  }
  .ht1-menu.otwarte > li {
    width: 100%;
    height: auto;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .ht1-menu.otwarte > li > a {
    padding: 1rem 0;
    font-size: 1.1rem;
  }
  .ht2 {
    display: none !important;
  }
  .ht12-baner {
    flex-direction: column;
    border-radius: var(--promien-duzy);
    gap: 1.25rem;
  }
  .ht12-przyciski {
    width: 100%;
  }
  .ht12-btn-akceptuj,
  .ht12-btn-odrzuc {
    flex: 1;
  }
  .ht11-siatka {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ht6-siatka {
    grid-template-columns: 1fr;
  }
  .ht11-dolna {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Pomocnicze */
.skryty { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* Animacja liczników */
@keyframes pojawienie {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
