
:root{ --bg:#ffffff; --bg-soft:#f6f7f7; --text:#1c1e21; --muted:#6b7280; --accent:#2F6F7E; --accent-contrast:#ffffff; --maxw:1100px; --radius:12px; --shadow:0 6px 20px rgba(0,0,0,0.08); }
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{ margin:0; background:var(--bg); color:var(--text); font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; line-height:1.6; font-size:16px; }
h1,h2,h3{ font-family:"Playfair Display", Georgia, "Times New Roman", serif; line-height:1.25; color:#0f172a; }
h1{font-size:clamp(32px,5vw,56px); margin:0 0 12px}
h2{font-size:clamp(24px,3.2vw,36px); margin:0 0 16px}
h3{font-size:clamp(18px,2vw,22px); margin:0 0 12px}
p{margin:0 0 12px}
.lead{font-size:1.125rem; color:#334155}
a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}
.container{ width:100%; max-width:var(--maxw); margin-inline:auto; padding:0 20px; }
.site-header{ position:sticky; top:0; z-index:10; background:rgba(255,255,255,0.85); backdrop-filter:saturate(180%) blur(12px); border-bottom:1px solid #e5e7eb; }
.nav{display:flex; align-items:center; justify-content:space-between; min-height:64px; gap:12px}
.brand a{display:flex; align-items:center; gap:8px; font-weight:600; color:#0f172a}
.logo-mark{font-size:20px}
.nav-list{display:flex; gap:18px; list-style:none; margin:0; padding:0}
.nav-list a{color:#0f172a; font-weight:500}
.lang-switch .lang-btn{ border:1px solid #e5e7eb; background:#fff; border-radius:999px; padding:6px 10px; color:#64748b }
.skip-link{ position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus{ left:8px; top:8px; width:auto; height:auto; padding:8px 12px; background:#111827; color:#fff; border-radius:8px; z-index:9999 }
.hero{ min-height:72vh; display:grid; place-items:center; background:#dde7ea; background-image: var(--hero-image); background-size:cover; background-position:center; color:#fff; text-align:center; position:relative; }
.hero::after{ content:""; position:absolute; inset:0; background:linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.25)); }
.hero-inner{position:relative; z-index:1; padding:60px 0}
.subtitle{color:#e5f1f4; font-size:1.125rem; margin-bottom:20px}
.hero h1{ color:#e5f1f4; }
.section{padding:64px 0}
.section-light{background:var(--bg-soft)}
.grid-3{ display:grid; gap:16px; grid-template-columns:repeat(3, 1fr); }
.grid-3 img{width:100%; height:100%; object-fit:cover; border-radius:var(--radius); box-shadow:var(--shadow)}
.owners{ display:grid; gap:28px; align-items:center; grid-template-columns:1.2fr 0.8fr; }
.owners-photo img{width:100%; border-radius:var(--radius); box-shadow:var(--shadow)}
.accordion details{ background:#fff; border:1px solid #e5e7eb; border-radius:10px; margin-bottom:10px; padding:12px 16px; }
.accordion summary{ cursor:pointer; list-style:none; font-weight:600; }
.accordion summary::-webkit-details-marker{display:none}
.details-content{color:#374151; padding-top:8px}
.contact{ display:grid; gap:24px; grid-template-columns:1fr 0.9fr; }
.card{ background:#fff; border:1px solid #e5e7eb; border-radius:12px; padding:16px; box-shadow:var(--shadow); }
.contact-list{list-style:none; padding:0; margin:8px 0 0}
.contact-list li{margin-bottom:6px}
.muted{color:var(--muted); font-size:0.875rem}
.contact-form .form-field{margin-bottom:14px}
.form-field label{display:block; font-weight:600; margin-bottom:6px}
.form-field input,.form-field textarea{ width:100%; padding:12px; border:1px solid #d1d5db; border-radius:10px; font:inherit; background:#fff; }
.form-field input:focus,.form-field textarea:focus{outline:2px solid #9cc5cf; border-color:#9cc5cf}
.form-field.checkbox{display:flex; align-items:flex-start; gap:10px}
.form-field.checkbox input{width:auto; margin-top:4px}
.error{color:#b91c1c; font-size:0.875rem; min-height:1em}
.form-success{color:#065f46; margin-top:8px}
.btn{ display:inline-block; padding:12px 18px; border-radius:999px; font-weight:600; text-decoration:none; transition:transform .06s ease; }
.btn-primary{background:var(--accent); color:var(--accent-contrast)}
.btn:hover{transform:translateY(-1px)}
.site-footer{border-top:1px solid #e5e7eb; background:#fff}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:18px 0}
.footer-links{display:flex; gap:16px; list-style:none; margin:0; padding:0}
.footer-links a[aria-disabled="true"]{color:var(--muted); pointer-events:none; text-decoration:none}
@media (max-width: 960px){ .grid-3{grid-template-columns:1fr 1fr} .owners{grid-template-columns:1fr;} .contact{grid-template-columns:1fr} }
@media (max-width: 640px){ .nav-list{display:none} .grid-3{grid-template-columns:1fr} .footer-inner{flex-direction:column; align-items:flex-start} }


/* Gallery Styles */
.gallery-container {
  max-width: 900px;
  margin: 32px auto;
}

.gallery-main {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.gallery-display {
  flex: 1;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f0f0f0;
  aspect-ratio: 16/10;
}

.gallery-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.gallery-display img:hover {
  transform: scale(1.02);
}

.gallery-nav {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  color: #1c1e21;
}

.gallery-nav:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: scale(1.1);
}

.gallery-nav:active {
  transform: scale(0.95);
}

.gallery-counter {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.gallery-thumbnails {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0;
  scroll-behavior: smooth;
}

.gallery-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

.gallery-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  background: none;
  padding: 0;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb:hover {
  border-color: var(--accent);
  transform: scale(1.05);
}

.gallery-thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(47, 111, 126, 0.2);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.2s ease;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-main {
    gap: 8px;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
  }

  .gallery-nav svg {
    width: 20px;
    height: 20px;
  }

  .gallery-thumb {
    width: 60px;
    height: 45px;
  }

  .lightbox-nav {
    width: 48px;
    height: 48px;
  }

  .lightbox-nav svg {
    width: 24px;
    height: 24px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}
.map-embed {
position: relative;
aspect-ratio: 16/9;
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow);
background: #e5e7eb;
}
.map-embed iframe {
width: 100%;
height: 100%;
border: 0;
display: block;
}

/* Mobile: do 768px szerokości */
@media (max-width: 768px) {
  .hero {
    position: relative;
    min-height: 100vh;        /* pełna wysokość, żeby tło wyglądało jak na desktopie */
    padding-bottom: 96px;     /* miejsce pod przycisk, aby nie nachodził na treść */
  }

  .hero__cta {
    position: fixed;
    left: 50%;
    bottom: 24px;             /* podnieś/opuść wedle potrzeby */
    transform: translateX(-50%);
    z-index: 20;
  }
}


//formularz kontaktowy
#contactForm {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#contactForm label {
  font-weight: 500;
  margin-bottom: 0.2em;
}

#contactForm input,
#contactForm textarea {
  padding: 0.6em;
  border: 1px solid #b0b0b0;
  border-radius: 6px;
  font-size: 1em;
}

#contactForm input:invalid,
#contactForm textarea:invalid {
  border-color: #e57373;
}

#contactForm button[type="submit"] {
  background: #397986;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.8em 1.2em;
  font-size: 1.1em;
  cursor: pointer;
  transition: background 0.2s;
}

#contactForm button[type="submit"]:hover {
  background: #2c5d6b;
}

#formStatus {
  min-height: 1.5em;
  font-size: 1em;
  margin-top: 0.5em;
}

.consent-label {
  font-size: 0.95em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

//16.10.2025 - poprawka formularza
:root{ --bg:#ffff; --bg-soft:#f6f7f7; --text:#1c1e21; --muted:#6b7280; --accent:#2F6F7E; --accent-contrast:#ffff; --maxw:1100px; --radius:12px; --shadow:0 6px 20px rgba(0,0,0,0.08); }
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{ margin:0; background:var(--bg); color:var(--text); font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; line-height:1.6; font-size:16px; }
h1,h2,h3{ font-family:"Playfair Display", Georgia, "Times New Roman", serif; line-height:1.25; color:#0f172a; }
h1{font-size:clamp(32px,5vw,56px); margin:0 0 12px}
h2{font-size:clamp(24px,3.2vw,36px); margin:0 0 16px}
h3{font-size:clamp(18px,2vw,22px); margin:0 0 12px}
p{margin:0 0 12px}
.lead{font-size:1.125rem; color:#334155}
a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}
.container{ width:100%; max-width:var(--maxw); margin-inline:auto; padding:0 20px; }
.site-header{ position:sticky; top:0; z-index:10; background:rgba(255,255,255,0.85); backdrop-filter:saturate(180%) blur(12px); border-bottom:1px solid #e5e7eb; }
.nav{display:flex; align-items:center; justify-content:space-between; min-height:64px; gap:12px}
.brand a{display:flex; align-items:center; gap:8px; font-weight:600; color:#0f172a}
.logo-mark{font-size:20px}
.nav-list{display:flex; gap:18px; list-style:none; margin:0; padding:0}
.nav-list a{color:#0f172a; font-weight:500}
.lang-switch .lang-btn{ border:1px solid #e5e7eb; background:#fff; border-radius:999px; padding:6px 10px; color:#64748b }
.skip-link{ position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus{ left:8px; top:8px; width:auto; height:auto; padding:8px 12px; background:#111827; color:#fff; border-radius:8px; z-index:9999 }
.hero{ min-height:72vh; display:grid; place-items:center; background:#dde7ea; background-image: var(--hero-image); background-size:cover; background-position:center; color:#fff; text-align:center; position:relative; }
.hero::after{ content:""; position:absolute; inset:0; background:linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.25)); }
.hero-inner{position:relative; z-index:1; padding:60px 0}
.subtitle{color:#e5f1f4; font-size:1.125rem; margin-bottom:20px}
.hero h1{ color:#e5f1f4; }
.section{padding:64px 0}
.section-light{background:var(--bg-soft)}
.grid-3{ display:grid; gap:16px; grid-template-columns:repeat(3, 1fr); }
.grid-3 img{width:100%; height:100%; object-fit:cover; border-radius:var(--radius); box-shadow:var(--shadow)}
.owners{ display:grid; gap:28px; align-items:center; grid-template-columns:1.2fr 0.8fr; }
.owners-photo img{width:100%; border-radius:var(--radius); box-shadow:var(--shadow)}
.accordion details{ background:#fff; border:1px solid #e5e7eb; border-radius:10px; margin-bottom:10px; padding:12px 16px; }
.accordion summary{ cursor:pointer; list-style:none; font-weight:600; }
.accordion summary::-webkit-details-marker{display:none}
.details-content{color:#374151; padding-top:8px}
.contact{ display:grid; gap:24px; grid-template-columns:1fr 0.9fr; }
.card{ background:#fff; border:1px solid #e5e7eb; border-radius:12px; padding:16px; box-shadow:var(--shadow); }
.contact-list{list-style:none; padding:0; margin:8px 0 0}
.contact-list li{margin-bottom:6px}
.muted{color:var(--muted); font-size:0.875rem}
.contact-form .form-field{margin-bottom:14px}
.form-field label{display:block; font-weight:600; margin-bottom:6px}
.form-field input,.form-field textarea{ width:100%; padding:12px; border:1px solid #d1d5db; border-radius:10px; font:inherit; background:#fff; }
.form-field input:focus,.form-field textarea:focus{outline:2px solid #9cc5cf; border-color:#9cc5cf}
.form-field.checkbox{display:flex; align-items:flex-start; gap:10px}
.form-field.checkbox input{width:auto; margin-top:4px}
.error{color:#b91c1c; font-size:0.875rem; min-height:1em}
.form-success{color:#065f46; margin-top:8px}
.btn{ display:inline-block; padding:12px 18px; border-radius:999px; font-weight:600; text-decoration:none; transition:transform .06s ease; }
.btn-primary{background:var(--accent); color:var(--accent-contrast)}
.btn:hover{transform:translateY(-1px)}
.site-footer{border-top:1px solid #e5e7eb; background:#fff}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:18px 0}
.footer-links{display:flex; gap:16px; list-style:none; margin:0; padding:0}
.footer-links a[aria-disabled="true"]{color:var(--muted); pointer-events:none; text-decoration:none}
@media (max-width: 960px){ .grid-3{grid-template-columns:1fr 1fr} .owners{grid-template-columns:1fr;} .contact{grid-template-columns:1fr} }
@media (max-width: 640px){ .nav-list{display:none} .grid-3{grid-template-columns:1fr} .footer-inner{flex-direction:column; align-items:flex-start} }


/* Gallery Styles */
.gallery-container {
  max-width: 900px;
  margin: 32px auto;
}

.gallery-main {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.gallery-display {
  flex: 1;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f0f0f0;
  aspect-ratio: 16/10;
}

.gallery-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.gallery-display img:hover {
  transform: scale(1.02);
}

.gallery-nav {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  color: #1c1e21;
}

.gallery-nav:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: scale(1.1);
}

.gallery-nav:active {
  transform: scale(0.95);
}

.gallery-counter {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.gallery-thumbnails {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0;
  scroll-behavior: smooth;
}

.gallery-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

.gallery-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  background: none;
  padding: 0;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb:hover {
  border-color: var(--accent);
  transform: scale(1.05);
}

.gallery-thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(47, 111, 126, 0.2);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
#contactForm {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  font-family: 'Inter', Arial, sans-serif;
}

#contactForm label {
  font-weight: 600;
  margin-bottom: 0.4em;
  color: #1a2233;
}

#contactForm input,
#contactForm textarea {
  padding: 12px 14px;
  border: 1.5px solid #cfd8dc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
  outline: none;
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: #4b8fa7;
}

#contactForm textarea {
  resize: vertical;
  min-height: 100px;
}

.consent-label {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 1.2rem;
}

#contactForm input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
}

#contactForm button[type="submit"] {
  width: 100%;
  padding: 14px 0;
  background: #4b8fa7;
  color: #fff;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

#contactForm button[type="submit"]:hover {
  background: #35677a;
}

#formStatus {
  min-height: 1.5em;
  font-size: 1rem;
  margin-top: 0.5em;
  color: #065f46;
}

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.2s ease;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-main {
    gap: 8px;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
  }

  .gallery-nav svg {
    width: 20px;
    height: 20px;
  }

  .gallery-thumb {
    width: 60px;
    height: 45px;
  }

  .lightbox-nav {
    width: 48px;
    height: 48px;
  }

  .lightbox-nav svg {
    width: 24px;
    height: 24px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}
.map-embed {
position: relative;
aspect-ratio: 16/9;
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow);
background: #e5e7eb;
}
.map-embed iframe {
width: 100%;
height: 100%;
border: 0;
display: block;
}

/* Mobile: do 768px szerokości */
@media (max-width: 768px) {
  .hero {
    position: relative;
    min-height: 100vh;    /* pełna wysokość, żeby tło wyglądało jak na desktopie */
    padding-bottom: 96px;    /* miejsce pod przycisk, aby nie nachodził na treść */
  }

  .hero__cta {
    position: fixed;
    left: 50%;
    bottom: 24px;    /* podnieś/opuść wedle potrzeby */
    transform: translateX(-50%);
    z-index: 20;
  }
}


//formularz kontaktowy
#contactForm {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#contactForm label {
  font-weight: 500;
  margin-bottom: 0.2em;
}

#contactForm input,
#contactForm textarea {
  padding: 0.6em;
  border: 1px solid #b0b0b0;
  border-radius: 6px;
  font-size: 1em;
}

#contactForm input:invalid,
#contactForm textarea:invalid {
  border-color: #e57373;
}

#contactForm button[type="submit"] {
  background: #397986;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.8em 1.2em;
  font-size: 1.1em;
  cursor: pointer;
  transition: background 0.2s;
}

#contactForm button[type="submit"]:hover {
  background: #2c5d6b;
}

#formStatus {
  min-height: 1.5em;
  font-size: 1em;
  margin-top: 0.5em;
}

.consent-label {
  font-size: 0.95em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

//zmiana 2, 16.10.2025
#contactForm {
  max-width: 420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem 1.5rem;
  align-items: center;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  font-family: 'Inter', Arial, sans-serif;
}

#contactForm label {
  font-weight: 600;
  color: #1a2233;
  justify-self: end;
}

#contactForm input,
#contactForm textarea {
  padding: 12px 14px;
  border: 1.5px solid #cfd8dc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: #4b8fa7;
}

#contactForm textarea {
  resize: vertical;
  min-height: 100px;
  grid-column: 2 / 3;
}

.consent-label {
  grid-column: 1 / 3;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 1.2rem;
}

#contactForm input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
}

#contactForm button[type="submit"] {
  grid-column: 1 / 3;
  width: 100%;
  padding: 14px 0;
  background: #4b8fa7;
  color: #fff;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

#contactForm button[type="submit"]:hover {
  background: #35677a;
}

#formStatus {
  grid-column: 1 / 3;
  min-height: 1.5em;
  font-size: 1rem;
  margin-top: 0.5em;
  color: #065f46;
}

//wyjustowanie tekstu
p, .lead, .owners-text, .details-content {
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 1em;
  color: #2c3e50;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

//cennik

/* Cennik */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.pricing-card h3 {
  color: var(--accent);
  margin-bottom: 16px;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 16px 0;
  font-family: "Playfair Display", serif;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 24px;
  font-style: italic;
}