/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  background: #fff;
  color: #333;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  background: #fff;
  padding: 20px 15px 0;
  text-align: center;
}
.site-header a { display: inline-block; }
.site-header img {
  height: 60px;
  width: auto;
  margin: 0 auto;
}
.site-header__sep {
  margin-top: 20px;
  border: none;
  border-top: 1px solid #e0dbd4;
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e8e4de;
}
.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 54px;
}
.navbar__links { display: flex; align-items: center; }
.navbar__item  { position: relative; }

.navbar__link {
  display: block;
  padding: 16px 18px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #55565e;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color .2s;
}
.navbar__link:hover,
.navbar__link.active { color: #825339; }

/* dropdown */
.navbar__dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  min-width: 220px;
  background: #444;
  padding: 8px 0;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.navbar__item:hover .navbar__dropdown { display: block; }
.navbar__dropdown a {
  display: block;
  padding: 10px 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  transition: background .15s;
}
.navbar__dropdown a:hover { background: rgba(255,255,255,.1); }

/* Rezerwuj */
.navbar__cta {
  position: absolute; right: 15px;
  top: 50%; transform: translateY(-50%);
  padding: 8px 20px;
  background: #825339;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-radius: 0;
  white-space: nowrap;
  transition: background .2s;
}
.navbar__cta:hover { background: #9a6345; }

/* hamburger */
.hamburger {
  display: none;
  position: absolute; right: 15px;
  top: 50%; transform: translateY(-50%);
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: #55565e;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  display: none;
  background: #fff;
  border-bottom: 2px solid #e8e4de;
  padding: 0 20px 16px;
}
.drawer.open { display: block; }
.drawer > ul > li > a,
.drawer > ul > li > span {
  display: block; padding: 11px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 15px; font-weight: 400;
  color: #55565e; text-transform: uppercase;
  border-bottom: 1px solid #f0ece6; cursor: pointer;
}
.drawer .sub { padding-left: 16px; }
.drawer .sub a {
  display: block; padding: 8px 0;
  font-size: 14px; text-transform: none;
  color: #777;
  border-bottom: 1px solid #f8f6f3;
}
.drawer-cta {
  display: block; margin-top: 14px; padding: 10px;
  background: #825339; color: #fff;
  font-size: 16px; font-weight: 500; text-align: center;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: #202020;
  color: #fff;
  padding: 60px 15px 40px;
}
.site-footer__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer__brand {
  font-family: 'Roboto', sans-serif;
  font-size: 22px; font-weight: 700; color: #fff;
}
.site-footer__col-title {
  font-family: 'Roboto', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 14px;
}
.site-footer__col-text {
  font-family: 'Roboto', sans-serif;
  font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.8;
}
.site-footer__col-text a { color: rgba(255,255,255,.75); transition: color .2s; }
.site-footer__col-text a:hover { color: #c98d60; }
.site-footer__fb { display: inline-flex; margin-top: 12px; }
.site-footer__fb svg { width: 28px; height: 28px; fill: #1877f2; }
.site-footer__bottom {
  max-width: 1200px; margin: 28px auto 0;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.site-footer__copy { font-size: 14px; color: rgba(255,255,255,.45); }
.site-footer__links { display: flex; gap: 28px; }
.site-footer__links a {
  font-size: 14px; color: rgba(255,255,255,.45); transition: color .2s;
}
.site-footer__links a:hover { color: rgba(255,255,255,.8); }

/* ── BACK TO TOP ────────────────────────────────────────── */
.back-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 40px; height: 40px;
  background: #825339; color: #fff;
  border: none; cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 50;
}
.back-top.show { opacity: 1; pointer-events: auto; }

/* ── LIGHTBOX ───────────────────────────────────────────── */
.lb-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.92);
  align-items: center; justify-content: center;
  padding: 16px;
}
.lb-overlay.open { display: flex; }
.lb-img {
  max-width: min(1200px, 96vw);
  max-height: 90vh; object-fit: contain;
}
.lb-close {
  position: absolute; top: 16px; right: 20px;
  font-size: 32px; color: #fff; cursor: pointer;
  background: none; border: none; line-height: 1;
}
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15); border: none;
  color: #fff; font-size: 28px; cursor: pointer;
  width: 50px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.3); }
.lb-prev { left: 10px; }
.lb-next { right: 10px; }
.lb-counter {
  position: absolute; bottom: 14px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6); font-size: 14px;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .navbar__links, .navbar__cta { display: none; }
  .hamburger { display: flex; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}
