/*!
Theme Name: Marina Pro
Author: Lion Studio web design
Text Domain: lionstudio.pl
Author URI: https://lionstudio.pl
Description: Theme for LionStudio 2026 - strona Marina Pro
Version: 0.0.1
*/
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: calc(14px + 2 * (100vw - 320px) / 1280);
  scroll-behavior: smooth;
}

body {
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  color: #050000;
  line-height: 1.5;
  overflow-x: hidden;
}

h1 {
  font-size: calc(32px + 20 * (100vw - 320px) / 1280);
  line-height: 1.1;
}

h2 {
  font-size: calc(24px + 24 * (100vw - 320px) / 1280);
  line-height: 1.2;
}

h3 {
  font-size: calc(20px + 16 * (100vw - 320px) / 1280);
  line-height: 1.3;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  padding: 0 40px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 799px) {
  .container {
    padding: 0 20px;
  }
}
.container--wide {
  max-width: 1800px;
}
.container--hero {
  max-width: 1800px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  transition: 0.3s ease;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 799px) {
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}
.btn--primary {
  background-color: #C1DA92;
  color: #2D3539;
  border: 2px solid #C1DA92;
}
.btn--primary:hover {
  background-color: transparent;
  color: #C1DA92;
}
.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
}
.btn--outline:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

body.layout-home-hero {
  background-color: #000;
}
body.layout-home-hero .header {
  background-color: transparent;
}
@media (max-width: 799px) {
  body.layout-home-hero .header {
    background-color: transparent;
  }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 900px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #000;
  margin-top: -196px;
  overflow: hidden;
}
@media (max-width: 799px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 0;
    height: auto;
    margin-top: 0;
    background-color: #041d23 !important;
  }
}
.hero__video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 799px) {
  .hero__video-container {
    position: relative;
    order: 2;
    flex: 0 0 auto;
    height: 34vh;
    min-height: 200px;
    max-height: 320px;
    width: 100%;
  }
}
.hero__video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}
@media (max-width: 799px) {
  .hero__video-container::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 100%);
  }
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
@media (max-width: 799px) {
  .hero__video {
    transform: none;
  }
}
.hero .container--hero {
  position: relative;
  z-index: 10;
  padding-top: 50px;
}
@media (max-width: 799px) {
  .hero .container--hero {
    order: 1;
    width: 100%;
    max-width: none;
    padding-top: 32px;
    padding-bottom: 36px;
    background-color: #102a30;
  }
}
.hero__content {
  max-width: 550px;
  color: #ffffff;
  animation: fadeInUp 1s ease-out forwards;
}
@media (max-width: 799px) {
  .hero__content {
    max-width: none;
  }
}
.hero__title {
  font-size: calc(32px + 20 * (100vw - 320px) / 1280);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 25px;
  letter-spacing: -1.5px;
  color: #9FD1D9;
}
@media (max-width: 799px) {
  .hero__title {
    font-size: clamp(28px, 8vw, 40px);
    color: #8fb9d4;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
}
.hero__text {
  font-size: 18px;
  font-weight: 400;
  max-width: 550px;
  margin-bottom: 40px;
  line-height: 1.4;
  opacity: 0.9;
}
@media (max-width: 799px) {
  .hero__text {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 28px;
    max-width: none;
    color: #ffffff;
    opacity: 1;
  }
}
.hero__actions {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 799px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
}

.floating-whatsapp {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-color: #C1DA92;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s ease;
}
@media (max-width: 799px) {
  .floating-whatsapp {
    width: 60px;
    height: 60px;
  }
}
.floating-whatsapp:hover {
  filter: brightness(1.1);
}
.floating-whatsapp img {
  width: 40px;
  height: 40px;
  filter: brightness(0.2);
}
@media (max-width: 799px) {
  .floating-whatsapp img {
    width: 30px;
    height: 30px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.services {
  position: relative;
  background-color: #fff;
  padding-bottom: 80px;
}
.services::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 480px;
  background-color: #C1DA92;
  z-index: 0;
}
@media (max-width: 992px-1px) {
  .services::before {
    display: none;
  }
}
@media (max-width: 799px) {
  .services::before {
    height: 368px;
  }
}
@media (max-width: 992px-1px) {
  .services {
    padding-top: 60px;
  }
}
.services__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .services__container {
    flex-direction: row;
  }
}
.services__intro {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px-1px) {
  .services__intro {
    background-color: #C1DA92;
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .services__intro {
    flex: 0 0 32%;
  }
}
.services__title {
  background-color: transparent;
  height: 480px;
  display: flex;
  align-items: center;
  padding-left: max(40px, (100vw - 1800px) / 2 + 40px);
  padding-right: 40px;
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #000;
}
@media (max-width: 992px-1px) {
  .services__title {
    height: auto;
    padding-top: 40px;
    padding-bottom: 30px;
    padding-left: max(20px, env(safe-area-inset-left, 20px));
    padding-right: max(20px, env(safe-area-inset-right, 20px));
    font-size: clamp(32px, 8vw, 42px);
    align-items: flex-start;
  }
}
@media (max-width: 799px) {
  .services__title {
    height: 250px;
  }
}
.services__nav {
  background-color: #152A2D;
  display: none;
}
@media (max-width: 992px-1px) {
  .services__nav {
    display: flex;
    align-self: flex-start;
    margin-left: max(20px, env(safe-area-inset-left, 20px));
    margin-bottom: -27.5px;
    position: relative;
    z-index: 10;
  }
}
@media (min-width: 992px) {
  .services__nav {
    display: flex;
    align-self: flex-end;
  }
}
@media (max-width: 799px) {
  .services__nav {
    display: flex;
    width: 113px;
    margin-left: 20px;
    z-index: 10;
  }
}
.services__nav-btn {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s ease;
}
@media (max-width: 992px-1px) {
  .services__nav-btn {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 799px) {
  .services__nav-btn {
    width: 55px;
    height: 55px;
  }
}
.services__nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.services__nav-btn--prev {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.services__nav-btn .material-symbols-outlined {
  font-size: 28px;
}
@media (max-width: 992px-1px) {
  .services__nav-btn .material-symbols-outlined {
    font-size: 24px;
  }
}
.services__slider {
  flex: 1;
  min-width: 0;
  margin-top: 65px;
}
@media (max-width: 992px-1px) {
  .services__slider {
    margin-top: 0;
    padding: 0;
  }
}
@media (max-width: 799px) {
  .services__slider {
    width: 350px;
    margin-top: -55px;
  }
}
.services__slider .swiper-slide {
  height: auto;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.services__slider.swiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: transparent;
}
.service-card--linked {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.service-card--linked:hover .service-card__link {
  color: #929b61;
}
.service-card__image-box {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px-1px) {
  .service-card__image-box {
    height: 350px;
    padding: 0 max(20px, env(safe-area-inset-right, 20px)) 0 max(20px, env(safe-area-inset-left, 20px));
  }
}
.service-card__image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 799px) {
  .service-card__image-box {
    height: 368px;
  }
}
.service-card__content {
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
@media (max-width: 992px-1px) {
  .service-card__content {
    padding: 30px max(20px, env(safe-area-inset-right, 20px)) 30px max(20px, env(safe-area-inset-left, 20px));
  }
}
.service-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #3b6b80;
  margin-bottom: 20px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.service-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: #050000;
  margin-bottom: 30px;
  font-weight: 400;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}
.service-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #152A2D;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0px;
  align-self: flex-start;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
  text-transform: none;
  border-bottom: 1px solid currentColor;
}
.service-card__link .material-symbols-outlined {
  font-size: 20px;
  font-weight: 300;
}

.why-us {
  background-color: #fff;
  padding: 120px 0;
}
.why-us__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 992px) {
  .why-us__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .why-us__container {
    gap: 80px;
  }
}
.why-us__content {
  display: flex;
  flex-direction: column;
}
.why-us__title {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}
.why-us__subtitle {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.why-us__intro {
  margin-bottom: 60px;
  max-width: 550px;
}
.why-us__intro strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
}
.why-us__intro p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  font-weight: 300;
}
.why-us__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 800px) {
  .why-us__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 40px;
  }
}
.why-us__image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.why-us__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-us__mask {
  position: absolute;
  z-index: 2;
}
.why-us__mask--tl {
  top: -1px;
  left: -1px;
  width: 40%;
  max-width: 300px;
}
.why-us__mask--bl {
  bottom: -1px;
  left: -1px;
  width: 30%;
  max-width: 250px;
}
.why-us__mask--br {
  bottom: -1px;
  right: -1px;
  width: 25%;
  max-width: 200px;
}

.feature-item {
  display: flex;
  flex-direction: column;
}
.feature-item__title {
  font-size: 18px;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
}
.feature-item__text {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  font-weight: 300;
}
.feature-item--action {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  min-height: 0;
}
@media (min-width: 800px) {
  .feature-item--action {
    justify-content: flex-end;
  }
}
.feature-item--action .btn {
  white-space: nowrap;
}

.comments {
  background-color: #f0f0f0;
  padding: 100px 0 80px;
}
.comments__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.comments__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #000;
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: -1px;
}
.comments__slider-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
  padding: 0 40px;
}
@media (max-width: 799px) {
  .comments__slider-wrapper {
    padding: 0;
  }
}
.comments__slider {
  width: 100%;
  overflow: hidden;
  padding: 10px;
  margin: -10px;
}
.comments__slider.swiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.comments__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #fff;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  cursor: pointer;
  transition: 0.3s ease;
}
.comments__nav:hover {
  color: #000;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.comments__nav--prev {
  left: 0;
}
@media (max-width: 799px) {
  .comments__nav--prev {
    left: 10px;
  }
}
.comments__nav--next {
  right: 0;
}
@media (max-width: 799px) {
  .comments__nav--next {
    right: 10px;
  }
}
.comments__nav.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.comments__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.comments__footer p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 400;
}
.comments__footer .btn--outline-dark {
  border: 1px solid #000;
  color: #000;
  background-color: transparent;
  font-weight: 700;
  padding: 14px 40px;
}
.comments__footer .btn--outline-dark:hover {
  background-color: #000;
  color: #fff;
}

.comment-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  height: 100%;
}
.comment-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.comment-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.comment-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.comment-card__info {
  display: flex;
  flex-direction: column;
}
.comment-card__name {
  font-weight: 700;
  font-size: 15px;
  color: #000;
}
.comment-card__time {
  font-size: 13px;
  color: #888;
  font-weight: 400;
  margin-top: 2px;
}
.comment-card__google-logo {
  width: 24px;
  height: 24px;
}
.comment-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}
.comment-card__rating .star {
  color: #fbbc05;
  font-size: 18px;
  font-variation-settings: "FILL" 1;
}
.comment-card__rating .verified {
  color: #1a73e8;
  font-size: 18px;
  font-variation-settings: "FILL" 1;
}
.comment-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.comment-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.comment-card__read-more {
  margin-top: auto;
  font-size: 13px;
  color: #888;
  font-weight: 500;
}
.comment-card__read-more:hover {
  color: #000;
}

.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  color: #ffffff;
  font-family: "Figtree", sans-serif;
}
@media (max-width: 799px) {
  .header {
    position: sticky;
    top: 0;
    z-index: 500;
  }
}
.header__mobile-top {
  display: none;
}
@media (max-width: 799px) {
  .header__mobile-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 48px;
    padding: 10px 16px;
    padding-left: max(16px, env(safe-area-inset-left, 16px));
    padding-right: max(16px, env(safe-area-inset-right, 16px));
    background-color: #c2cc8f;
    color: #050000;
  }
}
.header__mobile-phone {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
}
.header__mobile-phone--placeholder {
  visibility: hidden;
  pointer-events: none;
  min-width: 1px;
}
.header__mobile-phone .material-symbols-outlined {
  font-size: 24px;
}
.header__sound-toggle--mobile {
  grid-column: 3;
  justify-self: end;
  color: #000;
  opacity: 1;
}
.header__sound-toggle--mobile .material-symbols-outlined {
  color: #000;
  font-size: 26px;
}
.header__top {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 799px) {
  .header__top {
    display: none;
  }
}
.header__top-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}
.header__contact {
  display: flex;
  align-items: center;
  gap: 35px;
}
.header__contact-item {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.header__contact-item:hover {
  opacity: 1;
}
.header__utility {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.header__sound-toggle {
  font-size: 18px;
  color: #ffffff;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 5px;
}
.header__sound-toggle:hover {
  opacity: 1;
  transform: scale(1.1);
}
.header__main {
  padding: 35px 0;
}
@media (max-width: 799px) {
  .header__main {
    padding: 16px 0;
    background-color: #102a30;
  }
}
.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
}
.header__logo {
  position: relative;
  z-index: 1;
}
.header__logo-img {
  height: 60px;
  width: auto;
}
@media (max-width: 799px) {
  .header__logo-img {
    height: 42px;
  }
}
.header .material-symbols-outlined {
  font-size: 20px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
.header__burger {
  display: none;
}
@media (max-width: 799px) {
  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 8px;
    position: relative;
    z-index: 530;
    color: #ffffff;
  }
}
.header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__menu-backdrop {
  display: none;
}
@media (max-width: 799px) {
  .header__menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 500;
  }
}
@media (min-width: 800px) {
  .header__menu-shell {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
    min-width: 0;
  }
}
@media (max-width: 799px) {
  .header__menu-shell {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100%, 400px);
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    padding-top: max(28px, env(safe-area-inset-top, 0px) + 16px);
    padding-right: max(24px, env(safe-area-inset-right, 24px));
    padding-bottom: 40px;
    padding-left: max(24px, env(safe-area-inset-left, 24px));
    background-color: #102a30;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 520;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 35px;
}
@media (max-width: 799px) {
  .header__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
}
.header__menu-item {
  position: relative;
}
@media (max-width: 799px) {
  .header__menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .header__menu-item:last-child {
    border-bottom: none;
  }
}
@media (min-width: 800px) {
  .header__menu-item--dropdown:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header__menu-link {
  font-size: 15px;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 799px) {
  .header__menu-link {
    display: flex;
    width: 100%;
    padding: 16px 0;
    font-size: 17px;
    opacity: 1;
  }
}
.header__menu-link:hover, .header__menu-link--active {
  opacity: 1;
}
.header__menu-link .dropdown-dot {
  font-size: 10px;
  opacity: 0.8;
}
.header__menu-link--active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: #C1DA92;
  border-radius: 2px;
}
@media (max-width: 799px) {
  .header__menu-link--active::after {
    display: none;
  }
}
.header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #C1DA92;
  border-radius: 8px;
  padding: 24px 20px;
  width: 300px;
  margin-top: 15px;
  list-style: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}
@media (max-width: 799px) {
  .header__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    margin-top: 0;
    margin-bottom: 8px;
    padding: 0 0 12px 12px;
    box-shadow: none;
    background-color: transparent;
    border-radius: 0;
  }
}
.header__dropdown::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}
@media (max-width: 799px) {
  .header__dropdown::before {
    display: none;
  }
}
.header__dropdown li {
  margin-bottom: 18px;
}
.header__dropdown li:last-child {
  margin-bottom: 0;
}
@media (max-width: 799px) {
  .header__dropdown li {
    margin-bottom: 12px;
  }
}
.header__dropdown-link {
  display: flex;
  align-items: flex-start;
  font-size: 13px;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
}
@media (max-width: 799px) {
  .header__dropdown-link {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 500;
  }
}
.header__dropdown-link::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #000;
  margin-top: 6px;
  margin-right: 12px;
  flex-shrink: 0;
}
@media (max-width: 799px) {
  .header__dropdown-link::before {
    background-color: #C1DA92;
  }
}
.header__dropdown-link:hover {
  color: #555;
}
@media (max-width: 799px) {
  .header__dropdown-link:hover {
    color: #fff;
  }
}

@media (max-width: 799px) {
  body.is-nav-open {
    overflow: hidden;
  }
  body.is-nav-open .header__logo {
    z-index: 0;
  }
  body.is-nav-open .header__burger {
    position: fixed;
    top: max(12px, env(safe-area-inset-top, 12px));
    right: max(16px, env(safe-area-inset-right, 16px));
    left: auto;
    margin: 0;
    z-index: 540;
    width: 48px;
    height: 48px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.15);
  }
  body.is-nav-open .header__menu-backdrop {
    opacity: 1;
    visibility: visible;
  }
  body.is-nav-open .header__menu-shell {
    transform: translateX(0);
  }
  body.is-nav-open .header__burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  body.is-nav-open .header__burger-line:nth-child(2) {
    opacity: 0;
  }
  body.is-nav-open .header__burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

body.single-post .header,
body.layout-nav-solid-bg .header {
  background-color: #193A43;
}

.footer {
  display: grid;
  grid-template-columns: 1fr;
  background-color: #fff;
}
@media (min-width: 992px) {
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.footer__col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 20px;
  min-height: 500px;
}
@media (max-width: 799px) {
  .footer__col {
    min-height: 400px;
  }
}
@media (min-width: 992px) {
  .footer__col {
    padding: 100px 40px;
    min-height: 600px;
  }
}
.footer__col--left {
  background-color: #C1DA92;
}
@media (min-width: 992px) {
  .footer__col--left {
    padding-left: max(40px, (100vw - 1800px) / 2 + 40px);
  }
}
.footer__col--right {
  background-color: #fff;
}
@media (min-width: 992px) {
  .footer__col--right {
    padding-right: max(40px, (100vw - 1800px) / 2 + 40px);
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
.footer__title {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  color: #000;
  margin-bottom: 35px;
  letter-spacing: -1px;
}
.footer__text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  font-weight: 400;
  max-width: 500px;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
}
@media (min-width: 800px) {
  .footer__bottom {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.footer__bottom--right {
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  gap: 15px;
  margin-right: 66px;
}
@media (max-width: 799px) {
  .footer__bottom--right {
    justify-content: flex-start;
  }
}
.footer__logo-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__logo-block .footer__logo {
  width: 140px;
  height: auto;
  filter: brightness(0);
}
.footer__logo-block .footer__copyright {
  font-size: 12px;
  color: #555;
  font-weight: 300;
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  color: #555;
  font-weight: 300;
}
.footer__links a {
  color: inherit;
}
.footer__links a:hover {
  color: #000;
}
.footer__links .separator {
  opacity: 0.5;
}
.footer__label {
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 50px;
  color: #000;
}
.footer__contact-big {
  font-weight: 300;
  font-size: clamp(36px, 4vw, 58px);
  color: #000;
  line-height: 1.3;
  letter-spacing: -1px;
  text-decoration: none;
}
.footer__contact-big:hover {
  color: #929b61;
}
.footer__availability {
  margin-top: 50px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.footer__availability strong {
  color: #000;
  font-size: 15px;
  font-weight: 800;
  display: block;
}
.footer__design-by {
  font-size: 11px;
  color: #888;
}
.footer__lion-logo {
  height: 20px;
  width: auto;
}
.footer__design-by-link {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #888;
}

.hero-oferta {
  position: relative;
  background-color: #1e3942;
  color: #ffffff;
  display: flex;
  align-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}
.hero-oferta__container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 992px) {
  .hero-oferta__container {
    flex-direction: row;
    align-items: center;
  }
}
.hero-oferta__content {
  width: 100%;
  z-index: 2;
}
@media (min-width: 992px) {
  .hero-oferta__content {
    width: 50%;
    padding-right: 40px;
  }
}
.hero-oferta__title {
  color: #9FD1D9;
  font-size: calc(32px + 20 * (100vw - 320px) / 1280);
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}
.hero-oferta__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 500px;
}
.hero-oferta__visual {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (min-width: 992px) {
  .hero-oferta__visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50vw;
    height: 100%;
    z-index: 1;
    display: block;
  }
}
.hero-oferta__image-wrapper {
  position: relative;
  width: 100%;
  line-height: 0;
}
@media (min-width: 992px) {
  .hero-oferta__image-wrapper {
    height: 100%;
  }
}
@media (max-width: 799px) {
  .hero-oferta__image-wrapper {
    margin-bottom: -14px;
  }
}
.hero-oferta__main-img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 992px) {
  .hero-oferta__main-img {
    height: 100%;
    object-fit: cover;
    object-position: bottom right;
  }
}
.hero-oferta__mask {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.hero-oferta__mask--1 {
  top: 0;
  left: 0;
  width: 50%;
  height: auto;
  max-width: 424px;
}
@media (max-width: 799px) {
  .hero-oferta__mask--1 {
    max-width: 120px;
  }
}
.hero-oferta__mask--2 {
  bottom: 0;
  right: 117px;
  width: 25%;
  height: auto;
  max-width: 208px;
}
@media (max-width: 799px) {
  .hero-oferta__mask--2 {
    max-width: 108px;
    right: 33px;
  }
}

.offer-benefits {
  background-color: #ffffff;
  padding: 80px 0;
  color: #050000;
}
@media (min-width: 992px) {
  .offer-benefits {
    padding: 120px 0;
  }
}
.offer-benefits__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offer-benefits__header {
  text-align: center;
  max-width: 950px;
  margin-bottom: 60px;
}
.offer-benefits__title {
  font-size: calc(24px + 24 * (100vw - 320px) / 1280);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
  color: #152A2D;
}
.offer-benefits__subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(5, 0, 0, 0.7);
  max-width: 800px;
  margin: 0 auto;
}
.offer-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}
@media (min-width: 800px) {
  .offer-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .offer-benefits__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background-color: #C1DA92;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.benefit-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #152A2D;
  line-height: 1.4;
}
.benefit-card__text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(5, 0, 0, 0.8);
}

.offer-compare {
  position: relative;
  padding: 80px 0;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .offer-compare {
    padding: 120px 0;
  }
}
.offer-compare__dark-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background-color: #193A43;
  z-index: 0;
}
@media screen {
  .offer-compare__dark-bg {
    background-color: #ffffff;
  }
}
@media (min-width: 992px) {
  .offer-compare__dark-bg {
    width: 51%;
    height: 70%;
  }
}
.offer-compare__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 992px) {
  .offer-compare__container {
    flex-direction: row;
  }
}
.offer-compare__content {
  flex: 1;
  min-width: 0;
  padding-right: 0;
}
@media (min-width: 992px) {
  .offer-compare__content {
    padding-right: 40px;
  }
}
.offer-compare__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  margin-bottom: 30px;
}
.offer-compare__subtitle {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 40px;
}
.offer-compare__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 30px;
  margin-bottom: 10px;
}
@media (min-width: 800px) {
  .offer-compare__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.offer-compare__visual {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}
.offer-compare__visual-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  color: #ffffff;
  gap: 20px;
}
@media (min-width: 800px) {
  .offer-compare__visual-header {
    flex-direction: row;
    align-items: flex-end;
  }
}
.offer-compare__visual-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.offer-compare__arrow {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
@media (min-width: 800px) {
  .offer-compare__arrow {
    width: 90px;
    height: 90px;
  }
}

.compare-item__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 12px;
}
.compare-item__text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.compare-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  user-select: none;
  background-color: #eee;
  touch-action: none;
}
@media (min-width: 992px) {
  .compare-slider {
    aspect-ratio: 16/11;
  }
}
.compare-slider__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.compare-slider__img--before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.compare-slider__img--after {
  z-index: 1;
}
.compare-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: #c1da92;
  z-index: 10;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-slider__handle span {
  width: 48px;
  height: 48px;
  background-color: #c1da92;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 24px;
  border-radius: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
}

.offer-process {
  background-color: #ffffff;
  padding: 80px 0;
  color: #000;
}
@media (min-width: 992px) {
  .offer-process {
    padding: 120px 0;
  }
}
.offer-process__header {
  text-align: center;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .offer-process__header {
    margin-bottom: 80px;
  }
}
.offer-process__title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.3;
  color: #000;
}
.offer-process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .offer-process__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
}
.process-step__number {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 15px;
  color: #000;
}
.process-step__title {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #000;
}
.process-step__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.75);
}

.compare-gallery {
  width: 100%;
  min-width: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.compare-gallery .swiper-slide {
  width: 100%;
  min-width: 0;
  height: auto;
}
.compare-gallery__nav {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 20;
}
.compare-gallery__btn {
  width: 75px;
  height: 75px;
  background-color: #c1da92;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: 0.3s ease;
  cursor: pointer;
  border: none;
}
@media (max-width: 799px) {
  .compare-gallery__btn {
    width: 60px;
    height: 60px;
  }
}
.compare-gallery__btn:hover {
  background-color: rgb(171.3424657534, 205.0753424658, 107.9246575342);
}
.compare-gallery__btn--prev {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.compare-gallery__btn .material-symbols-outlined {
  font-size: 32px;
}
.compare-gallery__btn.swiper-button-disabled {
  display: none !important;
}

.standard-gallery-item {
  width: 100%;
  min-width: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media (min-width: 992px) {
  .standard-gallery-item {
    aspect-ratio: 16/11;
  }
}
.standard-gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-archive {
  position: relative;
  padding-top: 160px;
  padding-bottom: 80px;
  background-color: #193A43;
  color: #ffffff;
}
@media (max-width: 799px) {
  .hero-archive {
    padding-top: 100px;
    padding-bottom: 0px;
  }
}
.hero-archive__container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 992px) {
  .hero-archive__container {
    flex-direction: row;
    align-items: center;
  }
}
.hero-archive__content {
  width: 100%;
  z-index: 2;
}
@media (min-width: 992px) {
  .hero-archive__content {
    width: 50%;
    padding-right: 60px;
  }
}
.hero-archive__title {
  color: #9FD1D9;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}
.hero-archive__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 500px;
}
.hero-archive__visual {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (min-width: 992px) {
  .hero-archive__visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50vw;
    z-index: 1;
    display: block;
    height: 474px;
  }
}
.hero-archive__image-wrapper {
  position: relative;
  width: 100%;
  line-height: 0;
}
@media (min-width: 992px) {
  .hero-archive__image-wrapper {
    height: 100%;
  }
}
.hero-archive__img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 992px) {
  .hero-archive__img {
    height: 100%;
    object-fit: cover;
    object-position: center left;
  }
}
.hero-archive__mask-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 100px 100px;
  grid-template-rows: 100px 100px;
  z-index: 2;
}
@media (min-width: 800px) {
  .hero-archive__mask-overlay {
    grid-template-columns: 150px 150px;
    grid-template-rows: 150px 150px;
  }
}
@media (max-width: 799px) {
  .hero-archive__mask-overlay {
    grid-template-columns: 70px 70px;
    grid-template-rows: 70px 70px;
  }
}
.hero-archive__mask-overlay .mask-box--green {
  background-color: rgba(145, 167, 90, 0.5);
  grid-column: 1;
  grid-row: 1;
}
.hero-archive__mask-overlay .mask-box--dark1 {
  background-color: #193A43;
  grid-column: 2;
  grid-row: 1;
}
.hero-archive__mask-overlay .mask-box--dark2 {
  background-color: #193A43;
  grid-column: 1;
  grid-row: 2;
}

.archive-main {
  background-color: #ffffff;
  padding: 60px 0 100px;
  color: #050000;
}
.archive-main__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 60px;
  justify-content: center;
}
@media (min-width: 992px) {
  .archive-main__filters {
    justify-content: flex-start;
  }
}
.archive-main__filter-btn {
  padding: 12px 24px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  transition: 0.3s ease;
  white-space: nowrap;
}
.archive-main__filter-btn:hover {
  border-color: #C1DA92;
}
.archive-main__filter-btn--active {
  background-color: #C1DA92;
  border-color: #C1DA92;
  color: #152A2D;
}
.archive-main__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px 30px;
}
@media (min-width: 800px) {
  .archive-main__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .archive-main__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.archive-main__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 80px;
}
.archive-main__pagination .page-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  font-weight: 700;
  color: #333;
  transition: 0.3s ease;
}
.archive-main__pagination .page-num:hover {
  border-color: #152A2D;
}
.archive-main__pagination .page-num--active {
  background-color: #C1DA92;
  border-color: #C1DA92;
}
.archive-main__pagination .page-next {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  border: 1px solid #ddd;
  font-weight: 700;
  color: #333;
  transition: 0.3s ease;
  gap: 10px;
}
.archive-main__pagination .page-next:hover {
  border-color: #152A2D;
}

.post-card {
  display: flex;
  flex-direction: column;
}
.post-card__img-box {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #f5f5f5;
}
.post-card__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-card:hover .post-card__img-box img {
  transform: scale(1.05);
}
.post-card__category {
  font-size: 0.75rem;
  color: #888;
  font-weight: 600;
  margin-bottom: 10px;
}
.post-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #000;
}
.post-card__excerpt {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}
.post-card__link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #000;
  padding-bottom: 5px;
  gap: 5px;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
}
.post-card__link .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.post-card__link:hover {
  border-bottom-color: #000;
}
.post-card__link:hover .material-symbols-outlined {
  transform: translateX(5px);
}

.single-post {
  position: relative;
  background-color: #ffffff;
}
.single-post__hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #193A43;
  z-index: 0;
  pointer-events: none;
  height: calc(16px + min(100vw - 80px, 1720px) * 0.365625);
}
@media (min-width: 800px) {
  .single-post__hero-bg {
    height: calc(20px + min(100vw - 80px, 1720px) * 0.365625);
  }
}
@media (min-width: 992px) {
  .single-post__hero-bg {
    height: calc(20px + min(100vw - 80px, 1720px) * 0.26);
  }
}
.single-post--no-featured .single-post__hero-bg {
  height: min(42vh, 360px);
}
@media (min-width: 992px) {
  .single-post--no-featured .single-post__hero-bg {
    height: min(36vh, 400px);
  }
}
.single-post__container {
  position: relative;
  z-index: 1;
  padding-top: 24px;
  padding-bottom: 100px;
}
@media (min-width: 800px) {
  .single-post__container {
    padding-top: 28px;
  }
}
@media (min-width: 992px) {
  .single-post__container {
    padding-top: 32px;
  }
}
.single-post--no-featured .single-post__container {
  padding-top: 48px;
}
@media (min-width: 992px) {
  .single-post--no-featured .single-post__container {
    padding-top: 64px;
  }
}
.single-post__featured-image {
  position: relative;
  width: 100%;
  margin-top: -8px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .single-post__featured-image {
    margin-top: -12px;
  }
}
.single-post__featured-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
@media (min-width: 992px) {
  .single-post__featured-image img {
    aspect-ratio: 2.5/1;
  }
}
.single-post__mask-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 80px 80px;
  grid-template-rows: 80px 80px;
  z-index: 2;
}
@media (min-width: 800px) {
  .single-post__mask-overlay {
    grid-template-columns: 120px 120px;
    grid-template-rows: 120px 120px;
  }
}
@media (max-width: 799px) {
  .single-post__mask-overlay {
    display: none;
  }
}
.single-post__mask-overlay .mask-box--green {
  background-color: rgba(193, 218, 146, 0.85);
  grid-column: 1;
  grid-row: 1;
}
.single-post__mask-overlay .mask-box--dark1 {
  background-color: #193A43;
  grid-column: 2;
  grid-row: 1;
}
.single-post__mask-overlay .mask-box--dark2 {
  background-color: #193A43;
  grid-column: 1;
  grid-row: 2;
}
.single-post__mask-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  z-index: 2;
}
@media (min-width: 800px) {
  .single-post__mask-bottom-right {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 799px) {
  .single-post__mask-bottom-right {
    display: none;
  }
}
.single-post__meta {
  font-size: 0.875rem;
  color: #777;
  margin-bottom: 40px;
  text-transform: none;
  letter-spacing: 0.02em;
}
.single-post__header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}
.single-post__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.25;
  color: #000;
}
.single-post__content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.8);
  max-width: 800px;
  margin: 0 auto;
}
.single-post__content p {
  margin-bottom: 30px;
}
.single-post__content p:last-child {
  margin-bottom: 0;
}
.single-post__content h2, .single-post__content h3, .single-post__content h4 {
  font-weight: 800;
  color: #000;
  margin-top: 60px;
  margin-bottom: 25px;
  line-height: 1.3;
}
.single-post__content h2 {
  font-size: clamp(24px, 3vw, 36px);
}
.single-post__content h3 {
  font-size: clamp(20px, 2.5vw, 28px);
}
.single-post__content img {
  width: 100%;
  height: auto;
  margin: 50px 0;
  display: block;
}
.single-post__content ul, .single-post__content ol {
  margin-bottom: 30px;
  padding-left: 20px;
}
.single-post__content ul li, .single-post__content ol li {
  margin-bottom: 10px;
}
.single-post__content a {
  color: #129623;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.single-post__content a:hover {
  color: rgb(13.6285714286, 113.5714285714, 26.5);
}

.footer-minimal {
  background-color: #ffffff;
  padding: 32px 0 40px;
  border-top: 1px solid #eaeaea;
}
.footer-minimal__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  justify-items: center;
  text-align: center;
}
@media (min-width: 992px) {
  .footer-minimal__container {
    grid-template-columns: 1fr auto 1fr;
    justify-items: stretch;
    text-align: left;
    gap: 24px;
  }
}
@media (min-width: 992px) {
  .footer-minimal__left {
    justify-self: start;
  }
}
.footer-minimal__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 992px) {
  .footer-minimal__brand {
    align-items: flex-start;
  }
}
.footer-minimal__logo-link {
  display: inline-block;
  line-height: 0;
}
.footer-minimal__logo {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0);
}
.footer-minimal__tagline {
  font-size: 0.8125rem;
  color: #666;
  line-height: 1.35;
  max-width: 280px;
}
.footer-minimal__copyright {
  font-size: 0.75rem;
  color: #888;
}
.footer-minimal__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
}
.footer-minimal__links a {
  font-size: 0.875rem;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-minimal__links a:hover {
  color: #000;
}
.footer-minimal__sep {
  color: #ccc;
  font-size: 0.875rem;
  user-select: none;
}
.footer-minimal__right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 992px) {
  .footer-minimal__right {
    justify-self: end;
    justify-content: flex-end;
  }
}
.footer-minimal__credit {
  font-size: 0.75rem;
  color: #888;
}
.footer-minimal__lion {
  height: 20px;
  width: auto;
  display: block;
}

body.page-block-layout .header {
  background-color: #193A43;
}

.page-block {
  background-color: #fff;
  color: #050000;
  padding: 72px 0 100px;
}
@media (min-width: 800px) {
  .page-block {
    padding: 96px 0 120px;
  }
}
@media (min-width: 992px) {
  .page-block {
    padding: 120px 0 140px;
  }
}
.page-block__content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.82);
}
.page-block__content > *:first-child {
  margin-top: 0;
}
.page-block__content p {
  margin: 0 0 1.25em;
}
.page-block__content h2,
.page-block__content h3,
.page-block__content h4 {
  font-weight: 800;
  color: #000;
  margin: 2em 0 0.75em;
  line-height: 1.3;
}
.page-block__content h2 {
  font-size: clamp(22px, 2.5vw, 30px);
}
.page-block__content h3 {
  font-size: clamp(18px, 2vw, 22px);
}
.page-block__content h4 {
  font-size: 1.05rem;
}
.page-block__content ul,
.page-block__content ol {
  margin: 0 0 1.25em;
  padding-left: 1.35em;
}
.page-block__content li {
  margin-bottom: 0.45em;
}
.page-block__content a {
  color: #129623;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-block__content a:hover {
  color: rgb(13.6285714286, 113.5714285714, 26.5);
}
.page-block__content strong {
  font-weight: 700;
  color: #000;
}
.page-block__content blockquote {
  margin: 1.5em 0;
  padding-left: 1.25em;
  border-left: 4px solid #C1DA92;
  color: #444;
  font-style: normal;
}
.page-block__content .wp-block-image,
.page-block__content figure {
  margin: 2em 0;
}
.page-block__content img {
  max-width: 100%;
  height: auto;
}
.page-block__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #000;
  line-height: 1.15;
  margin: 0 0 1.25em;
  letter-spacing: -0.02em;
  text-align: left;
}

.page-block__content img.is-lightbox-trigger {
  cursor: zoom-in;
}

.page-block-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.page-block-lightbox.is-open {
  display: flex;
}
.page-block-lightbox__img {
  max-width: min(1200px, 100vw - 48px);
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}
.page-block-lightbox__close {
  position: absolute;
  top: max(14px, env(safe-area-inset-top, 14px));
  right: max(14px, env(safe-area-inset-right, 14px));
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.page-block-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

body.is-lightbox-open {
  overflow: hidden;
}

body.layout-404 {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

.error-404 {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: clamp(64px, 12vh, 140px);
  overflow: hidden;
  color: #ffffff;
  background-color: #0e262d;
}
.error-404__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(14, 38, 45, 0.92) 0%, rgba(14, 38, 45, 0.75) 38%, rgba(14, 38, 45, 0.2) 62%, transparent 78%), url("../assets/404/bg_404.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.error-404__inner {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
  max-width: 640px;
  margin-left: clamp(48px, 14vw, 280px);
  margin-right: auto;
  padding-left: max(0px, env(safe-area-inset-left, 0px));
  padding-right: max(24px, env(safe-area-inset-right, 24px));
  padding-bottom: max(48px, env(safe-area-inset-bottom, 0px));
}
@media (max-width: 799px) {
  .error-404__inner {
    max-width: 100%;
    margin-left: clamp(24px, 8vw, 56px);
    padding-right: max(20px, env(safe-area-inset-right, 20px));
  }
}
.error-404__logo {
  display: inline-block;
  margin-bottom: 40px;
}
@media (max-width: 799px) {
  .error-404__logo {
    margin-bottom: 32px;
  }
}
.error-404__logo-img {
  height: 56px;
  width: auto;
}
@media (max-width: 799px) {
  .error-404__logo-img {
    height: 44px;
  }
}
.error-404__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 20px;
  max-width: 14ch;
}
.error-404__lead {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 40px;
  max-width: 28rem;
}
@media (max-width: 799px) {
  .error-404__lead {
    margin-bottom: 32px;
    font-size: 16px;
  }
}
.error-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.error-404 .btn--primary {
  background-color: #c5d391;
  border-color: #c5d391;
  color: #050000;
}
.error-404 .btn--primary:hover {
  background-color: transparent;
  color: #c5d391;
  border-color: #c5d391;
}