@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #f4f1ee;
  color: #030d19;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.3;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  opacity: 1;
}
body.no-scroll {
  overflow: hidden;
}
body.blog-page main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn--primary {
  background-color: #1645a0;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #103273;
  transform: translateY(-2px);
}

.highlight {
  color: #6db6a5;
}

.navbar {
  height: 5rem;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(244, 241, 238, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1001;
  border-bottom: 1px solid rgba(22, 69, 160, 0.05);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: #1645a0;
  margin-left: -1rem;
}
.navbar .logo a {
  text-decoration: none;
  display: block;
}
.navbar .logo img {
  height: auto;
  max-height: 4.5rem;
  width: auto;
  display: block;
}

@media (min-width: 1200px) {
  .navbar .logo img {
    max-height: 5.5rem;
  }
}
.nav-menu {
  position: fixed;
  top: 5rem;
  left: 0;
  width: 100%;
  background: #f4f1ee;
  padding: 5rem 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
}
.nav-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.nav-menu ul a {
  text-decoration: none;
  color: #030d19;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-menu ul a:hover {
  color: #1645a0;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}
.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: #030d19;
  transition: 0.3s ease;
}
.hamburger.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 999;
}
.menu-overlay.active {
  display: block;
}

.hero {
  min-height: calc(100vh - 5rem);
  margin-top: 5rem;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url("../img/herograph.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f4f1ee 45%, rgba(244, 241, 238, 0.6) 65%, rgba(244, 241, 238, 0.8) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero__content h1 {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: #1645a0;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero__content h1 .hero__line-break {
  display: block;
  margin-top: 0.5rem;
}
.hero__content h1 .highlight {
  font-family: "Inter", sans-serif;
  font-style: italic;
}
.hero__content p {
  font-size: 1.15rem;
  max-width: 35rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

@media (min-width: 1200px) {
  .hero__content h1 {
    font-size: 5.5rem;
  }
}
.about {
  min-height: auto; /* removed 100vh to avoid excessive vertical spacing on large screens */
  display: flex;
  align-items: center;
  background-color: #f4f1ee;
  padding: 6rem 0;
}
.about__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.about__image {
  order: 2;
  padding: 2rem;
}
.about__image .image-box {
  position: relative;
}
.about__image .image-box::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 160px;
  height: 160px;
  background-color: #6db6a5;
  border-radius: 0.5rem;
  opacity: 0.3;
  z-index: 0;
}
.about__image .image-box::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 160px;
  height: 160px;
  background-color: #6db6a5;
  border-radius: 0.5rem;
  opacity: 0.3;
  z-index: 0;
}
.about__image .image-box img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}
.about__image__features-wrap {
  margin-top: 4.5rem;
  padding-top: 0 0.25rem;
  position: relative;
  z-index: 1;
}
.about__image .about__features-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1645a0;
  margin-top: 2.75rem;
  margin-bottom: 0.75rem;
  opacity: 0.95;
}
.about__image .about__features {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about__image .about__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #030d19;
  opacity: 0.9;
}
.about__image .about__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #6db6a5;
  border-radius: 50%;
}
.about__content {
  order: 1;
}
.about__content .about__subtitle {
  display: block;
  color: #6db6a5;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.about__content h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #1645a0;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.about__content p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.contact {
  min-height: auto; /* removed 100vh to avoid excessive vertical spacing on large screens */
  display: flex;
  align-items: center;
  background-color: #c7dbd4;
  color: #030d19;
  padding: 6rem 0;
}
.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.contact__info {
  order: 1;
}
.contact__info .contact__subtitle {
  display: block;
  color: #1645a0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.contact__info h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #030d19;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.contact__info .contact__details {
  list-style: none;
}
.contact__info .contact__details li {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}
.contact__info .contact__details li strong {
  display: block;
  color: #030d19;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.contact__info .contact__details li a {
  color: #1645a0;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.contact__info .contact__details li a:hover {
  color: #103273;
  opacity: 0.95;
  text-decoration: underline;
}
.contact__info .contact__details li:nth-child(2) a {
  color: #030d19;
}
.contact__info .contact__details li:nth-child(2) a:hover {
  color: #030d19;
  opacity: 0.9;
  text-decoration: none;
}
.contact__info .contact__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.contact__info .contact__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #030d19;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.contact__info .contact__social-link:hover, .contact__info .contact__social-link:focus, .contact__info .contact__social-link:active {
  color: #030d19;
}
.contact__info .contact__social-link svg {
  width: 28px;
  height: 28px;
  display: block;
}
.contact__info .booksy__widget {
  margin-top: 1.25rem;
}
.contact__map {
  order: 2;
  padding: 1rem;
}
.contact__map .map-box {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 1/1;
}
.contact__map .map-box::before {
  content: "";
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 160px;
  height: 160px;
  background-color: #1645a0;
  border-radius: 0.5rem;
  opacity: 0.2;
  z-index: 0;
}
.contact__map .map-box::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  width: 160px;
  height: 160px;
  background-color: #1645a0;
  border-radius: 0.5rem;
  opacity: 0.2;
  z-index: 0;
}
.contact__map .map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  filter: grayscale(0.2) contrast(1.1);
}

.reviews {
  min-height: auto;
  background-color: #f4f1ee;
  padding: 0.5rem 0 6rem 0;
  display: flex;
  align-items: center;
}
.reviews .container {
  width: 100%;
  max-width: 1200px;
}

.blog {
  min-height: auto;
  background-color: #f4f1ee;
  padding: 6rem 0 8rem 0;
  margin-top: 5rem;
}
.blog__wrapper {
  width: 100%;
}
.blog__header {
  text-align: center;
  margin-bottom: 5rem;
}
.blog__title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: #1645a0;
  margin-bottom: 1rem;
}
.blog__subtitle {
  font-size: 1.2rem;
  color: #030d19;
  opacity: 0.8;
}
.blog__posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
}
.blog__loading, .blog__empty, .blog__error {
  text-align: center;
  padding: 4rem;
  font-size: 1.2rem;
  color: #030d19;
}
.blog__error h2 {
  color: #1645a0;
  margin-bottom: 1rem;
}

.blog-post {
  background-color: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.blog-post__image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #8bc9ba;
}
.blog-post__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.blog-post__content {
  padding: 4rem;
}
.blog-post__meta {
  margin-bottom: 1rem;
}
.blog-post__meta time {
  font-size: 0.9rem;
  color: #6db6a5;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-post__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #1645a0;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.blog-post__article {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #030d19;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.blog-post__article-preview {
  margin-bottom: 1.5rem;
}
.blog-post__article-full {
  margin-bottom: 1.5rem;
}
.blog-post__article-text {
  margin-top: 2rem;
  color: #030d19;
  font-size: 1rem;
  line-height: 1.6;
}
.blog-post__article-text p {
  margin-bottom: 1rem;
}
.blog-post__article-text ul,
.blog-post__article-text ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.blog-post__article-text ul {
  list-style-type: disc;
}
.blog-post__article-text ol {
  list-style-type: decimal;
}
.blog-post__article-text li {
  margin-bottom: 0.5rem;
}
.blog-post__article-text li p {
  margin-bottom: 0;
  display: inline-block;
}
.blog-post__article-text blockquote {
  border-left: 4px solid #6db6a5;
  padding: 1rem;
  margin: 1.5rem 0;
  background: rgba(109, 182, 165, 0.1);
  font-style: italic;
  border-radius: 0 0.5rem 0.5rem 0;
}
.blog-post__article-text .table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(22, 69, 160, 0.2);
}
.blog-post__article-text table {
  width: 100%;
  border-collapse: collapse;
}
.blog-post__article-text table th,
.blog-post__article-text table td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(22, 69, 160, 0.2);
  text-align: left;
}
.blog-post__article-text table th {
  background-color: rgba(22, 69, 160, 0.1);
  font-weight: 700;
  color: #1645a0;
}
.blog-post__article-text table tr:nth-child(even) {
  background-color: rgba(22, 69, 160, 0.02);
}
.blog-post__article-text h3,
.blog-post__article-text h4,
.blog-post__article-text h5 {
  color: #1645a0;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.blog-post__article-text a {
  color: #1645a0;
  text-decoration: underline;
}
.blog-post__article-text a:hover {
  color: #6db6a5;
}
.blog-post__article-text hr {
  border: 0;
  border-top: 2px solid rgba(22, 69, 160, 0.1);
  margin: 2rem 0;
}
.blog-post__media {
  width: 100%;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.blog-post__media--image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-post__media--video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.blog-post__media--video video,
.blog-post__media--video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.blog-post__media--video video {
  -o-object-fit: contain;
     object-fit: contain;
}
.blog-post__read-more, .blog-post__read-less {
  display: inline-block;
  margin-top: 1.5rem;
  cursor: pointer;
  padding: 0.75rem 1.5rem !important;
  font-size: 0.9rem !important;
  font-weight: 600;
  background-color: #1645a0;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.blog-post__read-more:hover, .blog-post__read-less:hover {
  background-color: #103273;
  transform: translateY(-2px);
}

.uslugi {
  min-height: auto;
  background-color: #f4f1ee;
  padding: 6rem 0 8rem 0;
  margin-top: 5rem;
}
.uslugi__wrapper {
  width: 100%;
  overflow-x: hidden;
}
.uslugi__services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.uslugi__loading, .uslugi__empty, .uslugi__error {
  text-align: center;
  padding: 4rem;
  font-size: 1.2rem;
  color: #030d19;
}
.uslugi__error h2 {
  color: #1645a0;
  margin-bottom: 1rem;
}
.uslugi__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: stretch;
}

.service-card {
  position: relative;
  background-color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  padding: 2rem 2rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  min-height: 280px;
  box-sizing: border-box;
  max-width: 100%;
}
.service-card__badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 3.75rem;
  height: 3.75rem;
  background-color: #daeee7;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.service-card__badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  text-align: center;
}
.service-card__price {
  font-size: 0.875rem;
  font-weight: 700;
  color: #6a9f8c;
  line-height: 1.2;
}
.service-card__time {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6a9f8c;
  line-height: 1.2;
}
.service-card__content {
  margin-top: 6.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 0;
}
.service-card__title {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #1645a0;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  flex-grow: 1;
  min-height: 3.5em;
  display: flex;
  align-items: flex-start;
}
.service-card__btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: flex-start;
  padding: 0.5rem 0;
  background-color: transparent;
  color: #89b3a4;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.3s ease;
  margin-top: auto;
}
.service-card__btn:hover {
  color: #548272;
}
.service-card__btn:hover .service-card__btn-arrow {
  transform: translateX(0.55rem);
}
.service-card__btn:active {
  transform: translateY(0);
}
.service-card__btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  line-height: 1;
  margin-left: 0.25rem;
  color: inherit;
}

@media (max-width: 559px) {
  .service-card {
    padding-bottom: 1.5rem;
  }
  .service-card__content {
    margin-top: 5rem;
  }
  .service-card__title {
    font-size: clamp(1.3rem, 4vw, 1.5rem);
    margin-bottom: 0.75rem;
  }
  .service-card__btn {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 560px) {
  .uslugi__grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 2rem;
  }
  .service-card {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
  }
  .service-card__title {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1024px) {
  .uslugi__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    align-items: stretch;
  }
  .service-card {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
  }
}
@media (min-width: 1400px) {
  .uslugi__grid {
    gap: 3rem;
  }
  .service-card__badge {
    width: 4.25rem;
    height: 4.25rem;
  }
  .service-card__price {
    font-size: 1rem;
  }
  .service-card__time {
    font-size: 0.875rem;
  }
  .service-card__title {
    font-size: calc(clamp(1.1rem, 3vw, 1.4rem) + 0.18rem);
  }
  .service-card__btn {
    font-size: 1.1rem;
  }
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 90%;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 2001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #030d19;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
  z-index: 10;
  line-height: 1;
}
.modal__close:hover {
  background-color: rgba(3, 13, 25, 0.1);
  color: #1645a0;
}
.modal__close:focus {
  outline: 2px solid #1645a0;
  outline-offset: 2px;
}
.modal__content {
  padding: 5rem 3.5rem;
}
.modal__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #1645a0;
  margin-bottom: 2rem;
  font-weight: 700;
  line-height: 1.3;
}
.modal__description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #030d19;
  opacity: 0.9;
}
.modal__description p {
  margin-bottom: 1rem;
}
.modal__description p:last-child {
  margin-bottom: 0;
}

.service-box {
  background-color: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1rem;
}
.service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.service-box__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 4rem;
  border-bottom: 1px solid rgba(22, 69, 160, 0.1);
}
.service-box__title {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  color: #1645a0;
  line-height: 1.3;
  margin: 0 0 0.5rem 0;
}
.service-box__toggle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6db6a5;
  cursor: pointer;
  text-decoration: underline;
  margin-bottom: 0.5rem;
}
.service-box__toggle:hover {
  color: #488f7e;
}
.service-box__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  margin-left: 2rem;
  min-width: 100px;
}
.service-box__cost, .service-box__time {
  font-size: 1.1rem;
  font-weight: 600;
}
.service-box__cost {
  color: #1645a0;
  font-size: 1.2rem;
}
.service-box__time {
  color: #6db6a5;
  font-size: 0.9rem;
}
.service-box__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #030d19;
  opacity: 0.9;
  transition: all 0.3s ease;
}
.service-box__description p {
  margin-bottom: 0.8rem;
}
.service-box__description p:last-child {
  margin-bottom: 0;
}
.service-box__description ul,
.service-box__description ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.service-box__description ul {
  list-style-type: disc;
}
.service-box__description ol {
  list-style-type: decimal;
}
.service-box__description li {
  margin-bottom: 0.3rem;
}
.service-box__description li p {
  display: inline;
  margin: 0;
}
.service-box__description strong,
.service-box__description b {
  font-weight: 700;
  color: #030d19;
}
.service-box__description a {
  color: #1645a0;
  text-decoration: underline;
}

.footer {
  background-color: #030d19;
  color: #f4f1ee;
  padding: 4rem 0;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer__logo {
  display: block;
  font-weight: 800;
  font-size: 1.5rem;
  color: #6db6a5;
  margin-bottom: 0.5rem;
}
.footer__copy {
  font-size: 0.9rem;
  opacity: 0.7;
}
.footer__socials {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.footer__link {
  color: #6db6a5;
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.footer__link:hover, .footer__link:focus, .footer__link:active {
  color: #6db6a5;
}
.footer__link:hover {
  transform: translateY(-2px);
}
.footer__link svg {
  width: 28px;
  height: 28px;
  display: block;
}

@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
  .nav-menu {
    position: static;
    padding: 0;
    width: auto;
    display: block;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu ul {
    flex-direction: row;
    gap: 3rem;
  }
  .about {
    padding: 4rem 0; /* keep moderate padding on large tablets (e.g. iPad Pro) */
  }
  .about__wrapper {
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start; /* prawa kolumna (tekst) od góry, nie wyśrodkowana względem zdjęcia */
  }
  .about__image {
    order: 1;
  }
  .about__content {
    order: 2;
  }
  .contact {
    padding: 4rem 0; /* keep moderate padding on large tablets (e.g. iPad Pro) */
  }
  .contact__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
  .contact__info {
    order: 1;
  }
  .contact__map {
    order: 2;
  }
}
@media (max-width: 991px) {
  .about {
    padding-bottom: 3rem;
  }
  .reviews {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .footer__wrapper {
    flex-direction: column;
    text-align: center;
  }
  .modal {
    max-width: 92%;
    max-height: 85vh;
  }
  .modal__content {
    padding: 2.5rem 2rem;
  }
  .modal__title {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    margin-bottom: 1rem;
  }
  .modal__description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .modal__description p {
    margin-bottom: 0.75rem;
  }
  .modal__close {
    top: 0.5rem;
    right: 0.5rem;
    width: 2rem;
    height: 2rem;
    font-size: 1.5rem;
  }
  .contact__map {
    padding-top: 0.05rem; /* slightly smaller than default */
  }
  .contact__map .map-box::before {
    top: -0.5rem;
  }
  .blog-post__content {
    padding: 2rem;
  }
  .blog-post__title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin-bottom: 1rem;
  }
  .blog-post__article {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .blog-post__article-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .blog-post__article-text p {
    margin-bottom: 0.875rem;
  }
  .blog-post__article-text ul,
  .blog-post__article-text ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
  }
  .blog-post__article-text li {
    margin-bottom: 0.4rem;
  }
  .blog-post__article-text blockquote {
    padding: 0.875rem;
    margin: 1.25rem 0;
  }
  .blog-post__article-text h3,
  .blog-post__article-text h4,
  .blog-post__article-text h5 {
    margin-top: 1.5rem;
    margin-bottom: 0.875rem;
    font-size: 1.1rem;
  }
  .blog-post__meta time {
    font-size: 0.85rem;
  }
  .service-box__header {
    padding: 1.5rem 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  .service-box__header-left {
    width: 100%;
  }
  .service-box__title {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }
  .service-box__meta {
    align-items: flex-start;
    margin-left: 0;
    margin-top: 1rem;
  }
  .service-box__cost {
    font-size: 1.1rem;
  }
  .service-box__time {
    font-size: 0.85rem;
  }
  .service-box__description {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .service-box__description p {
    margin-bottom: 0.7rem;
  }
  .service-box__toggle {
    font-size: 0.85rem;
  }
}/*# sourceMappingURL=style.css.map */