.home .transparent.top-bar {
  background: rgba(0, 0, 0, 0.45);
}

.home .site-header-style-transparent:not(.site-header-sticky-active) .nav-wrap {
  background: rgba(0, 0, 0, 0.55);
}

.home-hero {
  background: #e9e9e9;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.home-hero__swiper {
  width: 100%;
  height: 700px;
}

@media (max-width: 1400px) {
  .home-hero__swiper {
    height: 600px;
  }
}

@media (max-width: 900px) {
  .home-hero__swiper {
    height: 520px;
  }
}

@media (max-width: 600px) {
  .home-hero__swiper {
    height: 480px;
  }
}

.home-hero__slide {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home-hero__media {
  position: absolute;
  inset: 0;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.03);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  padding: 24px 32px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 8px;
}

.home-hero__eyebrow {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
}

.home-hero__title {
  margin: 10px 0 0;
  font-size: 36px;
  font-weight: 700;
  color: inherit;
}

@media (max-width: 778px) {
  .home-hero__title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .home-hero__title {
    font-size: 24px;
  }
}

.home-hero__desc {
  margin: 12px auto 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.6;
  color: inherit;
}

.home-hero__content--bottom {
  align-self: flex-end;
  margin-bottom: 56px;
  background: rgba(0, 0, 0, 0.3);
}

.home-hero__cta {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 28px;
  background: #d54900;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 3px;
  text-decoration: none;
}

.home-hero__cta:hover,
.home-hero__cta:focus {
  background: #0a0a0a;
  color: #ffffff;
  text-decoration: none;
}

.home-hero__swiper .swiper-button-prev,
.home-hero__swiper .swiper-button-next {
  color: rgba(255, 255, 255, 0.4);
  width: 40px;
  height: 40px;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    color 0.2s ease;
}

.home-hero__swiper:hover .swiper-button-prev,
.home-hero__swiper:hover .swiper-button-next {
  opacity: 1;
}

.home-hero__swiper .swiper-button-prev:hover,
.home-hero__swiper .swiper-button-next:hover,
.home-hero__swiper .swiper-button-prev:focus-visible,
.home-hero__swiper .swiper-button-next:focus-visible {
  color: rgba(255, 255, 255, 0.8);
}

.home-hero__swiper .swiper-button-prev::after,
.home-hero__swiper .swiper-button-next::after {
  font-size: 20px;
}

.home-hero__swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.home-hero__swiper .swiper-pagination-bullet-active {
  background: #ffffff;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.about-intro {
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.about-intro__media {
  text-align: center;
}

.about-intro__media img {
  max-width: 100%;
  height: auto;
}

.about-intro__eyebrow {
  color: #d54900;
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 8px;
}

.about-intro__title {
  font-size: 32px;
  font-weight: 700;
  color: #292929;
  margin: 0 0 16px;
  line-height: 1.25;
}

.about-intro__rule {
  width: 60px;
  height: 3px;
  background: #d54900;
  border: none;
  margin: 0 0 20px;
}

.about-intro__desc {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0 0 20px;
}

.about-intro__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #292929;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 32px;
}

.about-intro__more:hover,
.about-intro__more:focus {
  background: #d54900;
  color: #ffffff;
  text-decoration: none;
}

.about-intro__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-intro__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-intro__check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #d54900;
  color: #d54900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-intro__check svg {
  width: 18px;
  height: 18px;
}

.about-intro__feature h4 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: #292929;
}

.about-intro__feature p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #4a4a4a;
}

.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-intro__eyebrow {
  color: #d54900;
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 8px;
}

.section-intro__title {
  font-size: 32px;
  font-weight: 700;
  color: #292929;
  margin: 0;
  line-height: 1.25;
}

.section-intro__title--light {
  color: #ffffff;
}

.wwd-grid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  list-style: none;
}

@media (max-width: 767px) {
  .wwd-grid {
    grid-template-columns: 1fr;
  }
}

.wwd-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  display: block;
}

.wwd-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.wwd-item:hover img {
  transform: scale(1.05);
}

.wwd-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.wwd-item:hover .wwd-item__overlay {
  opacity: 1;
}

.wwd-item__title {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  padding: 0 16px;
}

.section-intro__rule {
  width: 60px;
  height: 3px;
  background: #d54900;
  border: none;
  margin: 16px auto 0;
}

.advantages {
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 40px;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #ececec;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .advantages__grid {
    grid-template-columns: 1fr;
  }
}

.advantages__item {
  padding: 36px 26px;
  text-align: center;
  border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}

.advantages__grid > .advantages__item:nth-child(4n) {
  border-right: none;
}

@media (max-width: 900px) {
  .advantages__grid > .advantages__item:nth-child(4n) {
    border-right: 1px solid #ececec;
  }
  .advantages__grid > .advantages__item:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 560px) {
  .advantages__grid > .advantages__item {
    border-right: none !important;
  }
}

.advantages__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #d54900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.advantages__icon svg {
  width: 34px;
  height: 34px;
  color: #ffffff;
}

.advantages__item h4 {
  font-size: 17px;
  font-weight: 700;
  color: #292929;
  margin: 0 0 14px;
  line-height: 1.4;
}

.advantages__item p {
  font-size: 13.5px;
  line-height: 1.75;
  color: #666666;
  margin: 0;
}

.gallery-carousel {
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 40px 70px;
}

.gallery-carousel__swiper {
  position: relative;
  padding: 0 44px;
}

.gallery-carousel__swiper .swiper-slide {
  width: 24%;
}

@media (max-width: 900px) {
  .gallery-carousel__swiper .swiper-slide {
    width: 48%;
  }
}

@media (max-width: 560px) {
  .gallery-carousel__swiper .swiper-slide {
    width: 82%;
  }
}

.gallery-carousel__item {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.gallery-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-carousel__item:hover img {
  transform: scale(1.06);
}

.gallery-carousel__swiper .swiper-button-prev,
.gallery-carousel__swiper .swiper-button-next {
  color: #292929;
  width: 34px;
  height: 34px;
  top: 50%;
}

.gallery-carousel__swiper .swiper-button-prev::after,
.gallery-carousel__swiper .swiper-button-next::after {
  font-size: 18px;
}

.gallery-carousel__swiper .swiper-button-prev:hover,
.gallery-carousel__swiper .swiper-button-next:hover {
  color: #d54900;
}
