@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/syne-latin-ext-a74177f7.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/syne-latin-3c96ea32.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html {
  scrollbar-gutter: stable;
}
html, body {
  font-family: "Syne", sans-serif;
  color: #222;
  font-weight: 400;
  font-size: 1.05rem;
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  background-color: #FAFAFA;
  overflow-x: hidden;
}
.small, small {
  font-size: .875em;
}
.stronger {font-weight: 700;}
.strong, .bold, strong {font-weight: 800;}

ul, ol {
  margin: 0;
  padding-left: 1rem;
}


a {
  color: #222;
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
}

h1, .h1 { font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem); letter-spacing: -0.01em; }
h2, .h2 { font-size: clamp(1.45rem, 2vw + 1rem, 2rem); }
h3, .h3 { font-size: clamp(1.15rem, 1.5vw + 1rem, 1.65rem); }
h4, .h4 { font-size: clamp(1.05rem, 1vw + 1rem, 1.25rem); }
h5, .h5 { font-size: clamp(1rem, 0.5vw + 1rem, 1.1rem); }
h6, .h6 { font-size: 1rem; }

p {
  margin: 0;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s ease, padding 0.3s ease;
}
body:not(.home) header {
  /*padding: 0;*/
}
.header.scrolled {
  background: #ffffff;
  position: fixed;
  padding: 0;
}
.header-desktop {
  justify-content: space-between;
  gap: 1rem;
}
.header-desktop .logo-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.77);
  border-radius: 62.5rem;
  padding: .5rem 1rem;
  flex-shrink: 0;
}
.header-desktop .nav {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.77);
  border-radius: 62.5rem;
  padding: .5rem 1rem;
  gap: 3.1rem;
}
.header-desktop .nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3.1rem;
}
.contact-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.77);
  border-radius: 62.5rem;
  padding: .5rem 1rem;
  gap: 1.3rem;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 1.25rem;
  transition: all 0.2s ease-in-out;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.mobile-menu.active {
  display: flex !important;
  align-items: center;
  transition: all 0.2s ease-in-out;
}

.header-mobile {
  background: rgba(255, 255, 255, 0.77);
  border-radius: 62.5rem;
  padding: .5rem 1rem;
}
.header-mobile .logo-box {
  display: flex;
  align-items: center;
}
.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 1100;
  transform: translateY(-150%);
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: #222;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease-in-out;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid #717158;
  outline-offset: 2px;
}

.link-button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.link-button:focus-visible {
  outline: 2px solid #717158;
  outline-offset: 2px;
}

.header-mobile .hamburger {
  font-size: 1.7rem;
  border: none;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: #6d6d55;
}

.btn_cta {
  background: #717158;
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 30px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}
.btn_cta.white {
  color: #717158;
  background-color: #ffffff;
}

body:not(.home) main {
  padding-top: 100px;
}

section {padding: 30px 0;}

@media (min-width: 992px) {
  section {padding: 60px 0;}
}
section.hello {
  position:relative;
  background-image: url("/assets/home-mobile-b28c37b0.webp") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  color: #fff;
  padding: 150px 0 100px;
}
section.hello:before {
  content:"";
  position: absolute;left: 0; top: 0;height: 100%; width: 100%;
  background: linear-gradient(-45deg, #91917C, transparent);;
}
section.hello > .container {position:relative;}
@media (min-width: 992px) {
  section.hello {
    background-image: url("/assets/home-0f637cf3.webp") !important;
    padding: 300px 0 200px;
  }
}
section.cta {
  background-color: #d4d1cc;
}
section.cta .cta_text_content {
  text-align: center;
}
section.cta2 {
  background-color: #8c8c75;
  color: #fff;
}
@media (min-width: 992px) {
  section.cta {
    background-image: url("/assets/cta_bg-2e285f8d.png");
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
  }
  section.cta2 {
    background-image: url("/assets/cta_bg2-8723bad4.png");
  }
  section.cta .cta_text_content {
    flex: 0 0 auto;
    width: 60%;
    text-align: left;
  }
}


.service {
  margin-bottom: 1em;
}
.service .service-inner {
  background: #f0ede8;
  padding: 20px;
  border-radius: 20px;
  position: relative;
}
.service .service-inner .bg_img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  z-index: 1;
  border-radius: 20px;
  object-fit: cover;
}

.service .service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #717158;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}
.service .service-inner .service-content {
  position: relative;
  z-index: 3;
}
.service .service-inner:hover {}
.service .service-inner:hover:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #717158;
  transition: all 0.2s ease-in-out;
  opacity: .5;
  z-index: 2;
  border-radius: 20px;
}

.service .service-inner:hover .bg_img {opacity: 1;}
.service .service-inner:hover .service-content {color: #fff;}
.service .flex_icon_title {display: flex;align-items: center;gap: 1rem;}
.service .flex_icon_title .title {    width: calc(100% - 80px);}

/* Lista usług:
   mobile = flex column, obrazek wstawiony między header a opis (przez order);
   header i opis są w jednym wrapperze, na mobile spłaszczonym display:contents,
   a na desktopie tworzą jedną kolumnę obok obrazka (bez dziury między nimi). */
.service-grid {
  display: flex;
  flex-direction: column;
}
.service-grid__text {
  display: contents;
}
.service-grid__header { order: 1; }
.service-grid__media { order: 2; margin-bottom: 1rem; }
.service-grid__body { order: 3; }

@media (min-width: 992px) {
  .service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
    align-items: center;
  }
  .service-grid__text { display: block; grid-column: 1; grid-row: 1; }
  .service-grid__media { grid-column: 2; grid-row: 1; margin-bottom: 0; }
  .service-grid--reverse .service-grid__text { grid-column: 2; }
  .service-grid--reverse .service-grid__media { grid-column: 1; }
}

/* Strona usługi: spis treści jest ostatnim elementem kolumny, więc na mobile
   jego dolny margines dubluje się z paddingiem sekcji — zbędny odstęp.
   Dodatkowo zbijamy podwójny padding między sekcją wstępu a treścią. */
@media (max-width: 767px) {
  .service .row > div > .mb-3:last-child {
    margin-bottom: 0 !important;
  }
  section:has(> .container.service) + section {
    padding-top: 0;
  }
}
.service-rich-content h2 {margin-top: 20px; margin-bottom: 10px; scroll-margin-top: 75px;}
.service-rich-content :is(h3, h4, h5, h6) {margin-top: 10px; margin-bottom: 10px; scroll-margin-top: 75px;}


.swiper .swiper-slide {width: auto;}
.reviews-swiper .swiper-slide {height: auto;}
.reviews-swiper .review {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  height: 100%;
}
.reviews-swiper .review .author {font-weight: 600;}
.reviews-swiper .review .stars {color: #f5a623;}

article.blog_post .post_content {position: relative;}
article.blog_post .post_info {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  padding: 20px;
  border-radius: 20px;
  background: rgba(152, 152, 128, 0.8);
  color: #fff;
}
article.blog_post .post_info :where(h3, a) {
  color: #fff;
}
article.blog_post > .post_content > img {
  width: 100%;
  border-radius: 20px;
}

body.post_view section:first-of-type:has(.post_img) {padding-top: 0;}
body.post_view .post_img {text-align: center;}
body.post_view .post_note {display: flex; flex-wrap: wrap; gap: 1rem;}
body.post_view .post_content h2 {margin-top: 20px; margin-bottom: 10px; scroll-margin-top: 75px;}
body.post_view .post_content :is(h3, h4, h5, h6) {margin-top: 10px; margin-bottom: 10px; scroll-margin-top: 75px;}
body.post_view .post_content p {margin-bottom: 20px;}
body.post_view .post_img {text-align: center;}


footer .row {
  position: relative;
  padding: 40px 0;
}
footer .row:before {
  content: '';
  position: absolute;
  left: -40px;
  right: -40px;
  top: 0;
  height: 100%;
  background: #f0ede8;
  border-radius: 20px;
}
footer .row > * {
  position: relative;
}
footer .footer_col h2 {text-transform: uppercase; margin-bottom: .5rem;}

.footer-menu li {
  margin-bottom: .5em;
}
.contact_icons li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.office-exterior {
  margin-bottom: 2rem;
}
.office-exterior img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.rounded-img {
  border-radius: 20px;
}

.service-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  background: #f0ede8;
}
.service-placeholder span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #717158;
}
.service-placeholder img {
  width: 42%;
  height: auto;
}

.post-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 800 / 685;
  border-radius: 20px;
  background: #f0ede8;
  padding-bottom: 38%;
}
.post-placeholder img {
  width: auto;
  height: 68%;
}

.team_member img,
.team_member .monogram {
  width: 100%;
  aspect-ratio: 4 / 5;
}
.team_member img {
  object-fit: cover;
  border-radius: 20px;
}
.team_member .monogram {
  display: flex;
  align-items: center;
  justify-content: center;
}
.team_member .monogram span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f0ede8;
  color: #717158;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: 0.05em;
}

table {
  width: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  vertical-align: middle !important;
}
table :where(th, td) {
  padding: 10px;
}
table th {
  font-weight: 600;
}
table.pricing {
  max-width: 1000px;
}
table.pricing .heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
table.pricing .heading .item-name {
  order: 1;
  margin: 0;
}
table.pricing .heading .item-price {
  order: 3;
  white-space: nowrap;
}
table.pricing .heading::after {
  content: "";
  flex-grow: 1;
  order: 2;
  border-bottom: 2px dotted #222;
  position: relative;
  bottom: 0;
  margin: 0 5px;
}

table.download {
  max-width: 1000px;
}
table.download td.label > div {display: flex; align-items: center; gap: 10px;}
table.download td.label > div img {width: 30px;}
table.download td.btn {
  width: 100px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 20px;
}


.faq_item {
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
}
.faq_item .question_heading {
  font-size: inherit;
}
.faq_item .question {
  display: block;
  width: 100%;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  padding: 0 20px 0 0;
}
.faq_item .question:focus-visible {
  outline: 2px solid #717158;
  outline-offset: 4px;
  border-radius: 4px;
}
.faq_item .question:after {
  content: "";
  display: block;
  aspect-ratio: 1;
  height: 10px;
  position: absolute;
  top: 5px;
  right: 0;
  border: 2px solid #000;
  border-top-width: 0;
  border-left-width: 0;
  transform: rotate(45deg);
}
.faq_item .answer {
  margin-top: 10px;
}
.faq_item .question[aria-expanded="true"]:after {
  transform: rotate(-135deg);
}
.btn_cta_box {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 576px) {
  .btn_cta_box {justify-content: center;}
}

#cc-main {
  --cc-font-family: "Syne", sans-serif;
  --cc-btn-primary-bg: #717158;
  --cc-btn-primary-border-color: #717158;
  --cc-btn-primary-hover-bg: #5a5a46;
  --cc-btn-primary-hover-border-color: #5a5a46;
  --cc-modal-border-radius: 20px;
  --cc-btn-border-radius: 30px;
}
#cc-main [data-role="necessary"] {
  background: var(--cc-btn-secondary-bg);
  border-color: var(--cc-btn-secondary-border-color);
  color: var(--cc-btn-secondary-color);
}
#cc-main [data-role="necessary"]:hover {
  background: var(--cc-btn-secondary-hover-bg);
  border-color: var(--cc-btn-secondary-hover-border-color);
  color: var(--cc-btn-secondary-hover-color);
}

