/* === Design tokens === */
:root {
  --blue:       #2470E0;
  --blue-dark:  #1458BC;
  --blue-5:     #EAF1FC;
  --blue-6:     #F8FAFE;
  --grey-1:     #242629;
  --grey-2:     #6B707D;
  --grey-3:     #979DB0;
  --grey-4:     #DCE0E6;
  --grey-5:     #E9ECF1;
  --grey-6:     #F0F1F5;
  --grey-7:     #FBFBFB;
  --yellow:     #F6AE2D;
  --green:      #00B286;
  --container:  1200px;
  --nav-h:      68px;
  --radius:     12px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-1);
  background: #fff;
}

a { color: var(--blue); }
img { max-width: 100%; height: auto; }
button, input, textarea, select { font-family: inherit; }
address { font-style: normal; }
h1, h2, h3 { margin: 0; line-height: 1.1; letter-spacing: -0.025em; }

/* === Layout === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.75rem;
}

section { padding: 80px 0; scroll-margin-top: var(--nav-h); }


.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { margin-bottom: 8px; color: var(--grey-1); font-size: clamp(1.75rem, 3.5vw, 2.25rem); font-weight: 700; }
.section-header p  { font-size: 1.0625rem; color: var(--grey-2); margin: 0; }

/* === Navigation === */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 max(1.75rem, calc((100% - var(--container)) / 2 + 1.75rem));
  gap: 8px;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: background 200ms, border-color 200ms, box-shadow 200ms;
}

#main-nav.scrolled {
  background: #fff;
  border-bottom-color: var(--grey-5);
  box-shadow: 0 4px 18px rgba(36,38,41,0.05);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.nav-logo-text { line-height: 1.2; }
.nav-logo-name { display: block; font-size: 15px; font-weight: 600; color: var(--grey-1); letter-spacing: -0.01em; }
.nav-logo-city { display: block; font-size: 11px; color: var(--grey-2); }
.nav-logo img,
.nav-logo-img  { height: 36px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 2px;
  margin-left: 2rem;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-2);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 120ms, color 120ms;
}

.nav-links a:hover  { background: var(--blue-5); color: var(--blue); }
.nav-links a.active { background: var(--blue-5); color: var(--blue); font-weight: 600; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-1);
  text-decoration: none;
  margin-right: 0.75rem;
  white-space: nowrap;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(36,112,224,0.3);
  transition: background 120ms;
}
.nav-cta:hover { background: var(--blue-dark); color: #fff; }

.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.nav-status--open   { background: #E6F8F3; color: #007A54; }
.nav-status--closed { background: var(--grey-6); color: var(--grey-2); }

.nav-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-status--open   .nav-status-dot { background: #00B286; animation: pulse-dot 2s ease-in-out infinite; }
.nav-status--closed .nav-status-dot { background: var(--grey-3); }
.nav-status-suffix { font-size: 12px; opacity: 0.8; }

@keyframes pulse-dot {
  0%, 100% { transform: scale(1);    opacity: 1;   }
  50%       { transform: scale(0.7); opacity: 0.5; }
}

.mobile-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-top: 8px;
}
.mobile-status--open   { background: #E6F8F3; color: #007A54; }
.mobile-status--closed { background: var(--grey-6); color: var(--grey-2); }

.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--grey-4);
  background: #fff;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}
#hamburger-close { display: none; }

/* === Mobile menu === */
#mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  flex-direction: column;
  padding: 8px 16px 16px;
  overflow-y: auto;
}

#mobile-menu.open { display: flex; }

.mobile-menu-links { display: flex; flex-direction: column; }

.mobile-menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-size: 17px;
  font-weight: 500;
  color: var(--grey-1);
  text-decoration: none;
  border-bottom: 1px solid var(--grey-6);
}

.mobile-menu-spacer { flex: 1; min-height: 24px; }

.mobile-menu-ctas { display: flex; flex-direction: column; gap: 10px; }

.mobile-menu-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(36,112,224,0.25);
}

.mobile-menu-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  color: var(--grey-1);
  border: 1px solid var(--grey-4);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

/* === Hero === */
#hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 72px;
  background: linear-gradient(180deg, var(--blue-6) 0%, #fff 100%);
  overflow: hidden;
  text-align: center;
  scroll-margin-top: 0;
}

.hero-blob {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 720px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--blue-5), transparent);
  opacity: 0.7;
  pointer-events: none;
}

#hero.has-hero-photo {
  background-size: cover;
  background-position: center;
}
#hero.has-hero-photo {
  display: flex;
  align-items: flex-end;
  min-height: 660px;
  text-align: left;
}
#hero.has-hero-photo::before {
  content: '';
  position: absolute;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(10,11,41,0.15) 0%, rgba(10,11,41,0.58) 50%, rgba(10,11,41,0.93) 100%);
  z-index: 0;
}
#hero.has-hero-photo .hero-blob { display: none; }
#hero.has-hero-photo .hero-avatar { display: none; }
#hero.has-hero-photo .hero-inner { position: relative; z-index: 1; width: 100%; max-width: var(--container); padding: 0 1.75rem; }
#hero.has-hero-photo .hero-name { color: #fff; }
#hero.has-hero-photo .hero-address { color: rgba(255,255,255,0.85); display: flex; }
#hero.has-hero-photo .hero-address svg { stroke: rgba(255,255,255,0.70); }
#hero.has-hero-photo .hero-cta { justify-content: flex-start; }
#hero.has-hero-photo .hero-trust { border-top-color: rgba(255,255,255,0.15); justify-content: flex-start; }
#hero.has-hero-photo .trust-item-score { color: #fff; }
#hero.has-hero-photo .trust-item-sub { color: rgba(255,255,255,0.70); }
#hero.has-hero-photo .trust-divider { background: rgba(255,255,255,0.18); }
#hero.has-hero-photo .btn-secondary {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
#hero.has-hero-photo .btn-secondary:hover { border-color: rgba(255,255,255,0.55); color: #fff; }

.hero-inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.hero-name {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--grey-1);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero-address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem;
  color: var(--grey-2);
  margin-top: 14px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(36,112,224,0.25);
  transition: background 200ms, transform 200ms;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); color: #fff; }
.btn-primary--sm { padding: 10px 18px; font-size: 14px; }

.btn-label { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.btn-sub { font-size: 11px; font-weight: 400; opacity: 0.75; letter-spacing: 0.01em; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 10px;
  background: #fff;
  color: var(--grey-1);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--grey-4);
  transition: border-color 120ms;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--grey-1); }

.trust-status-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.trust-status-dot--open {
  background: #00B286;
  box-shadow: 0 0 0 4px rgba(0,178,134,0.15);
}
.trust-status-dot--closed {
  background: #EA4335;
  box-shadow: 0 0 0 4px rgba(234,67,53,0.13);
}

.hero-trust {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-5);
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.trust-item-text { text-align: left; line-height: 1.3; }
.trust-item-score { font-size: 1rem; font-weight: 700; color: var(--grey-1); display: flex; align-items: center; gap: 6px; }
.trust-item-sub { font-size: 12px; color: var(--grey-2); margin-top: 2px; }
.trust-divider { width: 1px; height: 28px; background: var(--grey-5); }

.stars { display: inline-flex; gap: 1.5px; color: var(--yellow); line-height: 1; }
.stars svg { display: block; }

/* === About === */
#o-warsztacie { background: #fff; }

.section-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--grey-1);
  margin: 0 0 24px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-desc p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--grey-2);
  margin: 0 0 1rem;
}
.about-desc p:last-child { margin-bottom: 0; }

.review-card {
  background: var(--grey-7);
  border: 1px solid var(--grey-5);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.review-card + .review-card { margin-top: 0.75rem; }

.review-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.review-date { font-size: 12px; color: var(--grey-3); }
.review-text { font-size: 15px; line-height: 1.55; color: var(--grey-1); margin: 0 0 10px; font-style: italic; }

.review-author { display: flex; align-items: center; gap: 8px; }
.review-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blue-5);
  color: var(--blue);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-name { font-size: 13px; font-weight: 600; color: var(--grey-1); }

.reviews-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 1rem;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.reviews-more:hover { text-decoration: underline; }

/* === Photo slider === */
#zdjecia { background: var(--grey-7); }

.slider-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(36,38,41,0.12);
}

.slider-track {
  display: flex;
  transition: transform 600ms cubic-bezier(0.2,0,0,1);
}

.slider-slide {
  min-width: 100%;
  height: 480px;
  position: relative;
  flex-shrink: 0;
}

.slider-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.slide-placeholder {
  width: 100%; height: 100%;
  background: var(--grey-6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--grey-3);
  font-size: 0.875rem;
}

.slide-caption {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(10,11,41,0.7);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(6px);
}

.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.95);
  color: var(--grey-1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: background 120ms, color 120ms;
}

.slider-btn:hover { background: var(--blue); color: #fff; }
.slider-btn:hover svg { stroke: #fff; }
#slider-prev { left: 16px; }
#slider-next { right: 16px; }

#slider-dots {
  position: absolute;
  bottom: 16px; right: 16px;
  display: flex;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(10,11,41,0.65);
  backdrop-filter: blur(6px);
}

#slider-dots button {
  width: 22px; height: 22px;
  border: none; padding: 0;
  cursor: pointer;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
}

/* Fullscreen button on slide */
.slider-slide.has-photo { cursor: zoom-in; }

.slide-fs-btn {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(10,11,41,0.7);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 150ms;
  z-index: 2;
}
.slider-slide:hover .slide-fs-btn { opacity: 1; }

/* === Lightbox === */
#lightbox {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(10,11,41,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms;
}
#lightbox.open { opacity: 1; pointer-events: auto; }

.lb-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; flex-shrink: 0;
}
.lb-counter { font-size: 14px; color: rgba(255,255,255,0.7); }

.lb-close {
  width: 40px; height: 40px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.12);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 120ms;
}
.lb-close:hover { background: rgba(255,255,255,0.22); }

.lb-main {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 0 16px 16px; position: relative; overflow: hidden; min-height: 0;
}
.lb-img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  user-select: none; -webkit-user-drag: none;
}

.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.12);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 120ms;
}
.lb-arrow:hover { background: rgba(255,255,255,0.22); }
.lb-arrow-prev { left: 24px; }
.lb-arrow-next { right: 24px; }

.lb-thumbs {
  display: flex; gap: 8px; padding: 12px 16px;
  overflow-x: auto; justify-content: center; flex-shrink: 0;
  scrollbar-width: none;
}
.lb-thumbs::-webkit-scrollbar { display: none; }

.lb-thumb {
  border: 2px solid transparent; border-radius: 6px;
  padding: 0; background: transparent;
  cursor: pointer; flex-shrink: 0;
  transition: border-color 150ms; overflow: hidden;
}
.lb-thumb.active { border-color: var(--blue); }
.lb-thumb img { width: 64px; height: 48px; object-fit: cover; display: block; opacity: 0.55; transition: opacity 150ms; }
.lb-thumb.active img,
.lb-thumb:hover img { opacity: 1; }

@media (max-width: 480px) {
  .lb-arrow { width: 40px; height: 40px; }
  .lb-arrow-prev { left: 8px; }
  .lb-arrow-next { right: 8px; }
}

/* === Pricing === */
#cennik { background: #fff; }

.price-table-wrap {
  background: #fff;
  border: 1px solid var(--grey-5);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.price-table thead tr { background: var(--grey-7); }
.price-table th {
  padding: 12px 20px;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey-2);
  font-weight: 600;
  border-bottom: 1px solid var(--grey-5);
  text-align: left;
}
.price-table th.right { text-align: right; }

.price-table td {
  padding: 14px 20px;
  font-size: 15px;
  color: var(--grey-1);
  border-bottom: 1px solid var(--grey-6);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover td { background: rgba(36,112,224,0.02); }

td.price-val { font-weight: 600; text-align: right; font-variant-numeric: tabular-nums; }
td.price-val.empty { color: var(--grey-3); font-weight: 400; }
td.price-book { text-align: right; }
td.price-book a { font-size: 13px; font-weight: 600; color: var(--blue); text-decoration: none; }
td.price-book a:hover { text-decoration: underline; }

/* === Brands === */
#marki { background: var(--grey-7); }

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.brand-pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--grey-4);
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-1);
  transition: border-color 120ms, color 120ms, background 120ms;
}

.brand-pill:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-5); }

/* === Map === */
#mapa { background: #fff; padding: 0; }

.map-header {
  padding: 64px 1.75rem 32px;
  text-align: center;
}
.map-header h2 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); font-weight: 700; color: var(--grey-1); margin-bottom: 8px; }
.map-header p  { font-size: 1.0625rem; color: var(--grey-2); margin: 0; }

.map-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.btn-map-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: background 120ms;
}
.btn-map-primary:hover { background: var(--blue-dark); color: #fff; }

.btn-map-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--grey-1);
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--grey-4);
}

#mapa iframe { display: block; width: 100%; height: 460px; border: 0; }

/* === Footer === */
footer {
  background: #0A0B29;
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 32px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo-mark {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-brand-name { font-size: 17px; font-weight: 700; color: #fff; }
.footer-desc { font-size: 14px; line-height: 1.55; margin: 0; }

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; margin-top: 4px; }
.footer-contact a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-contact a:hover { color: #fff; }
.footer-contact span { color: rgba(255,255,255,0.7); }

.footer-hours { display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-hours .day { color: rgba(255,255,255,0.7); }
.footer-hours .time { color: #fff; font-weight: 500; margin-left: 8px; }
.footer-hours .closed { color: rgba(255,255,255,0.4); margin-left: 8px; }

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-dm {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-dm img {
  height: 18px;
  vertical-align: middle;
  margin-left: 4px;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}

/* === Autobooking === */
#rezerwacja { padding: 48px 1.75rem; max-width: var(--container); margin: 0 auto; background: #fff; border-top: 1px solid var(--grey-5); }

/* === Sticky mobile CTA === */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 10px 12px 24px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid rgba(220,224,230,0.6);
  transform: translateY(110%);
  transition: transform 280ms cubic-bezier(0.2,0,0,1);
  pointer-events: none;
}

.sticky-cta.visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.sticky-call {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border-radius: 10px;
  background: #fff; border: 1px solid var(--grey-4);
  color: var(--grey-1); font-size: 14px; font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.sticky-book {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border-radius: 10px;
  background: var(--blue); color: #fff;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(36,112,224,0.3);
}

/* === Responsive === */
@media (max-width: 1024px) {
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }

  #hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 56px; }
  .hero-name { font-size: 2.125rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .slider-slide { height: 260px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  #main-nav { padding: 0 1rem; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .hero-trust { gap: 16px; }
  .trust-divider { display: none; }
  .price-table td, .price-table th { padding: 10px 12px; }
}
