/* =========================================
   RESET BAZOWY (minimalny, zalecany)
========================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #404040;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    border-style: none;
}

a {
    text-decoration: none;
    background: transparent;
}
:where(figure) {
  margin: 0 !important;
}

.site {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Screen-reader only */
.screen-reader-text {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
}

.screen-reader-text:focus {
    clip: auto !important;
    clip-path: none;
    background: #f1f1f1;
    padding: 15px 23px;
    border-radius: 3px;
    box-shadow: 0 0 2px rgba(0,0,0,.6);
    z-index: 100000;
    width: auto;
    height: auto;
}

/* Alignments (WordPress core classes)
-------------------------------------- */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin: 0 auto; }


/* GLOBAL CONTAINER — do użycia w KAŻDEJ sekcji */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }	
	
}

/* =========================
   ANIMACJE – ON SCROLL
========================= */

/* Stan początkowy */
.pt-animate {
    opacity: 0;
    transform: translateY(20px);
    will-change: opacity, transform;
    transition:
        opacity 0.7s cubic-bezier(.22,1,.36,1),
        transform 0.7s cubic-bezier(.22,1,.36,1);
}


/* Aktywacja */
.pt-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Opóźnienia (stagger) */
.pt-delay-1 { transition-delay: .01s; }
.pt-delay-2 { transition-delay: .15s; }
.pt-delay-3 { transition-delay: .25s; }
.pt-delay-4 { transition-delay: .35s; }
.pt-delay-5 { transition-delay: .45s; }

/* Mobile – bez animacji */
@media (max-width: 992px) {
    .pt-animate {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


.quform-option-text {
  color: #fff !important;
}


/* ===========================
   PRE-FOOTER CTA
=========================== */

.pt-prefooter-cta {
  background: #1f2a36;
  color: #ffffff;
  padding: 64px 24px;
}

.pt-prefooter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
p.footer-title {
font-family: "Oddlini", serif !important;
  font-size: 24px !important;
  font-weight: bold !important;
  line-height: 1.4 !important;	
}
.pt-prefooter-text {
  font-family: "Garamond", serif;
  font-size: 22px;
  line-height: 1.5;
  max-width: 720px;
}

.pt-btn--light {
  background: #dad1c8;
  color: #1f2a36;
  padding: 14px 28px;
  font-size: 15px;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  transition: background .25s ease, transform .2s ease;
}

.pt-btn--light:hover {
  background: #e5ddd5;
  transform: translateY(-1px);
}
/* ===========================
   FOOTER – MAIN
=========================== */

.pt-footer {
  background: #121a22;
  color: #fff;
  font-size: 15px;
    line-height: 1.2;
    font-family: "Garamond", serif;
  font-size: 23px;
}

.pt-footer-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding: 80px 0;
}

.pt-footer-col p {
  margin: 0 0 12px;
  line-height: 1.2;
    font-family: "Garamond", serif;
  font-size: 23px;
}

.pt-footer-about {
  font-family: "Garamond", serif;
  font-size: 23px;
  color: #cfcfcf;
}
/* ===========================
   FOOTER MENUS
=========================== */

.pt-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pt-footer-nav li {
  margin-bottom: 10px;
}

.pt-footer-nav a {
  color: #fff;
  text-decoration: none;
  transition: color .2s ease;
    line-height: 1.2;
    font-family: "Garamond", serif;
  font-size: 23px;
}

.pt-footer-nav a:hover {
  color: #dad1c8;
}
/* ===========================
   FOOTER CONTACT
=========================== */

.pt-footer-contact a {
  color: #fff;
  text-decoration: none;
  margin-left: 5px;
}

.pt-footer-contact a:hover {
  text-decoration: underline;
}

.pt-footer-hours {
  margin-top: 12px;
  font-size: 14px;
  color: #fff;
}
/* ===========================
   FOOTER BOTTOM
=========================== */

.pt-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px;
  text-align: center;
  font-size: 18px;
  color: #9fa4a8;
}

.pt-footer-legal {
  margin-top: 6px;
  font-size: 16px;
  color: #7f858a;
}
/* ===========================
   RWD – TABLET
=========================== */

@media (max-width: 1024px) {

  .pt-footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
	padding: 30px 0;
  }

  .pt-prefooter-inner {
    flex-direction: column;
    text-align: center;
  }

  .pt-prefooter-text {
    font-size: 20px;
  }
}
/* ===========================
   RWD – MOBILE
=========================== */

@media (max-width: 640px) {

  .pt-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
	padding: 30px 0;
  }

  .pt-prefooter-cta {
    padding: 48px 20px;
  }

  .pt-prefooter-text {
    font-size: 18px;
  }

  .pt-btn--light {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .pt-footer-bottom {
    padding: 20px;
  }
}
