* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #090d0f;
  color: white;
}

/* ========================================= */
/* HEADER */
/* ========================================= */

.header,
.subpage-header {
  width: 100%;
  height: 120px;
  padding: 28px 76px;

  display: grid;
  grid-template-columns: auto 1fr auto;

  align-items: start;
  gap: 40px;

  z-index: 10;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
}

.subpage-header {
  position: relative;

  background: #0a0d0f;

  border-bottom:
    1px solid rgba(255,255,255,.08);
}

.logo-tskd {
  width: 88px;

  filter:
    drop-shadow(0 6px 12px rgba(0,0,0,.5));
}

/* ========================================= */
/* MENU */
/* ========================================= */

.nav {
  display: flex;
  justify-content: center;

  gap: 42px;

  padding-top: 20px;

  position: relative;
  left: 90px;
}

.nav a {
  color: white;
  text-decoration: none;

  font-size: 17px;

  position: relative;
}

.nav a.active::after,
.nav a:hover::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -15px;

  width: 100%;
  height: 3px;

  background: #ffc400;
}

/* ========================================= */
/* BUTTON */
/* ========================================= */

.reserve-button {
  margin-top: 4px;

  padding: 16px 28px;

  background: #ffc400;
  color: #111;

  text-decoration: none;
  text-transform: uppercase;

  font-weight: 800;

  border-radius: 5px;

  box-shadow:
    0 8px 22px rgba(0,0,0,.35);

  white-space: nowrap;
}

/* ========================================= */
/* STRONA GŁÓWNA */
/* ========================================= */

.hero {
  position: relative;

  height: 820px;

  background:
    url("img/tlo.jpg") center top / cover no-repeat;

  display: flex;
  justify-content: center;

  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      rgba(3, 17, 29, .55),
      rgba(3, 17, 29, .10) 50%,
      rgba(0, 0, 0, .75)
    );
}

.hero-title {
  position: absolute;

  top: 120px;
  left: 50%;

  transform: translateX(-50%);

  z-index: 2;

  width: 100%;
}

.hero-title h1 {
  font-size: 64px;
  line-height: 1.15;

  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 3px;

  text-shadow:
    0 5px 18px rgba(0,0,0,.6);
}

.yellow-line {
  width: 100px;
  height: 3px;

  background: #ffc400;

  margin: 20px auto 0;
}

.hero-subtitle-bold {
  margin-top: 22px;

  font-size: 22px;
  font-weight: 700;

  color: #ffffff;

  text-shadow: 0 3px 12px rgba(0,0,0,.7);
}

.hero-subtitle-fun {
  margin-top: 18px;
}

.dla-kogo-label {
  margin-top: 52px;

  font-size: 52px;
  font-weight: 800;

  letter-spacing: .08em;
  text-transform: uppercase;

  color: #ffc400;

  text-shadow: 0 3px 14px rgba(0,0,0,.8);
}

.dla-kogo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;

  margin-top: 20px;
}

.pill {
  background: rgba(10,30,60,.65);

  border: 2px solid rgba(255,255,255,.70);
  border-radius: 40px;

  color: #ffffff;

  font-size: 21px;
  font-weight: 700;

  padding: 16px 34px;

  text-shadow: 0 1px 6px rgba(0,0,0,.8);

  display: flex;
  align-items: center;
  gap: 10px;
}

.pill span.pill-icon {
  font-size: 26px;
  line-height: 1;
}

.pill span.pill-icon--yellow {
  filter: sepia(1) saturate(5) hue-rotate(5deg) brightness(1.8);
}

.hero-subtitle {
  position: absolute;

  left: 50%;
  bottom: 24px;

  transform: translateX(-50%);

  width: 900px;

  z-index: 2;
}

.hero-subtitle p {
  font-size: 24px;
  line-height: 1.45;

  text-shadow:
    0 4px 14px rgba(0,0,0,.85);
}

/* ========================================= */
/* O NAS */
/* ========================================= */

.subpage {
  background:
    radial-gradient(circle at top, rgba(255,196,0,.08), transparent 35%),
    #0b0f12;
}

.about-gallery-hero {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;

  height: 440px;

  overflow: hidden;

  background: #0a0d0f;
}

.gallery-photo {
  position: relative;
  overflow: hidden;
}

.gallery-photo.large {
  grid-column: 1;
  grid-row: 1 / 3;
}

.gallery-photo.bottom-large {
  grid-column: 3;
  grid-row: 2;
}

.gallery-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  filter:
    brightness(.72)
    contrast(1.05);

  transition: .5s;
}

.gallery-photo:hover img {
  transform: scale(1.04);
  filter: brightness(.95);
}

.about-title {
  text-align: center;
  padding: 58px 20px 38px;
}

.about-title h1 {
  font-size: 72px;
  line-height: 1.1;

  font-weight: 900;

  letter-spacing: 4px;

  text-transform: uppercase;

  text-shadow:
    0 6px 20px rgba(0,0,0,.55);
}

.about-title p {
  font-size: 28px;

  color:
    rgba(255,255,255,.86);
}

/* ========================================= */
/* CONTENT */
/* ========================================= */

.content-section {
  max-width: 1180px;

  margin: 0 auto;

  padding: 40px 30px 80px;
}

.content-card {
  background:
    rgba(255,255,255,.045);

  border:
    1px solid rgba(255,255,255,.10);

  border-radius: 10px;

  padding: 42px;

  margin-bottom: 34px;

  box-shadow:
    0 18px 45px rgba(0,0,0,.22);
}

.content-card h2 {
  font-size: 34px;

  margin-bottom: 24px;

  color: #ffc400;
}

.content-card p {
  font-size: 18px;
  line-height: 1.75;

  color:
    rgba(255,255,255,.86);

  margin-bottom: 18px;
}

.highlight-card {
  background:
    linear-gradient(
      135deg,
      rgba(255,196,0,.10),
      rgba(255,255,255,.04)
    );
}

.values-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;
}

.value-box {
  padding: 28px;

  border-radius: 8px;

  background:
    rgba(0,0,0,.24);

  border-left:
    4px solid #ffc400;
}

.value-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.value-box p {
  font-size: 17px;
  line-height: 1.65;

  margin-bottom: 0;
}

/* ========================================= */
/* SOCIAL */
/* ========================================= */

.social-section {
  padding: 0 20px 70px;
  text-align: center;
}

.social-section h2 {
  font-size: 34px;

  margin-bottom: 34px;

  color: #ffc400;
}

.social-buttons {
  display: flex;
  justify-content: center;

  gap: 25px;

  flex-wrap: wrap;
}

.social-btn {
  min-width: 280px;

  padding: 18px 35px;

  border-radius: 8px;

  text-decoration: none;

  font-size: 18px;
  font-weight: 800;

  color: white;

  box-shadow:
    0 8px 22px rgba(0,0,0,.35);

  transition: .25s;
}

.social-btn:hover {
  transform: translateY(-4px);
  filter: brightness(1.1);
}

.facebook-page {
  background: #1877f2;
}

.facebook-group {
  background: #22a652;
}

.patronite {
  background: #e53935;
}

/* ========================================= */
/* LIGHTBOX GALERII */
/* ========================================= */

.gallery-image {
  cursor: pointer;
}

.gallery-modal {
  display: none;

  position: fixed;

  z-index: 9999;

  left: 0;
  top: 0;

  width: 100%;
  height: 100%;

  background:
    rgba(0,0,0,.92);

  justify-content: center;
  align-items: center;

  padding: 40px;
}

.gallery-modal-content {
  max-width: 92%;
  max-height: 92%;

  border-radius: 10px;

  box-shadow:
    0 0 40px rgba(0,0,0,.8);

  animation:
    zoomIn .25s ease;
}

.gallery-close {
  position: absolute;

  top: 20px;
  right: 35px;

  color: white;

  font-size: 60px;

  cursor: pointer;

  transition: .2s;
}

.gallery-close:hover {
  color: #ffc400;
}

@keyframes zoomIn {

  from{
    transform:scale(.85);
    opacity:0;
  }

  to{
    transform:scale(1);
    opacity:1;
  }

}

/* ========================================= */
/* FOOTER */
/* ========================================= */

.footer {
  padding: 28px 70px 24px;

  text-align: center;

  background:
    radial-gradient(circle at center top, rgba(255,255,255,.07), transparent 45%),
    #0a0d0f;
}

.logo-nerv {
  width: 70px;

  display: block;

  margin: 0 auto 12px;
}

.footer p {
  font-size: 15px;

  margin-bottom: 22px;
}

.footer-line {
  height: 1px;

  background:
    rgba(255,255,255,.14);

  margin: 0 auto 20px;

  max-width: 1400px;
}

.footer small {
  color:
    rgba(255,255,255,.55);

  font-size: 13px;

  line-height: 1.7;

  display: block;
}
/* ========================================= */
/* PARTNERZY */
/* ========================================= */

.partners-page {
  min-height: 100vh;

  background:
    radial-gradient(circle at top, rgba(255,196,0,.08), transparent 35%),
    #0b0f12;

  padding-bottom: 80px;
}

.partners-hero {
  text-align: center;

  padding:
    80px 20px 60px;
}

.partners-hero h1 {
  font-size: 72px;

  font-weight: 900;

  letter-spacing: 4px;

  text-transform: uppercase;

  text-shadow:
    0 6px 20px rgba(0,0,0,.55);
}

.partners-hero p {
  margin-top: 24px;

  font-size: 24px;

  color:
    rgba(255,255,255,.82);
}

/* ========================================= */
/* SEKCJE */
/* ========================================= */

.partners-section {
  max-width: 1450px;

  margin: 0 auto;

  padding:
    20px 40px 70px;
}

.partners-section h2 {
  text-align: center;

  font-size: 38px;

  margin-bottom: 40px;

  color: #ffc400;
}

/* ========================================= */
/* GRID */
/* ========================================= */

.partners-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(260px, 1fr));

  gap: 30px;
}

/* ========================================= */
/* KARTA */
/* ========================================= */

.partner-card {
  background:
    rgba(255,255,255,.04);

  border:
    1px solid rgba(255,255,255,.08);

  border-radius: 12px;

  padding: 26px;

  text-align: center;

  text-decoration: none;

  color: white;

  transition:
    transform .25s,
    box-shadow .25s,
    border-color .25s;

  box-shadow:
    0 12px 30px rgba(0,0,0,.22);
}

.partner-card:hover {
  transform: translateY(-6px);

  border-color:
    rgba(255,196,0,.45);

  box-shadow:
    0 18px 40px rgba(0,0,0,.35);
}

.partner-card img {
  width: 100%;
  height: 180px;

  object-fit: contain;

  background: white;

  border-radius: 8px;

  padding: 14px;

  margin-bottom: 22px;
}

.partner-card h3 {
  font-size: 20px;

  line-height: 1.4;

  color: white;
}

/* ========================================= */
/* RESPONSYWNOŚĆ */
/* ========================================= */

@media (max-width: 900px) {

  .partners-hero h1 {
    font-size: 48px;
  }

  .partners-hero p {
    font-size: 20px;
  }

  .partners-section {
    padding:
      20px 20px 60px;
  }

}

@media (max-width: 600px) {

  .partner-card img {
    height: 140px;
  }

  .partners-section h2 {
    font-size: 30px;
  }

}
/* ========================================= */
/* KONTAKT */
/* ========================================= */

.contact-page {
  min-height: 100vh;

  background:
    radial-gradient(circle at top, rgba(255,196,0,.08), transparent 35%),
    #0b0f12;

  padding-bottom: 80px;
}

/* HERO */

.contact-hero {
  text-align: center;

  padding:
    80px 20px 60px;
}

.contact-hero h1 {
  font-size: 72px;

  font-weight: 900;

  letter-spacing: 4px;

  text-transform: uppercase;

  text-shadow:
    0 6px 20px rgba(0,0,0,.55);
}

.contact-hero p {
  margin-top: 24px;

  font-size: 24px;

  color:
    rgba(255,255,255,.82);
}

/* SEKCJA */

.contact-section {
  max-width: 1400px;

  margin: 0 auto;

  padding:
    20px 40px 70px;
}

/* GRID */

.contact-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(420px, 1fr));

  gap: 30px;
}

/* KARTY */

.contact-card {
  background:
    rgba(255,255,255,.045);

  border:
    1px solid rgba(255,255,255,.10);

  border-radius: 12px;

  padding: 36px;

  box-shadow:
    0 18px 45px rgba(0,0,0,.22);
}

.contact-card h2 {
  font-size: 30px;

  margin-bottom: 24px;

  color: #ffc400;
}

.contact-card p {
  font-size: 18px;

  line-height: 1.8;

  color:
    rgba(255,255,255,.86);

  margin-bottom: 20px;
}

/* PRZYCISK */

.contact-button {
  display: inline-block;

  margin-top: 10px;

  padding:
    16px 26px;

  background: #1877f2;

  color: white;

  text-decoration: none;

  font-weight: 800;

  border-radius: 8px;

  transition: .25s;

  box-shadow:
    0 8px 22px rgba(0,0,0,.35);
}

.contact-button:hover {
  transform: translateY(-3px);

  filter: brightness(1.08);
}

/* FORMULARZ */

.contact-form {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding:
    16px 18px;

  border: none;

  border-radius: 8px;

  background:
    rgba(255,255,255,.08);

  color: white;

  font-size: 16px;

  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color:
    rgba(255,255,255,.55);
}

.contact-form button {
  padding:
    16px 22px;

  border: none;

  border-radius: 8px;

  background: #ffc400;

  color: #111;

  font-size: 16px;

  font-weight: 900;

  cursor: pointer;

  transition: .25s;

  box-shadow:
    0 8px 22px rgba(0,0,0,.35);
}

.contact-form button:hover {
  transform: translateY(-3px);

  filter: brightness(1.05);
}

/* MAPA */

.contact-card iframe {
  border-radius: 10px;
}

/* RESPONSYWNOŚĆ */

@media (max-width: 900px) {

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 48px;
  }

  .contact-hero p {
    font-size: 20px;
  }

}

@media (max-width: 600px) {

  .contact-section {
    padding:
      20px 20px 60px;
  }

  .contact-card {
    padding: 26px;
  }

}
/* ========================================= */
/* SZEROKA MAPA - KONTAKT */
/* ========================================= */

.map-wide {
  grid-column: 1 / -1;
}

.map-wide iframe {
  width: 100%;

  height: 520px;

  border-radius: 12px;
}
/* ========================================= */
/* HISTORIA */
/* ========================================= */

.history-page {
  min-height: 100vh;

  background:
    radial-gradient(circle at top, rgba(255,196,0,.08), transparent 35%),
    #0b0f12;

  padding-bottom: 80px;
}

/* HERO */

.history-hero {
  text-align: center;

  padding:
    90px 20px 60px;
}

.history-hero h1 {
  font-size: 82px;

  font-weight: 900;

  letter-spacing: 4px;

  text-transform: uppercase;

  text-shadow:
    0 6px 20px rgba(0,0,0,.55);
}

.history-hero p {
  margin-top: 24px;

  font-size: 24px;

  color:
    rgba(255,255,255,.82);
}

/* INTRO */

.history-intro {
  max-width: 1200px;

  margin: 0 auto;

  padding:
    0 40px 60px;
}

.history-card {
  background:
    rgba(255,255,255,.04);

  border:
    1px solid rgba(255,255,255,.08);

  border-radius: 14px;

  padding: 50px;

  box-shadow:
    0 18px 40px rgba(0,0,0,.25);
}

.history-card h2 {
  font-size: 42px;

  color: #ffc400;

  margin-bottom: 30px;
}

.history-card p {
  font-size: 20px;

  line-height: 1.9;

  color:
    rgba(255,255,255,.88);

  margin-bottom: 24px;
}

/* OŚ CZASU */

.timeline-section {
  max-width: 1200px;

  margin: 0 auto;

  padding:
    20px 40px 80px;
}

.timeline-item {
  display: flex;

  gap: 40px;

  margin-bottom: 40px;

  align-items: flex-start;

  background:
    rgba(255,255,255,.03);

  border:
    1px solid rgba(255,255,255,.08);

  border-radius: 12px;

  padding: 30px;

  transition: .3s;
}

.timeline-item:hover {
  transform: translateY(-4px);

  border-color:
    rgba(255,196,0,.4);
}

.timeline-year {
  min-width: 140px;

  font-size: 32px;

  font-weight: 900;

  color: #ffc400;
}

.timeline-content h3 {
  font-size: 32px;

  margin-bottom: 16px;

  color: white;
}

.timeline-content p {
  font-size: 18px;

  line-height: 1.8;

  color:
    rgba(255,255,255,.82);
}

/* RESPONSYWNOŚĆ */

@media (max-width: 900px) {

  .timeline-item {
    flex-direction: column;
  }

  .history-hero h1 {
    font-size: 58px;
  }

}

@media (max-width: 600px) {

  .history-card {
    padding: 30px;
  }

  .timeline-section,
  .history-intro {
    padding-left: 20px;
    padding-right: 20px;
  }

}
/* ========================================= */
/* HISTORIA */
/* ========================================= */

.history-page {
  min-height: 100vh;

  background:
    radial-gradient(circle at top, rgba(255,196,0,.08), transparent 35%),
    #0b0f12;

  padding-bottom: 80px;
}

/* HERO */

.history-hero {
  text-align: center;

  padding:
    90px 20px 60px;
}

.history-hero h1 {
  font-size: 82px;

  font-weight: 900;

  letter-spacing: 4px;

  text-transform: uppercase;

  text-shadow:
    0 6px 20px rgba(0,0,0,.55);
}

.history-hero p {
  margin-top: 24px;

  font-size: 24px;

  color:
    rgba(255,255,255,.82);
}

/* TREŚĆ */

.history-content {
  max-width: 1200px;

  margin: 0 auto;

  padding:
    0 40px 80px;
}

.history-block {
  background:
    rgba(255,255,255,.04);

  border:
    1px solid rgba(255,255,255,.08);

  border-radius: 14px;

  padding: 50px;

  margin-bottom: 40px;

  box-shadow:
    0 18px 40px rgba(0,0,0,.25);
}

.history-block h2 {
  font-size: 42px;

  color: #ffc400;

  margin-bottom: 30px;
}

.history-block p {
  font-size: 20px;

  line-height: 1.9;

  color:
    rgba(255,255,255,.88);

  margin-bottom: 24px;
}

/* RESPONSYWNOŚĆ */

@media (max-width: 900px) {

  .history-hero h1 {
    font-size: 58px;
  }

}

@media (max-width: 600px) {

  .history-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .history-block {
    padding: 30px;
  }

}
/* ========================================= */
/* COPYRIGHT */
/* ========================================= */

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 20px;
}

.footer-links a {
  color: rgba(255,255,255,.60);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  display: block;

  width: 100%;

  text-align: center;

  margin-top: 30px;

  padding-top: 20px;

  color: rgba(255,255,255,.55);

  font-size: 14px;
}
/* ========================================= */
/* HISTORIA - GALERIA I NOWA TREŚĆ */
/* ========================================= */

.history-gallery {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;

  margin-bottom: 50px;
}

.history-photo {

  background:
    rgba(255,255,255,.04);

  border:
    1px solid rgba(255,255,255,.08);

  border-radius: 14px;

  overflow: hidden;

  box-shadow:
    0 18px 40px rgba(0,0,0,.25);

  transition:
    transform .25s,
    box-shadow .25s;
}

.history-photo:hover {

  transform:
    translateY(-6px);

  box-shadow:
    0 24px 50px rgba(0,0,0,.35);
}

.history-photo img {

  width: 100%;

  height: 260px;

  object-fit: cover;

  display: block;

  cursor: pointer;

  transition:
    transform .35s;
}

.history-photo:hover img {

  transform:
    scale(1.04);
}

.history-photo figcaption {

  padding: 18px;

  font-size: 15px;

  line-height: 1.7;

  text-align: center;

  color:
    rgba(255,255,255,.82);

  background:
    rgba(0,0,0,.18);
}

/* ========================================= */
/* DUŻE ZDJĘCIE */
/* ========================================= */

.history-photo-large {

  grid-column:
    1 / -1;
}

.history-photo-large img {

  height: 520px;

  object-fit: cover;
}

/* ========================================= */
/* WYRÓŻNIONA SEKCJA */
/* ========================================= */

.history-highlight {

  border:
    1px solid rgba(255,196,0,.25);

  background:
    linear-gradient(
      135deg,
      rgba(255,196,0,.10),
      rgba(255,255,255,.03)
    );
}

.history-highlight h2 {

  color:
    #ffc400;
}

/* ========================================= */
/* PODPISY AUTORÓW */
/* ========================================= */

.history-photo figcaption br {

  margin-bottom: 6px;
}

/* ========================================= */
/* DELIKATNE ODDZIELENIE BLOKÓW */
/* ========================================= */

.history-block {

  position: relative;
}

.history-block::after {

  content: "";

  position: absolute;

  left: 50%;

  bottom: -22px;

  transform:
    translateX(-50%);

  width: 80px;

  height: 2px;

  background:
    rgba(255,196,0,.25);
}

.history-block:last-child::after {

  display: none;
}

/* ========================================= */
/* RESPONSYWNOŚĆ */
/* ========================================= */

@media (max-width: 900px) {

  .history-gallery {

    grid-template-columns:
      1fr;
  }

  .history-photo-large img {

    height: 320px;
  }

  .history-block h2 {

    font-size: 34px;
  }

  .history-block p {
    font-size: 17px;
    line-height: 1.7;
  }

}

/* ========================================= */
/* HAMBURGER (domyślnie ukryty) */
/* ========================================= */

.nav-toggle {
  display: none;
}

/* ========================================= */
/* TABLET — 1024px */
/* ========================================= */

@media (max-width: 1024px) {

  /* HEADER — mniejsze paddingi, nav bez przesunięcia */

  .header,
  .subpage-header {
    padding: 24px 40px;
    gap: 24px;
  }

  .nav {
    left: 0;
    gap: 28px;
  }

  .nav a {
    font-size: 15px;
  }

  .reserve-button {
    font-size: 13px;
    padding: 13px 20px;
  }

  /* HERO strona główna — mniejsza wysokość i czcionka */

  .hero {
    height: 680px;
  }

  .hero-title h1 {
    font-size: 48px;
    letter-spacing: 2px;
  }

  .hero-subtitle-bold {
    font-size: 19px;
  }

  .dla-kogo-label {
    font-size: 38px;
  }

  /* NAGŁÓWKI podstron */

  .history-hero h1,
  .about-title h1,
  .partners-hero h1,
  .contact-hero h1 {
    font-size: 48px;
  }

}

/* ========================================= */
/* MOBILE — 768px */
/* ========================================= */

@media (max-width: 768px) {

  /* HEADER */

  .header {
    position: relative; /* zdejmij z absolute na mobile */
  }

  .header,
  .subpage-header {
    height: auto;
    padding: 14px 20px;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 10px;
  }

  .logo-tskd {
    width: 58px;
  }

  /* NAV — ukryty, otwiera się jako dropdown */

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 300;
    background: #0a0d0f;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.10);
    flex-direction: column;
    gap: 0;
    padding: 6px 24px 18px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    font-size: 16px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    text-align: left;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .nav a.active::after,
  .nav a:hover::after {
    bottom: 0;
  }

  /* RESERVE BUTTON — kompaktowy */

  .reserve-button {
    font-size: 11px;
    padding: 8px 10px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
  }

  /* HAMBURGER */

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 2px solid rgba(255,255,255,.4);
    color: white;
    font-size: 18px;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
    line-height: 1;
  }

  /* HERO (strona główna) */

  .hero {
    height: auto;
    min-height: 100vh;
  }

  .hero-title {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 50px 20px 50px;
  }

  .hero-title h1 {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .yellow-line {
    margin-top: 16px;
  }

  .hero-subtitle-bold {
    font-size: 15px;
    margin-top: 14px;
  }

  .hero-subtitle-fun {
    margin-top: 10px;
  }

  .dla-kogo-label {
    font-size: 28px;
    margin-top: 28px;
  }

  .dla-kogo-pills {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 16px;
    padding: 0;
  }

  .pill {
    font-size: 16px;
    padding: 12px 20px;
    justify-content: center;
    border-radius: 14px;
  }

  /* Stara klasa hero-subtitle */

  .hero-subtitle {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    padding: 0 20px 30px;
  }

  .hero-subtitle p {
    font-size: 17px;
  }

  /* FOOTER */

  .footer {
    padding: 24px 20px;
  }

  /* NAGŁÓWKI PODSTRON */

  .history-hero,
  .partners-hero,
  .contact-hero,
  .about-title {
    padding: 50px 20px 36px;
  }

  .history-hero h1,
  .about-title h1,
  .partners-hero h1,
  .contact-hero h1 {
    font-size: 38px;
    letter-spacing: 2px;
  }

  .history-hero p,
  .about-title p,
  .partners-hero p,
  .contact-hero p {
    font-size: 18px;
    margin-top: 16px;
  }

  /* HISTORIA — oś czasu */

  .history-intro,
  .timeline-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .history-card {
    padding: 24px 18px;
  }

  .history-card h2 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .history-card p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 18px;
  }

  .timeline-item {
    flex-direction: column;
    gap: 8px;
    padding: 18px;
  }

  .timeline-year {
    font-size: 22px;
    min-width: unset;
  }

  .timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .timeline-content p {
    font-size: 16px;
  }

  /* REGULAMIN / POLITYKA — history-block */

  .history-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .history-block {
    padding: 22px 18px;
  }

  .history-block h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .history-block p {
    font-size: 15px;
    line-height: 1.72;
    margin-bottom: 14px;
  }

  /* O NAS — galeria */

  .about-gallery-hero {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px;
    height: 300px;
  }

  .gallery-photo.large {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .gallery-photo.bottom-large {
    grid-column: 2;
    grid-row: 2;
  }

  /* O NAS — treść */

  .content-section {
    padding: 24px 16px 50px;
  }

  .content-card {
    padding: 22px 18px;
  }

  .content-card h2 {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .content-card p {
    font-size: 16px;
    line-height: 1.65;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* SOCIAL */

  .social-section {
    padding: 0 16px 50px;
  }

  .social-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .social-btn {
    min-width: unset;
    width: 100%;
    font-size: 16px;
    padding: 16px 20px;
  }

  /* PARTNERZY */

  .partners-section {
    padding: 16px 16px 50px;
  }

  .partners-section h2 {
    font-size: 28px;
  }

  /* KONTAKT */

  .contact-section {
    padding: 16px 16px 50px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 22px 18px;
  }

  .contact-card h2 {
    font-size: 22px;
  }

  .contact-card p {
    font-size: 16px;
  }

  .map-wide iframe {
    height: 280px;
  }

}

/* ========================================= */
/* MOBILE SMALL — 420px */
/* ========================================= */

@media (max-width: 420px) {

  .hero-title h1 {
    font-size: 24px;
  }

  .hero-subtitle-bold {
    font-size: 14px;
  }

  .dla-kogo-label {
    font-size: 22px;
  }

  .pill {
    font-size: 15px;
    padding: 11px 16px;
  }

  .history-hero h1,
  .about-title h1,
  .partners-hero h1,
  .contact-hero h1 {
    font-size: 28px;
  }

  .reserve-button {
    font-size: 10px;
    padding: 6px 8px;
  }

  .nav-toggle {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

}
