.container-fluid-custom {
  padding-inline: 24px;
}

.text-grey-light {
  color: #a9a9a9;
}

body.no-scroll {
  overflow: hidden;
}

.divider-diagonal {
  height: 90px;
  background: #c1272d;
  transform: skewY(-2deg);
  margin-block: -45px;
  position: relative;
  z-index: 2;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}

ul[class], ol[class] {
  list-style: none;
  padding: 0;
}

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

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #333333;
  background-color: #073622;
  font-weight: 400;
}

h1,
h2,
h3,
h4 {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  line-height: 1.15;
  color: #191919;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2.25rem, 4.4vw, 3.6rem);
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

p {
  max-width: 62ch;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: #6e6e6e;
}

.eyebrow {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c1272d;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #c1272d;
  display: inline-block;
}

.text-white {
  color: #ffffff;
}

.text-grey {
  color: #6e6e6e;
}

strong {
  font-weight: 700;
}

.topbar {
  background: #191919;
  color: #ffffff;
  font-size: 0.875rem;
}
.topbar__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__contact {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.topbar__link i {
  color: #e14a50;
}
.topbar__link:hover {
  color: #e14a50;
}
.topbar__tag {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #a9a9a9;
  display: none;
}
@media (min-width: 768px) {
  .topbar__tag {
    display: inline-block;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 1px 0 #e3e1dc;
  transition: box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 24px -16px rgba(25, 25, 25, 0.35);
}
.site-header__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  gap: 24px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 1.35rem;
  color: #191919;
  line-height: 1;
}
.site-header__logo span {
  color: #c1272d;
}
.site-header__logo small {
  display: block;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #6e6e6e;
  text-transform: uppercase;
  margin-top: 4px;
}

.main-nav {
  display: none;
}
@media (min-width: 992px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
  }
}
.main-nav__link {
  position: relative;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: #333333;
  padding-block: 6px;
}
.main-nav__link:focus-visible {
  outline: 3px solid #c1272d;
  outline-offset: 3px;
}
.main-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #c1272d;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.main-nav__link:hover::after, .main-nav__link.is-active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-actions__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #c1272d;
  color: #ffffff;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.header-actions__call:focus-visible {
  outline: 3px solid #c1272d;
  outline-offset: 3px;
}
.header-actions__call:hover {
  background: #8f1b20;
  transform: translateY(-2px);
}
@media (min-width: 992px) {
  .header-actions__call {
    width: auto;
    height: auto;
    border-radius: 999px;
    padding: 12px 22px;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .header-actions__call span {
    display: inline;
  }
}
.header-actions__call span {
  display: none;
}
.header-actions__toggle {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
}
@media (min-width: 992px) {
  .header-actions__toggle {
    display: none;
  }
}
.header-actions__toggle span {
  display: block;
  height: 2px;
  background: #191919;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.header-actions__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-actions__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.header-actions__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: #191919;
  z-index: 200;
  padding: 100px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.is-open {
  transform: translateX(0);
}
@media (min-width: 992px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav__link {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 14px;
}
.mobile-nav__cta {
  margin-top: 16px;
}

.site-footer {
  background: #191919;
  color: #a9a9a9;
  padding-block: 64px 24px;
}
.site-footer__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 40px;
  }
}
.site-footer__brand {
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 16px;
}
.site-footer__brand span {
  color: #e14a50;
}
.site-footer__desc {
  max-width: 34ch;
  font-size: 0.875rem;
  color: #a9a9a9;
}
.site-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.site-footer__social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #ffffff;
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-footer__social a:focus-visible {
  outline: 3px solid #c1272d;
  outline-offset: 3px;
}
.site-footer__social a:hover {
  background: #c1272d;
  border-color: #c1272d;
}
.site-footer__heading {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}
.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__list a {
  font-size: 0.92rem;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding-left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-footer__list a:hover {
  color: #e14a50;
  padding-left: 4px;
}
.site-footer__contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  margin-bottom: 14px;
}
.site-footer__contact-item i {
  color: #e14a50;
  margin-top: 4px;
}
.site-footer__bottom {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.8rem;
  color: #6e6e6e;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #c1272d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.back-to-top:focus-visible {
  outline: 3px solid #c1272d;
  outline-offset: 3px;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #8f1b20;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:focus-visible {
  outline: 3px solid #c1272d;
  outline-offset: 3px;
}
.btn i {
  font-size: 0.9em;
}
.btn--primary {
  background: #c1272d;
  color: #ffffff;
  box-shadow: 0 10px 24px -10px rgba(193, 39, 45, 0.65);
}
.btn--primary:hover {
  background: #8f1b20;
  transform: translateY(-3px);
}
.btn--outline {
  background: transparent;
  color: #191919;
  border: 2px solid #191919;
}
.btn--outline:hover {
  background: #191919;
  color: #ffffff;
  transform: translateY(-3px);
}
.btn--outline-light {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn--outline-light:hover {
  background: #ffffff;
  color: #191919;
  border-color: #ffffff;
  transform: translateY(-3px);
}
.btn--block {
  width: 100%;
  justify-content: center;
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head h2 {
  margin-top: 14px;
}
.section-head--light .eyebrow {
  color: #e14a50;
}
.section-head--light .eyebrow::before {
  background: #e14a50;
}
.section-head--light h2 {
  color: #ffffff;
}
.section-head--light p {
  color: #a9a9a9;
}

.hero {
  position: relative;
  background: #191919;
  overflow: hidden;
  padding-block: 64px 96px;
}
@media (min-width: 992px) {
  .hero {
    padding-block: 96px 140px;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, #191919 34%, rgba(25, 25, 25, 0.35) 100%);
}
.hero__stripe {
  position: absolute;
  top: -20%;
  right: -8%;
  width: 46%;
  height: 140%;
  background: #c1272d;
  transform: rotate(-3.5deg);
  z-index: 1;
  opacity: 0.9;
}
@media (min-width: 992px) {
  .hero__stripe {
    width: 34%;
  }
}
.hero__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c1272d;
  color: #e14a50;
}
.hero__eyebrow::before {
  background: #e14a50;
}
.hero__title {
  color: #ffffff;
  margin-top: 16px;
  max-width: 15ch;
}
.hero__title em {
  font-style: normal;
  color: #e14a50;
}
.hero__lead {
  margin-top: 16px;
  max-width: 46ch;
  color: #a9a9a9;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
  max-width: 620px;
}
@media (min-width: 576px) {
  .hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.hero__stat {
  border-left: 2px solid rgba(255, 255, 255, 0.18);
  padding-left: 14px;
}
.hero__stat-num {
  font-family: "Anton", Impact, sans-serif;
  font-size: 2.2rem;
  color: #ffffff;
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.78rem;
  color: #a9a9a9;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
}

.trust-strip {
  background: #ffffff;
  margin-top: -56px;
  position: relative;
  z-index: 3;
}
.trust-strip__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
  background: #ffffff;
  border: 1px solid #e3e1dc;
  border-radius: 8px;
  box-shadow: 0 20px 50px -24px rgba(25, 25, 25, 0.25);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .trust-strip__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-bottom: 1px solid #e3e1dc;
  border-right: 1px solid #e3e1dc;
}
.trust-strip__item:nth-child(2n) {
  border-right: none;
}
@media (min-width: 768px) {
  .trust-strip__item {
    border-bottom: none;
  }
  .trust-strip__item:nth-child(2n) {
    border-right: 1px solid #e3e1dc;
  }
  .trust-strip__item:last-child {
    border-right: none;
  }
}
.trust-strip__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f5f4f1;
  color: #c1272d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.trust-strip__title {
  font-weight: 700;
  font-size: 0.92rem;
  color: #191919;
}
.trust-strip__desc {
  font-size: 0.8rem;
  color: #6e6e6e;
}

.about {
  padding-block: 96px;
}
@media (min-width: 992px) {
  .about {
    padding-block: 140px;
  }
}
.about {
  background: #073622;
}
.about .eyebrow {
  color: #e14a50;
}
.about .eyebrow::before {
  background: #e14a50;
}
.about h2 {
  color: #ffffff;
}
.about .lead {
  color: #a9a9a9;
}
.about__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  gap: 64px;
  align-items: center;
}
@media (min-width: 992px) {
  .about__inner {
    grid-template-columns: 0.9fr 1fr;
    gap: 96px;
  }
}
.about__media {
  position: relative;
}
.about__frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  left: -18px;
  bottom: -18px;
  background: #c1272d;
  color: #ffffff;
  padding: 20px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 20px 40px -18px rgba(193, 39, 45, 0.6);
}
.about__badge strong {
  display: block;
  font-family: "Anton", Impact, sans-serif;
  font-size: 2.1rem;
  line-height: 1;
}
.about__badge span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .about__badge {
    left: -32px;
    bottom: -28px;
    padding: 26px 30px;
  }
}
.about__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  color: #ffffff;
}
.about__list-item i {
  color: #e14a50;
  margin-top: 3px;
}
.about__foot {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.about__signature {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.3rem;
  color: #ffffff;
  text-transform: none;
}
.about__signature small {
  display: block;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #a9a9a9;
  font-weight: 600;
}

.services {
  padding-block: 96px;
}
@media (min-width: 992px) {
  .services {
    padding-block: 140px;
  }
}
.services {
  background: #ffffff;
}
.services__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}
.services__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.services__grid {
  margin-top: 64px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  background: #f5f4f1;
  border-radius: 8px;
  padding: 40px 24px 24px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #e3e1dc;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px -26px rgba(25, 25, 25, 0.35);
}
.service-card__num {
  position: absolute;
  top: 10px;
  right: 18px;
  font-family: "Anton", Impact, sans-serif;
  font-size: 3.4rem;
  color: #ffffff;
  -webkit-text-stroke: 1px #e3e1dc;
  line-height: 1;
  opacity: 0.9;
}
.service-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #c1272d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
}
.service-card__title {
  margin-top: 16px;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}
.service-card__desc {
  margin-top: 8px;
  font-size: 0.92rem;
  color: #6e6e6e;
  position: relative;
  z-index: 1;
}
.service-card__link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #191919;
  position: relative;
  z-index: 1;
  transition: gap 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card__link:hover {
  gap: 12px;
  color: #c1272d;
}

.before-after {
  padding-block: 96px;
}
@media (min-width: 992px) {
  .before-after {
    padding-block: 140px;
  }
}
.before-after {
  background: #191919;
  position: relative;
  overflow: hidden;
}
.before-after__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
  position: relative;
  z-index: 1;
}
.before-after__head {
  max-width: 640px;
}
.before-after__swiper {
  margin-top: 64px;
  padding-bottom: 56px;
}
.before-after__pagination.swiper-pagination {
  bottom: 0 !important;
}
.before-after__pagination.swiper-pagination .swiper-pagination-bullet {
  background: #a9a9a9;
  opacity: 0.5;
  width: 9px;
  height: 9px;
}
.before-after__pagination.swiper-pagination .swiper-pagination-bullet-active {
  background: #c1272d;
  opacity: 1;
}
.before-after__arrows {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.before-after__arrows button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.before-after__arrows button:focus-visible {
  outline: 3px solid #c1272d;
  outline-offset: 3px;
}
.before-after__arrows button:hover {
  background: #c1272d;
  border-color: #c1272d;
}

.compare {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}
.compare__label {
  position: absolute;
  top: 16px;
  z-index: 3;
  background: rgba(25, 25, 25, 0.75);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  pointer-events: none;
}
.compare__label--before {
  left: 16px;
}
.compare__label--after {
  right: 16px;
}
@media (min-width: 768px) {
  .compare__label {
    font-size: 0.65rem;
    padding: 5px 10px;
  }
}
.compare__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.compare__after-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}
.compare__after-wrap img {
  width: var(--compare-img-w, 100vw);
  max-width: none;
  height: 100%;
  object-fit: cover;
}
.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #c1272d;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}
.compare__handle::after {
  content: "\f337";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 42px;
  height: 42px;
  background: #c1272d;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .compare__handle::after {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
}

.gallery {
  padding-block: 96px;
}
@media (min-width: 992px) {
  .gallery {
    padding-block: 140px;
  }
}
.gallery {
  background: #073622;
}
.gallery .eyebrow {
  color: #e14a50;
}
.gallery .eyebrow::before {
  background: #e14a50;
}
.gallery h2 {
  color: #ffffff;
}
.gallery__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}
.gallery__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gallery__filter {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #a9a9a9;
  transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery__filter:hover {
  border-color: #e14a50;
  color: #e14a50;
}
.gallery__filter.is-active {
  background: #191919;
  border-color: #191919;
  color: #ffffff;
}
.gallery__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery__item {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .gallery__item:nth-child(5n+1) {
    grid-row: span 2;
    aspect-ratio: auto;
  }
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(25, 25, 25, 0.75) 0%, rgba(25, 25, 25, 0) 45%);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery__item:hover img {
  transform: scale(1.08);
}
.gallery__item:hover::after {
  opacity: 1;
}
.gallery__item-cap {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery__item:hover .gallery__item-cap {
  opacity: 1;
  transform: translateY(0);
}
.gallery__item-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #c1272d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(-8px);
  transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.gallery__item:hover .gallery__item-zoom {
  opacity: 1;
  transform: translateY(0);
}

.mfp-bg {
  background: #191919;
  opacity: 0.92;
}

.mfp-figure figcaption {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

.mfp-close {
  color: #ffffff;
  opacity: 0.9;
}

.why-us {
  padding-block: 96px;
}
@media (min-width: 992px) {
  .why-us {
    padding-block: 140px;
  }
}
.why-us {
  background: #f5f4f1;
}
.why-us__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  gap: 64px;
}
@media (min-width: 992px) {
  .why-us__inner {
    grid-template-columns: 0.85fr 1fr;
    gap: 96px;
    align-items: center;
  }
}
.why-us__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}

.why-item {
  display: flex;
  gap: 24px;
  padding-block: 24px;
  border-bottom: 1px solid #e3e1dc;
}
.why-item:first-child {
  padding-top: 0;
}
.why-item__num {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.6rem;
  color: #c1272d;
  flex-shrink: 0;
  width: 44px;
}
.why-item__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #191919;
}
.why-item__desc {
  margin-top: 6px;
  font-size: 0.92rem;
  color: #6e6e6e;
}

.why-us__media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.why-us__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials {
  padding-block: 96px;
}
@media (min-width: 992px) {
  .testimonials {
    padding-block: 140px;
  }
}
.testimonials {
  background: #ffffff;
}
.testimonials__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}
.testimonials__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.testimonials__swiper {
  margin-top: 64px;
  padding-bottom: 8px;
}

.review-card {
  background: #f5f4f1;
  border: 1px solid #e3e1dc;
  border-radius: 8px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review-card__stars {
  color: #c1272d;
  font-size: 0.85rem;
  letter-spacing: 3px;
}
.review-card__quote {
  margin-top: 16px;
  font-size: 1rem;
  color: #333333;
  flex: 1;
}
.review-card__foot {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #e3e1dc;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #191919;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-card__name {
  font-weight: 700;
  font-size: 0.92rem;
  color: #191919;
}
.review-card__loc {
  font-size: 0.78rem;
  color: #6e6e6e;
}

.testimonials__nav {
  display: flex;
  gap: 10px;
}
.testimonials__nav button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e3e1dc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonials__nav button:focus-visible {
  outline: 3px solid #c1272d;
  outline-offset: 3px;
}
.testimonials__nav button:hover {
  background: #c1272d;
  color: #ffffff;
  border-color: #c1272d;
}

.cta-banner {
  position: relative;
  background: #c1272d;
  overflow: hidden;
}
.cta-banner__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
  position: relative;
  z-index: 1;
  padding-block: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -60%;
  left: 68%;
  width: 40%;
  height: 220%;
  background: #8f1b20;
  transform: rotate(-3.5deg);
  opacity: 0.55;
}
.cta-banner h3 {
  color: #ffffff;
  max-width: 20ch;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
}

.quote {
  padding-block: 96px;
}
@media (min-width: 992px) {
  .quote {
    padding-block: 140px;
  }
}
.quote {
  background: #191919;
  position: relative;
  overflow: hidden;
}
.quote__stripe {
  position: absolute;
  left: -10%;
  bottom: -30%;
  width: 44%;
  height: 140%;
  background: rgba(193, 39, 45, 0.14);
  transform: rotate(-3.5deg);
}
.quote__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 64px;
}
@media (min-width: 992px) {
  .quote__inner {
    grid-template-columns: 0.8fr 1fr;
    gap: 96px;
  }
}
.quote__info {
  color: #ffffff;
}
.quote__info h2 {
  color: #ffffff;
}
.quote__contact-block {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quote__contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.quote__contact-item i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #e14a50;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quote__contact-item strong {
  display: block;
  color: #ffffff;
}
.quote__contact-item span {
  font-size: 0.85rem;
  color: #a9a9a9;
}

.quote-form {
  background: #ffffff;
  border-radius: 8px;
  padding: 40px;
}
@media (min-width: 768px) {
  .quote-form {
    padding: 64px;
  }
}
.quote-form__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .quote-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.quote-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quote-form__field--full {
  grid-column: 1/-1;
}
.quote-form__field label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #333333;
}
.quote-form__field input, .quote-form__field select, .quote-form__field textarea {
  border: 1px solid #e3e1dc;
  border-radius: 4px;
  padding: 13px 15px;
  background: #f5f4f1;
  font-size: 0.94rem;
  color: #191919;
  transition: border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.quote-form__field input:focus, .quote-form__field select:focus, .quote-form__field textarea:focus {
  outline: none;
  border-color: #c1272d;
  background: #ffffff;
}
.quote-form__field textarea {
  resize: vertical;
  min-height: 110px;
}
.quote-form__submit {
  margin-top: 16px;
  grid-column: 1/-1;
}
.quote-form__note {
  grid-column: 1/-1;
  font-size: 0.78rem;
  color: #6e6e6e;
  text-align: center;
}

.upload-field {
  grid-column: 1/-1;
}
.upload-field label.upload-field__title {
  display: block;
}

.dropzone {
  margin-top: 8px;
  border: 2px dashed #e3e1dc;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.dropzone:hover, .dropzone.is-dragover {
  border-color: #c1272d;
  background: rgba(193, 39, 45, 0.04);
}
.dropzone input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.dropzone__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f5f4f1;
  color: #c1272d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.dropzone__text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #191919;
}
.dropzone__hint {
  font-size: 0.76rem;
  color: #6e6e6e;
  margin-top: 4px;
}

.upload-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.upload-previews:empty {
  margin-top: 0;
}

.upload-preview {
  position: relative;
  width: 74px;
  height: 74px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e3e1dc;
}
.upload-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.upload-preview__remove {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  position: absolute;
  top: 3px;
  right: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(25, 25, 25, 0.75);
  color: #ffffff;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*# sourceMappingURL=style.css.map */
