/* =====================================================
   RESTAURACJA TARTAK – GŁÓWNY ARKUSZ STYLÓW
   Uzupełnienie do style.css
   ===================================================== */

/* =====================================================
   NAGŁÓWEK – 2 POZIOMY
   ===================================================== */

:root {
  --header-top-h:  108px;
  --header-nav-h:  44px;
  --header-height: 152px; /* top + nav */
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 24px rgba(0,0,0,0.30);
  transition: box-shadow var(--transition), top var(--transition);
}

/* WordPress admin bar przesuwa body o 32px – header musi się dostosować */
.admin-bar #site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar #site-header {
    top: 46px;
  }
}

/* ── Poziom 1: logo + telefony ── */
.header-top-bar {
  background: var(--green-darkest);
  height: var(--header-top-h);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
}

/* Miejsce na fixed .ue-flag-badge – żeby link Facebook nie chował się pod flagą */
@media (min-width: 1061px) {
  .header-top-bar .header-inner {
    padding-right: 76px;
  }
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__img {
  height: 92px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: opacity 0.2s ease;
}

.site-logo:hover .site-logo__img {
  opacity: 0.82;
}

/* Telefony w górnym pasku */
.header-phones {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color var(--transition);
}

.header-phone-link:hover {
  color: var(--gold-primary);
}

.header-phone-icon {
  font-size: 0.9rem;
}

.header-phones__sep {
  color: rgba(201,168,76,0.3);
  font-size: 1rem;
}

.header-fb-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color var(--transition);
}

.header-fb-link:hover {
  color: var(--gold-primary);
}

.header-fb-link svg {
  flex-shrink: 0;
}

/* ── Poziom 2: pasek nawigacji desktop (tylko placeholder wysokości) ── */
.header-nav-bar {
  height: var(--header-nav-h);
  pointer-events: none; /* nie blokuje kliknięć na #main-nav pod spodem */
}

/* ── NAWIGACJA – position:fixed, poza <header> ── */
#main-nav {
  position: fixed;
  top: var(--header-top-h);
  left: 0;
  right: 0;
  height: var(--header-nav-h);
  z-index: 1001;
  background: rgba(26, 58, 26, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201,168,76,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  /* mobile-nav-contact ukryty na desktop */
}

/* Admin bar – przesuń nav w dół */
.admin-bar #main-nav {
  top: calc(var(--header-top-h) + 32px);
}
@media screen and (max-width: 782px) {
  .admin-bar #main-nav {
    top: calc(var(--header-top-h) + 46px);
  }
}

#main-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

#main-nav ul li {
  height: 100%;
  display: flex;
  align-items: center;
}

#main-nav ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 13px;
  color: rgba(255,255,255,0.82);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  transition: color var(--transition), background var(--transition);
}

#main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px 2px 0 0;
  transition: width var(--transition);
}

#main-nav ul li a:hover,
#main-nav ul li.current-menu-item > a,
#main-nav ul li.current-page-ancestor > a {
  color: var(--gold-primary);
  background: rgba(201,168,76,0.08);
}

#main-nav ul li a:hover::after,
#main-nav ul li.current-menu-item > a::after,
#main-nav ul li.current-page-ancestor > a::after {
  width: 70%;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  width: 100%;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Przycisk telefonu w mobile headerze (ukryty na desktop) ── */
.header-phone-mobile {
  display: none;
}

/* Ikona Facebook w pasku (tylko mobile – na desktop jest w .header-phones) */
.header-fb-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--gold-light);
  text-decoration: none;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.header-fb-mobile:hover {
  color: var(--gold-primary);
  background: rgba(201, 168, 76, 0.12);
}

.header-fb-mobile:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

.header-fb-mobile svg {
  display: block;
}

/* ── Kontakt w mobile nav (ukryty na desktop) ── */
.mobile-nav-contact {
  display: none;
}

/* ── Mobile / Tablet ── */
@media (max-width: 1060px) {
  :root {
    --header-top-h:  68px;
    --header-nav-h:  0px;
    --header-height: 68px;
  }

  /* page-banner na mobile */
  .page-banner {
    padding-top: calc(68px + 36px);
  }

  /* Hero na mobile */
  .hero {
    padding-top: calc(68px + 40px);
    padding-bottom: 48px;
  }

  .hamburger { display: flex; }

  /* Pasek nav schowany – nav jest teraz POZA headerem, więc display:none tu jest OK */
  .header-nav-bar { display: none; }

  /* Ukryj numery telefonów z hero (przycisk w headerze je zastępuje) */
  .hero__phones { display: none !important; }

  /* Przycisk telefonu w mobile headerze */
  .header-phone-mobile {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition);
    margin-right: 4px;
  }

  .header-phone-mobile:hover {
    color: var(--gold-primary);
  }

  .header-phone-mobile span {
    display: none; /* na bardzo małych ekranach tylko ikona */
  }

  .header-fb-mobile {
    display: flex;
  }

  /* Pełnoekranowe menu mobilne */
  #main-nav {
    position: fixed;
    top: var(--header-top-h);
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    background: var(--green-darkest);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0 0 32px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    z-index: 1001;
    pointer-events: none;
  }

  #main-nav.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  /* Admin bar na mobile */
  .admin-bar #main-nav {
    top: calc(var(--header-top-h) + 46px);
  }

  #main-nav ul {
    flex-direction: column;
    height: auto;
    gap: 0;
  }

  #main-nav ul li {
    height: auto;
    width: 100%;
    border-bottom: 1px solid rgba(201,168,76,0.12);
  }

  #main-nav ul li a {
    height: auto;
    padding: 16px 28px;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    justify-content: flex-start;
  }

  #main-nav ul li a::after {
    display: none;
  }

  /* Telefony i FB w dolnej części menu mobilnego */
  .mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: auto;
    padding-top: 8px;
  }

  .mobile-nav-contact__divider {
    height: 1px;
    background: rgba(201,168,76,0.25);
    margin: 8px 28px 4px;
  }

  .mobile-nav-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    transition: background var(--transition), color var(--transition);
    letter-spacing: 0.03em;
  }

  .mobile-nav-phone:hover,
  .mobile-nav-phone:active {
    background: rgba(201,168,76,0.08);
    color: var(--gold-primary);
  }

  .mobile-nav-fb {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    color: var(--gold-light);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }

  .mobile-nav-fb svg {
    flex-shrink: 0;
    opacity: 0.95;
  }

  .mobile-nav-fb:hover,
  .mobile-nav-fb:active {
    background: rgba(201,168,76,0.08);
    color: var(--gold-light);
  }

  .header-phones {
    display: none;
  }
}

@media (min-width: 420px) and (max-width: 1060px) {
  .header-phone-mobile span {
    display: inline; /* pokaż numer od 420px */
  }
}

@media (max-width: 1060px) and (min-width: 481px) {
  .site-logo__img { height: 52px; }
}

@media (max-width: 480px) {
  .site-logo__img { height: 46px; }
  .header-inner { padding: 0 12px; }
  .header-phone-mobile { font-size: 0.75rem; }
  .header-phone-mobile span { display: none; }
}

/* Flaga UE – na jednej linii z treścią paska (środek pionowy = jak telefony / Facebook) */
.ue-flag-badge {
  position: fixed;
  z-index: 1003;
  /* Szerokie ekrany: trochę w prawo (mniejsze right), żeby nie najezdzała na link Facebook */
  right: max(8px, calc((100vw - 1340px) / 2 - 40px));
  top: calc(var(--header-top-h) / 2);
  display: block;
  line-height: 0;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: rgba(255, 255, 255, 0.96);
  padding: 2px 3px;
  transform: translateY(-50%);
}
.ue-flag-badge:hover {
  transform: translateY(-50%) scale(1.03);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.26);
}
.ue-flag-badge:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 3px;
}
.ue-flag-badge img {
  display: block;
  height: auto;
  max-width: 40px;
  width: auto;
}
.admin-bar .ue-flag-badge {
  top: calc(32px + var(--header-top-h) / 2);
}
@media screen and (max-width: 782px) {
  .admin-bar .ue-flag-badge {
    top: calc(46px + var(--header-top-h) / 2);
  }
}
@media (max-width: 1060px) {
  /* Ikona FB + hamburger – flaga nie może zasłaniać przycisków */
  .ue-flag-badge {
    right: 100px;
  }
  .ue-flag-badge img {
    max-width: 32px;
  }
}

/* Strona Fundusze UE */
.ue-funding__logos {
  text-align: center;
  margin-bottom: 40px;
}
.ue-funding__logo--main {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 24px;
}
.ue-funding__body {
  color: var(--text-medium);
  font-size: 0.98rem;
  line-height: 1.85;
}
.ue-funding__body p {
  margin: 0 0 1.1em;
}
.ue-funding__lead {
  font-size: 1.05rem;
  color: var(--green-dark);
}
.ue-funding__list {
  margin: 1em 0 1.5em 1.25em;
  list-style: disc;
  padding: 0;
}
.ue-funding__list li {
  margin-bottom: 0.55em;
}
.ue-funding__numbers {
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--gold-pale);
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: var(--radius);
}
.ue-funding__numbers p {
  margin: 0 0 10px;
}
.ue-funding__numbers p:last-child {
  margin-bottom: 0;
}

/* =====================================================
   SEKCJA HERO – STRONA GŁÓWNA
   ===================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  /*
   * Hero zaczyna się od y=0 (pierwszy element w przepływie, brak spacja).
   * Tło ciemnozielone = identyczne jak header → bezszwowe połączenie.
   * padding-top = header + 64px oddechu → treść pojawia się wyraźnie pod headerem.
   */
  padding-top: calc(var(--header-height, 102px) + 64px);
  padding-bottom: 64px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--green-darkest);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    #0f2410 0%,
    #1a3a1e 35%,
    #2a5c2a 70%,
    #1a3a1e 100%
  );
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 24, 10, 0.55) 0%,
    rgba(10, 24, 10, 0.35) 50%,
    rgba(10, 24, 10, 0.65) 100%
  );
}

/* Dekoracyjny wzór w tle */
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M40 0L80 40L40 80L0 40z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
  animation: fadeInUp 0.9s ease both;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 20px;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 6px 20px;
  border-radius: 40px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero__title span {
  color: var(--gold-primary);
}

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px auto;
  width: 180px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 12px;
}

.hero__desc {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,0.80);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero__phones {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero__phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 1.1rem;
  font-weight: 700;
  transition: color var(--transition);
}

.hero__phone-link:hover {
  color: var(--gold-primary);
}

.hero__phone-link .ph-icon {
  font-size: 1.2rem;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold-primary);
  border-bottom: 2px solid var(--gold-primary);
  transform: rotate(45deg);
}

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

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =====================================================
   SEKCJA INTRO / CYTAT
   ===================================================== */

.intro-section {
  background: var(--green-dark);
  padding: 56px 0;
  text-align: center;
}

.intro-section__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--gold-light);
  font-style: italic;
  max-width: 780px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* =====================================================
   SEKCJA "O NAS" NA GŁÓWNEJ
   ===================================================== */

.about-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-home__img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  background: var(--green-pale);
}

.about-home__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-home__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--gold-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border-radius: var(--radius-lg);
}

.about-home__badge {
  position: absolute;
  bottom: 24px;
  right: -12px;
  background: var(--gold-primary);
  color: var(--green-darkest);
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-strong);
  font-weight: 700;
}

.about-home__badge-num {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-family: var(--font-heading);
}

.about-home__badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-home__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-home__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
}

/* =====================================================
   SEKCJA PRZYJĘĆ NA GŁÓWNEJ
   ===================================================== */

.events-home {
  background: var(--off-white);
  padding: 80px 0;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.event-card__image {
  height: 200px;
  background: linear-gradient(135deg, var(--green-medium) 0%, var(--green-dark) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0.85;
}

.gallery-spaces .event-card__image img {
  opacity: 1;
}

/* Galeria „Nasze przestrzenie” – sala: więcej góry kadru.
   Przy zdjęciu poziomym cover często wypełnia wysokość i przycina tylko boki — wtedy sam object-position (top) nic nie zmienia.
   Lekkie powiększenie z kotwicą u góry wymusza przycięcie w pionie i „podciąga” widok ku górze zdjęcia. */
.gallery-spaces .event-card__image img.img-gallery-space--top {
  object-fit: cover;
  object-position: center top;
  transform: scale(1.12);
  transform-origin: center top;
}

.event-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.event-card__desc {
  color: var(--text-light);
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 20px;
}

.event-card__link {
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}

.event-card__link:hover {
  color: var(--gold-primary);
  gap: 12px;
}

/* =====================================================
   SEKCJA CTA / PRZYJĘCIA – BANNER
   ===================================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--green-darkest) 0%, var(--green-medium) 60%, var(--green-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c9a84c' fill-opacity='0.06' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--gold-light);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 36px;
}

/* =====================================================
   SEKCJA SZCZEGÓŁOWE STRONY
   ===================================================== */

/* Tekst + obraz obok siebie */
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-with-image.reverse {
  direction: rtl;
}

.content-with-image.reverse > * {
  direction: ltr;
}

.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--gold-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

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

/* Sekcja z lewym paskiem złota */
.highlight-box {
  border-left: 4px solid var(--gold-primary);
  padding: 20px 24px;
  background: var(--gold-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}

.highlight-box p {
  color: var(--text-medium);
  margin: 0;
  font-style: italic;
}

/* Lista usług/oferty */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-medium);
  font-size: 0.95rem;
}

.services-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Ikonki-cechy */
.features-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  margin-top: 48px;
}

.feature-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.feature-icon-item__icon {
  width: 64px;
  height: 64px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 2px solid var(--gold-light);
  transition: background var(--transition), border-color var(--transition);
}

.feature-icon-item:hover .feature-icon-item__icon {
  background: var(--gold-pale);
  border-color: var(--gold-primary);
}

.feature-icon-item__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--green-dark);
  font-weight: 700;
}

/* =====================================================
   SEKCJA LUNCH
   ===================================================== */

.lunch-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.lunch-hours {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.lunch-hours h3 {
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.lunch-hours__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}

.lunch-hours__row:last-child {
  border-bottom: none;
}

.lunch-hours__day {
  color: var(--gold-light);
  font-weight: 600;
}

.lunch-hours__time {
  color: var(--white);
}

.lunch-offer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lunch-offer-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.lunch-offer-item__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =====================================================
   SEKCJA BOXY
   ===================================================== */

.box-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.box-product-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.box-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--green-primary), var(--gold-primary));
}

.box-product-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.box-product-card h3 {
  margin-bottom: 12px;
  color: var(--green-dark);
}

/* Ingredients grid */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.ingredient-tag {
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  color: var(--gold-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

/* =====================================================
   SEKCJA SZEF KUCHNI
   ===================================================== */

.chef-section {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}

.chef-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.chef-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.chef-photo__placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--green-pale), var(--gold-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-radius: var(--radius-lg);
}

.chef-quote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--green-dark);
  border-left: 4px solid var(--gold-primary);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--green-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* =====================================================
   GALERIA
   ===================================================== */

.gallery-grid {
  columns: 3;
  column-gap: 16px;
  margin-top: 40px;
}

.gallery-empty-notice {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: var(--radius);
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.65;
  text-align: center;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gallery-placeholder-item {
  background: linear-gradient(135deg, var(--green-pale), var(--gold-pale));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--green-medium);
  transition: opacity var(--transition);
}

.gallery-placeholder-item:nth-child(1) { height: 220px; }
.gallery-placeholder-item:nth-child(2) { height: 160px; }
.gallery-placeholder-item:nth-child(3) { height: 200px; }
.gallery-placeholder-item:nth-child(4) { height: 180px; }
.gallery-placeholder-item:nth-child(5) { height: 240px; }
.gallery-placeholder-item:nth-child(6) { height: 160px; }

.gallery-note {
  text-align: center;
  margin-top: 32px;
  padding: 24px;
  background: var(--gold-pale);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--gold-primary);
  color: var(--text-light);
  font-style: italic;
}

/* =====================================================
   KONTAKT
   ===================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--gold-primary);
}

.contact-card h4 {
  color: var(--green-dark);
  margin-bottom: 12px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-card p,
.contact-card a {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-card a:hover {
  color: var(--gold-primary);
}

.contact-hours-table {
  width: 100%;
  border-collapse: collapse;
}

.contact-hours-table tr {
  border-bottom: 1px solid var(--border-light);
}

.contact-hours-table tr:last-child {
  border-bottom: none;
}

.contact-hours-table td {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.contact-hours-table td:first-child {
  color: var(--green-dark);
  font-weight: 600;
  width: 50%;
}

.contact-hours-table .highlight {
  color: var(--gold-dark);
  font-style: italic;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--green-pale);
  min-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--green-pale), var(--gold-pale));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-light);
  text-align: center;
  padding: 40px;
}

.map-placeholder__icon {
  font-size: 3rem;
}

/* Formularz kontaktowy */
.contact-form-section {
  background: var(--off-white);
  padding: 80px 0;
}

.rodo-group { margin-top: 8px; }

.rodo-check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.rodo-check-row input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.rodo-label {
  font-size: .82rem !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--text-medium) !important;
  line-height: 1.6 !important;
  cursor: pointer;
  margin-bottom: 0 !important;
  display: block;
}

.rodo-info-box {
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: .78rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 12px;
}

.contact-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input[type="checkbox"],
.form-group input[type="radio"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--green-primary);
  margin: 0;
  padding: 0;
  -webkit-appearance: auto;
  appearance: auto;
}

.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(42, 92, 42, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* =====================================================
   FOOTER
   ===================================================== */

#site-footer {
  background: var(--green-darkest);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

/* Logo w stopce renderowane jako <img> – style inline w footer.php */

.footer-about {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--gold-primary);
  color: var(--green-darkest);
}

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--gold-light);
}

.footer-contact-icon {
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(201,168,76,0.5);
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* =====================================================
   LICZNIK / STATYSTYKI
   ===================================================== */

.stats-bar {
  background: var(--green-primary);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-item__num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.stat-item__label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* =====================================================
   KATERING
   ===================================================== */

.catering-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.catering-tag {
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  color: var(--green-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition);
}

.catering-tag:hover {
  background: var(--gold-pale);
  border-color: var(--gold-primary);
  color: var(--gold-dark);
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.extra-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.extra-item:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 2px 12px rgba(201,168,76,0.15);
}

.extra-item__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.extra-item__text {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.5;
}

/* =====================================================
   RESPONSYWNOŚĆ – SZCZEGÓŁOWE STRONY
   ===================================================== */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .features-icons { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .extras-grid { grid-template-columns: repeat(2, 1fr); }
  .chef-section { grid-template-columns: 300px 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .about-home { grid-template-columns: 1fr; gap: 32px; }
  .events-grid { grid-template-columns: 1fr; }
  .content-with-image { grid-template-columns: 1fr; gap: 32px; }
  .content-with-image.reverse { direction: ltr; }
  .lunch-info { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .box-products { grid-template-columns: 1fr; }
  .chef-section { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-placeholder { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .extras-grid { grid-template-columns: 1fr; }
  .features-icons { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero__phones { flex-direction: column; }
  .btn-group { flex-direction: column; width: 100%; }
  .btn-group .btn { width: 100%; text-align: center; }
  .gallery-placeholder { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================
   GLAMOUR GOLD VARIANTS – KATERING & BOXY
   ===================================================== */

.catering-tag--gold {
  background: var(--gold-pale);
  border-color: var(--gold-primary);
  color: var(--gold-dark);
}

.catering-tag--gold:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--green-darkest);
}

.extra-item--gold {
  border-color: rgba(201,168,76,0.45);
  background: linear-gradient(135deg, #fff 55%, var(--gold-pale) 100%);
}

.extra-item--gold:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 4px 20px rgba(201,168,76,0.22);
}

.extra-item--gold strong {
  color: var(--gold-dark);
}

.ingredient-tag--gold {
  background: var(--gold-pale);
  border-color: var(--gold-primary);
  color: var(--gold-dark);
}

.ingredient-tag--gold:hover {
  background: var(--gold-primary);
  color: var(--green-darkest);
}

/* =====================================================
   SZEF KUCHNI – GALERIA ZDJĘĆ & LINKI DO MEDIÓW
   ===================================================== */

.chef-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.chef-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--green-pale);
  cursor: pointer;
  position: relative;
}

.chef-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
  display: block;
}

.chef-gallery-item:hover img {
  transform: scale(1.06);
}

.chef-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.chef-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--gold-dark);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.chef-link-item:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--green-darkest);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}

.chef-link-item__icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

@media (max-width: 1024px) {
  .chef-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .chef-gallery { grid-template-columns: repeat(2, 1fr); }
  .chef-links-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .chef-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ============================================================
   BANER COOKIES
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--green-darkest);
  border-top: 2px solid var(--gold-primary);
  box-shadow: 0 -4px 24px rgba(0,0,0,.35);
  padding: 16px 0;
}
.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 260px;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}
.cookie-banner__text strong { color: var(--gold-light); }
.cookie-banner__text a {
  color: var(--gold-primary);
  text-decoration: underline;
  white-space: nowrap;
}
.cookie-banner__text a:hover { color: var(--gold-light); }
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn--accept {
  background: var(--gold-primary);
  color: var(--green-darkest);
}
.cookie-btn--accept:hover { background: var(--gold-light); }
.cookie-btn--reject {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3);
}
.cookie-btn--reject:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; padding: 12px 16px; }
}

/* ============================================================
   POLITYKA PRYWATNOŚCI
   ============================================================ */
.privacy-content {
  max-width: 860px;
  margin: 0 auto;
}
.privacy-updated {
  font-size: .82rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}
.privacy-section {
  margin-bottom: 48px;
}
.privacy-section h2 {
  font-size: 1.25rem;
  color: var(--green-darkest);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-primary);
  display: inline-block;
}
.privacy-section h3 {
  font-size: 1rem;
  color: var(--green-dark);
  margin: 20px 0 12px;
}
.privacy-section p, .privacy-section li {
  font-size: .95rem;
  color: var(--text-medium);
  line-height: 1.8;
}
.privacy-section ul {
  margin: 12px 0 0 20px;
  list-style: disc;
}
.privacy-section ul li { margin-bottom: 8px; }
.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: .9rem;
}
.privacy-table th {
  background: var(--green-darkest);
  color: var(--gold-light);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  letter-spacing: .04em;
}
.privacy-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-medium);
  vertical-align: top;
  line-height: 1.6;
}
.privacy-table tr:nth-child(even) td { background: var(--gold-pale); }
.privacy-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.privacy-right-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.privacy-right-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; }
.privacy-right-item strong {
  display: block;
  color: var(--green-darkest);
  font-size: .9rem;
  margin-bottom: 4px;
}
.privacy-right-item p {
  font-size: .83rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}
.privacy-contact-box {
  background: var(--green-darkest);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-top: 48px;
  text-align: center;
}
.privacy-contact-box h3 {
  color: var(--gold-primary);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.privacy-contact-box p {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  line-height: 2;
  margin: 6px 0;
}
.privacy-contact-box a { color: var(--gold-light); }
.privacy-contact-box a:hover { color: #fff; }
.footer-legal-links a {
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--gold-light); }
@media (max-width: 768px) {
  .privacy-rights-grid { grid-template-columns: 1fr; }
  .privacy-table { font-size: .82rem; }
  .privacy-table th, .privacy-table td { padding: 10px 12px; }
  .privacy-contact-box { padding: 24px 20px; }
}

/* =====================================================
   FILMY FACEBOOK (galeria, boxy – dawniej strona główna)
   ===================================================== */
.home-videos-section {
  padding-top: 72px;
  padding-bottom: 72px;
}
.home-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 20px;
  margin-top: 36px;
  align-items: start;
}
.home-videos-grid--single {
  grid-template-columns: 1fr;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
}
.home-video-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  min-width: 0;
}
.home-video-card__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 21;
  height: auto;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(201,168,76,0.35);
  background: #0a0f0a;
}
.home-video-card__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.home-video-card__frame--linkonly {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #0f1410 0%, #1a2418 45%, #0d120d 100%);
  border: 1px solid rgba(201,168,76,0.45);
}
.home-video-card__linkonly-inner {
  padding: 20px 16px;
  text-align: center;
  max-width: 280px;
}
.home-video-card__linkonly-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(201,168,76,0.2);
  color: var(--gold-primary);
  font-size: 1.25rem;
  line-height: 1;
}
.home-video-card__linkonly-text {
  margin: 0 0 16px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
}
.home-video-card__linkonly-btn {
  font-size: 0.88rem;
  padding: 10px 18px;
}
.home-video-card__caption {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-dark);
  text-align: center;
  line-height: 1.45;
}
.home-video-card__fb-link {
  margin: 0;
  text-align: center;
  font-size: 0.84rem;
}
.home-video-card__fb-link a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.home-video-card__fb-link a:hover {
  color: var(--green-primary);
}
@media (max-width: 960px) {
  .home-videos-grid:not(.home-videos-grid--single) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
  }
}
@media (max-width: 640px) {
  .home-videos-grid:not(.home-videos-grid--single) {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
