/* =========================================================
   ROOT COLORS
========================================================= */

:root {

  /* Main Colors */
  --color-charcoal: #292624;
  --color-charcoal-soft: #3a3532;

  --color-brown: #8b7460;
  --color-brown-dark: #594937;

  /* Taupe / Beige */
  --color-taupe: #998876;

  --color-beige: #c6b6a7;
  --color-beige-light: #d0c6b8;

  /* Backgrounds */
  --color-white: #ffffff;
  --color-off-white: #f7f6f5;
  --color-cream: #f1ece7;
  --color-section-bg: #f7f3ef;

  /* Text */
  --color-text-dark: #292624;
  --color-text: #665f59;
  --color-text-light: #a6a19a;

  /* Border */
  --color-border: #ded8d2;

  --color-border-dark:
    rgba(41, 38, 36, 0.15);

  /* Transparent */
  --color-brown-soft:
    rgba(139, 116, 96, 0.12);

  --color-dark-overlay:
    rgba(41, 38, 36, 0.88);

  --transition:
    300ms ease;

}



/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {

  margin: 0;

  font-family:
    "Manrope",
    sans-serif;

  color:
    var(--color-text-dark);

  background:
    var(--color-white);

  overflow-x:
    hidden;

}


a {
  text-decoration: none;
}


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



/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

  position: relative;

  z-index: 1100;

  background:
    var(--color-charcoal);

  color:
    var(--color-white);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.06);

}


.top-bar-inner {

  min-height: 43px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

}


.top-bar-right {

  display: flex;

  align-items: center;

  gap: 30px;

}


.top-bar-item {

  display: flex;

  align-items: center;

  gap: 8px;

  font-size: 12px;

  color:
    rgba(255, 255, 255, 0.72);

}


.top-bar-item i {

  color:
    var(--color-beige);

}


.top-bar-phone {

  color:
    var(--color-white);

  font-weight: 700;

  transition:
    color var(--transition);

}


.top-bar-phone:hover {

  color:
    var(--color-beige);

}

/* 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 */

/* =========================================================
   COLORS
========================================================= */

:root {

  /* Main Colors */
  --color-charcoal: #292624;
  --color-charcoal-soft: #3a3532;

  --color-brown: #8b7460;
  --color-brown-dark: #594937;

  /* Taupe / Beige */
  --color-taupe: #998876;
  --color-beige: #c6b6a7;
  --color-beige-light: #d0c6b8;

  /* Backgrounds */
  --color-white: #ffffff;
  --color-off-white: #f7f6f5;
  --color-cream: #f1ece7;
  --color-section-bg: #f7f3ef;

  /* Text */
  --color-text-dark: #292624;
  --color-text: #665f59;
  --color-text-light: #a6a19a;

  /* Border */
  --color-border: #ded8d2;

  --transition: 300ms ease;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: relative;
  z-index: 1050;

  width: 100%;

  background:
    var(--color-white);

  box-shadow:
    0 8px 35px rgba(41, 38, 36, 0.07);
}


.custom-navbar {
  position: relative;

  min-height: 90px;

  padding: 0;

  background:
    var(--color-white);
}


/* =========================================================
   BRAND
========================================================= */

.navbar-brand {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-right: 25px;

  padding: 0;

  text-decoration: none;
}


/* Logo Image */

.brand-icon {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 80px;
  height: 80px;

  overflow: hidden;
}


.brand-icon img {
  width: 80px;
  height: 80px;

  display: block;

  object-fit: contain;

  transition:
    transform 400ms ease;
}


.navbar-brand:hover .brand-icon img {
  transform:
    scale(1.05);
}


/* Brand Text */

.brand-copy {
  display: block;

  line-height: 1.05;
}


.brand-name {
  display: block;

  color:
    var(--color-charcoal);

  font-size: 18px;

  font-weight: 800;

  letter-spacing: -0.6px;
}


.brand-subtitle {
  display: block;

  margin-top: 6px;

  color:
    var(--color-brown);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 2px;

  text-transform: uppercase;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navbar-nav {
  gap: 0;
}


.navbar-nav .nav-item {
  position: relative;
}


.navbar-nav .nav-link {
  position: relative;

  display: flex;
  align-items: center;

  padding:
    34px 11px !important;

  color:
    var(--color-charcoal-soft);

  font-size: 14px;

  line-height: 1;

  font-weight: 700;

  letter-spacing: -0.2px;

  white-space: nowrap;

  transition:
    color var(--transition);
}


/* Bottom Hover Line */

.navbar-nav .nav-link::before {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 24px;

  width: 0;
  height: 2px;

  background:
    var(--color-brown);

  transform:
    translateX(-50%);

  transition:
    width var(--transition);
}


.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color:
    var(--color-brown);
}


.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: 25px;
}


/* =========================================================
   DROPDOWN ARROW
========================================================= */

.navbar-nav .dropdown-toggle::after {
  margin-left: 7px;

  border-top-width: 4px;
  border-right-width: 4px;
  border-left-width: 4px;

  transition:
    transform var(--transition);
}


.services-dropdown:hover .dropdown-toggle::after {
  transform:
    rotate(180deg);
}


/* =========================================================
   SERVICES DROPDOWN
========================================================= */

.dropdown-menu {
  min-width: 290px;

  margin: 0;

  padding: 10px;

  border: 0;

  border-radius: 0;

  background:
    var(--color-white);

  box-shadow:
    0 25px 60px rgba(41, 38, 36, 0.16);
}


/* Accent line */

.dropdown-menu::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background:
    var(--color-brown);
}


/* Dropdown Link */

.dropdown-item {
  position: relative;

  display: flex;
  align-items: center;

  gap: 11px;

  padding:
    13px 14px;

  color:
    var(--color-charcoal);

  font-size: 14px;

  line-height: 1.35;

  font-weight: 650;

  white-space: nowrap;

  transition:
    color var(--transition),
    background var(--transition),
    padding-left var(--transition);
}


/* Dropdown Icons */

.dropdown-item i {
  width: 24px;

  flex: 0 0 24px;

  color:
    var(--color-brown);

  font-size: 15px;

  text-align: center;

  transition:
    transform var(--transition);
}


.dropdown-item:hover,
.dropdown-item:focus {
  padding-left: 19px;

  color:
    var(--color-brown-dark);

  background:
    var(--color-section-bg);
}


.dropdown-item:hover i {
  transform:
    translateX(2px);
}


/* =========================================================
   DESKTOP HOVER DROPDOWN
========================================================= */

@media (min-width: 1200px) {

  /*
   * The dropdown is always rendered on desktop,
   * but hidden with opacity/visibility.
   *
   * This avoids the common problem where the menu disappears
   * while moving the mouse from "Services" into the dropdown.
   */

  .services-dropdown>.dropdown-menu {
    display: block !important;

    position: absolute;

    top: 100%;
    left: 0;

    margin-top: 0;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
      translateY(10px);

    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 220ms ease;
  }


  /* Invisible hover bridge */

  .services-dropdown>.dropdown-menu::after {
    content: "";

    position: absolute;

    left: 0;
    top: -14px;

    width: 100%;
    height: 14px;

    background:
      transparent;
  }


  /* Open on hover */

  .services-dropdown:hover>.dropdown-menu,
  .services-dropdown:focus-within>.dropdown-menu {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
      translateY(0);
  }


  /* Keep Services highlighted */

  .services-dropdown:hover>.nav-link {
    color:
      var(--color-brown);
  }


  .services-dropdown:hover>.nav-link::before {
    width: 25px;
  }

}


/* =========================================================
   NAVBAR CTA
========================================================= */

.navbar-cta {
  position: relative;

  min-height: 52px;

  display: flex;
  align-items: center;

  gap: 10px;

  margin-left: 16px;

  padding:
    7px 17px 7px 7px;

  overflow: hidden;

  color:
    var(--color-white);

  background:
    var(--color-brown);

  border:
    1px solid var(--color-brown);

  text-decoration: none;

  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}


/* CTA Shine */

.navbar-cta::before {
  content: "";

  position: absolute;

  top: 0;
  left: -100%;

  width: 45%;
  height: 100%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .28),
      transparent);

  transform:
    skewX(-20deg);

  transition:
    left 600ms ease;
}


.navbar-cta:hover::before {
  left: 135%;
}


.navbar-cta:hover {
  color:
    var(--color-white);

  background:
    var(--color-charcoal);

  border-color:
    var(--color-charcoal);

  transform:
    translateY(-2px);

  box-shadow:
    0 12px 30px rgba(41, 38, 36, 0.19);
}


/* CTA Icon */

.navbar-cta-icon {
  position: relative;
  z-index: 2;

  width: 37px;
  height: 37px;

  flex: 0 0 37px;

  display: flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid rgba(255, 255, 255, 0.2);

  font-size: 14px;
}


.navbar-cta:hover .navbar-cta-icon i {
  animation:
    navbarPhoneRing .6s ease;
}


/* CTA Copy */

.navbar-cta-copy {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;

  line-height: 1.1;
}


.navbar-cta-copy small {
  color:
    rgba(255, 255, 255, .7);

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.navbar-cta-copy strong {
  margin-top: 4px;

  color:
    var(--color-white);

  font-size: 13px;

  font-weight: 800;
}


/* =========================================================
   MOBILE TOGGLER
========================================================= */

.navbar-toggler {
  width: 46px;
  height: 46px;

  padding: 0;

  border:
    1px solid var(--color-border);

  border-radius: 0;

  box-shadow:
    none !important;
}


.navbar-toggler-icon {
  position: relative;

  width: 22px;
  height: 16px;

  background-image:
    none !important;

  border-top:
    2px solid var(--color-charcoal);

  border-bottom:
    2px solid var(--color-charcoal);
}


.navbar-toggler-icon::after {
  content: "";

  position: absolute;

  left: 0;
  top: 5px;

  width: 100%;
  height: 2px;

  background:
    var(--color-charcoal);
}


/* =========================================================
   PHONE ANIMATION
========================================================= */

@keyframes navbarPhoneRing {

  0%,
  100% {
    transform:
      rotate(0);
  }

  25% {
    transform:
      rotate(-10deg);
  }

  50% {
    transform:
      rotate(10deg);
  }

  75% {
    transform:
      rotate(-6deg);
  }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1399.98px) and (min-width: 1200px) {

  .navbar-brand {
    margin-right: 15px;
  }


  .brand-icon {
    width: 67px;
    height: 67px;
  }


  .brand-icon img {
    width: 67px;
    height: 67px;
  }


  .brand-name {
    font-size: 16px;
  }


  .navbar-nav .nav-link {
    padding:
      34px 8px !important;

    font-size: 13px;
  }


  .navbar-cta {
    margin-left: 10px;

    padding-right: 12px;
  }


  .navbar-cta-copy strong {
    font-size: 12px;
  }

}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 1199.98px) {

  .custom-navbar {
    min-height: 78px;

    padding:
      7px 0;
  }


  .brand-icon {
    width: 64px;
    height: 64px;
  }


  .brand-icon img {
    width: 64px;
    height: 64px;
  }


  .brand-name {
    font-size: 16px;
  }


  .brand-subtitle {
    margin-top: 5px;

    font-size: 7px;

    letter-spacing: 1.7px;
  }


  .navbar-collapse {
    margin-top: 8px;

    padding:
      12px 0 22px;

    border-top:
      1px solid var(--color-border);

    background:
      var(--color-white);
  }


  .navbar-nav {
    align-items: stretch !important;
  }


  .navbar-nav .nav-link {
    padding:
      15px 5px !important;

    font-size: 15px;

    border-bottom:
      1px solid rgba(41, 38, 36, .07);
  }


  .navbar-nav .nav-link::before {
    display: none;
  }


  /* Mobile dropdown uses normal Bootstrap click behavior */

  .dropdown-menu {
    min-width: 100%;

    margin:
      0 0 5px;

    padding:
      6px 0 6px 15px;

    border-left:
      2px solid var(--color-brown);

    box-shadow: none;

    background:
      var(--color-section-bg);
  }


  .dropdown-menu::before {
    display: none;
  }


  .dropdown-item {
    padding:
      12px 13px;

    font-size: 14px;
  }


  .dropdown-item:hover,
  .dropdown-item:focus {
    padding-left: 18px;
  }


  /* Phone button */

  .navbar-cta {
    width: 100%;

    min-height: 60px;

    margin:
      15px 0 0;

    justify-content: flex-start;
  }


  .navbar-cta-copy small {
    font-size: 8px;
  }


  .navbar-cta-copy strong {
    font-size: 15px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

  .custom-navbar {
    min-height: 72px;
  }


  .navbar-brand {
    gap: 8px;

    max-width:
      calc(100% - 58px);
  }


  .brand-icon {
    width: 53px;
    height: 53px;

    flex: 0 0 53px;
  }


  .brand-icon img {
    width: 53px;
    height: 53px;
  }


  .brand-name {
    font-size: 14px;

    letter-spacing: -.4px;
  }


  .brand-subtitle {
    font-size: 6px;

    letter-spacing: 1.3px;
  }


  .navbar-toggler {
    width: 42px;
    height: 42px;
  }


  .navbar-nav .nav-link {
    font-size: 14px;
  }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

  .brand-icon {
    width: 46px;
    height: 46px;

    flex-basis: 46px;
  }


  .brand-icon img {
    width: 46px;
    height: 46px;
  }


  .brand-name {
    font-size: 12px;
  }


  .brand-subtitle {
    font-size: 5px;

    letter-spacing: 1px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .site-header *,
  .site-header *::before,
  .site-header *::after {
    animation: none !important;

    transition-duration: .01ms !important;
  }

}

/* 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 */

/* =========================================================
   GOOGLE FONTS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');


/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
  position: relative;

  min-height: 760px;

  overflow: hidden;
  isolation: isolate;

  background: var(--color-charcoal);

  font-family: "Manrope", sans-serif;
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.hero-bg-pattern {
  position: absolute;
  inset: 0;

  z-index: -20;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px);

  background-size: 52px 52px;

  animation:
    heroGridMove 18s linear infinite;
}


/* =========================================================
   BIG ANIMATED SHAPES
========================================================= */

.hero-shape {
  position: absolute;

  pointer-events: none;

  z-index: -8;
}


/* Large rotating square */

.hero-shape-one {
  width: 430px;
  height: 430px;

  left: -260px;
  bottom: -210px;

  border:
    1px solid rgba(198, 182, 167, 0.2);

  transform:
    rotate(45deg);

  animation:
    heroRotateShape 22s linear infinite;
}


/* Beige transparent square */

.hero-shape-two {
  width: 170px;
  height: 170px;

  left: 42%;
  top: -110px;

  background:
    rgba(198, 182, 167, 0.07);

  border:
    1px solid rgba(198, 182, 167, 0.2);

  transform:
    rotate(45deg);

  animation:
    heroShapeFloat 6s ease-in-out infinite;
}


/* Small moving diamond */

.hero-shape-three {
  width: 45px;
  height: 45px;

  left: 47%;
  bottom: 110px;

  background:
    var(--color-brown);

  opacity: 0.28;

  transform:
    rotate(45deg);

  animation:
    heroDiamondMove 7s ease-in-out infinite;
}


/* =========================================================
   ANIMATED DIAGONAL SHAPES
========================================================= */

.hero-diagonal {
  position: absolute;

  top: -20%;

  height: 140%;

  transform:
    skewX(-17deg);

  pointer-events: none;
}


/* Beige strip */

.hero-diagonal-one {
  width: 95px;

  left: 48%;

  z-index: -11;

  background:
    rgba(153, 136, 118, 0.15);

  animation:
    diagonalMoveOne 7s ease-in-out infinite;
}


/* Thin bright strip */

.hero-diagonal-two {
  width: 2px;

  left: 53%;

  z-index: -10;

  background:
    linear-gradient(transparent,
      var(--color-beige),
      transparent);

  opacity: 0.6;

  animation:
    diagonalMoveTwo 5s ease-in-out infinite;
}


/* =========================================================
   HERO GLOW
========================================================= */

.hero-glow {
  position: absolute;

  width: 550px;
  height: 550px;

  left: 29%;
  top: 10%;

  z-index: -15;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(198, 182, 167, 0.13) 0%,
      rgba(198, 182, 167, 0.03) 45%,
      transparent 70%);

  animation:
    heroGlowPulse 4s ease-in-out infinite;
}


/* =========================================================
   CONTAINER
========================================================= */

.hero-container {
  position: relative;

  z-index: 10;
}


.hero-row {
  min-height: 695px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
  position: relative;

  z-index: 10;

  max-width: 700px;

  padding:
    85px 35px 95px 0;
}


/* =========================================================
   EYEBROW
========================================================= */

.hero-eyebrow {
  width: fit-content;

  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 22px;

  padding:
    8px 15px 8px 8px;

  background:
    rgba(198, 182, 167, 0.1);

  border:
    1px solid rgba(198, 182, 167, 0.18);

  color:
    var(--color-beige-light);

  font-family:
    "Sora", sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  animation:
    heroSlideRight 0.8s 0.1s cubic-bezier(.2, .8, .2, 1) both;
}


.hero-eyebrow-icon {
  width: 34px;
  height: 34px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  animation:
    eyebrowIconPulse 2.2s ease-in-out infinite;
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-title {
  max-width: 660px;

  margin:
    0 0 25px;

  color:
    var(--color-white);

  font-family:
    "Sora", sans-serif;

  font-size:
    clamp(48px, 4.7vw, 68px);

  line-height: 1.02;

  font-weight: 700;

  letter-spacing:
    -3.2px;

  animation:
    heroTitleReveal 1s 0.18s cubic-bezier(.2, .8, .2, 1) both;
}


.hero-title span {
  position: relative;

  display: block;

  margin-top: 5px;

  color:
    var(--color-beige);

  font-weight: 700;
}


/* Animated underline */

.hero-title span::after {
  content: "";

  display: block;

  width: 95px;
  height: 3px;

  margin-top: 17px;

  background:
    var(--color-brown);

  transform-origin:
    left;

  animation:
    heroLineReveal 1.1s 0.8s ease both;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {
  max-width: 640px;

  margin:
    0 0 33px;

  color:
    rgba(255, 255, 255, 0.72);

  font-family:
    "Manrope", sans-serif;

  font-size: 15px;

  line-height: 1.8;

  font-weight: 500;

  animation:
    heroFadeUp 0.9s 0.4s ease both;
}


.hero-description strong {
  color:
    var(--color-beige-light);

  font-weight: 800;
}


/* =========================================================
   HERO ACTIONS
========================================================= */

.hero-actions {
  display: flex;

  align-items: stretch;

  flex-wrap: wrap;

  gap: 13px;

  animation:
    heroFadeUp 0.9s 0.55s ease both;
}


.hero-btn {
  min-height: 64px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  font-family:
    "Sora", sans-serif;

  text-decoration: none;

  transition:
    transform 300ms ease,
    background 300ms ease,
    color 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.hero-btn-call {
  position: relative;

  min-width: 272px;

  overflow: hidden;

  gap: 12px;

  padding:
    8px 17px;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  border:
    1px solid var(--color-beige);

  box-shadow:
    0 13px 35px rgba(0, 0, 0, 0.16);

  animation:
    callButtonPulse 3s ease-in-out infinite;
}


/* Animated shine */

.hero-btn-call::before {
  content: "";

  position: absolute;

  top: 0;
  left: -100%;

  width: 65%;
  height: 100%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.65),
      transparent);

  transform:
    skewX(-20deg);

  animation:
    callButtonShine 3.5s ease-in-out infinite;
}


.hero-btn-call:hover {
  color:
    var(--color-white);

  background:
    var(--color-brown);

  border-color:
    var(--color-brown);

  transform:
    translateY(-5px) scale(1.02);

  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.25);
}


.hero-call-btn-icon {
  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  font-size: 17px;

  animation:
    phoneIconShake 3s ease-in-out infinite;
}


.hero-call-btn-copy {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  line-height: 1.1;
}


.hero-call-btn-copy small {
  margin-bottom: 4px;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: .8px;

  text-transform: uppercase;

  opacity: .78;
}


.hero-call-btn-copy strong {
  font-family:
    "Sora", sans-serif;

  font-size: 21px;

  font-weight: 700;
}


.hero-btn-arrow {
  position: relative;

  z-index: 2;

  margin-left: auto;

  font-size: 16px;

  transition:
    transform 300ms ease;
}


.hero-btn-call:hover .hero-btn-arrow {
  transform:
    translate(4px, -4px);
}


/* =========================================================
   FREE ESTIMATE BUTTON
========================================================= */

.hero-btn-estimate {
  gap: 10px;

  min-width: 180px;

  padding:
    0 22px;

  color:
    var(--color-white);

  background:
    rgba(255, 255, 255, 0.03);

  border:
    1px solid rgba(255, 255, 255, 0.26);

  font-size: 13px;

  font-weight: 700;
}


.hero-btn-estimate i {
  color:
    var(--color-beige);

  font-size: 18px;

  transition:
    transform 300ms ease;
}


.hero-btn-estimate:hover {
  color:
    var(--color-charcoal);

  background:
    var(--color-white);

  border-color:
    var(--color-white);

  transform:
    translateY(-5px);
}


.hero-btn-estimate:hover i {
  color:
    var(--color-brown);

  transform:
    rotate(-8deg) scale(1.15);
}


/* =========================================================
   HERO FEATURES
========================================================= */

.hero-features {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 22px;

  margin-top: 40px;

  padding-top: 28px;

  border-top:
    1px solid rgba(255, 255, 255, 0.1);

  animation:
    heroFadeUp 0.9s 0.7s ease both;
}


.hero-feature {
  display: flex;

  align-items: center;

  gap: 9px;

  color:
    rgba(255, 255, 255, 0.77);

  font-family:
    "Manrope", sans-serif;

  font-size: 12px;

  font-weight: 700;

  transition:
    transform 300ms ease;
}


.hero-feature:hover {
  transform:
    translateY(-4px);
}


.hero-feature-icon {
  width: 34px;
  height: 34px;

  flex: 0 0 34px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    rgba(198, 182, 167, 0.09);

  border:
    1px solid rgba(198, 182, 167, 0.22);

  transition:
    background 300ms ease,
    color 300ms ease,
    transform 300ms ease;
}


.hero-feature:hover .hero-feature-icon {
  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  transform:
    rotate(8deg) scale(1.12);
}


/* =========================================================
   HERO IMAGE AREA
========================================================= */

.hero-visual {
  position: relative;

  width: 100%;

  min-height: 640px;

  display: flex;

  align-items: center;
  justify-content: flex-end;

  padding:
    48px 0 70px 30px;
}


/* =========================================================
   BACK BEIGE SHAPE
========================================================= */

.hero-image-back-shape {
  position: absolute;

  width: 87%;
  height: 85%;

  right: -11%;
  top: 8%;

  background:
    var(--color-taupe);

  opacity: .88;

  clip-path:
    polygon(23% 0,
      100% 0,
      100% 100%,
      0 100%,
      17% 54%);

  animation:
    heroBackShape 5s ease-in-out infinite;
}


/* =========================================================
   MOVING IMAGE FRAMES
========================================================= */

.hero-image-border {
  position: absolute;

  z-index: 1;

  width: 78%;
  height: 83%;

  right: 1%;
  top: 4%;

  border:
    2px solid rgba(198, 182, 167, 0.36);

  animation:
    heroFrameMove 4.5s ease-in-out infinite;
}


.hero-image-border-second {
  position: absolute;

  z-index: 1;

  width: 72%;
  height: 76%;

  right: 8%;
  top: 12%;

  border:
    1px solid rgba(255, 255, 255, 0.16);

  animation:
    heroFrameMoveSecond 5.5s ease-in-out infinite;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image-wrapper {
  position: relative;

  z-index: 3;

  width: 84%;
  height: 570px;

  overflow: hidden;

  clip-path:
    polygon(17% 0,
      100% 0,
      100% 100%,
      0 100%,
      0 20%);

  box-shadow:
    -35px 40px 75px rgba(0, 0, 0, 0.32);

  animation:
    heroImageEntrance 1.2s cubic-bezier(.2, .8, .2, 1) both;
}


.hero-image {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  animation:
    heroImageZoom 10s ease-in-out infinite alternate;
}


.hero-image-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(180deg,
      rgba(41, 38, 36, 0.02) 30%,
      rgba(41, 38, 36, 0.5) 100%);

  pointer-events: none;
}


/* =========================================================
   IMAGE SHINE
========================================================= */

.hero-image-shine {
  position: absolute;

  top: -20%;
  left: -80%;

  width: 55%;
  height: 150%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.13),
      transparent);

  transform:
    skewX(-20deg);

  animation:
    heroImageShine 5s ease-in-out infinite;

  pointer-events: none;
}


/* =========================================================
   IMAGE TAG
========================================================= */

.hero-image-tag {
  position: absolute;

  top: 25px;
  right: 25px;

  z-index: 4;

  display: flex;

  align-items: center;

  gap: 8px;

  padding:
    9px 13px;

  color:
    var(--color-charcoal);

  background:
    rgba(255, 255, 255, 0.94);

  backdrop-filter:
    blur(8px);

  font-family:
    "Sora", sans-serif;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

  animation:
    imageTagFloat 4s ease-in-out infinite;
}


.hero-image-tag-icon {
  color:
    var(--color-brown);
}


/* =========================================================
   FLOATING CARD
========================================================= */

.hero-floating-card {
  position: absolute;

  z-index: 7;

  left: 1%;
  bottom: 97px;

  min-width: 285px;

  display: flex;

  align-items: center;

  gap: 14px;

  padding:
    16px 19px;

  background:
    rgba(255, 255, 255, 0.97);

  backdrop-filter:
    blur(12px);

  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.22);

  animation:
    floatingCardBig 3.7s ease-in-out infinite;
}


.floating-card-icon {
  width: 52px;
  height: 52px;

  flex: 0 0 52px;

  display: flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  font-size: 20px;
}


.floating-card-copy {
  display: flex;

  flex-direction: column;
}


.floating-card-copy small {
  margin-bottom: 3px;

  color:
    var(--color-text);

  font-family:
    "Manrope", sans-serif;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: .8px;

  text-transform: uppercase;
}


.floating-card-copy strong {
  color:
    var(--color-charcoal);

  font-family:
    "Sora", sans-serif;

  font-size: 14px;

  font-weight: 700;
}


/* =========================================================
   SAME DAY BADGE
========================================================= */

.hero-service-badge {
  position: absolute;

  z-index: 8;

  right: -4px;
  bottom: 80px;

  width: 104px;
  height: 104px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  border-radius: 50%;

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.2);

  animation:
    serviceBadgeFloat 4s ease-in-out infinite;
}


.service-badge-ring {
  width: 65px;
  height: 52px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-bottom:
    1px solid rgba(41, 38, 36, 0.25);

  text-align: center;

  font-family:
    "Sora", sans-serif;

  font-size: 14px;

  font-weight: 800;

  line-height: 1;
}


.hero-service-badge small {
  margin-top: 5px;

  font-family:
    "Manrope", sans-serif;

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 1.6px;
}


/* =========================================================
   DECORATIVE NUMBER
========================================================= */

.hero-decor-number {
  position: absolute;

  z-index: 2;

  right: -20px;
  top: 40px;

  color:
    rgba(255, 255, 255, 0.08);

  font-family:
    "Sora", sans-serif;

  font-size: 125px;

  font-weight: 800;

  line-height: 1;

  letter-spacing: -10px;

  animation:
    decorNumberFloat 6s ease-in-out infinite;
}


/* =========================================================
   BOTTOM SERVICES STRIP
========================================================= */

.hero-bottom-strip {
  position: relative;

  z-index: 20;

  min-height: 80px;

  display: flex;

  align-items: center;

  background:
    rgba(24, 22, 21, 0.98);

  border-top:
    1px solid rgba(255, 255, 255, 0.08);
}


.hero-bottom-inner {
  min-height: 80px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


/* =========================================================
   GARAGE DOOR SOLUTIONS LABEL
========================================================= */

.hero-bottom-label {
  flex: 0 0 auto;

  padding-right: 30px;

  border-right:
    1px solid rgba(255, 255, 255, 0.13);
}


.hero-bottom-label span {
  color:
    var(--color-beige);

  font-family:
    "Sora", sans-serif;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: .2px;

  text-transform: none;

  white-space: nowrap;
}


/* =========================================================
   BOTTOM SERVICES
========================================================= */

.hero-bottom-services {
  flex: 1;

  display: flex;

  align-items: center;

  gap: 21px;

  color:
    rgba(255, 255, 255, 0.84);

  font-family:
    "Sora", sans-serif;

  font-size: 14px;

  font-weight: 600;

  letter-spacing: -.2px;
}


.hero-bottom-services span {
  position: relative;

  white-space: nowrap;

  transition:
    color 300ms ease,
    transform 300ms ease;
}


.hero-bottom-services span:hover {
  color:
    var(--color-beige);

  transform:
    translateY(-2px);
}


.hero-bottom-services i {
  flex: 0 0 auto;

  color:
    var(--color-brown);

  font-size: 5px;

  animation:
    diamondPulse 1.7s ease-in-out infinite;
}


/* =========================================================
   BOTTOM CALL LINK
========================================================= */

.hero-bottom-link {
  flex: 0 0 auto;

  display: inline-flex;

  align-items: center;

  gap: 9px;

  color:
    var(--color-white);

  font-family:
    "Sora", sans-serif;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: .5px;

  text-transform: uppercase;

  text-decoration: none;

  transition:
    color 300ms ease;
}


.hero-bottom-link i {
  font-size: 15px;

  transition:
    transform 300ms ease;
}


.hero-bottom-link:hover {
  color:
    var(--color-beige);
}


.hero-bottom-link:hover i {
  transform:
    translateX(6px);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes heroGridMove {

  from {
    background-position:
      0 0;
  }

  to {
    background-position:
      104px 52px;
  }

}


@keyframes heroRotateShape {

  from {
    transform:
      rotate(45deg);
  }

  to {
    transform:
      rotate(405deg);
  }

}


@keyframes heroShapeFloat {

  0%,
  100% {
    transform:
      rotate(45deg) translateY(0);
  }

  50% {
    transform:
      rotate(55deg) translateY(25px);
  }

}


@keyframes heroDiamondMove {

  0%,
  100% {
    transform:
      rotate(45deg) translate(0, 0);
  }

  50% {
    transform:
      rotate(135deg) translate(25px, -35px);
  }

}


@keyframes diagonalMoveOne {

  0%,
  100% {
    transform:
      skewX(-17deg) translateX(0);
  }

  50% {
    transform:
      skewX(-17deg) translateX(35px);
  }

}


@keyframes diagonalMoveTwo {

  0%,
  100% {
    opacity: .25;

    transform:
      skewX(-17deg) translateX(0);
  }

  50% {
    opacity: .8;

    transform:
      skewX(-17deg) translateX(-25px);
  }

}


@keyframes heroGlowPulse {

  0%,
  100% {
    opacity: .55;

    transform:
      scale(.9);
  }

  50% {
    opacity: 1;

    transform:
      scale(1.15);
  }

}


@keyframes heroSlideRight {

  from {
    opacity: 0;

    transform:
      translateX(-45px);
  }

  to {
    opacity: 1;

    transform:
      translateX(0);
  }

}


@keyframes heroTitleReveal {

  from {
    opacity: 0;

    transform:
      translateY(45px) scale(.96);
  }

  to {
    opacity: 1;

    transform:
      translateY(0) scale(1);
  }

}


@keyframes heroLineReveal {

  from {
    opacity: 0;

    transform:
      scaleX(0);
  }

  to {
    opacity: 1;

    transform:
      scaleX(1);
  }

}


@keyframes heroFadeUp {

  from {
    opacity: 0;

    transform:
      translateY(30px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }

}


@keyframes eyebrowIconPulse {

  0%,
  100% {
    transform:
      scale(1);
  }

  50% {
    transform:
      scale(1.13);
  }

}


@keyframes callButtonPulse {

  0%,
  100% {
    box-shadow:
      0 13px 35px rgba(0, 0, 0, 0.16);
  }

  50% {
    box-shadow:
      0 16px 42px rgba(198, 182, 167, 0.28);
  }

}


@keyframes callButtonShine {

  0% {
    left: -100%;
  }

  45%,
  100% {
    left: 150%;
  }

}


@keyframes phoneIconShake {

  0%,
  84%,
  100% {
    transform:
      rotate(0);
  }

  88% {
    transform:
      rotate(-10deg);
  }

  92% {
    transform:
      rotate(10deg);
  }

  96% {
    transform:
      rotate(-5deg);
  }

}


@keyframes heroBackShape {

  0%,
  100% {
    transform:
      translateY(0) translateX(0);
  }

  50% {
    transform:
      translateY(-15px) translateX(8px);
  }

}


@keyframes heroFrameMove {

  0%,
  100% {
    transform:
      translate(18px, -17px);
  }

  50% {
    transform:
      translate(30px, -7px);
  }

}


@keyframes heroFrameMoveSecond {

  0%,
  100% {
    transform:
      translate(-6px, 10px);
  }

  50% {
    transform:
      translate(-18px, 20px);
  }

}


@keyframes heroImageEntrance {

  from {
    opacity: 0;

    transform:
      translateX(80px) scale(.93);
  }

  to {
    opacity: 1;

    transform:
      translateX(0) scale(1);
  }

}


@keyframes heroImageZoom {

  from {
    transform:
      scale(1.03);
  }

  to {
    transform:
      scale(1.13);
  }

}


@keyframes heroImageShine {

  0%,
  25% {
    left: -80%;
  }

  70%,
  100% {
    left: 150%;
  }

}


@keyframes imageTagFloat {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(8px);
  }

}


@keyframes floatingCardBig {

  0%,
  100% {
    transform:
      translateY(0) rotate(0);
  }

  50% {
    transform:
      translateY(-14px) rotate(-1deg);
  }

}


@keyframes serviceBadgeFloat {

  0%,
  100% {
    transform:
      translateY(0) rotate(0);
  }

  50% {
    transform:
      translateY(-13px) rotate(5deg);
  }

}


@keyframes decorNumberFloat {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(18px);
  }

}


@keyframes diamondPulse {

  0%,
  100% {
    opacity: .4;

    transform:
      scale(.75);
  }

  50% {
    opacity: 1;

    transform:
      scale(1.25);
  }

}


/* =========================================================
   RESPONSIVE - LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

  .hero-title {
    font-size: 56px;

    letter-spacing:
      -2.7px;
  }


  .hero-content {
    padding-right: 20px;
  }


  .hero-image-wrapper {
    width: 89%;
  }


  .hero-bottom-label span,
  .hero-bottom-services {
    font-size: 13px;
  }


  .hero-bottom-services {
    gap: 15px;
  }

}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991.98px) {

  .hero-section {
    min-height: auto;
  }


  .hero-row {
    min-height: auto;
  }


  .hero-content {
    max-width: 760px;

    padding:
      85px 0 45px;
  }


  .hero-title {
    max-width: 650px;

    font-size:
      clamp(46px, 7vw, 58px);
  }


  .hero-description {
    max-width: 700px;
  }


  .hero-diagonal-one {
    left: 76%;
  }


  .hero-diagonal-two {
    left: 83%;
  }


  .hero-glow {
    left: 30%;
  }


  .hero-visual {
    min-height: 610px;

    justify-content: center;

    padding:
      25px 0 90px;
  }


  .hero-image-wrapper {
    width: 82%;

    height: 520px;
  }


  .hero-image-back-shape {
    width: 77%;

    right: 0;
  }


  .hero-service-badge {
    right: 5%;
  }


  .hero-bottom-inner {
    min-height: auto;

    padding:
      18px 0;

    flex-wrap: wrap;
  }


  .hero-bottom-services {
    order: 3;

    width: 100%;

    flex-basis: 100%;

    flex-wrap: wrap;
  }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .hero-content {
    padding:
      70px 0 35px;
  }


  .hero-eyebrow {
    font-size: 9px;
  }


  .hero-title {
    font-size:
      clamp(40px, 10vw, 50px);

    line-height: 1.04;

    letter-spacing:
      -2px;
  }


  .hero-title span::after {
    width: 80px;

    height: 3px;
  }


  .hero-description {
    font-size: 14px;

    line-height: 1.75;
  }


  .hero-actions {
    display: grid;

    grid-template-columns:
      1fr;
  }


  .hero-btn-call,
  .hero-btn-estimate {
    width: 100%;

    min-width: 0;
  }


  .hero-btn-call {
    justify-content: flex-start;
  }


  .hero-btn-estimate {
    min-height: 58px;
  }


  .hero-features {
    display: grid;

    grid-template-columns:
      1fr 1fr;

    gap: 13px;
  }


  .hero-shape-two,
  .hero-shape-three {
    opacity: .5;
  }


  .hero-visual {
    min-height: 510px;

    padding:
      20px 0 80px;
  }


  .hero-image-wrapper {
    width: 95%;

    height: 440px;
  }


  .hero-image-border {
    width: 84%;
  }


  .hero-image-border-second {
    width: 76%;
  }


  .hero-floating-card {
    left: 0;

    bottom: 70px;

    min-width: 240px;
  }


  .hero-service-badge {
    width: 88px;
    height: 88px;

    right: 0;
    bottom: 55px;
  }


  .service-badge-ring {
    width: 56px;
    height: 45px;

    font-size: 12px;
  }


  .hero-decor-number {
    font-size: 85px;
  }


  .hero-bottom-strip {
    min-height: auto;
  }


  .hero-bottom-inner {
    padding:
      18px 0;

    flex-wrap: wrap;

    gap: 14px;
  }


  .hero-bottom-label {
    width: 100%;

    padding-right: 0;

    border-right: 0;
  }


  .hero-bottom-label span {
    font-size: 14px;
  }


  .hero-bottom-services {
    width: 100%;

    flex-basis: 100%;

    gap:
      11px 15px;

    font-size: 13px;

    flex-wrap: wrap;
  }


  .hero-bottom-link {
    font-size: 11px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .hero-title {
    font-size: 39px;

    letter-spacing:
      -1.7px;
  }


  .hero-description {
    font-size: 14px;
  }


  .hero-features {
    grid-template-columns:
      1fr;
  }


  .hero-image-wrapper {
    width: 100%;

    height: 390px;

    clip-path:
      polygon(12% 0,
        100% 0,
        100% 100%,
        0 100%,
        0 13%);
  }


  .hero-image-border-second {
    display: none;
  }


  .hero-floating-card {
    left: 10px;
    right: 10px;

    min-width: 0;
  }


  .hero-service-badge {
    top: 10px;

    right: 5px;
    bottom: auto;

    width: 78px;
    height: 78px;
  }


  .hero-image-tag {
    display: none;
  }


  .hero-bottom-label span {
    font-size: 13px;
  }


  .hero-bottom-services {
    font-size: 12px;

    gap:
      10px 12px;
  }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .hero-section *,
  .hero-section *::before,
  .hero-section *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }

}

/* 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 */


/* =========================================================
   BEFORE / AFTER SECTION
========================================================= */

.ba-section {
  position: relative;
  padding: 115px 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-off-white);
}


/* =========================================================
   BACKGROUND
========================================================= */

.ba-pattern {
  position: absolute;
  inset: 0;
  z-index: -5;

  background-image:
    linear-gradient(rgba(41, 38, 36, 0.03) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(41, 38, 36, 0.03) 1px,
      transparent 1px);

  background-size: 55px 55px;
}


.ba-decor {
  position: absolute;
  z-index: -4;
  pointer-events: none;
}


.ba-decor-one {
  width: 300px;
  height: 300px;

  left: -180px;
  top: 140px;

  border: 1px solid rgba(139, 116, 96, 0.14);

  transform: rotate(45deg);

  animation: baDecorRotate 28s linear infinite;
}


.ba-decor-two {
  width: 180px;
  height: 180px;

  right: -90px;
  bottom: 120px;

  background: rgba(139, 116, 96, 0.06);

  transform: rotate(45deg);

  animation: baDecorFloat 6s ease-in-out infinite;
}


/* =========================================================
   HEADING
========================================================= */

.ba-heading {
  position: relative;
  z-index: 2;

  max-width: 850px;

  margin: 0 auto 65px;
}


.ba-eyebrow {
  width: fit-content;

  display: inline-flex;
  align-items: center;

  gap: 9px;

  margin-bottom: 20px;

  padding: 7px 14px 7px 7px;

  color: var(--color-brown-dark);

  background: rgba(139, 116, 96, 0.1);

  border:
    1px solid rgba(139, 116, 96, 0.16);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  animation: baFadeDown 700ms ease both;
}


.ba-eyebrow-icon {
  width: 32px;
  height: 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--color-white);

  background: var(--color-brown);

  font-size: 14px;
}


.ba-main-title {
  margin: 0;

  color: var(--color-charcoal);

  font-size: clamp(48px, 5vw, 72px);

  line-height: 1.02;

  font-weight: 800;

  letter-spacing: -3.5px;

  animation:
    baFadeUp 800ms 100ms ease both;
}


.ba-main-title span {
  display: block;

  color: var(--color-brown);
}


.ba-main-description {
  max-width: 720px;

  margin: 22px auto 0;

  color: var(--color-text);

  font-size: 16px;

  line-height: 1.8;

  animation:
    baFadeUp 800ms 200ms ease both;
}


/* =========================================================
   IMAGE ROW
========================================================= */

.ba-images-row {
  position: relative;

  z-index: 3;
}


/* =========================================================
   IMAGE CARD
========================================================= */

.ba-image-card {
  height: 100%;

  background: var(--color-white);

  border:
    1px solid rgba(41, 38, 36, 0.08);

  box-shadow:
    0 25px 65px rgba(41, 38, 36, 0.09);

  transition:
    transform 400ms ease,
    box-shadow 400ms ease;
}


.ba-image-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 35px 75px rgba(41, 38, 36, 0.16);
}


.ba-before-card {
  animation:
    baCardLeft 900ms 250ms ease both;
}


.ba-after-card {
  animation:
    baCardRight 900ms 250ms ease both;
}


/* =========================================================
   IMAGE
========================================================= */

.ba-image-box {
  position: relative;

  height: 390px;

  overflow: hidden;
}


.ba-image-box img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 1.2s cubic-bezier(.2, .8, .2, 1);
}


.ba-image-card:hover .ba-image-box img {
  transform: scale(1.08);
}


.ba-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(180deg,
      transparent 45%,
      rgba(41, 38, 36, 0.68) 100%);

  pointer-events: none;
}


/* =========================================================
   IMAGE LABEL
========================================================= */

.ba-image-label {
  position: absolute;

  left: 22px;
  bottom: 22px;

  display: flex;
  align-items: center;

  gap: 11px;

  padding: 10px 14px 10px 10px;

  color: var(--color-charcoal);

  background:
    rgba(255, 255, 255, 0.94);

  backdrop-filter: blur(10px);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.15);
}


.ba-label-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--color-beige);

  background: var(--color-charcoal);

  font-size: 17px;
}


.ba-after-card .ba-label-icon {
  background: var(--color-brown);
}


.ba-label-copy {
  display: flex;
  flex-direction: column;
}


.ba-label-copy small {
  color: var(--color-text);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.ba-label-copy strong {
  margin-top: 3px;

  color: var(--color-charcoal);

  font-size: 13px;

  font-weight: 800;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.ba-card-content {
  padding: 27px 27px 29px;
}


.ba-card-heading {
  display: flex;
  align-items: center;

  gap: 15px;

  margin-bottom: 22px;
}


.ba-card-number {
  width: 52px;
  height: 52px;

  flex: 0 0 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--color-beige);

  background: var(--color-charcoal);

  font-size: 15px;

  font-weight: 800;
}


.ba-after-card .ba-card-number {
  color: var(--color-white);

  background: var(--color-brown);
}


.ba-card-heading small {
  display: block;

  margin-bottom: 3px;

  color: var(--color-brown);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}


.ba-card-heading h3 {
  margin: 0;

  color: var(--color-charcoal);

  font-size: 21px;

  font-weight: 800;

  letter-spacing: -0.7px;
}


/* =========================================================
   CARD LIST
========================================================= */

.ba-card-list {
  display: grid;

  gap: 9px;

  padding-top: 18px;

  border-top:
    1px solid rgba(41, 38, 36, 0.08);
}


.ba-card-item {
  display: flex;
  align-items: center;

  gap: 10px;

  color: var(--color-text);

  font-size: 12px;

  font-weight: 600;
}


.ba-card-item i {
  width: 26px;
  height: 26px;

  flex: 0 0 26px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--color-white);

  background: var(--color-charcoal);

  font-size: 11px;
}


.ba-after-card .ba-card-item i {
  background: var(--color-brown);
}


/* =========================================================
   CENTER ARROW
========================================================= */

.ba-center-arrow {
  position: absolute;

  z-index: 10;

  left: 50%;

  margin-top: -335px;

  transform: translateX(-50%);

  align-items: center;
  justify-content: center;

  pointer-events: none;
}


.ba-center-arrow span {
  width: 67px;
  height: 67px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--color-charcoal);

  background: var(--color-beige);

  border:
    7px solid var(--color-off-white);

  border-radius: 50%;

  font-size: 20px;

  box-shadow:
    0 10px 30px rgba(41, 38, 36, 0.14);

  animation:
    baArrowPulse 2.3s ease-in-out infinite;
}


/* =========================================================
   ICON FEATURES
========================================================= */

.ba-icon-features {
  position: relative;

  z-index: 4;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 15px;

  margin-top: 45px;
}


.ba-icon-feature {
  position: relative;

  min-height: 190px;

  padding: 25px;

  overflow: hidden;

  background: var(--color-charcoal);

  transition:
    transform 350ms ease,
    background 350ms ease,
    box-shadow 350ms ease;
}


.ba-icon-feature::after {
  content: "";

  position: absolute;

  width: 100px;
  height: 100px;

  right: -50px;
  bottom: -50px;

  border:
    1px solid rgba(198, 182, 167, 0.14);

  transform: rotate(45deg);

  transition:
    transform 500ms ease;
}


.ba-icon-feature:hover {
  background: var(--color-brown);

  transform: translateY(-8px);

  box-shadow:
    0 20px 45px rgba(41, 38, 36, 0.18);
}


.ba-icon-feature:hover::after {
  transform:
    rotate(90deg) scale(1.3);
}


.ba-feature-icon {
  width: 50px;
  height: 50px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  color: var(--color-charcoal);

  background: var(--color-beige);

  font-size: 20px;

  transition:
    transform 350ms ease;
}


.ba-icon-feature:hover .ba-feature-icon {
  transform:
    rotate(-7deg) scale(1.1);
}


.ba-icon-feature h4 {
  margin: 0 0 9px;

  color: var(--color-white);

  font-size: 16px;

  font-weight: 800;
}


.ba-icon-feature p {
  margin: 0;

  color:
    rgba(255, 255, 255, 0.62);

  font-size: 12px;

  line-height: 1.7;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.ba-bottom-cta {
  position: relative;

  z-index: 4;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-top: 35px;

  padding: 25px 27px;

  background: var(--color-cream);

  border:
    1px solid rgba(139, 116, 96, 0.14);
}


.ba-bottom-text {
  display: flex;

  align-items: center;

  gap: 14px;
}


.ba-bottom-icon {
  width: 52px;
  height: 52px;

  flex: 0 0 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--color-beige);

  background: var(--color-charcoal);

  font-size: 19px;
}


.ba-bottom-text div {
  display: flex;

  flex-direction: column;
}


.ba-bottom-text small {
  margin-bottom: 3px;

  color: var(--color-brown);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.1px;

  text-transform: uppercase;
}


.ba-bottom-text strong {
  color: var(--color-charcoal);

  font-size: 16px;

  font-weight: 800;
}


/* =========================================================
   BOTTOM BUTTONS
========================================================= */

.ba-bottom-actions {
  display: flex;

  align-items: center;

  gap: 10px;
}


.ba-phone-btn,
.ba-free-btn {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  padding: 0 19px;

  font-size: 11px;

  font-weight: 800;

  transition:
    transform 300ms ease,
    background 300ms ease,
    color 300ms ease;
}


.ba-phone-btn {
  color: var(--color-white);

  background: var(--color-charcoal);
}


.ba-phone-btn:hover {
  color: var(--color-white);

  background: var(--color-brown);

  transform: translateY(-3px);
}


.ba-free-btn {
  color: var(--color-charcoal);

  background: transparent;

  border:
    1px solid rgba(41, 38, 36, 0.18);
}


.ba-free-btn:hover {
  color: var(--color-white);

  background: var(--color-brown);

  border-color: var(--color-brown);

  transform: translateY(-3px);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes baFadeDown {
  from {
    opacity: 0;

    transform: translateY(-20px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}


@keyframes baFadeUp {
  from {
    opacity: 0;

    transform: translateY(28px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}


@keyframes baCardLeft {
  from {
    opacity: 0;

    transform: translateX(-50px);
  }

  to {
    opacity: 1;

    transform: translateX(0);
  }
}


@keyframes baCardRight {
  from {
    opacity: 0;

    transform: translateX(50px);
  }

  to {
    opacity: 1;

    transform: translateX(0);
  }
}


@keyframes baArrowPulse {

  0%,
  100% {
    transform: scale(1);

    box-shadow:
      0 10px 30px rgba(41, 38, 36, 0.14);
  }

  50% {
    transform: scale(1.12);

    box-shadow:
      0 15px 35px rgba(139, 116, 96, 0.28);
  }
}


@keyframes baDecorRotate {
  from {
    transform: rotate(45deg);
  }

  to {
    transform: rotate(405deg);
  }
}


@keyframes baDecorFloat {

  0%,
  100% {
    transform:
      rotate(45deg) translateY(0);
  }

  50% {
    transform:
      rotate(55deg) translateY(-20px);
  }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .ba-section {
    padding:
      90px 0;
  }


  .ba-heading {
    margin-bottom:
      50px;
  }


  .ba-icon-features {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .ba-bottom-cta {
    flex-direction: column;

    align-items: flex-start;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .ba-section {
    padding:
      75px 0;
  }


  .ba-main-title {
    font-size:
      clamp(42px,
        11vw,
        56px);

    letter-spacing:
      -2.4px;
  }


  .ba-main-description {
    font-size:
      14px;
  }


  .ba-image-box {
    height:
      340px;
  }


  .ba-card-content {
    padding:
      22px;
  }


  .ba-icon-features {
    grid-template-columns:
      1fr;
  }


  .ba-icon-feature {
    min-height:
      auto;
  }


  .ba-bottom-actions {
    width:
      100%;

    display:
      grid;

    grid-template-columns:
      1fr;
  }


  .ba-phone-btn,
  .ba-free-btn {
    width:
      100%;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .ba-main-title {
    font-size:
      42px;
  }


  .ba-image-box {
    height:
      300px;
  }


  .ba-image-label {
    left:
      14px;

    right:
      14px;

    bottom:
      14px;
  }


  .ba-card-heading h3 {
    font-size:
      18px;
  }


  .ba-bottom-text {
    align-items:
      flex-start;
  }

}

/* =========================================================
   BEFORE / AFTER SIZE ADJUSTMENTS
========================================================= */

/* Smaller Section Title */
.ba-main-title {
  max-width: 760px;

  margin-left: auto;
  margin-right: auto;

  font-size: clamp(38px, 4vw, 56px);

  line-height: 1.04;

  letter-spacing: -2.5px;
}


/* Slightly Smaller Description */
.ba-main-description {
  max-width: 700px;

  font-size: 15px;

  line-height: 1.75;
}


/* =========================================================
   BIGGER BOTTOM CTA BUTTONS
========================================================= */

.ba-bottom-actions {
  gap: 12px;
}


.ba-phone-btn,
.ba-free-btn {
  min-height: 62px;

  padding: 0 25px;

  gap: 11px;

  font-size: 15px;

  font-weight: 800;

  text-decoration: none;
}


/* Bigger Phone Number */
.ba-phone-btn span {
  font-size: 17px;

  font-weight: 800;

  letter-spacing: .2px;
}


/* Bigger Phone Icon */
.ba-phone-btn i {
  font-size: 18px;
}


/* Bigger Free Estimate */
.ba-free-btn {
  min-width: 175px;

  font-size: 15px;

  letter-spacing: .1px;
}


.ba-free-btn i {
  font-size: 17px;

  transition: transform 300ms ease;
}


.ba-free-btn:hover i {
  transform: translate(3px, -3px);
}


/* =========================================================
   MAKE BOTTOM CTA COPY A LITTLE STRONGER
========================================================= */

.ba-bottom-text small {
  font-size: 9px;
}


.ba-bottom-text strong {
  font-size: 17px;

  line-height: 1.35;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .ba-main-title {
    font-size: clamp(36px, 6vw, 50px);
  }


  .ba-phone-btn,
  .ba-free-btn {
    min-height: 60px;

    font-size: 15px;
  }


  .ba-phone-btn span {
    font-size: 17px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .ba-main-title {
    font-size: clamp(32px, 8vw, 43px);

    letter-spacing: -1.8px;
  }


  .ba-main-description {
    font-size: 14px;
  }


  .ba-phone-btn,
  .ba-free-btn {
    width: 100%;

    min-height: 62px;

    font-size: 16px;
  }


  .ba-phone-btn span {
    font-size: 18px;
  }


  .ba-phone-btn i {
    font-size: 19px;
  }


  .ba-free-btn i {
    font-size: 18px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .ba-main-title {
    font-size: 35px;

    line-height: 1.06;
  }


  .ba-phone-btn,
  .ba-free-btn {
    min-height: 60px;

    padding: 0 18px;
  }


  .ba-phone-btn span {
    font-size: 17px;
  }

}


/* =========================================================
   BEFORE / AFTER SECTION - BIGGER TEXT
   Paste at the END of your CSS
========================================================= */

/* Eyebrow */
.ba-eyebrow {
  font-size: 12px;
}


/* Main Heading */
.ba-main-title {
  font-size: clamp(42px, 4.3vw, 60px);
}


/* Main Description */
.ba-main-description {
  font-size: 17px;
  line-height: 1.75;
}


/* =========================================================
   IMAGE LABELS
========================================================= */

.ba-label-copy small {
  font-size: 10px;
  letter-spacing: 1px;
}


.ba-label-copy strong {
  font-size: 15px;
}


/* =========================================================
   BEFORE / AFTER CARD HEADINGS
========================================================= */

.ba-card-heading small {
  font-size: 10px;
  letter-spacing: 1.3px;
}


.ba-card-heading h3 {
  font-size: 24px;
  line-height: 1.25;
}


/* Card Number */
.ba-card-number {
  font-size: 17px;
}


/* =========================================================
   BEFORE / AFTER LIST TEXT
========================================================= */

.ba-card-item {
  font-size: 14px;
  line-height: 1.55;
}


/* =========================================================
   BENEFIT CARDS
========================================================= */

.ba-icon-feature h4 {
  font-size: 19px;
  line-height: 1.3;
}


.ba-icon-feature p {
  font-size: 14px;
  line-height: 1.7;
}


/* =========================================================
   BOTTOM CTA TEXT
========================================================= */

.ba-bottom-text small {
  font-size: 11px;
  letter-spacing: 1px;
}


.ba-bottom-text strong {
  font-size: 20px;
  line-height: 1.35;
}


/* =========================================================
   CTA BUTTON TEXT
========================================================= */

.ba-phone-btn,
.ba-free-btn {
  font-size: 16px;
}


.ba-phone-btn span {
  font-size: 19px;
}


.ba-phone-btn i {
  font-size: 19px;
}


.ba-free-btn {
  font-size: 16px;
}


.ba-free-btn i {
  font-size: 18px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .ba-main-title {
    font-size: clamp(40px, 6vw, 54px);
  }

  .ba-main-description {
    font-size: 16px;
  }

  .ba-card-heading h3 {
    font-size: 23px;
  }

  .ba-card-item {
    font-size: 14px;
  }

  .ba-icon-feature h4 {
    font-size: 18px;
  }

  .ba-icon-feature p {
    font-size: 14px;
  }

  .ba-bottom-text strong {
    font-size: 19px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .ba-eyebrow {
    font-size: 11px;
  }

  .ba-main-title {
    font-size: clamp(35px, 9vw, 46px);
  }

  .ba-main-description {
    font-size: 16px;
    line-height: 1.7;
  }

  .ba-label-copy small {
    font-size: 9px;
  }

  .ba-label-copy strong {
    font-size: 14px;
  }

  .ba-card-heading small {
    font-size: 9px;
  }

  .ba-card-heading h3 {
    font-size: 22px;
  }

  .ba-card-item {
    font-size: 14px;
  }

  .ba-icon-feature h4 {
    font-size: 18px;
  }

  .ba-icon-feature p {
    font-size: 14px;
  }

  .ba-bottom-text small {
    font-size: 10px;
  }

  .ba-bottom-text strong {
    font-size: 18px;
  }

  .ba-phone-btn,
  .ba-free-btn {
    font-size: 16px;
  }

  .ba-phone-btn span {
    font-size: 19px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .ba-main-title {
    font-size: 37px;
  }

  .ba-main-description {
    font-size: 15px;
  }

  .ba-card-heading h3 {
    font-size: 21px;
  }

  .ba-card-item {
    font-size: 13.5px;
  }

  .ba-icon-feature p {
    font-size: 13.5px;
  }

  .ba-bottom-text strong {
    font-size: 17px;
  }

}

/* 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 */

/* =========================================================
   SPECIAL OFFER SECTION
========================================================= */



.special-offer-section {
  position: relative;

  padding: 115px 0;

  overflow: hidden;
  isolation: isolate;

  background: var(--color-charcoal);
}


/* =========================================================
   STRONGER BACKGROUND GRID
========================================================= */

.special-offer-grid {
  position: absolute;

  inset: 0;

  z-index: -20;

  opacity: .8;

  background-image:
    linear-gradient(rgba(198, 182, 167, .065) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(198, 182, 167, .065) 1px,
      transparent 1px);

  background-size: 62px 62px;

  animation:
    specialOfferGridMove 18s linear infinite;
}


/* =========================================================
   STRONGER ANIMATED SHAPES
========================================================= */

.special-offer-shape {
  position: absolute;

  z-index: -12;

  pointer-events: none;
}


/* Large outline square */

.special-offer-shape-one {
  width: 480px;
  height: 480px;

  left: -220px;
  top: -185px;

  border:
    2px solid rgba(198, 182, 167, .3);

  box-shadow:
    inset 0 0 80px rgba(198, 182, 167, .03);

  transform: rotate(45deg);

  animation:
    specialOfferRotate 25s linear infinite;
}


/* Large solid translucent diamond */

.special-offer-shape-two {
  width: 290px;
  height: 290px;

  right: -105px;
  bottom: -135px;

  background:
    rgba(139, 116, 96, .22);

  border:
    1px solid rgba(198, 182, 167, .28);

  transform: rotate(45deg);

  animation:
    specialOfferShapeFloat 6s ease-in-out infinite;
}


/* New floating outlined diamond */

.special-offer-shape-three {
  width: 125px;
  height: 125px;

  right: 13%;
  top: 65px;

  border:
    2px solid rgba(198, 182, 167, .26);

  background:
    rgba(198, 182, 167, .04);

  transform: rotate(45deg);

  animation:
    specialOfferShapeThree 7s ease-in-out infinite;
}


/* Large orbit circle */

.special-offer-orbit {
  position: absolute;

  z-index: -11;

  width: 460px;
  height: 460px;

  left: 36%;
  bottom: -265px;

  border-radius: 50%;

  border:
    1px dashed rgba(198, 182, 167, .3);

  animation:
    specialOfferOrbit 30s linear infinite;
}


.special-offer-orbit::before {
  content: "";

  position: absolute;

  width: 14px;
  height: 14px;

  left: 50%;
  top: -7px;

  border-radius: 50%;

  background: var(--color-beige);

  box-shadow:
    0 0 24px rgba(198, 182, 167, .8);
}


/* =========================================================
   WRAPPER
========================================================= */

.special-offer-wrapper {
  position: relative;

  z-index: 5;

  overflow: hidden;

  background: var(--color-off-white);

  box-shadow:
    0 40px 100px rgba(0, 0, 0, .32);
}


/* =========================================================
   LEFT COLUMN
========================================================= */

.special-offer-content {
  position: relative;

  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 62px 58px;

  background:
    linear-gradient(135deg,
      var(--color-off-white) 0%,
      var(--color-white) 100%);
}


/* Decorative line in left panel */

.special-offer-content::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 6px;
  height: 100%;

  background:
    linear-gradient(180deg,
      var(--color-brown),
      var(--color-beige),
      var(--color-brown));
}


/* =========================================================
   TOP LINE
========================================================= */

.special-offer-topline {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 23px;
}


/* =========================================================
   EYEBROW
========================================================= */

.special-offer-eyebrow {
  width: fit-content;

  display: inline-flex;
  align-items: center;

  gap: 9px;

  padding: 6px 13px 6px 6px;

  color: var(--color-brown-dark);

  background:
    rgba(139, 116, 96, .09);

  border:
    1px solid rgba(139, 116, 96, .16);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.3px;

  text-transform: uppercase;
}


.special-offer-eyebrow-icon {
  width: 33px;
  height: 33px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: var(--color-white);

  background: var(--color-brown);

  font-size: 13px;

  animation:
    specialOfferIconPulse 2.5s ease-in-out infinite;
}


/* =========================================================
   OFFER CODE
========================================================= */

.special-offer-code {
  color: var(--color-text-light);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 2px;
}


/* =========================================================
   SMALLER TITLE
========================================================= */

.special-offer-title {
  max-width: 540px;

  margin: 0 0 21px;

  color: var(--color-charcoal);

  font-size: clamp(22px, 2.2vw, 30px);

  line-height: 1.02;

  font-weight: 800;

  letter-spacing: -2.5px;

  animation:
    specialOfferFadeUp 750ms 100ms ease both;
}


.special-offer-title span {
  display: block;

  margin-top: 4px;

  color: var(--color-brown);
}


/* =========================================================
   INTRO - NEW DESIGN
========================================================= */

.special-offer-intro {
  display: grid;

  grid-template-columns:
    4px 1fr;

  align-items: stretch;

  gap: 15px;

  max-width: 540px;

  margin-bottom: 27px;
}


.special-offer-intro-line {
  display: block;

  width: 4px;

  background: var(--color-beige);
}


.special-offer-intro p {
  margin: 0;

  color: var(--color-text);

  font-size: 13px;

  line-height: 1.75;

  font-weight: 500;
}


/* =========================================================
   DEAL BOARD
========================================================= */

.special-offer-deal-board {
  position: relative;

  display: grid;

  grid-template-columns:
    165px 1fr;

  align-items: stretch;

  margin-bottom: 25px;

  overflow: hidden;

  border:
    1px solid rgba(41, 38, 36, .1);

  background: var(--color-cream);

  box-shadow:
    0 14px 35px rgba(41, 38, 36, .07);

  animation:
    specialOfferFadeUp 800ms 180ms ease both;
}


/* =========================================================
   DEAL PRICE
========================================================= */

.special-offer-deal-price {
  position: relative;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  padding: 25px 17px;

  color: var(--color-white);

  background: var(--color-charcoal);

  text-align: center;
}


.special-offer-deal-price::after {
  content: "";

  position: absolute;

  right: -13px;
  top: 50%;

  width: 26px;
  height: 26px;

  background: var(--color-charcoal);

  transform:
    translateY(-50%) rotate(45deg);
}


.special-offer-deal-price small {
  position: relative;

  z-index: 2;

  margin-bottom: 6px;

  color: var(--color-beige);

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


.special-offer-deal-number {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: flex-start;
}


.special-offer-deal-number span {
  margin-top: 7px;

  color: var(--color-beige);

  font-size: 21px;

  font-weight: 800;
}


.special-offer-deal-number strong {
  color: var(--color-white);

  font-size: 62px;

  line-height: .85;

  font-weight: 800;

  letter-spacing: -5px;
}


.special-offer-deal-price b {
  position: relative;

  z-index: 2;

  margin-top: 8px;

  color: var(--color-beige);

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 4px;
}


/* =========================================================
   DEAL COPY
========================================================= */

.special-offer-deal-copy {
  padding: 25px 25px 25px 35px;
}


.special-offer-deal-copy>span {
  display: inline-block;

  margin-bottom: 7px;

  color: var(--color-brown);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.2px;

  text-transform: uppercase;
}


.special-offer-deal-copy h3 {
  max-width: 290px;

  margin: 0;

  color: var(--color-charcoal);

  font-size: 22px;

  line-height: 1.14;

  font-weight: 800;

  letter-spacing: -.8px;
}


.special-offer-deal-copy p {
  max-width: 315px;

  margin: 8px 0 0;

  color: var(--color-text);

  font-size: 10px;

  line-height: 1.6;
}


/* =========================================================
   BENEFIT ROWS
========================================================= */

.special-offer-benefits {
  display: grid;

  margin-bottom: 27px;

  border-top:
    1px solid rgba(41, 38, 36, .09);

  animation:
    specialOfferFadeUp 800ms 270ms ease both;
}


.special-offer-benefit {
  display: grid;

  grid-template-columns:
    43px 1fr auto;

  align-items: center;

  gap: 13px;

  min-height: 63px;

  padding: 9px 3px;

  border-bottom:
    1px solid rgba(41, 38, 36, .09);

  transition:
    padding-left 300ms ease,
    background 300ms ease;
}


.special-offer-benefit:hover {
  padding-left: 10px;

  background:
    rgba(139, 116, 96, .06);
}


.special-offer-benefit-icon {
  width: 39px;
  height: 39px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: var(--color-brown);

  border:
    1px solid rgba(139, 116, 96, .25);

  border-radius: 50%;

  font-size: 15px;
}


.special-offer-benefit div {
  display: flex;

  flex-direction: column;
}


.special-offer-benefit strong {
  color: var(--color-charcoal);

  font-size: 12px;

  font-weight: 800;
}


.special-offer-benefit small {
  margin-top: 3px;

  color: var(--color-text);

  font-size: 9px;
}


.special-offer-benefit>i {
  color: var(--color-brown);

  font-size: 13px;

  transition:
    transform 300ms ease;
}


.special-offer-benefit:hover>i {
  transform:
    translateX(4px);
}


/* =========================================================
   ACTIONS
========================================================= */

.special-offer-actions {
  display: flex;

  align-items: stretch;

  flex-wrap: wrap;

  gap: 11px;

  animation:
    specialOfferFadeUp 800ms 350ms ease both;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.special-offer-call {
  position: relative;

  min-width: 285px;
  min-height: 66px;

  display: flex;

  align-items: center;

  gap: 11px;

  padding: 8px 15px 8px 8px;

  overflow: hidden;

  color: var(--color-white);

  background: var(--color-charcoal);

  text-decoration: none;

  box-shadow:
    0 15px 35px rgba(41, 38, 36, .17);

  transition:
    transform 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
}


.special-offer-call::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 65%;
  height: 100%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .22),
      transparent);

  transform:
    skewX(-20deg);

  animation:
    specialOfferButtonShine 4s ease-in-out infinite;
}


.special-offer-call:hover {
  color: var(--color-white);

  background: var(--color-brown);

  transform:
    translateY(-4px);

  box-shadow:
    0 20px 45px rgba(41, 38, 36, .24);
}


.special-offer-call-icon {
  position: relative;

  z-index: 2;

  width: 48px;
  height: 48px;

  flex: 0 0 48px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: var(--color-charcoal);

  background: var(--color-beige);

  font-size: 17px;

  animation:
    specialOfferPhoneRing 3s ease-in-out infinite;
}


.special-offer-call-copy {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  line-height: 1.1;
}


.special-offer-call-copy small {
  margin-bottom: 4px;

  color: rgba(255, 255, 255, .67);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: .7px;

  text-transform: uppercase;
}


.special-offer-call-copy strong {
  color: var(--color-white);

  font-size: 17px;

  font-weight: 800;
}


.special-offer-call-arrow {
  position: relative;

  z-index: 2;

  margin-left: auto;

  transition:
    transform 300ms ease;
}


.special-offer-call:hover .special-offer-call-arrow {
  transform:
    translate(4px, -4px);
}


/* =========================================================
   FREE ESTIMATE BUTTON
========================================================= */

.special-offer-estimate {
  min-height: 66px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 0 22px;

  color: var(--color-charcoal);

  border:
    1px solid rgba(41, 38, 36, .2);

  font-size: 12px;

  font-weight: 800;

  text-decoration: none;

  transition:
    color 300ms ease,
    background 300ms ease,
    border-color 300ms ease,
    transform 300ms ease;
}


.special-offer-estimate:hover {
  color: var(--color-white);

  background: var(--color-brown);

  border-color: var(--color-brown);

  transform:
    translateY(-4px);
}


/* =========================================================
   NOTE
========================================================= */

.special-offer-note {
  display: flex;

  align-items: center;

  gap: 7px;

  margin-top: 14px;

  color: var(--color-text-light);

  font-size: 8px;

  line-height: 1.5;
}


.special-offer-note i {
  color: var(--color-brown);
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.special-offer-visual {
  position: relative;

  min-height: 750px;
  height: 100%;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 45px;

  overflow: hidden;

  background: var(--color-taupe);
}


/* =========================================================
   IMAGE BACK
========================================================= */

.special-offer-image-back {
  position: absolute;

  width: 78%;
  height: 77%;

  right: -4%;
  top: 10%;

  background: var(--color-charcoal);

  opacity: .17;

  clip-path:
    polygon(18% 0,
      100% 0,
      100% 100%,
      0 100%,
      12% 50%);

  animation:
    specialOfferBackMove 6s ease-in-out infinite;
}


/* =========================================================
   IMAGE OUTLINE
========================================================= */

.special-offer-image-outline {
  position: absolute;

  z-index: 1;

  width: 77%;
  height: 80%;

  right: 4%;
  top: 5%;

  border:
    1px solid rgba(255, 255, 255, .48);

  animation:
    specialOfferOutlineMove 4.5s ease-in-out infinite;
}


/* =========================================================
   IMAGE WRAPPER
========================================================= */

.special-offer-image-wrapper {
  position: relative;

  z-index: 3;

  width: 90%;
  height: 650px;

  overflow: hidden;

  clip-path:
    polygon(12% 0,
      100% 0,
      100% 90%,
      90% 100%,
      0 100%,
      0 12%);

  box-shadow:
    0 35px 70px rgba(41, 38, 36, .32);

  animation:
    specialOfferImageReveal 1s ease both;
}


.special-offer-image {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  animation:
    specialOfferImageZoom 11s ease-in-out infinite alternate;
}


.special-offer-image-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(180deg,
      rgba(41, 38, 36, .01) 40%,
      rgba(41, 38, 36, .62) 100%);

  pointer-events: none;
}


/* =========================================================
   IMAGE SHINE
========================================================= */

.special-offer-image-shine {
  position: absolute;

  top: -20%;
  left: -90%;

  width: 55%;
  height: 150%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .14),
      transparent);

  transform:
    skewX(-20deg);

  animation:
    specialOfferImageShine 5s ease-in-out infinite;

  pointer-events: none;
}


/* =========================================================
   IMAGE LABEL
========================================================= */

.special-offer-image-label {
  position: absolute;

  left: 25px;
  bottom: 25px;

  z-index: 5;

  display: flex;

  align-items: center;

  gap: 11px;

  padding: 10px 15px 10px 10px;

  color: var(--color-charcoal);

  background:
    rgba(255, 255, 255, .94);

  backdrop-filter:
    blur(10px);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, .18);
}


.special-offer-image-label>span {
  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: var(--color-beige);

  background: var(--color-charcoal);

  font-size: 17px;
}


.special-offer-image-label div {
  display: flex;

  flex-direction: column;
}


.special-offer-image-label small {
  margin-bottom: 3px;

  color: var(--color-text);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: .9px;

  text-transform: uppercase;
}


.special-offer-image-label strong {
  color: var(--color-charcoal);

  font-size: 13px;

  font-weight: 800;
}


/* =========================================================
   FLOATING PRICE
========================================================= */

.special-offer-floating-price {
  position: absolute;

  z-index: 8;

  top: 65px;
  left: 12px;

  width: 145px;
  height: 145px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  color: var(--color-charcoal);

  background: var(--color-beige);

  box-shadow:
    0 20px 50px rgba(41, 38, 36, .25);

  animation:
    specialOfferPriceFloat 3.5s ease-in-out infinite;
}


.special-offer-floating-price span {
  font-size: 8px;

  font-weight: 800;

  letter-spacing: 2px;
}


.special-offer-floating-price strong {
  margin: 4px 0;

  font-size: 44px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: -3px;
}


.special-offer-floating-price small {
  font-size: 10px;

  font-weight: 800;

  letter-spacing: 3px;
}


/* =========================================================
   TRUST CARD
========================================================= */

.special-offer-trust {
  position: absolute;

  z-index: 8;

  right: 18px;
  bottom: 47px;

  min-width: 260px;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 14px 17px;

  background: var(--color-white);

  box-shadow:
    0 20px 50px rgba(41, 38, 36, .2);

  animation:
    specialOfferTrustFloat 4.2s ease-in-out infinite;
}


.special-offer-trust-icon {
  width: 46px;
  height: 46px;

  flex: 0 0 46px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: var(--color-beige);

  background: var(--color-charcoal);

  font-size: 18px;
}


.special-offer-trust div {
  display: flex;

  flex-direction: column;
}


.special-offer-trust small {
  margin-bottom: 3px;

  color: var(--color-text);

  font-size: 7px;

  font-weight: 800;

  letter-spacing: .8px;

  text-transform: uppercase;
}


.special-offer-trust strong {
  color: var(--color-charcoal);

  font-size: 13px;

  font-weight: 800;
}


/* =========================================================
   VERTICAL TEXT
========================================================= */

.special-offer-vertical-text {
  position: absolute;

  right: 7px;
  top: 50%;

  z-index: 5;

  color:
    rgba(255, 255, 255, .55);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 2.5px;

  transform:
    translateY(-50%) rotate(90deg);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes specialOfferGridMove {

  from {
    background-position: 0 0;
  }

  to {
    background-position: 124px 62px;
  }

}


@keyframes specialOfferRotate {

  from {
    transform: rotate(45deg);
  }

  to {
    transform: rotate(405deg);
  }

}


@keyframes specialOfferShapeFloat {

  0%,
  100% {
    transform:
      rotate(45deg) translateY(0) scale(1);
  }

  50% {
    transform:
      rotate(58deg) translateY(-28px) scale(1.08);
  }

}


@keyframes specialOfferShapeThree {

  0%,
  100% {
    transform:
      rotate(45deg) translate(0, 0);
  }

  50% {
    transform:
      rotate(95deg) translate(-20px, 25px);
  }

}


@keyframes specialOfferOrbit {

  from {
    transform:
      rotate(0deg);
  }

  to {
    transform:
      rotate(360deg);
  }

}


@keyframes specialOfferFadeUp {

  from {
    opacity: 0;

    transform:
      translateY(25px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }

}


@keyframes specialOfferIconPulse {

  0%,
  100% {
    transform:
      scale(1);
  }

  50% {
    transform:
      scale(1.12);
  }

}


@keyframes specialOfferButtonShine {

  0%,
  35% {
    left: -120%;
  }

  70%,
  100% {
    left: 160%;
  }

}


@keyframes specialOfferPhoneRing {

  0%,
  82%,
  100% {
    transform:
      rotate(0);
  }

  87% {
    transform:
      rotate(-9deg);
  }

  91% {
    transform:
      rotate(9deg);
  }

  95% {
    transform:
      rotate(-4deg);
  }

}


@keyframes specialOfferBackMove {

  0%,
  100% {
    transform:
      translate(0, 0);
  }

  50% {
    transform:
      translate(12px, -12px);
  }

}


@keyframes specialOfferOutlineMove {

  0%,
  100% {
    transform:
      translate(0, 0);
  }

  50% {
    transform:
      translate(14px, -12px);
  }

}


@keyframes specialOfferImageReveal {

  from {
    opacity: 0;

    transform:
      translateX(60px) scale(.94);
  }

  to {
    opacity: 1;

    transform:
      translateX(0) scale(1);
  }

}


@keyframes specialOfferImageZoom {

  from {
    transform:
      scale(1.02);
  }

  to {
    transform:
      scale(1.1);
  }

}


@keyframes specialOfferImageShine {

  0%,
  25% {
    left: -90%;
  }

  70%,
  100% {
    left: 150%;
  }

}


@keyframes specialOfferPriceFloat {

  0%,
  100% {
    transform:
      translateY(0) rotate(0);
  }

  50% {
    transform:
      translateY(-13px) rotate(-3deg);
  }

}


@keyframes specialOfferTrustFloat {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(-10px);
  }

}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199.98px) {

  .special-offer-content {
    padding:
      55px 40px;
  }


  .special-offer-title {
    font-size: 25px;
  }


  .special-offer-deal-board {
    grid-template-columns:
      145px 1fr;
  }


  .special-offer-deal-number strong {
    font-size: 56px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .special-offer-section {
    padding:
      90px 0;
  }


  .special-offer-content {
    padding:
      55px 48px;
  }


  .special-offer-title {
    max-width: 600px;

    font-size:
      clamp(38px, 6vw, 48px);
  }


  .special-offer-visual {
    min-height: 650px;
  }


  .special-offer-image-wrapper {
    width: 82%;

    height: 560px;
  }


  .special-offer-shape-one {
    opacity: .8;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .special-offer-section {
    padding:
      70px 0;
  }


  .special-offer-content {
    padding:
      42px 24px;
  }


  .special-offer-topline {
    align-items: flex-start;
  }


  .special-offer-title {
    font-size:
      clamp(34px, 9vw, 42px);

    letter-spacing:
      -1.9px;
  }


  .special-offer-intro p {
    font-size: 12px;
  }


  .special-offer-deal-board {
    grid-template-columns:
      135px 1fr;
  }


  .special-offer-deal-copy {
    padding:
      21px 18px 21px 28px;
  }


  .special-offer-deal-copy h3 {
    font-size: 19px;
  }


  .special-offer-actions {
    display: grid;

    grid-template-columns: 1fr;
  }


  .special-offer-call,
  .special-offer-estimate {
    width: 100%;

    min-width: 0;
  }


  .special-offer-estimate {
    min-height: 58px;
  }


  .special-offer-visual {
    min-height: 540px;

    padding: 25px;
  }


  .special-offer-image-wrapper {
    width: 95%;

    height: 470px;
  }


  .special-offer-floating-price {
    width: 110px;
    height: 110px;

    left: 5px;
    top: 30px;
  }


  .special-offer-floating-price strong {
    font-size: 34px;
  }


  .special-offer-trust {
    right: 10px;

    bottom: 23px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .special-offer-title {
    font-size: 34px;
  }


  .special-offer-code {
    display: none;
  }


  .special-offer-deal-board {
    grid-template-columns:
      1fr;
  }


  .special-offer-deal-price {
    padding:
      20px;
  }


  .special-offer-deal-price::after {
    display: none;
  }


  .special-offer-deal-number strong {
    font-size: 52px;
  }


  .special-offer-deal-copy {
    padding:
      23px;

    text-align: center;
  }


  .special-offer-deal-copy h3,
  .special-offer-deal-copy p {
    margin-left: auto;
    margin-right: auto;
  }


  .special-offer-visual {
    min-height: 460px;

    padding: 18px;
  }


  .special-offer-image-wrapper {
    width: 100%;

    height: 400px;
  }


  .special-offer-image-outline {
    display: none;
  }


  .special-offer-floating-price {
    width: 92px;
    height: 92px;

    top: 12px;
    left: 5px;
  }


  .special-offer-floating-price strong {
    font-size: 28px;
  }


  .special-offer-floating-price span,
  .special-offer-floating-price small {
    font-size: 7px;
  }


  .special-offer-trust {
    left: 12px;
    right: 12px;
    bottom: 12px;

    min-width: 0;
  }


  .special-offer-vertical-text {
    display: none;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .special-offer-section *,
  .special-offer-section *::before,
  .special-offer-section *::after {
    animation: none !important;

    transition-duration: .01ms !important;
  }

}

/* =========================================================
   SPECIAL OFFER SECTION - BIGGER TEXT
   ADD AT THE END OF YOUR CSS
========================================================= */

/* Eyebrow */
.special-offer-eyebrow {
  font-size: 11px;
}


/* Offer Code */
.special-offer-code {
  font-size: 11px;
}


/* Main Heading */
.special-offer-title {
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.04;
}


/* Intro Paragraph */
.special-offer-intro p {
  font-size: 15px;
  line-height: 1.75;
}


/* =========================================================
   OFFER PRICE
========================================================= */

.special-offer-deal-price small {
  font-size: 9px;
}


.special-offer-deal-number span {
  font-size: 23px;
}


.special-offer-deal-number strong {
  font-size: 64px;
}


.special-offer-deal-price b {
  font-size: 14px;
}


/* =========================================================
   OFFER COPY
========================================================= */

.special-offer-deal-copy>span {
  font-size: 10px;
}


.special-offer-deal-copy h3 {
  font-size: 24px;
  line-height: 1.2;
}


.special-offer-deal-copy p {
  font-size: 13px;
  line-height: 1.65;
}


/* =========================================================
   BENEFITS
========================================================= */

.special-offer-benefit strong {
  font-size: 14px;
}


.special-offer-benefit small {
  font-size: 11px;
  line-height: 1.45;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.special-offer-call-copy small {
  font-size: 10px;
}


.special-offer-call-copy strong {
  font-size: 20px;
}


.special-offer-call-arrow {
  font-size: 17px;
}


/* =========================================================
   FREE ESTIMATE BUTTON
========================================================= */

.special-offer-estimate {
  font-size: 15px;
}


/* =========================================================
   OFFER NOTE
========================================================= */

.special-offer-note {
  font-size: 10px;
  line-height: 1.6;
}


/* =========================================================
   IMAGE LABEL
========================================================= */

.special-offer-image-label small {
  font-size: 10px;
}


.special-offer-image-label strong {
  font-size: 15px;
}


/* =========================================================
   FLOATING $25 OFFER
========================================================= */

.special-offer-floating-price span {
  font-size: 10px;
}


.special-offer-floating-price strong {
  font-size: 48px;
}


.special-offer-floating-price small {
  font-size: 11px;
}


/* =========================================================
   LOCAL TRUST CARD
========================================================= */

.special-offer-trust small {
  font-size: 9px;
}


.special-offer-trust strong {
  font-size: 15px;
}


/* Decorative Vertical Text */
.special-offer-vertical-text {
  font-size: 9px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .special-offer-title {
    font-size: clamp(38px, 6vw, 50px);
  }

  .special-offer-intro p {
    font-size: 15px;
  }

  .special-offer-deal-copy h3 {
    font-size: 23px;
  }

  .special-offer-deal-copy p {
    font-size: 13px;
  }

  .special-offer-benefit strong {
    font-size: 14px;
  }

  .special-offer-benefit small {
    font-size: 11px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .special-offer-eyebrow {
    font-size: 10px;
  }

  .special-offer-title {
    font-size: clamp(35px, 9vw, 44px);
  }

  .special-offer-intro p {
    font-size: 14px;
  }

  .special-offer-deal-copy>span {
    font-size: 9px;
  }

  .special-offer-deal-copy h3 {
    font-size: 22px;
  }

  .special-offer-deal-copy p {
    font-size: 13px;
  }

  .special-offer-benefit strong {
    font-size: 14px;
  }

  .special-offer-benefit small {
    font-size: 11px;
  }

  .special-offer-call-copy small {
    font-size: 10px;
  }

  .special-offer-call-copy strong {
    font-size: 20px;
  }

  .special-offer-estimate {
    font-size: 15px;
  }

  .special-offer-note {
    font-size: 10px;
  }

  .special-offer-image-label strong {
    font-size: 14px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .special-offer-title {
    font-size: 35px;
  }

  .special-offer-intro p {
    font-size: 14px;
  }

  .special-offer-deal-copy h3 {
    font-size: 21px;
  }

  .special-offer-deal-copy p {
    font-size: 13px;
  }

  .special-offer-floating-price strong {
    font-size: 32px;
  }

  .special-offer-floating-price span,
  .special-offer-floating-price small {
    font-size: 9px;
  }

  .special-offer-trust small {
    font-size: 8px;
  }

  .special-offer-trust strong {
    font-size: 14px;
  }

}

/* 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 */


/* =========================================================
   RAPID RESTORATION - NEW DESIGN
========================================================= */
/* =========================================================
   RESTORATION SECTION
========================================================= */

.lr-restoration-section {
  position: relative;
  padding: 125px 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-off-white);
}


/* =========================================================
   BACKGROUND
========================================================= */

.lr-restoration-grid {
  position: absolute;
  inset: 0;
  z-index: -10;

  background-image:
    linear-gradient(rgba(41, 38, 36, 0.035) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(41, 38, 36, 0.035) 1px,
      transparent 1px);

  background-size: 58px 58px;

  animation:
    lrGridMove 20s linear infinite;
}


.lr-restoration-orb {
  position: absolute;
  z-index: -8;

  width: 650px;
  height: 650px;

  right: -260px;
  top: -260px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(139, 116, 96, 0.15),
      transparent 68%);

  animation:
    lrOrbPulse 6s ease-in-out infinite;
}


/* =========================================================
   HEADING
========================================================= */

.lr-restoration-heading {
  position: relative;
  z-index: 4;

  margin-bottom: 58px;
}


.lr-restoration-pretitle {
  width: fit-content;

  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 24px;

  padding: 7px 15px 7px 7px;

  color: var(--color-brown-dark);

  background:
    rgba(139, 116, 96, 0.09);

  border:
    1px solid rgba(139, 116, 96, 0.16);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 1.7px;

  text-transform: uppercase;

  animation:
    lrFadeRight 700ms ease both;
}


.lr-restoration-pretitle>span {
  width: 38px;
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--color-white);

  background: var(--color-brown);

  font-size: 16px;

  animation:
    lrPretitlePulse 2.2s ease-in-out infinite;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.lr-restoration-main-title {
  max-width: 780px;

  margin: 0;

  color: var(--color-charcoal);

  font-size:
    clamp(40px,
      4.2vw,
      60px);

  line-height: 1.02;

  font-weight: 800;

  letter-spacing: -3px;

  animation:
    lrTitleReveal 900ms 100ms cubic-bezier(.2, .8, .2, 1) both;
}


.lr-restoration-main-title span {
  display: block;

  color: var(--color-brown);
}


.lr-restoration-heading-text {
  max-width: 390px;

  margin: 0 0 7px auto;

  color: var(--color-text);

  font-size: 15px;

  line-height: 1.75;

  animation:
    lrFadeUp 800ms 250ms ease both;
}


/* =========================================================
   STAGE
========================================================= */

.lr-restoration-stage {
  position: relative;

  z-index: 5;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.lr-restoration-image-area {
  position: relative;

  min-height: 690px;

  padding:
    30px 0 30px 30px;

  background: var(--color-taupe);
}


.lr-restoration-image-frame {
  position: absolute;

  z-index: 1;

  width: 85%;
  height: 88%;

  left: 4px;
  top: -13px;

  border:
    2px solid rgba(41, 38, 36, 0.2);

  animation:
    lrFrameMove 5s ease-in-out infinite;
}


/* =========================================================
   IMAGE WRAPPER
========================================================= */

.lr-restoration-image-wrap {
  position: relative;

  z-index: 3;

  width: 100%;
  height: 630px;

  overflow: hidden;

  background: var(--color-charcoal);

  box-shadow:
    0 35px 75px rgba(41, 38, 36, 0.24);

  clip-path:
    polygon(0 0,
      94% 0,
      100% 8%,
      100% 100%,
      0 100%);

  animation:
    lrImageEntrance 1s ease both;
}


.lr-restoration-image {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  animation:
    lrImageZoom 11s ease-in-out infinite alternate;
}


.lr-restoration-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(180deg,
      rgba(41, 38, 36, 0.02) 35%,
      rgba(41, 38, 36, 0.65) 100%);

  pointer-events: none;
}


/* =========================================================
   IMAGE LIGHT SWEEP
========================================================= */

.lr-restoration-image-shine {
  position: absolute;

  top: -20%;
  left: -90%;

  width: 55%;
  height: 150%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.16),
      transparent);

  transform: skewX(-20deg);

  animation:
    lrImageShine 5s ease-in-out infinite;

  pointer-events: none;
}


/* =========================================================
   IMAGE TAG
========================================================= */

.lr-restoration-image-tag {
  position: absolute;

  left: 28px;
  bottom: 28px;

  z-index: 6;

  display: flex;
  align-items: center;

  gap: 13px;

  padding:
    11px 18px 11px 11px;

  background:
    rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.2);

  animation:
    lrInfoFloat 4.5s ease-in-out infinite;
}


.lr-restoration-image-tag>span {
  width: 51px;
  height: 51px;

  flex: 0 0 51px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--color-beige);

  background: var(--color-charcoal);

  font-size: 19px;
}


.lr-restoration-image-tag div {
  display: flex;

  flex-direction: column;
}


.lr-restoration-image-tag small {
  margin-bottom: 4px;

  color: var(--color-brown);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.2px;

  text-transform: uppercase;
}


.lr-restoration-image-tag strong {
  color: var(--color-charcoal);

  font-size: 16px;

  font-weight: 800;
}


/* =========================================================
   SAME-DAY BADGE
========================================================= */

.lr-restoration-fast-badge {
  position: absolute;

  z-index: 7;

  top: 30px;
  right: 28px;

  display: flex;
  align-items: center;

  gap: 11px;

  padding:
    11px 17px 11px 11px;

  color: var(--color-white);

  background:
    rgba(41, 38, 36, 0.94);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  animation:
    lrBadgeFloat 3.5s ease-in-out infinite;
}


.lr-restoration-fast-icon {
  width: 47px;
  height: 47px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--color-charcoal);

  background: var(--color-beige);

  font-size: 18px;

  animation:
    lrLightning 2s ease-in-out infinite;
}


.lr-restoration-fast-badge div:last-child {
  display: flex;

  flex-direction: column;
}


.lr-restoration-fast-badge small {
  margin-bottom: 3px;

  color:
    rgba(255, 255, 255, 0.58);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.lr-restoration-fast-badge strong {
  color: var(--color-white);

  font-size: 14px;

  font-weight: 800;
}


/* =========================================================
   DARK CONTENT PANEL
========================================================= */

.lr-restoration-panel {
  position: relative;

  z-index: 8;

  min-height: 610px;

  margin-left: -55px;

  padding: 48px 43px;

  color: var(--color-white);

  background: var(--color-charcoal);

  box-shadow:
    0 30px 70px rgba(41, 38, 36, 0.28);

  animation:
    lrPanelEntrance 900ms 200ms cubic-bezier(.2, .8, .2, 1) both;
}


.lr-restoration-panel::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 0;
  height: 4px;

  background: var(--color-beige);

  animation:
    lrPanelLine 1.2s 800ms ease forwards;
}


/* =========================================================
   PANEL HEADER
========================================================= */

.lr-restoration-panel-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 28px;
}


.lr-restoration-panel-number {
  color:
    rgba(198, 182, 167, 0.23);

  font-size: 78px;

  line-height: 0.8;

  font-weight: 800;

  letter-spacing: -5px;
}


.lr-restoration-panel-label {
  color: var(--color-beige);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.8px;

  text-transform: uppercase;
}


/* =========================================================
   INTRO
========================================================= */

.lr-restoration-intro {
  margin: 0 0 28px;

  color:
    rgba(255, 255, 255, 0.69);

  font-size: 16px;

  line-height: 1.75;
}


.lr-restoration-intro strong {
  color: var(--color-white);

  font-weight: 800;
}


/* =========================================================
   SERVICE ROWS
========================================================= */

.lr-restoration-services {
  border-top:
    1px solid rgba(255, 255, 255, 0.1);
}


.lr-restoration-service {
  position: relative;

  display: grid;

  grid-template-columns:
    35px 48px 1fr 25px;

  align-items: center;

  gap: 14px;

  padding:
    20px 0;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.1);

  overflow: hidden;

  transition:
    padding-left 350ms ease,
    background 350ms ease;
}


.lr-restoration-service::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: -1;

  background:
    var(--color-brown);

  transform:
    translateX(-101%);

  transition:
    transform 400ms cubic-bezier(.2, .8, .2, 1);
}


.lr-restoration-service:hover::before {
  transform:
    translateX(0);
}


.lr-restoration-service:hover {
  padding-left: 16px;
}


/* =========================================================
   SERVICE NUMBER
========================================================= */

.lr-restoration-service-number {
  color:
    rgba(255, 255, 255, 0.32);

  font-size: 11px;

  font-weight: 800;
}


/* =========================================================
   SERVICE ICON
========================================================= */

.lr-restoration-service-icon {
  width: 48px;
  height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--color-charcoal);

  background: var(--color-beige);

  font-size: 18px;

  transition:
    transform 350ms ease;
}


.lr-restoration-service:hover .lr-restoration-service-icon {
  transform:
    rotate(-8deg) scale(1.1);
}


/* =========================================================
   SERVICE COPY
========================================================= */

.lr-restoration-service-copy h3 {
  margin: 0 0 4px;

  color: var(--color-white);

  font-size: 17px;

  font-weight: 800;
}


.lr-restoration-service-copy p {
  margin: 0;

  color:
    rgba(255, 255, 255, 0.55);

  font-size: 11px;

  line-height: 1.55;
}


.lr-restoration-service:hover .lr-restoration-service-copy p {
  color:
    rgba(255, 255, 255, 0.82);
}


/* =========================================================
   SERVICE ARROW
========================================================= */

.lr-restoration-service-arrow {
  color: var(--color-beige);

  font-size: 15px;

  transition:
    color 350ms ease,
    transform 350ms ease;
}


.lr-restoration-service:hover .lr-restoration-service-arrow {
  color: var(--color-white);

  transform:
    translate(4px, -4px);
}


/* =========================================================
   SUPPORT MESSAGE
========================================================= */

.lr-restoration-support {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  margin-top: 26px;

  padding:
    17px;

  background:
    rgba(255, 255, 255, 0.055);
}


.lr-restoration-support>i {
  color: var(--color-beige);

  font-size: 23px;

  animation:
    lrShieldPulse 2.5s ease-in-out infinite;
}


.lr-restoration-support p {
  margin: 0;

  color:
    rgba(255, 255, 255, 0.63);

  font-size: 12px;

  line-height: 1.65;
}


.lr-restoration-support strong {
  color: var(--color-white);
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.lr-restoration-bottom {
  position: relative;

  z-index: 10;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-top: 34px;

  padding:
    25px 27px;

  background: var(--color-cream);

  border:
    1px solid rgba(139, 116, 96, 0.13);
}


/* =========================================================
   LOCATIONS
========================================================= */

.lr-restoration-locations {
  display: flex;

  align-items: center;

  gap: 17px;
}


/* Bigger "Serving" */
.lr-restoration-location-title {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: var(--color-brown);

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  white-space: nowrap;
}


.lr-restoration-location-title i {
  font-size: 14px;

  animation:
    lrLocationBounce 2s ease-in-out infinite;
}


/* Location list */
.lr-restoration-location-list {
  display: flex;

  flex-wrap: wrap;

  gap: 9px;
}


/* Bigger location text */
.lr-restoration-location-list span {
  min-height: 38px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding:
    9px 14px;

  color: var(--color-charcoal);

  background: var(--color-white);

  font-size: 13px;

  line-height: 1;

  font-weight: 700;

  white-space: nowrap;

  transition:
    transform 300ms ease,
    color 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
}


.lr-restoration-location-list span:hover {
  color: var(--color-white);

  background: var(--color-brown);

  transform:
    translateY(-4px);

  box-shadow:
    0 10px 20px rgba(41, 38, 36, 0.1);
}


/* =========================================================
   ACTIONS
========================================================= */

.lr-restoration-actions {
  display: flex;

  align-items: stretch;

  gap: 10px;
}


/* =========================================================
   PHONE BUTTON
========================================================= */

.lr-restoration-call {
  position: relative;

  min-width: 255px;
  min-height: 65px;

  display: flex;
  align-items: center;

  gap: 11px;

  padding:
    8px 15px 8px 8px;

  overflow: hidden;

  color: var(--color-white);

  background: var(--color-charcoal);

  text-decoration: none;

  box-shadow:
    0 14px 35px rgba(41, 38, 36, 0.16);

  transition:
    transform 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
}


.lr-restoration-call::before {
  content: "";

  position: absolute;

  top: 0;
  left: -110%;

  width: 65%;
  height: 100%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);

  transform:
    skewX(-20deg);

  animation:
    lrCallShine 4s ease-in-out infinite;
}


.lr-restoration-call:hover {
  color: var(--color-white);

  background: var(--color-brown);

  transform:
    translateY(-5px);

  box-shadow:
    0 20px 45px rgba(41, 38, 36, 0.22);
}


.lr-restoration-call-icon {
  position: relative;

  z-index: 2;

  width: 46px;
  height: 46px;

  flex: 0 0 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--color-charcoal);

  background: var(--color-beige);

  font-size: 17px;

  animation:
    lrPhoneRing 3s ease-in-out infinite;
}


.lr-restoration-call-copy {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;
}


.lr-restoration-call-copy small {
  margin-bottom: 3px;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.8px;

  text-transform: uppercase;

  opacity: 0.65;
}


.lr-restoration-call-copy strong {
  color: var(--color-white);

  font-size: 17px;

  font-weight: 800;
}


.lr-restoration-call-arrow {
  position: relative;

  z-index: 2;

  margin-left: auto;

  transition:
    transform 300ms ease;
}


.lr-restoration-call:hover .lr-restoration-call-arrow {
  transform:
    translate(4px, -4px);
}


/* =========================================================
   FREE ESTIMATE BUTTON
========================================================= */

.lr-restoration-estimate {
  min-height: 65px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  padding:
    0 21px;

  color: var(--color-charcoal);

  border:
    1px solid rgba(41, 38, 36, 0.18);

  font-size: 12px;

  font-weight: 800;

  text-decoration: none;

  transition:
    color 300ms ease,
    background 300ms ease,
    border-color 300ms ease,
    transform 300ms ease;
}


.lr-restoration-estimate:hover {
  color: var(--color-white);

  background: var(--color-brown);

  border-color: var(--color-brown);

  transform:
    translateY(-5px);
}


.lr-restoration-estimate i {
  transition:
    transform 300ms ease;
}


.lr-restoration-estimate:hover i {
  transform:
    translateX(5px);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes lrGridMove {

  from {
    background-position:
      0 0;
  }

  to {
    background-position:
      116px 58px;
  }

}


@keyframes lrOrbPulse {

  0%,
  100% {
    opacity: 0.55;

    transform:
      scale(0.9);
  }

  50% {
    opacity: 1;

    transform:
      scale(1.12);
  }

}


@keyframes lrFadeRight {

  from {
    opacity: 0;

    transform:
      translateX(-35px);
  }

  to {
    opacity: 1;

    transform:
      translateX(0);
  }

}


@keyframes lrFadeUp {

  from {
    opacity: 0;

    transform:
      translateY(25px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }

}


@keyframes lrTitleReveal {

  from {
    opacity: 0;

    transform:
      translateY(45px) scale(0.96);
  }

  to {
    opacity: 1;

    transform:
      translateY(0) scale(1);
  }

}


@keyframes lrPretitlePulse {

  0%,
  100% {
    transform:
      scale(1);
  }

  50% {
    transform:
      scale(1.12) rotate(-5deg);
  }

}


@keyframes lrFrameMove {

  0%,
  100% {
    transform:
      translate(0, 0);
  }

  50% {
    transform:
      translate(14px, -10px);
  }

}


@keyframes lrImageEntrance {

  from {
    opacity: 0;

    transform:
      translateX(-45px) scale(0.96);
  }

  to {
    opacity: 1;

    transform:
      translateX(0) scale(1);
  }

}


@keyframes lrImageZoom {

  from {
    transform:
      scale(1.02);
  }

  to {
    transform:
      scale(1.1);
  }

}


@keyframes lrImageShine {

  0%,
  25% {
    left: -90%;
  }

  70%,
  100% {
    left: 150%;
  }

}


@keyframes lrInfoFloat {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(-8px);
  }

}


@keyframes lrBadgeFloat {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(-10px);
  }

}


@keyframes lrLightning {

  0%,
  100% {
    transform:
      scale(1);
  }

  50% {
    transform:
      scale(1.14);
  }

}


@keyframes lrPanelEntrance {

  from {
    opacity: 0;

    transform:
      translateX(55px);
  }

  to {
    opacity: 1;

    transform:
      translateX(0);
  }

}


@keyframes lrPanelLine {

  from {
    width: 0;
  }

  to {
    width: 100%;
  }

}


@keyframes lrShieldPulse {

  0%,
  100% {
    transform:
      scale(1);
  }

  50% {
    transform:
      scale(1.12);
  }

}


@keyframes lrLocationBounce {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(-3px);
  }

}


@keyframes lrCallShine {

  0%,
  35% {
    left: -110%;
  }

  70%,
  100% {
    left: 160%;
  }

}


@keyframes lrPhoneRing {

  0%,
  82%,
  100% {
    transform:
      rotate(0);
  }

  87% {
    transform:
      rotate(-10deg);
  }

  91% {
    transform:
      rotate(10deg);
  }

  95% {
    transform:
      rotate(-5deg);
  }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

  .lr-restoration-main-title {
    max-width: 720px;

    font-size: 52px;

    letter-spacing: -2.7px;
  }


  .lr-restoration-panel {
    margin-left: -35px;

    padding:
      40px 32px;
  }


  .lr-restoration-service {
    grid-template-columns:
      26px 44px 1fr 20px;

    gap: 10px;
  }


  .lr-restoration-bottom {
    align-items: flex-start;

    flex-direction: column;
  }


  .lr-restoration-location-title {
    font-size: 13px;
  }


  .lr-restoration-location-list span {
    font-size: 13px;

    padding:
      9px 14px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .lr-restoration-section {
    padding:
      90px 0;
  }


  .lr-restoration-heading {
    margin-bottom:
      50px;
  }


  .lr-restoration-heading-text {
    max-width:
      650px;

    margin: 0;
  }


  .lr-restoration-main-title {
    max-width: 700px;

    font-size:
      clamp(40px,
        6vw,
        52px);

    line-height: 1.03;

    letter-spacing: -2.5px;
  }


  .lr-restoration-image-area {
    min-height: auto;

    padding: 25px;
  }


  .lr-restoration-image-wrap {
    height: 560px;
  }


  .lr-restoration-panel {
    min-height: auto;

    margin:
      -45px 30px 0;

    padding: 45px;
  }


  .lr-restoration-bottom {
    margin-top: 35px;
  }


  .lr-restoration-locations {
    gap: 14px;
  }


  .lr-restoration-location-list span {
    min-height: 38px;

    font-size: 12px;

    padding:
      9px 13px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .lr-restoration-section {
    padding:
      75px 0;
  }


  .lr-restoration-heading {
    margin-bottom: 42px;
  }


  .lr-restoration-pretitle {
    font-size: 9px;

    letter-spacing: 1.2px;
  }


  .lr-restoration-main-title {
    font-size:
      clamp(34px,
        9vw,
        44px);

    line-height: 1.04;

    letter-spacing: -2px;
  }


  .lr-restoration-heading-text {
    font-size: 14px;

    line-height: 1.7;
  }


  .lr-restoration-image-area {
    padding: 16px;
  }


  .lr-restoration-image-frame {
    display: none;
  }


  .lr-restoration-image-wrap {
    height: 480px;
  }


  .lr-restoration-image-tag {
    left: 16px;
    bottom: 16px;
  }


  .lr-restoration-fast-badge {
    top: 16px;
    right: 16px;
  }


  .lr-restoration-panel {
    margin:
      -30px 15px 0;

    padding:
      35px 25px;
  }


  .lr-restoration-panel-number {
    font-size: 60px;
  }


  .lr-restoration-intro {
    font-size: 15px;
  }


  .lr-restoration-service {
    grid-template-columns:
      30px 45px 1fr;

    padding:
      18px 0;
  }


  .lr-restoration-service-arrow {
    display: none;
  }


  .lr-restoration-service-copy h3 {
    font-size: 16px;
  }


  .lr-restoration-bottom {
    padding: 22px;
  }


  .lr-restoration-locations {
    width: 100%;

    align-items: flex-start;

    flex-direction: column;

    gap: 12px;
  }


  .lr-restoration-location-title {
    font-size: 12px;
  }


  .lr-restoration-location-title i {
    font-size: 13px;
  }


  .lr-restoration-location-list {
    gap: 8px;
  }


  .lr-restoration-location-list span {
    min-height: 38px;

    padding:
      9px 13px;

    font-size: 12px;
  }


  .lr-restoration-actions {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr;
  }


  .lr-restoration-call,
  .lr-restoration-estimate {
    width: 100%;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .lr-restoration-main-title {
    font-size: 35px;

    line-height: 1.05;

    letter-spacing: -1.7px;
  }


  .lr-restoration-image-wrap {
    height: 400px;
  }


  .lr-restoration-fast-badge {
    max-width: 180px;
  }


  .lr-restoration-fast-icon {
    width: 40px;
    height: 40px;
  }


  .lr-restoration-image-tag {
    right: 16px;
  }


  .lr-restoration-image-tag strong {
    font-size: 13px;
  }


  .lr-restoration-panel {
    margin:
      -20px 8px 0;

    padding:
      30px 20px;
  }


  .lr-restoration-panel-top {
    align-items: flex-start;

    flex-direction: column;
  }


  .lr-restoration-support {
    padding: 14px;
  }


  .lr-restoration-location-title {
    font-size: 11px;
  }


  .lr-restoration-location-list {
    gap: 7px;
  }


  .lr-restoration-location-list span {
    min-height: 36px;

    padding:
      8px 11px;

    font-size: 11px;
  }


  .lr-restoration-call {
    min-width: 0;
  }

}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .lr-restoration-section *,
  .lr-restoration-section *::before,
  .lr-restoration-section *::after {
    animation:
      none !important;

    transition-duration:
      0.01ms !important;
  }

}

/* 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 */
/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-choose-section {
  position: relative;

  padding: 125px 0;

  overflow: hidden;
  isolation: isolate;

  background: var(--color-off-white);
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.why-grid {
  position: absolute;
  inset: 0;

  z-index: -10;

  background-image:
    linear-gradient(rgba(41, 38, 36, 0.03) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(41, 38, 36, 0.03) 1px,
      transparent 1px);

  background-size: 58px 58px;

  animation:
    whyGridMove 22s linear infinite;
}


/* =========================================================
   GLOW
========================================================= */

.why-glow {
  position: absolute;

  z-index: -8;

  width: 650px;
  height: 650px;

  left: -320px;
  top: 20%;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(139, 116, 96, 0.16),
      transparent 68%);

  animation:
    whyGlowPulse 6s ease-in-out infinite;
}


/* =========================================================
   DECORATIVE SHAPES
========================================================= */

.why-shape {
  position: absolute;

  z-index: -7;

  pointer-events: none;
}


.why-shape-one {
  width: 250px;
  height: 250px;

  right: -130px;
  top: 100px;

  border:
    1px solid rgba(139, 116, 96, 0.15);

  transform: rotate(45deg);

  animation:
    whyShapeRotate 26s linear infinite;
}


.why-shape-two {
  width: 120px;
  height: 120px;

  right: 8%;
  bottom: 20px;

  background:
    rgba(139, 116, 96, 0.06);

  transform: rotate(45deg);

  animation:
    whyShapeFloat 6s ease-in-out infinite;
}


/* =========================================================
   HEADING
========================================================= */

.why-heading {
  position: relative;

  z-index: 4;

  margin-bottom: 60px;
}


/* =========================================================
   EYEBROW
========================================================= */

.why-eyebrow {
  width: fit-content;

  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 22px;

  padding:
    7px 15px 7px 7px;

  color: var(--color-brown-dark);

  background:
    rgba(139, 116, 96, 0.09);

  border:
    1px solid rgba(139, 116, 96, 0.15);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1.6px;

  text-transform: uppercase;

  animation:
    whyFadeRight 700ms ease both;
}


.why-eyebrow-icon {
  width: 37px;
  height: 37px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: var(--color-white);

  background: var(--color-brown);

  font-size: 15px;

  animation:
    whyIconPulse 2.4s ease-in-out infinite;
}


/* =========================================================
   TITLE
========================================================= */

.why-title {
  max-width: 920px;

  margin: 0;

  color: var(--color-charcoal);

  font-size:
    clamp(57px,
      5.8vw,
      88px);

  line-height: 0.97;

  font-weight: 800;

  letter-spacing: -5px;
}


.why-title span {
  display: block;

  color: var(--color-brown);
}


/* =========================================================
   HEADING COPY
========================================================= */

.why-heading-copy {
  max-width: 390px;

  margin-left: auto;
}


.why-heading-line {
  display: block;

  width: 70px;
  height: 3px;

  margin-bottom: 19px;

  background: var(--color-brown);

  animation:
    whyLineGrow 1.2s ease infinite alternate;
}


.why-heading-copy p {
  margin: 0;

  color: var(--color-text);

  font-size: 16px;

  line-height: 1.8;
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.why-main {
  position: relative;

  z-index: 4;

  box-shadow:
    0 35px 85px rgba(41, 38, 36, 0.12);
}


/* =========================================================
   LEFT MARKETING PANEL
========================================================= */

.why-marketing-panel {
  position: relative;

  min-height: 100%;

  padding: 55px 42px;

  overflow: hidden;

  color: var(--color-white);

  background: var(--color-charcoal);
}


/* Top accent */

.why-marketing-panel::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 5px;

  background: var(--color-beige);
}


/* Large decorative number */

.why-panel-number {
  position: absolute;

  right: 20px;
  top: 28px;

  color:
    rgba(255, 255, 255, 0.055);

  font-size: 145px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: -12px;

  animation:
    whyNumberFloat 6s ease-in-out infinite;
}


/* =========================================================
   PANEL CONTENT
========================================================= */

.why-panel-content {
  position: relative;

  z-index: 3;
}


.why-panel-icon {
  width: 64px;
  height: 64px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 34px;

  color: var(--color-charcoal);

  background: var(--color-beige);

  font-size: 25px;

  animation:
    whyPanelIcon 3s ease-in-out infinite;
}


.why-panel-content>small {
  display: block;

  margin-bottom: 12px;

  color: var(--color-beige);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.7px;

  text-transform: uppercase;
}


.why-panel-content h3 {
  margin: 0 0 24px;

  color: var(--color-white);

  font-size:
    clamp(35px,
      3.5vw,
      48px);

  line-height: 1.03;

  font-weight: 800;

  letter-spacing: -2px;
}


.why-panel-content h3 span {
  display: block;

  color: var(--color-beige);
}


.why-panel-content p {
  margin: 0;

  color:
    rgba(255, 255, 255, 0.63);

  font-size: 14px;

  line-height: 1.8;
}


/* =========================================================
   PANEL TRUST
========================================================= */

.why-panel-trust {
  position: relative;

  z-index: 4;

  display: grid;

  gap: 10px;

  margin-top: 38px;

  padding-top: 28px;

  border-top:
    1px solid rgba(255, 255, 255, 0.1);
}


.why-panel-trust-item {
  display: flex;

  align-items: center;

  gap: 11px;

  color:
    rgba(255, 255, 255, 0.8);
}


.why-panel-trust-item>span {
  width: 32px;
  height: 32px;

  flex: 0 0 32px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: var(--color-charcoal);

  background: var(--color-beige);

  font-size: 15px;

  transition:
    transform 300ms ease;
}


.why-panel-trust-item:hover>span {
  transform:
    rotate(-8deg) scale(1.12);
}


.why-panel-trust-item strong {
  font-size: 12px;

  font-weight: 700;
}


/* =========================================================
   PANEL DECORATION
========================================================= */

.why-panel-decoration {
  position: absolute;

  width: 240px;
  height: 240px;

  left: -145px;
  bottom: -155px;

  border:
    1px solid rgba(198, 182, 167, 0.13);

  transform: rotate(45deg);

  animation:
    whyPanelDecoration 22s linear infinite;
}


/* =========================================================
   FEATURE GRID
========================================================= */

.why-features {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  height: 100%;

  background: var(--color-white);
}


/* =========================================================
   FEATURE
========================================================= */

.why-feature {
  position: relative;

  min-height: 275px;

  padding: 35px 33px;

  overflow: hidden;

  background: var(--color-white);

  border-right:
    1px solid rgba(41, 38, 36, 0.08);

  border-bottom:
    1px solid rgba(41, 38, 36, 0.08);

  transition:
    background 400ms ease,
    transform 400ms ease;
}


.why-feature::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 0;

  background: var(--color-brown);

  transform:
    translateY(101%);

  transition:
    transform 450ms cubic-bezier(.2, .8, .2, 1);
}


.why-feature:hover::before {
  transform:
    translateY(0);
}


/* Larger highlighted first card */

.why-feature-primary {
  background: var(--color-cream);
}


/* =========================================================
   FEATURE NUMBER
========================================================= */

.why-feature-number {
  position: absolute;

  z-index: 1;

  right: 22px;
  top: 17px;

  color:
    rgba(41, 38, 36, 0.07);

  font-size: 64px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: -5px;

  transition:
    color 350ms ease;
}


.why-feature:hover .why-feature-number {
  color:
    rgba(255, 255, 255, 0.12);
}


/* =========================================================
   FEATURE ICON
========================================================= */

.why-feature-icon {
  position: relative;

  z-index: 2;

  width: 54px;
  height: 54px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 23px;

  color: var(--color-beige);

  background: var(--color-charcoal);

  font-size: 20px;

  transition:
    transform 350ms ease,
    color 350ms ease,
    background 350ms ease;
}


.why-feature:hover .why-feature-icon {
  color: var(--color-charcoal);

  background: var(--color-beige);

  transform:
    rotate(-8deg) scale(1.12);
}


/* =========================================================
   FEATURE COPY
========================================================= */

.why-feature-copy {
  position: relative;

  z-index: 2;
}


.why-feature-copy small {
  display: block;

  margin-bottom: 7px;

  color: var(--color-brown);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.2px;

  text-transform: uppercase;

  transition:
    color 350ms ease;
}


.why-feature-copy h3 {
  margin: 0 0 11px;

  color: var(--color-charcoal);

  font-size: 23px;

  font-weight: 800;

  letter-spacing: -0.8px;

  transition:
    color 350ms ease;
}


.why-feature-copy p {
  max-width: 350px;

  margin: 0;

  color: var(--color-text);

  font-size: 13px;

  line-height: 1.7;

  transition:
    color 350ms ease;
}


.why-feature:hover .why-feature-copy small {
  color: var(--color-beige-light);
}


.why-feature:hover .why-feature-copy h3 {
  color: var(--color-white);
}


.why-feature:hover .why-feature-copy p {
  color:
    rgba(255, 255, 255, 0.72);
}


/* =========================================================
   FEATURE ARROW
========================================================= */

.why-feature-arrow {
  position: absolute;

  z-index: 3;

  right: 27px;
  bottom: 27px;

  color: var(--color-brown);

  font-size: 18px;

  transition:
    color 350ms ease,
    transform 350ms ease;
}


.why-feature:hover .why-feature-arrow {
  color: var(--color-white);

  transform:
    translate(5px, -5px);
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.why-bottom {
  position: relative;

  z-index: 5;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;

  margin-top: 30px;

  padding: 24px 25px;

  background: var(--color-cream);

  border:
    1px solid rgba(139, 116, 96, 0.14);
}


/* =========================================================
   MESSAGE
========================================================= */

.why-bottom-message {
  display: flex;

  align-items: center;

  gap: 13px;
}


.why-bottom-icon {
  width: 51px;
  height: 51px;

  flex: 0 0 51px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: var(--color-beige);

  background: var(--color-charcoal);

  font-size: 18px;

  animation:
    whyBottomIcon 2.5s ease-in-out infinite;
}


.why-bottom-message div {
  display: flex;

  flex-direction: column;
}


.why-bottom-message small {
  margin-bottom: 3px;

  color: var(--color-brown);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.why-bottom-message strong {
  color: var(--color-charcoal);

  font-size: 15px;

  font-weight: 800;
}


/* =========================================================
   BOTTOM TRUST POINTS
========================================================= */

.why-bottom-points {
  display: flex;

  align-items: center;

  gap: 18px;
}


.why-bottom-points span {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: var(--color-charcoal);

  font-size: 10px;

  font-weight: 700;
}


.why-bottom-points i {
  color: var(--color-brown);

  font-size: 14px;
}


/* =========================================================
   ACTIONS
========================================================= */

.why-bottom-actions {
  display: flex;

  align-items: stretch;

  gap: 9px;
}


/* =========================================================
   CALL CTA
========================================================= */

.why-call-btn {
  position: relative;

  min-width: 255px;
  min-height: 63px;

  display: flex;

  align-items: center;

  gap: 10px;

  padding:
    8px 14px 8px 8px;

  overflow: hidden;

  color: var(--color-white);

  background: var(--color-charcoal);

  box-shadow:
    0 14px 32px rgba(41, 38, 36, 0.14);

  transition:
    transform 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
}


/* Shine */

.why-call-btn::before {
  content: "";

  position: absolute;

  top: 0;
  left: -110%;

  width: 65%;
  height: 100%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);

  transform:
    skewX(-20deg);

  animation:
    whyCallShine 4s ease-in-out infinite;
}


.why-call-btn:hover {
  color: var(--color-white);

  background: var(--color-brown);

  transform:
    translateY(-5px);

  box-shadow:
    0 20px 40px rgba(41, 38, 36, 0.22);
}


.why-call-icon {
  position: relative;

  z-index: 2;

  width: 45px;
  height: 45px;

  flex: 0 0 45px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: var(--color-charcoal);

  background: var(--color-beige);

  font-size: 16px;

  animation:
    whyPhoneRing 3s ease-in-out infinite;
}


.why-call-copy {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;
}


.why-call-copy small {
  margin-bottom: 3px;

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 0.8px;

  text-transform: uppercase;

  opacity: 0.65;
}


.why-call-copy strong {
  font-size: 16px;

  font-weight: 800;
}


.why-call-arrow {
  position: relative;

  z-index: 2;

  margin-left: auto;

  transition:
    transform 300ms ease;
}


.why-call-btn:hover .why-call-arrow {
  transform:
    translate(4px, -4px);
}


/* =========================================================
   ESTIMATE BUTTON
========================================================= */

.why-estimate-btn {
  min-height: 63px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  padding:
    0 19px;

  color: var(--color-charcoal);

  border:
    1px solid rgba(41, 38, 36, 0.18);

  font-size: 11px;

  font-weight: 800;

  transition:
    color 300ms ease,
    background 300ms ease,
    transform 300ms ease;
}


.why-estimate-btn:hover {
  color: var(--color-white);

  background: var(--color-brown);

  border-color: var(--color-brown);

  transform:
    translateY(-5px);
}


.why-estimate-btn i {
  transition:
    transform 300ms ease;
}


.why-estimate-btn:hover i {
  transform:
    translateX(5px);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes whyGridMove {

  from {
    background-position: 0 0;
  }

  to {
    background-position: 116px 58px;
  }

}


@keyframes whyGlowPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }

}


@keyframes whyShapeRotate {

  from {
    transform: rotate(45deg);
  }

  to {
    transform: rotate(405deg);
  }

}


@keyframes whyShapeFloat {

  0%,
  100% {
    transform:
      rotate(45deg) translateY(0);
  }

  50% {
    transform:
      rotate(55deg) translateY(-20px);
  }

}


@keyframes whyFadeRight {

  from {
    opacity: 0;
    transform: translateX(-35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }

}


@keyframes whyIconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform:
      scale(1.12) rotate(-5deg);
  }

}


@keyframes whyLineGrow {

  from {
    width: 45px;
  }

  to {
    width: 95px;
  }

}


@keyframes whyNumberFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(15px);
  }

}


@keyframes whyPanelIcon {

  0%,
  100% {
    transform:
      rotate(0) scale(1);
  }

  50% {
    transform:
      rotate(-6deg) scale(1.08);
  }

}


@keyframes whyPanelDecoration {

  from {
    transform: rotate(45deg);
  }

  to {
    transform: rotate(405deg);
  }

}


@keyframes whyBottomIcon {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.09);
  }

}


@keyframes whyCallShine {

  0%,
  35% {
    left: -110%;
  }

  70%,
  100% {
    left: 160%;
  }

}


@keyframes whyPhoneRing {

  0%,
  82%,
  100% {
    transform: rotate(0);
  }

  87% {
    transform: rotate(-10deg);
  }

  91% {
    transform: rotate(10deg);
  }

  95% {
    transform: rotate(-5deg);
  }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

  .why-title {
    font-size: 68px;
  }


  .why-marketing-panel {
    padding:
      45px 32px;
  }


  .why-feature {
    padding:
      30px 25px;
  }


  .why-bottom {
    flex-wrap: wrap;
  }


  .why-bottom-points {
    order: 3;

    width: 100%;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .why-choose-section {
    padding:
      90px 0;
  }


  .why-heading-copy {
    max-width:
      700px;

    margin-left:
      0;
  }


  .why-title {
    max-width:
      800px;

    font-size:
      clamp(57px,
        9vw,
        78px);
  }


  .why-marketing-panel {
    min-height:
      auto;

    padding:
      50px;
  }


  .why-panel-content h3 {
    max-width:
      570px;
  }


  .why-panel-content p {
    max-width:
      650px;
  }


  .why-panel-trust {
    grid-template-columns:
      repeat(3, 1fr);
  }


  .why-bottom {
    align-items:
      flex-start;

    flex-direction:
      column;
  }


  .why-bottom-actions {
    width:
      100%;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .why-choose-section {
    padding:
      75px 0;
  }


  .why-heading {
    margin-bottom:
      45px;
  }


  .why-eyebrow {
    font-size:
      9px;
  }


  .why-title {
    font-size:
      clamp(46px,
        12vw,
        59px);

    letter-spacing:
      -3px;
  }


  .why-heading-copy p {
    font-size:
      14px;
  }


  .why-marketing-panel {
    padding:
      38px 25px;
  }


  .why-panel-icon {
    width:
      55px;

    height:
      55px;

    margin-bottom:
      25px;
  }


  .why-panel-content h3 {
    font-size:
      38px;
  }


  .why-panel-trust {
    grid-template-columns:
      1fr;
  }


  .why-features {
    grid-template-columns:
      1fr;
  }


  .why-feature {
    min-height:
      auto;

    padding:
      30px 25px 48px;
  }


  .why-feature-copy h3 {
    font-size:
      21px;
  }


  .why-bottom {
    padding:
      20px;
  }


  .why-bottom-points {
    flex-wrap:
      wrap;
  }


  .why-bottom-actions {
    display:
      grid;

    grid-template-columns:
      1fr;
  }


  .why-call-btn,
  .why-estimate-btn {
    width:
      100%;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .why-title {
    font-size:
      43px;
  }


  .why-panel-content h3 {
    font-size:
      34px;
  }


  .why-panel-content p {
    font-size:
      13px;
  }


  .why-feature-copy p {
    font-size:
      12px;
  }


  .why-bottom-message {
    align-items:
      flex-start;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .why-choose-section *,
  .why-choose-section *::before,
  .why-choose-section *::after {
    animation:
      none !important;

    transition-duration:
      0.01ms !important;
  }

}

/* 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 */

/* =========================================================
   ADVANCED DRIVE MECHANICS - DESIGN 2
========================================================= */

.auto-drive-section {
  position: relative;
  padding: 125px 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-off-white);
}


/* =========================================================
   BACKGROUND
========================================================= */

.auto-drive-grid {
  position: absolute;
  inset: 0;
  z-index: -20;

  background-image:
    linear-gradient(rgba(41, 38, 36, 0.03) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(41, 38, 36, 0.03) 1px,
      transparent 1px);

  background-size: 62px 62px;

  animation:
    autoGridMove 24s linear infinite;
}


.auto-drive-glow {
  position: absolute;
  z-index: -15;
  border-radius: 50%;
}


.auto-drive-glow-one {
  width: 620px;
  height: 620px;

  left: -290px;
  top: 10%;

  background:
    radial-gradient(circle,
      rgba(139, 116, 96, 0.17),
      transparent 70%);

  animation:
    autoGlowOne 7s ease-in-out infinite;
}


.auto-drive-glow-two {
  width: 500px;
  height: 500px;

  right: -230px;
  bottom: -180px;

  background:
    radial-gradient(circle,
      rgba(198, 182, 167, 0.16),
      transparent 70%);

  animation:
    autoGlowTwo 8s ease-in-out infinite;
}


/* =========================================================
   BACKGROUND SHAPES
========================================================= */

.auto-drive-floating-shape {
  position: absolute;
  z-index: -12;
  pointer-events: none;
}


.auto-shape-one {
  width: 250px;
  height: 250px;

  left: 3%;
  top: 15%;

  border:
    1px solid rgba(139, 116, 96, 0.14);

  transform: rotate(45deg);

  animation:
    autoShapeRotate 28s linear infinite;
}


.auto-shape-two {
  width: 130px;
  height: 130px;

  right: 7%;
  top: 14%;

  background:
    rgba(139, 116, 96, 0.065);

  transform: rotate(45deg);

  animation:
    autoShapeFloat 6s ease-in-out infinite;
}


.auto-shape-three {
  width: 75px;
  height: 75px;

  left: 45%;
  bottom: 50px;

  border:
    2px solid rgba(139, 116, 96, 0.1);

  transform: rotate(45deg);

  animation:
    autoShapeThree 7s ease-in-out infinite;
}


/* =========================================================
   HEADING
========================================================= */

.auto-drive-heading {
  position: relative;
  z-index: 5;

  margin-bottom: 60px;
}


/* =========================================================
   EYEBROW
========================================================= */

.auto-drive-eyebrow {
  width: fit-content;

  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 22px;

  padding:
    7px 15px 7px 7px;

  color:
    var(--color-brown-dark);

  background:
    rgba(139, 116, 96, 0.09);

  border:
    1px solid rgba(139, 116, 96, 0.15);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1.6px;

  text-transform: uppercase;
}


.auto-drive-eyebrow>span {
  width: 38px;
  height: 38px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-white);

  background:
    var(--color-brown);

  font-size: 16px;

  animation:
    autoEyebrowPulse 2.4s ease-in-out infinite;
}


/* =========================================================
   TITLE
========================================================= */

.auto-drive-title {
  max-width: 950px;

  margin: 0;

  color:
    var(--color-charcoal);

  font-size:
    clamp(60px,
      6vw,
      90px);

  line-height: 0.96;

  font-weight: 800;

  letter-spacing: -5px;
}


.auto-drive-title span {
  display: block;

  color:
    var(--color-brown);
}


/* =========================================================
   HEADING COPY
========================================================= */

.auto-drive-heading-copy {
  max-width: 390px;

  margin:
    0 0 7px auto;

  color:
    var(--color-text);

  font-size: 17px;

  line-height: 1.8;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.auto-drive-layout {
  position: relative;

  z-index: 5;

  background:
    var(--color-white);

  box-shadow:
    0 35px 85px rgba(41, 38, 36, 0.13);
}


/* =========================================================
   CONTENT
========================================================= */

.auto-drive-content {
  position: relative;

  height: 100%;

  padding:
    58px 55px;

  overflow: hidden;
}


/* Large background number */

.auto-drive-big-number {
  position: absolute;

  right: 20px;
  top: 15px;

  color:
    rgba(41, 38, 36, 0.035);

  font-size: 190px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: -14px;

  animation:
    autoNumberFloat 7s ease-in-out infinite;
}


/* =========================================================
   INTRO
========================================================= */

.auto-drive-intro {
  position: relative;

  z-index: 3;

  max-width: 720px;

  margin-bottom: 32px;
}


.auto-drive-intro p {
  margin:
    0 0 13px;

  color:
    var(--color-text);

  font-size: 15px;

  line-height: 1.8;
}


.auto-drive-intro p:last-child {
  margin-bottom: 0;
}


.auto-drive-intro strong {
  color:
    var(--color-charcoal);

  font-weight: 800;
}


/* =========================================================
   SERVICE ROWS
========================================================= */

.auto-drive-services {
  position: relative;

  z-index: 4;

  border-top:
    1px solid rgba(41, 38, 36, 0.09);
}


.auto-drive-service {
  position: relative;

  display: grid;

  grid-template-columns:
    38px 58px 1fr 30px;

  align-items: center;

  gap: 15px;

  min-height: 135px;

  padding:
    22px 5px;

  overflow: hidden;

  border-bottom:
    1px solid rgba(41, 38, 36, 0.09);

  transition:
    padding-left 350ms ease;
}


.auto-drive-service::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: -1;

  background:
    var(--color-charcoal);

  transform:
    translateX(-101%);

  transition:
    transform 450ms cubic-bezier(.2, .8, .2, 1);
}


.auto-drive-service:hover::before {
  transform:
    translateX(0);
}


.auto-drive-service:hover {
  padding-left: 17px;
}


/* =========================================================
   SERVICE INDEX
========================================================= */

.auto-drive-service-index {
  color:
    var(--color-brown);

  font-size: 11px;

  font-weight: 800;

  transition:
    color 350ms ease;
}


.auto-drive-service:hover .auto-drive-service-index {
  color:
    var(--color-beige);
}


/* =========================================================
   SERVICE ICON
========================================================= */

.auto-drive-service-icon {
  width: 58px;
  height: 58px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  font-size: 21px;

  transition:
    color 350ms ease,
    background 350ms ease,
    transform 350ms ease;
}


.auto-drive-service:hover .auto-drive-service-icon {
  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  transform:
    rotate(-8deg) scale(1.08);
}


/* =========================================================
   SERVICE COPY
========================================================= */

.auto-drive-service-copy {
  position: relative;

  z-index: 2;
}


.auto-drive-service-copy small {
  display: block;

  margin-bottom: 5px;

  color:
    var(--color-brown);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.3px;

  text-transform: uppercase;

  transition:
    color 350ms ease;
}


.auto-drive-service-copy h3 {
  margin:
    0 0 7px;

  color:
    var(--color-charcoal);

  font-size: 22px;

  font-weight: 800;

  transition:
    color 350ms ease;
}


.auto-drive-service-copy p {
  max-width: 520px;

  margin: 0;

  color:
    var(--color-text);

  font-size: 12px;

  line-height: 1.65;

  transition:
    color 350ms ease;
}


.auto-drive-service:hover .auto-drive-service-copy small {
  color:
    var(--color-beige);
}


.auto-drive-service:hover .auto-drive-service-copy h3 {
  color:
    var(--color-white);
}


.auto-drive-service:hover .auto-drive-service-copy p {
  color:
    rgba(255, 255, 255, 0.67);
}


/* =========================================================
   SERVICE ARROW
========================================================= */

.auto-drive-service-arrow {
  color:
    var(--color-brown);

  font-size: 17px;

  transition:
    color 300ms ease,
    transform 300ms ease;
}


.auto-drive-service:hover .auto-drive-service-arrow {
  color:
    var(--color-white);

  transform:
    translate(5px, -5px);
}


/* =========================================================
   META
========================================================= */

.auto-drive-meta {
  position: relative;

  z-index: 4;

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 18px;

  margin-top: 28px;
}


.auto-drive-meta-group {
  padding:
    18px;

  background:
    var(--color-off-white);

  border:
    1px solid rgba(41, 38, 36, 0.07);
}


.auto-drive-meta-title {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  margin-bottom: 11px;

  color:
    var(--color-brown);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.auto-drive-meta-items {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;
}


.auto-drive-meta-items span {
  padding:
    7px 10px;

  color:
    var(--color-charcoal);

  background:
    var(--color-cream);

  font-size: 9px;

  font-weight: 700;

  transition:
    color 300ms ease,
    background 300ms ease,
    transform 300ms ease;
}


.auto-drive-meta-items span:hover {
  color:
    var(--color-white);

  background:
    var(--color-brown);

  transform:
    translateY(-3px);
}


/* =========================================================
   IMAGE AREA
========================================================= */

.auto-drive-visual {
  position: relative;

  height: 100%;

  min-height: 720px;

  padding:
    32px;

  overflow: hidden;

  background:
    var(--color-taupe);
}


/* =========================================================
   IMAGE FRAMES
========================================================= */

.auto-drive-image-frame {
  position: absolute;

  z-index: 1;

  inset:
    18px 18px 55px 55px;

  border:
    1px solid rgba(255, 255, 255, 0.42);

  animation:
    autoFrameOne 5s ease-in-out infinite;
}


.auto-drive-image-frame-two {
  position: absolute;

  z-index: 1;

  inset:
    55px 55px 18px 18px;

  border:
    1px solid rgba(41, 38, 36, 0.16);

  animation:
    autoFrameTwo 6s ease-in-out infinite;
}


/* =========================================================
   IMAGE
========================================================= */

.auto-drive-image-wrap {
  position: relative;

  z-index: 3;

  width: 100%;
  height: 100%;

  min-height: 656px;

  overflow: hidden;

  background:
    var(--color-charcoal);

  box-shadow:
    0 30px 70px rgba(41, 38, 36, 0.28);

  clip-path:
    polygon(0 0,
      88% 0,
      100% 12%,
      100% 100%,
      0 100%);
}


.auto-drive-image {
  width: 100%;
  height: 100%;

  min-height: 656px;

  object-fit: cover;
  object-position: center;

  animation:
    autoImageZoom 11s ease-in-out infinite alternate;
}


.auto-drive-image-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(180deg,
      rgba(41, 38, 36, 0.04) 30%,
      rgba(41, 38, 36, 0.72) 100%);
}


/* =========================================================
   SHINE
========================================================= */

.auto-drive-image-shine {
  position: absolute;

  top: -20%;
  left: -90%;

  width: 55%;
  height: 150%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.15),
      transparent);

  transform:
    skewX(-20deg);

  animation:
    autoImageShine 5s ease-in-out infinite;
}


/* =========================================================
   IMAGE TAG
========================================================= */

.auto-drive-image-tag {
  position: absolute;

  top: 27px;
  left: 25px;

  z-index: 7;

  display: flex;

  align-items: center;

  gap: 11px;

  padding:
    10px 15px 10px 10px;

  color:
    var(--color-white);

  background:
    rgba(41, 38, 36, 0.92);

  backdrop-filter:
    blur(10px);

  animation:
    autoTagFloat 4s ease-in-out infinite;
}


.auto-drive-image-tag>span {
  width: 43px;
  height: 43px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 16px;
}


.auto-drive-image-tag div {
  display: flex;

  flex-direction: column;
}


.auto-drive-image-tag small {
  margin-bottom: 3px;

  color:
    rgba(255, 255, 255, 0.57);

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.auto-drive-image-tag strong {
  font-size: 13px;

  font-weight: 800;
}


/* =========================================================
   ORBIT
========================================================= */

.auto-drive-orbit {
  position: absolute;

  right: 32px;
  top: 50%;

  z-index: 7;

  width: 165px;
  height: 165px;

  transform:
    translateY(-50%);
}


.auto-drive-orbit-ring {
  position: absolute;

  inset: 0;

  border:
    1px solid rgba(255, 255, 255, 0.32);

  border-radius: 50%;

  animation:
    autoOrbitRotate 12s linear infinite;
}


.auto-drive-orbit-ring::before {
  content: "";

  position: absolute;

  inset: 18px;

  border:
    1px dashed rgba(198, 182, 167, 0.42);

  border-radius: 50%;
}


.auto-drive-orbit-center {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 62px;
  height: 62px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  border-radius: 50%;

  font-size: 23px;

  transform:
    translate(-50%, -50%);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.2);
}


.auto-drive-orbit-icon {
  position: absolute;

  width: 37px;
  height: 37px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  border:
    1px solid rgba(198, 182, 167, 0.25);

  border-radius: 50%;

  font-size: 13px;
}


.orbit-icon-one {
  top: -5px;
  left: 50%;

  transform:
    translateX(-50%);

  animation:
    autoOrbitIconOne 4s ease-in-out infinite;
}


.orbit-icon-two {
  right: -4px;
  bottom: 22px;

  animation:
    autoOrbitIconTwo 4.5s ease-in-out infinite;
}


.orbit-icon-three {
  left: -5px;
  bottom: 20px;

  animation:
    autoOrbitIconThree 5s ease-in-out infinite;
}


/* =========================================================
   IMAGE BOTTOM COPY
========================================================= */

.auto-drive-image-bottom {
  position: absolute;

  left: 25px;
  bottom: 25px;

  z-index: 7;

  display: flex;

  flex-direction: column;

  padding:
    14px 17px;

  background:
    rgba(255, 255, 255, 0.94);

  backdrop-filter:
    blur(10px);

  animation:
    autoBottomFloat 4.5s ease-in-out infinite;
}


.auto-drive-image-bottom small {
  margin-bottom: 4px;

  color:
    var(--color-brown);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.auto-drive-image-bottom strong {
  color:
    var(--color-charcoal);

  font-size: 15px;

  font-weight: 800;
}


/* =========================================================
   CTA
========================================================= */

.auto-drive-cta {
  position: relative;

  z-index: 6;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;

  margin-top: 32px;

  padding:
    24px 26px;

  background:
    var(--color-cream);

  border:
    1px solid rgba(139, 116, 96, 0.14);
}


/* =========================================================
   CTA COPY
========================================================= */

.auto-drive-cta-copy {
  display: flex;

  align-items: center;

  gap: 13px;
}


.auto-drive-cta-icon {
  width: 52px;
  height: 52px;

  flex: 0 0 52px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  font-size: 19px;

  animation:
    autoShieldPulse 2.5s ease-in-out infinite;
}


.auto-drive-cta-copy div {
  display: flex;

  flex-direction: column;
}


.auto-drive-cta-copy small {
  margin-bottom: 3px;

  color:
    var(--color-brown);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.auto-drive-cta-copy strong {
  color:
    var(--color-charcoal);

  font-size: 16px;

  font-weight: 800;
}


/* =========================================================
   ACTIONS
========================================================= */

.auto-drive-actions {
  display: flex;

  align-items: stretch;

  gap: 10px;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.auto-drive-call {
  position: relative;

  min-width: 270px;
  min-height: 64px;

  display: flex;

  align-items: center;

  gap: 11px;

  padding:
    8px 15px 8px 8px;

  overflow: hidden;

  color:
    var(--color-white);

  background:
    var(--color-charcoal);

  transition:
    background 300ms ease,
    transform 300ms ease,
    box-shadow 300ms ease;
}


.auto-drive-call::before {
  content: "";

  position: absolute;

  top: 0;
  left: -110%;

  width: 60%;
  height: 100%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);

  transform:
    skewX(-20deg);

  animation:
    autoCallShine 4s ease-in-out infinite;
}


.auto-drive-call:hover {
  color:
    var(--color-white);

  background:
    var(--color-brown);

  transform:
    translateY(-5px);

  box-shadow:
    0 18px 40px rgba(41, 38, 36, 0.2);
}


.auto-drive-call>span {
  position: relative;

  z-index: 2;

  width: 45px;
  height: 45px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 16px;

  animation:
    autoPhoneRing 3s ease-in-out infinite;
}


.auto-drive-call>div {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;
}


.auto-drive-call small {
  margin-bottom: 3px;

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 0.8px;

  text-transform: uppercase;

  opacity: 0.65;
}


.auto-drive-call strong {
  font-size: 16px;

  font-weight: 800;
}


.auto-drive-call>i {
  position: relative;

  z-index: 2;

  margin-left: auto;

  transition:
    transform 300ms ease;
}


.auto-drive-call:hover>i {
  transform:
    translate(4px, -4px);
}


/* =========================================================
   ESTIMATE
========================================================= */

.auto-drive-estimate {
  min-height: 64px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  padding:
    0 20px;

  color:
    var(--color-charcoal);

  border:
    1px solid rgba(41, 38, 36, 0.18);

  font-size: 11px;

  font-weight: 800;

  transition:
    color 300ms ease,
    background 300ms ease,
    transform 300ms ease;
}


.auto-drive-estimate:hover {
  color:
    var(--color-white);

  background:
    var(--color-brown);

  border-color:
    var(--color-brown);

  transform:
    translateY(-5px);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes autoGridMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 124px 62px;
  }
}


@keyframes autoGlowOne {

  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}


@keyframes autoGlowTwo {

  0%,
  100% {
    transform:
      translate(0, 0) scale(1);
  }

  50% {
    transform:
      translate(-20px, -15px) scale(1.08);
  }
}


@keyframes autoShapeRotate {
  from {
    transform: rotate(45deg);
  }

  to {
    transform: rotate(405deg);
  }
}


@keyframes autoShapeFloat {

  0%,
  100% {
    transform:
      rotate(45deg) translateY(0);
  }

  50% {
    transform:
      rotate(55deg) translateY(-22px);
  }
}


@keyframes autoShapeThree {

  0%,
  100% {
    transform:
      rotate(45deg) translate(0, 0);
  }

  50% {
    transform:
      rotate(120deg) translate(18px, -20px);
  }
}


@keyframes autoEyebrowPulse {

  0%,
  100% {
    transform:
      scale(1);
  }

  50% {
    transform:
      scale(1.12) rotate(-5deg);
  }
}


@keyframes autoNumberFloat {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(18px);
  }
}


@keyframes autoFrameOne {

  0%,
  100% {
    transform:
      translate(0, 0);
  }

  50% {
    transform:
      translate(13px, -10px);
  }
}


@keyframes autoFrameTwo {

  0%,
  100% {
    transform:
      translate(0, 0);
  }

  50% {
    transform:
      translate(-12px, 12px);
  }
}


@keyframes autoImageZoom {
  from {
    transform:
      scale(1.02);
  }

  to {
    transform:
      scale(1.11);
  }
}


@keyframes autoImageShine {

  0%,
  25% {
    left: -90%;
  }

  70%,
  100% {
    left: 150%;
  }
}


@keyframes autoTagFloat {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(-9px);
  }
}


@keyframes autoOrbitRotate {
  from {
    transform:
      rotate(0);
  }

  to {
    transform:
      rotate(360deg);
  }
}


@keyframes autoOrbitIconOne {

  0%,
  100% {
    transform:
      translateX(-50%) scale(1);
  }

  50% {
    transform:
      translateX(-50%) scale(1.15);
  }
}


@keyframes autoOrbitIconTwo {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(-8px);
  }
}


@keyframes autoOrbitIconThree {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(8px);
  }
}


@keyframes autoBottomFloat {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(-7px);
  }
}


@keyframes autoShieldPulse {

  0%,
  100% {
    transform:
      scale(1);
  }

  50% {
    transform:
      scale(1.09);
  }
}


@keyframes autoCallShine {

  0%,
  35% {
    left: -110%;
  }

  70%,
  100% {
    left: 160%;
  }
}


@keyframes autoPhoneRing {

  0%,
  82%,
  100% {
    transform:
      rotate(0);
  }

  87% {
    transform:
      rotate(-10deg);
  }

  91% {
    transform:
      rotate(10deg);
  }

  95% {
    transform:
      rotate(-5deg);
  }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

  .auto-drive-title {
    font-size: 70px;
  }


  .auto-drive-content {
    padding:
      48px 40px;
  }


  .auto-drive-service {
    grid-template-columns:
      30px 50px 1fr 25px;
  }


  .auto-drive-cta {
    align-items:
      flex-start;

    flex-direction:
      column;
  }

}


@media (max-width: 991.98px) {

  .auto-drive-section {
    padding:
      90px 0;
  }


  .auto-drive-title {
    font-size:
      clamp(58px,
        9vw,
        78px);
  }


  .auto-drive-heading-copy {
    max-width:
      700px;

    margin:
      0;
  }


  .auto-drive-visual {
    min-height:
      600px;
  }


  .auto-drive-image-wrap,
  .auto-drive-image {
    min-height:
      540px;
  }


  .auto-drive-content {
    padding:
      50px;
  }

}


@media (max-width: 767.98px) {

  .auto-drive-section {
    padding:
      75px 0;
  }


  .auto-drive-heading {
    margin-bottom:
      45px;
  }


  .auto-drive-title {
    font-size:
      clamp(47px,
        12vw,
        62px);

    letter-spacing:
      -3px;
  }


  .auto-drive-heading-copy {
    font-size:
      15px;
  }


  .auto-drive-content {
    padding:
      38px 24px;
  }


  .auto-drive-service {
    grid-template-columns:
      30px 48px 1fr;

    min-height:
      auto;
  }


  .auto-drive-service-arrow {
    display:
      none;
  }


  .auto-drive-service-copy h3 {
    font-size:
      18px;
  }


  .auto-drive-meta {
    grid-template-columns:
      1fr;
  }


  .auto-drive-visual {
    min-height:
      520px;

    padding:
      18px;
  }


  .auto-drive-image-frame,
  .auto-drive-image-frame-two {
    display:
      none;
  }


  .auto-drive-image-wrap,
  .auto-drive-image {
    min-height:
      480px;
  }


  .auto-drive-orbit {
    width:
      125px;

    height:
      125px;

    right:
      18px;
  }


  .auto-drive-orbit-center {
    width:
      50px;

    height:
      50px;
  }


  .auto-drive-cta {
    padding:
      20px;
  }


  .auto-drive-actions {
    width:
      100%;

    display:
      grid;

    grid-template-columns:
      1fr;
  }


  .auto-drive-call,
  .auto-drive-estimate {
    width:
      100%;

    min-width:
      0;
  }

}


@media (max-width: 480px) {

  .auto-drive-title {
    font-size:
      43px;
  }


  .auto-drive-content {
    padding:
      32px 18px;
  }


  .auto-drive-intro p {
    font-size:
      13px;
  }


  .auto-drive-service {
    grid-template-columns:
      45px 1fr;
  }


  .auto-drive-service-index {
    display:
      none;
  }


  .auto-drive-visual {
    min-height:
      430px;
  }


  .auto-drive-image-wrap,
  .auto-drive-image {
    min-height:
      400px;
  }


  .auto-drive-orbit {
    display:
      none;
  }


  .auto-drive-image-tag {
    top:
      15px;

    left:
      15px;
  }


  .auto-drive-image-bottom {
    left:
      15px;

    right:
      15px;

    bottom:
      15px;
  }


  .auto-drive-cta-copy {
    align-items:
      flex-start;
  }

}


@media (prefers-reduced-motion: reduce) {

  .auto-drive-section *,
  .auto-drive-section *::before,
  .auto-drive-section *::after {
    animation:
      none !important;

    transition-duration:
      0.01ms !important;
  }

}


/* =========================================================
   SMALLER SECTION TITLE
========================================================= */

.why-title {
  max-width: 820px;

  margin: 0;

  color: var(--color-charcoal);

  font-size: clamp(40px, 4.2vw, 58px);

  line-height: 1.02;

  font-weight: 800;

  letter-spacing: -3px;
}


.why-title span {
  display: block;

  color: var(--color-brown);
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

  .why-title {
    font-size: 52px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .why-title {
    max-width: 720px;

    font-size: clamp(40px, 6vw, 50px);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .why-title {
    font-size: clamp(34px, 9vw, 43px);

    line-height: 1.04;

    letter-spacing: -2px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .why-title {
    font-size: 35px;

    line-height: 1.05;

    letter-spacing: -1.7px;
  }

}

/* =========================================================
   AUTO DRIVE - TYPOGRAPHY UPDATE
========================================================= */

/* Smaller section title */
.auto-drive-title {
  max-width: 760px;

  font-size: clamp(38px, 4vw, 56px);

  line-height: 1.03;

  letter-spacing: -2.8px;
}


/* Slightly more readable heading copy */
.auto-drive-heading-copy {
  font-size: 15px;

  line-height: 1.75;
}


/* =========================================================
   BIGGER META BOX TITLES
   Components Checked / Serving
========================================================= */

.auto-drive-meta-title {
  gap: 9px;

  margin-bottom: 14px;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 1.1px;
}


.auto-drive-meta-title i {
  font-size: 13px;
}


/* =========================================================
   BIGGER META PILLS
========================================================= */

.auto-drive-meta-items {
  gap: 9px;
}


.auto-drive-meta-items span {
  min-height: 38px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 9px 14px;

  font-size: 12px;

  line-height: 1;

  font-weight: 700;

  white-space: nowrap;
}


/* Give boxes a little more space */
.auto-drive-meta-group {
  padding: 21px;
}


/* =========================================================
   SERVICE COPY SLIGHTLY BIGGER
========================================================= */

.auto-drive-service-copy small {
  font-size: 9px;
}


.auto-drive-service-copy h3 {
  font-size: 21px;
}


.auto-drive-service-copy p {
  font-size: 13px;

  line-height: 1.65;
}


/* =========================================================
   INTRO
========================================================= */

.auto-drive-intro p {
  font-size: 15px;

  line-height: 1.8;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

  .auto-drive-title {
    font-size: 50px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .auto-drive-title {
    max-width: 700px;

    font-size: clamp(40px, 6vw, 50px);
  }


  .auto-drive-meta-title {
    font-size: 12px;
  }


  .auto-drive-meta-items span {
    font-size: 12px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .auto-drive-title {
    font-size: clamp(34px, 9vw, 43px);

    line-height: 1.04;

    letter-spacing: -2px;
  }


  .auto-drive-meta-title {
    font-size: 11px;
  }


  .auto-drive-meta-items span {
    min-height: 37px;

    padding: 9px 12px;

    font-size: 11px;
  }


  .auto-drive-service-copy h3 {
    font-size: 18px;
  }


  .auto-drive-service-copy p {
    font-size: 12px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .auto-drive-title {
    font-size: 35px;

    line-height: 1.05;
  }


  .auto-drive-meta-group {
    padding: 18px;
  }


  .auto-drive-meta-title {
    font-size: 11px;
  }


  .auto-drive-meta-items span {
    font-size: 11px;

    padding: 8px 11px;
  }

}



/* 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 */

/* =========================================================
   GARAGE DOOR BRANDS MARQUEE
========================================================= */

.brands-marquee-section {
  position: relative;

  padding: 115px 0;

  overflow: hidden;
  isolation: isolate;

  background: var(--color-charcoal);
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.brands-bg-grid {
  position: absolute;
  inset: 0;

  z-index: -20;

  opacity: 0.55;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px);

  background-size:
    58px 58px;

  animation:
    brandsGridMove 22s linear infinite;
}


/* =========================================================
   GLOW
========================================================= */

.brands-bg-glow {
  position: absolute;

  z-index: -15;

  width: 650px;
  height: 650px;

  left: 50%;
  top: 50%;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(198, 182, 167, 0.12),
      transparent 68%);

  transform:
    translate(-50%, -50%);

  animation:
    brandsGlowPulse 6s ease-in-out infinite;
}


/* =========================================================
   SHAPES
========================================================= */

.brands-shape {
  position: absolute;

  z-index: -12;

  pointer-events: none;
}


.brands-shape-one {
  width: 280px;
  height: 280px;

  left: -150px;
  top: 80px;

  border:
    1px solid rgba(198, 182, 167, 0.12);

  transform: rotate(45deg);

  animation:
    brandsShapeRotate 27s linear infinite;
}


.brands-shape-two {
  width: 130px;
  height: 130px;

  right: 8%;
  top: 60px;

  background:
    rgba(198, 182, 167, 0.05);

  transform: rotate(45deg);

  animation:
    brandsShapeFloat 6s ease-in-out infinite;
}


.brands-shape-three {
  width: 220px;
  height: 220px;

  right: -120px;
  bottom: 20px;

  border:
    1px solid rgba(198, 182, 167, 0.11);

  border-radius: 50%;

  animation:
    brandsCirclePulse 7s ease-in-out infinite;
}


/* =========================================================
   HEADING
========================================================= */

.brands-heading {
  position: relative;

  z-index: 5;

  margin-bottom: 55px;
}


/* =========================================================
   EYEBROW
========================================================= */

.brands-eyebrow {
  width: fit-content;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 22px;

  padding:
    7px 15px 7px 7px;

  color:
    var(--color-beige-light);

  background:
    rgba(198, 182, 167, 0.08);

  border:
    1px solid rgba(198, 182, 167, 0.14);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.7px;

  text-transform: uppercase;
}


.brands-eyebrow-icon {
  width: 37px;
  height: 37px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 16px;

  animation:
    brandsIconPulse 2.5s ease-in-out infinite;
}


/* =========================================================
   TITLE
========================================================= */

.brands-title {
  max-width: 900px;

  margin: 0;

  color:
    var(--color-white);

  font-size:
    clamp(56px,
      5.7vw,
      84px);

  line-height:
    0.98;

  font-weight:
    800;

  letter-spacing:
    -4.5px;
}


.brands-title span {
  display:
    block;

  color:
    var(--color-beige);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.brands-description {
  max-width:
    390px;

  margin:
    0 0 8px auto;

  color:
    rgba(255, 255, 255, 0.63);

  font-size:
    15px;

  line-height:
    1.8;
}


/* =========================================================
   MARQUEE AREA
========================================================= */

.brands-marquee-area {
  position: relative;

  z-index: 5;

  padding:
    14px 0;

  overflow: hidden;
}


/* Dark gradient fade on sides */

.brands-marquee-area::before,
.brands-marquee-area::after {
  content: "";

  position: absolute;

  top: 0;
  bottom: 0;

  z-index: 20;

  width: 12%;

  pointer-events: none;
}


.brands-marquee-area::before {
  left: 0;

  background:
    linear-gradient(90deg,
      var(--color-charcoal),
      transparent);
}


.brands-marquee-area::after {
  right: 0;

  background:
    linear-gradient(270deg,
      var(--color-charcoal),
      transparent);
}


/* =========================================================
   MARQUEE
========================================================= */

.brands-marquee {
  position: relative;

  width: 100%;

  overflow: hidden;

  padding:
    12px 0;
}


.brands-track {
  width:
    max-content;

  display:
    flex;

  align-items:
    center;

  gap:
    18px;

  will-change:
    transform;
}


/* Row one */

.brands-marquee-left .brands-track {
  animation:
    brandsScrollLeft 27s linear infinite;
}


/* Row two */

.brands-marquee-right .brands-track {
  animation:
    brandsScrollRight 31s linear infinite;
}


/* Pause on hover */

.brands-marquee:hover .brands-track {
  animation-play-state:
    paused;
}


/* =========================================================
   BRAND ITEM
========================================================= */

.brand-logo-item {
  position: relative;

  width: 215px;
  height: 105px;

  flex:
    0 0 215px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  padding:
    22px 25px;

  overflow:
    hidden;

  background:
    rgba(255, 255, 255, 0.95);

  border:
    1px solid rgba(255, 255, 255, 0.07);

  transition:
    transform 350ms ease,
    background 350ms ease,
    box-shadow 350ms ease;
}


/* bottom accent */

.brand-logo-item::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 4px;

  background:
    var(--color-brown);

  transition:
    width 350ms ease;
}


.brand-logo-item:hover {
  z-index: 4;

  background:
    var(--color-white);

  transform:
    translateY(-8px) scale(1.04);

  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.22);
}


.brand-logo-item:hover::after {
  width:
    100%;
}


/* =========================================================
   BRAND LOGOS
========================================================= */

.brand-logo-item img {
  width:
    auto;

  max-width:
    155px;

  max-height:
    58px;

  object-fit:
    contain;

  filter:
    grayscale(100%);

  opacity:
    0.75;

  transition:
    transform 350ms ease,
    filter 350ms ease,
    opacity 350ms ease;
}


.brand-logo-item:hover img {
  filter:
    grayscale(0%);

  opacity:
    1;

  transform:
    scale(1.08);
}


/* =========================================================
   CENTER LABEL
========================================================= */

.brands-center-label {
  position: relative;

  z-index: 8;

  width:
    fit-content;

  display:
    flex;

  align-items:
    center;

  gap:
    12px;

  margin:
    12px auto;

  padding:
    10px 18px 10px 10px;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.2);

  animation:
    brandsCenterFloat 4s ease-in-out infinite;
}


.brands-center-label>span {
  width:
    42px;

  height:
    42px;

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  font-size:
    17px;

  animation:
    brandsGearMove 6s linear infinite;
}


.brands-center-label div {
  display:
    flex;

  flex-direction:
    column;
}


.brands-center-label small {
  margin-bottom:
    3px;

  color:
    var(--color-brown-dark);

  font-size:
    7px;

  font-weight:
    800;

  letter-spacing:
    1.1px;

  text-transform:
    uppercase;
}


.brands-center-label strong {
  font-size:
    12px;

  font-weight:
    800;
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.brands-bottom {
  position: relative;

  z-index: 6;

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    25px;

  margin-top:
    50px;

  padding:
    22px 24px;

  background:
    rgba(255, 255, 255, 0.055);

  border:
    1px solid rgba(255, 255, 255, 0.09);
}


/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.brands-bottom-message {
  display:
    flex;

  align-items:
    center;

  gap:
    13px;
}


.brands-bottom-icon {
  width:
    50px;

  height:
    50px;

  flex:
    0 0 50px;

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size:
    19px;

  animation:
    brandsToolsMove 3s ease-in-out infinite;
}


.brands-bottom-message div {
  display:
    flex;

  flex-direction:
    column;
}


.brands-bottom-message small {
  margin-bottom:
    3px;

  color:
    var(--color-beige);

  font-size:
    8px;

  font-weight:
    800;

  letter-spacing:
    1px;

  text-transform:
    uppercase;
}


.brands-bottom-message strong {
  color:
    var(--color-white);

  font-size:
    14px;

  font-weight:
    800;
}


/* =========================================================
   TRUST ITEMS
========================================================= */

.brands-bottom-trust {
  display:
    flex;

  align-items:
    center;

  gap:
    17px;
}


.brands-bottom-trust span {
  display:
    inline-flex;

  align-items:
    center;

  gap:
    7px;

  color:
    rgba(255, 255, 255, 0.68);

  font-size:
    9px;

  font-weight:
    700;
}


.brands-bottom-trust i {
  color:
    var(--color-beige);

  font-size:
    13px;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.brands-call-btn {
  position:
    relative;

  min-width:
    245px;

  min-height:
    60px;

  display:
    flex;

  align-items:
    center;

  gap:
    10px;

  padding:
    7px 14px 7px 7px;

  overflow:
    hidden;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  transition:
    background 300ms ease,
    color 300ms ease,
    transform 300ms ease,
    box-shadow 300ms ease;
}


/* shine */

.brands-call-btn::before {
  content: "";

  position:
    absolute;

  top:
    0;

  left:
    -110%;

  width:
    65%;

  height:
    100%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.55),
      transparent);

  transform:
    skewX(-20deg);

  animation:
    brandsCallShine 4s ease-in-out infinite;
}


.brands-call-btn:hover {
  color:
    var(--white);

  background:
    var(--color-brown);

  transform:
    translateY(-5px);

  box-shadow:
    0 17px 40px rgba(0, 0, 0, 0.22);
}


.brands-call-btn>span {
  position:
    relative;

  z-index:
    2;

  width:
    44px;

  height:
    44px;

  flex:
    0 0 44px;

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  font-size:
    16px;

  animation:
    brandsPhoneRing 3s ease-in-out infinite;
}


.brands-call-btn div {
  position:
    relative;

  z-index:
    2;

  display:
    flex;

  flex-direction:
    column;
}


.brands-call-btn small {
  margin-bottom:
    3px;

  font-size:
    7px;

  font-weight:
    800;

  letter-spacing:
    0.8px;

  text-transform:
    uppercase;

  opacity:
    0.65;
}


.brands-call-btn strong {
  font-size:
    16px;

  font-weight:
    800;
}


.brands-call-btn>i {
  position:
    relative;

  z-index:
    2;

  margin-left:
    auto;

  transition:
    transform 300ms ease;
}


.brands-call-btn:hover>i {
  transform:
    translate(4px, -4px);
}


/* =========================================================
   MARQUEE ANIMATIONS
========================================================= */

@keyframes brandsScrollLeft {

  from {
    transform:
      translateX(0);
  }

  to {
    transform:
      translateX(calc(-50% - 9px));
  }

}


@keyframes brandsScrollRight {

  from {
    transform:
      translateX(calc(-50% - 9px));
  }

  to {
    transform:
      translateX(0);
  }

}


/* =========================================================
   DECORATIVE ANIMATIONS
========================================================= */

@keyframes brandsGridMove {

  from {
    background-position:
      0 0;
  }

  to {
    background-position:
      116px 58px;
  }

}


@keyframes brandsGlowPulse {

  0%,
  100% {
    opacity:
      0.45;

    transform:
      translate(-50%, -50%) scale(0.9);
  }

  50% {
    opacity:
      1;

    transform:
      translate(-50%, -50%) scale(1.15);
  }

}


@keyframes brandsShapeRotate {

  from {
    transform:
      rotate(45deg);
  }

  to {
    transform:
      rotate(405deg);
  }

}


@keyframes brandsShapeFloat {

  0%,
  100% {
    transform:
      rotate(45deg) translateY(0);
  }

  50% {
    transform:
      rotate(55deg) translateY(-22px);
  }

}


@keyframes brandsCirclePulse {

  0%,
  100% {
    transform:
      scale(0.9);

    opacity:
      0.4;
  }

  50% {
    transform:
      scale(1.12);

    opacity:
      0.9;
  }

}


@keyframes brandsIconPulse {

  0%,
  100% {
    transform:
      scale(1);
  }

  50% {
    transform:
      scale(1.12) rotate(-6deg);
  }

}


@keyframes brandsCenterFloat {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(-7px);
  }

}


@keyframes brandsGearMove {

  from {
    transform:
      rotate(0);
  }

  to {
    transform:
      rotate(360deg);
  }

}


@keyframes brandsToolsMove {

  0%,
  100% {
    transform:
      rotate(0) scale(1);
  }

  50% {
    transform:
      rotate(-7deg) scale(1.08);
  }

}


@keyframes brandsCallShine {

  0%,
  35% {
    left:
      -110%;
  }

  70%,
  100% {
    left:
      160%;
  }

}


@keyframes brandsPhoneRing {

  0%,
  82%,
  100% {
    transform:
      rotate(0);
  }

  87% {
    transform:
      rotate(-10deg);
  }

  91% {
    transform:
      rotate(10deg);
  }

  95% {
    transform:
      rotate(-5deg);
  }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

  .brands-title {
    font-size:
      68px;
  }


  .brands-bottom {
    flex-wrap:
      wrap;
  }


  .brands-bottom-trust {
    order:
      3;

    width:
      100%;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .brands-marquee-section {
    padding:
      90px 0;
  }


  .brands-title {
    font-size:
      clamp(56px,
        9vw,
        76px);
  }


  .brands-description {
    max-width:
      700px;

    margin:
      0;
  }


  .brand-logo-item {
    width:
      190px;

    flex-basis:
      190px;

    height:
      95px;
  }


  .brands-bottom {
    align-items:
      flex-start;

    flex-direction:
      column;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .brands-marquee-section {
    padding:
      75px 0;
  }


  .brands-heading {
    margin-bottom:
      40px;
  }


  .brands-eyebrow {
    font-size:
      9px;
  }


  .brands-title {
    font-size:
      clamp(45px,
        12vw,
        58px);

    letter-spacing:
      -3px;
  }


  .brands-description {
    font-size:
      14px;
  }


  .brand-logo-item {
    width:
      165px;

    flex-basis:
      165px;

    height:
      86px;

    padding:
      18px;
  }


  .brand-logo-item img {
    max-width:
      125px;

    max-height:
      48px;
  }


  .brands-marquee-left .brands-track {
    animation-duration:
      23s;
  }


  .brands-marquee-right .brands-track {
    animation-duration:
      27s;
  }


  .brands-center-label {
    margin:
      10px auto;

    padding:
      8px 12px 8px 8px;
  }


  .brands-bottom {
    padding:
      19px;
  }


  .brands-bottom-trust {
    flex-wrap:
      wrap;
  }


  .brands-call-btn {
    width:
      100%;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .brands-title {
    font-size:
      42px;
  }


  .brand-logo-item {
    width:
      145px;

    flex-basis:
      145px;

    height:
      78px;

    padding:
      14px;
  }


  .brand-logo-item img {
    max-width:
      110px;

    max-height:
      43px;
  }


  .brands-track {
    gap:
      12px;
  }


  .brands-center-label strong {
    font-size:
      10px;
  }


  .brands-bottom-message {
    align-items:
      flex-start;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .brands-marquee-left .brands-track,
  .brands-marquee-right .brands-track {
    animation:
      none !important;

    transform:
      none !important;
  }


  .brands-marquee {
    overflow-x:
      auto;
  }


  .brands-marquee-section *,
  .brands-marquee-section *::before,
  .brands-marquee-section *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;
  }

}

/* 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 */

/* =========================================================
   FAQ SHOWCASE SECTION
========================================================= */

/* =========================================================
   RESTORATION STORY SECTION
========================================================= */

.restore-story-section {
  position: relative;

  padding: 105px 0;

  overflow: hidden;
  isolation: isolate;

  background: var(--color-off-white);
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.restore-story-grid {
  position: absolute;

  inset: 0;

  z-index: -20;

  background-image:
    linear-gradient(rgba(41, 38, 36, .035) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(41, 38, 36, .035) 1px,
      transparent 1px);

  background-size: 58px 58px;

  animation:
    restoreStoryGrid 22s linear infinite;
}


/* =========================================================
   BACKGROUND ORBIT
========================================================= */

.restore-story-orbit {
  position: absolute;

  z-index: -15;

  width: 480px;
  height: 480px;

  right: -220px;
  top: 20px;

  border-radius: 50%;

  border:
    1px dashed rgba(139, 116, 96, .22);

  animation:
    restoreStoryOrbit 28s linear infinite;
}


.restore-story-orbit::before {
  content: "";

  position: absolute;

  left: 50%;
  top: -7px;

  width: 14px;
  height: 14px;

  border-radius: 50%;

  background: var(--color-brown);
}


/* =========================================================
   SHAPE
========================================================= */

.restore-story-shape {
  position: absolute;

  z-index: -14;

  width: 230px;
  height: 230px;

  left: -140px;
  bottom: 80px;

  background:
    rgba(139, 116, 96, .08);

  transform:
    rotate(45deg);

  animation:
    restoreStoryShape 7s ease-in-out infinite;
}


/* =========================================================
   HEADING
========================================================= */

.restore-story-heading {
  position: relative;

  z-index: 5;

  margin-bottom: 46px;
}


/* =========================================================
   EYEBROW
========================================================= */

.restore-story-eyebrow {
  width: fit-content;

  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 18px;

  padding:
    6px 14px 6px 6px;

  color: var(--color-brown-dark);

  background:
    rgba(139, 116, 96, .09);

  border:
    1px solid rgba(139, 116, 96, .15);
}


.restore-story-eyebrow>span {
  width: 35px;
  height: 35px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: var(--color-white);

  background: var(--color-brown);

  font-size: 14px;

  animation:
    restoreStoryIcon 2.5s ease-in-out infinite;
}


.restore-story-eyebrow small {
  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.3px;

  text-transform: uppercase;
}


/* =========================================================
   SMALLER TITLE
========================================================= */

.restore-story-title {
  max-width: 760px;

  margin: 0;

  color: var(--color-charcoal);

  font-size:
    clamp(38px, 4vw, 55px);

  line-height: 1.03;

  font-weight: 800;

  letter-spacing: -2.8px;
}


.restore-story-title span {
  display: block;

  margin-top: 4px;

  color: var(--color-brown);
}


/* =========================================================
   HEADING COPY
========================================================= */

.restore-story-heading-copy {
  max-width: 380px;

  margin:
    0 0 5px auto;

  color: var(--color-text);

  font-size: 15px;

  line-height: 1.75;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.restore-story-layout {
  position: relative;

  z-index: 5;

  display: grid;

  grid-template-columns:
    minmax(0, .95fr) minmax(0, 1.05fr);

  align-items: stretch;

  box-shadow:
    0 35px 85px rgba(41, 38, 36, .14);
}


/* =========================================================
   VISUAL
========================================================= */

.restore-story-visual {
  position: relative;

  min-height: 720px;

  padding:
    28px;

  overflow: hidden;

  background: var(--color-taupe);
}


/* =========================================================
   IMAGE FRAME
========================================================= */

.restore-story-image-frame {
  position: absolute;

  z-index: 1;

  inset:
    14px 52px 52px 14px;

  border:
    1px solid rgba(255, 255, 255, .42);

  animation:
    restoreStoryFrame 5s ease-in-out infinite;
}


/* =========================================================
   IMAGE WRAPPER
========================================================= */

.restore-story-image-wrap {
  position: relative;

  z-index: 3;

  width: 100%;
  height: 100%;

  min-height: 664px;

  overflow: hidden;

  background: var(--color-charcoal);

  box-shadow:
    0 30px 70px rgba(41, 38, 36, .25);

  clip-path:
    polygon(0 0,
      91% 0,
      100% 9%,
      100% 100%,
      0 100%);
}


/* =========================================================
   IMAGE
========================================================= */

.restore-story-image {
  width: 100%;
  height: 100%;

  min-height: 664px;

  object-fit: cover;
  object-position: center;

  animation:
    restoreStoryImageZoom 11s ease-in-out infinite alternate;
}


.restore-story-image-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(180deg,
      rgba(41, 38, 36, .02) 35%,
      rgba(41, 38, 36, .72) 100%);
}


/* =========================================================
   IMAGE SHINE
========================================================= */

.restore-story-image-shine {
  position: absolute;

  top: -20%;
  left: -90%;

  width: 55%;
  height: 150%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .16),
      transparent);

  transform:
    skewX(-20deg);

  animation:
    restoreStoryShine 5s ease-in-out infinite;
}


/* =========================================================
   IMAGE BADGE
========================================================= */

.restore-story-image-badge {
  position: absolute;

  z-index: 7;

  left: 23px;
  top: 23px;

  display: flex;

  align-items: center;

  gap: 11px;

  padding:
    10px 15px 10px 10px;

  color: var(--color-white);

  background:
    rgba(41, 38, 36, .94);

  backdrop-filter:
    blur(10px);

  animation:
    restoreStoryBadge 4s ease-in-out infinite;
}


.restore-story-image-badge>span {
  width: 43px;
  height: 43px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: var(--color-charcoal);

  background: var(--color-beige);

  font-size: 17px;
}


.restore-story-image-badge div {
  display: flex;

  flex-direction: column;
}


.restore-story-image-badge small {
  margin-bottom: 3px;

  color:
    rgba(255, 255, 255, .58);

  font-size: 7px;

  font-weight: 800;

  letter-spacing: .9px;

  text-transform: uppercase;
}


.restore-story-image-badge strong {
  color: var(--color-white);

  font-size: 13px;

  font-weight: 800;
}


/* =========================================================
   IMAGE CAPTION
========================================================= */

.restore-story-image-caption {
  position: absolute;

  z-index: 7;

  left: 23px;
  bottom: 24px;

  display: flex;

  flex-direction: column;

  padding:
    14px 18px;

  background:
    rgba(255, 255, 255, .95);

  backdrop-filter:
    blur(10px);

  animation:
    restoreStoryCaption 4.5s ease-in-out infinite;
}


.restore-story-image-caption small {
  margin-bottom: 4px;

  color: var(--color-brown);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.restore-story-image-caption strong {
  color: var(--color-charcoal);

  font-size: 16px;

  font-weight: 800;
}


/* =========================================================
   CONTENT
========================================================= */

.restore-story-content {
  position: relative;

  min-height: 720px;

  padding:
    47px 45px 90px;

  overflow: hidden;

  background: var(--color-white);
}


/* =========================================================
   LARGE DECOR NUMBER
========================================================= */

.restore-story-big-number {
  position: absolute;

  right: 15px;
  top: 5px;

  color:
    rgba(41, 38, 36, .035);

  font-size: 175px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: -13px;
}


/* =========================================================
   INTRO
========================================================= */

.restore-story-intro {
  position: relative;

  z-index: 2;

  max-width: 600px;

  margin-bottom: 27px;
}


.restore-story-intro>small {
  display: block;

  margin-bottom: 7px;

  color: var(--color-brown);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.1px;

  text-transform: uppercase;
}


.restore-story-intro h3 {
  max-width: 500px;

  margin:
    0 0 15px;

  color: var(--color-charcoal);

  font-size: 28px;

  line-height: 1.12;

  font-weight: 800;

  letter-spacing: -1px;
}


.restore-story-intro p {
  margin: 0;

  color: var(--color-text);

  font-size: 13px;

  line-height: 1.75;
}


.restore-story-intro strong {
  color: var(--color-charcoal);

  font-weight: 800;
}


/* =========================================================
   STEPS
========================================================= */

.restore-story-steps {
  position: relative;

  z-index: 3;

  border-top:
    1px solid rgba(41, 38, 36, .09);
}


/* =========================================================
   STEP
========================================================= */

.restore-story-step {
  position: relative;

  display: grid;

  grid-template-columns:
    35px 46px 1fr;

  align-items: center;

  gap: 13px;

  min-height: 105px;

  padding:
    16px 5px;

  border-bottom:
    1px solid rgba(41, 38, 36, .09);

  transition:
    padding-left 300ms ease,
    background 300ms ease;
}


.restore-story-step:hover {
  padding-left: 12px;

  background:
    var(--color-cream);
}


/* =========================================================
   STEP NUMBER
========================================================= */

.restore-story-step-number {
  color:
    rgba(41, 38, 36, .35);

  font-size: 11px;

  font-weight: 800;
}


/* =========================================================
   STEP ICON
========================================================= */

.restore-story-step-icon {
  width: 44px;
  height: 44px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: var(--color-beige);

  background: var(--color-charcoal);

  font-size: 17px;

  transition:
    background 300ms ease,
    transform 300ms ease;
}


.restore-story-step:hover .restore-story-step-icon {
  background: var(--color-brown);

  transform:
    rotate(-7deg) scale(1.08);
}


/* =========================================================
   STEP COPY
========================================================= */

.restore-story-step h4 {
  margin:
    0 0 5px;

  color: var(--color-charcoal);

  font-size: 17px;

  font-weight: 800;
}


.restore-story-step p {
  max-width: 480px;

  margin: 0;

  color: var(--color-text);

  font-size: 11px;

  line-height: 1.6;
}


/* =========================================================
   QUOTE
========================================================= */

.restore-story-quote {
  position: relative;

  z-index: 3;

  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 20px;

  padding:
    15px 16px;

  background: var(--color-cream);
}


.restore-story-quote>span {
  width: 40px;
  height: 40px;

  flex: 0 0 40px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: var(--color-beige);

  background: var(--color-charcoal);

  font-size: 15px;
}


.restore-story-quote p {
  margin: 0;

  color: var(--color-text);

  font-size: 12px;

  line-height: 1.6;
}


.restore-story-quote strong {
  color: var(--color-charcoal);
}


/* =========================================================
   FLOATING DARK RAIL
========================================================= */

.restore-story-rail {
  position: absolute;

  z-index: 10;

  left: 50%;
  bottom: 27px;

  min-width: 610px;

  display: grid;

  grid-template-columns:
    1fr auto 1fr auto 1fr;

  align-items: center;

  gap: 15px;

  padding:
    14px 18px;

  color: var(--color-white);

  background: var(--color-charcoal);

  box-shadow:
    0 20px 45px rgba(41, 38, 36, .27);

  transform:
    translateX(-50%);
}


/* =========================================================
   RAIL ITEM
========================================================= */

.restore-story-rail-item {
  display: flex;

  align-items: center;

  gap: 10px;
}


.restore-story-rail-item>i {
  color: var(--color-beige);

  font-size: 18px;
}


.restore-story-rail-item>div {
  display: flex;

  flex-direction: column;
}


.restore-story-rail-item small {
  margin-bottom: 2px;

  color:
    rgba(255, 255, 255, .52);

  font-size: 7px;

  font-weight: 800;

  letter-spacing: .8px;

  text-transform: uppercase;
}


.restore-story-rail-item strong {
  color: var(--color-white);

  font-size: 12px;

  font-weight: 800;
}


.restore-story-rail-divider {
  width: 1px;
  height: 35px;

  background:
    rgba(255, 255, 255, .12);
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.restore-story-bottom {
  position: relative;

  z-index: 6;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-top: 28px;

  padding:
    23px 25px;

  background: var(--color-cream);

  border:
    1px solid rgba(139, 116, 96, .14);
}


/* =========================================================
   LOCATIONS
========================================================= */

.restore-story-locations {
  display: flex;

  align-items: center;

  gap: 16px;
}


.restore-story-location-heading {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: var(--color-brown);

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.restore-story-location-heading i {
  font-size: 14px;
}


.restore-story-location-list {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;
}


.restore-story-location-list span {
  min-height: 36px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding:
    8px 12px;

  color: var(--color-charcoal);

  background: var(--color-white);

  font-size: 11px;

  font-weight: 700;

  transition:
    color 300ms ease,
    background 300ms ease,
    transform 300ms ease;
}


.restore-story-location-list span:hover {
  color: var(--color-white);

  background: var(--color-brown);

  transform:
    translateY(-3px);
}


/* =========================================================
   ACTIONS
========================================================= */

.restore-story-actions {
  display: flex;

  align-items: stretch;

  gap: 9px;
}


/* =========================================================
   CALL
========================================================= */

.restore-story-call {
  min-width: 235px;
  min-height: 61px;

  display: flex;

  align-items: center;

  gap: 10px;

  padding:
    8px 14px 8px 8px;

  color: var(--color-white);

  background: var(--color-charcoal);

  text-decoration: none;

  transition:
    background 300ms ease,
    transform 300ms ease;
}


.restore-story-call:hover {
  color: var(--color-white);

  background: var(--color-brown);

  transform:
    translateY(-4px);
}


.restore-story-call>span {
  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: var(--color-charcoal);

  background: var(--color-beige);

  font-size: 16px;

  animation:
    restoreStoryPhoneRing 3s ease-in-out infinite;
}


.restore-story-call>div {
  display: flex;

  flex-direction: column;
}


.restore-story-call small {
  margin-bottom: 2px;

  color:
    rgba(255, 255, 255, .6);

  font-size: 7px;

  font-weight: 800;

  letter-spacing: .7px;

  text-transform: uppercase;
}


.restore-story-call strong {
  color: var(--color-white);

  font-size: 17px;

  font-weight: 800;
}


/* =========================================================
   ESTIMATE
========================================================= */

.restore-story-estimate {
  min-height: 61px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  padding:
    0 19px;

  color: var(--color-charcoal);

  border:
    1px solid rgba(41, 38, 36, .18);

  font-size: 12px;

  font-weight: 800;

  text-decoration: none;

  transition:
    color 300ms ease,
    background 300ms ease,
    transform 300ms ease;
}


.restore-story-estimate:hover {
  color: var(--color-white);

  background: var(--color-brown);

  transform:
    translateY(-4px);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes restoreStoryGrid {

  from {
    background-position: 0 0;
  }

  to {
    background-position: 116px 58px;
  }

}


@keyframes restoreStoryOrbit {

  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }

}


@keyframes restoreStoryShape {

  0%,
  100% {
    transform:
      rotate(45deg) translateY(0);
  }

  50% {
    transform:
      rotate(58deg) translateY(-20px);
  }

}


@keyframes restoreStoryIcon {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform:
      scale(1.1) rotate(-5deg);
  }

}


@keyframes restoreStoryFrame {

  0%,
  100% {
    transform:
      translate(0, 0);
  }

  50% {
    transform:
      translate(12px, -10px);
  }

}


@keyframes restoreStoryImageZoom {

  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.1);
  }

}


@keyframes restoreStoryShine {

  0%,
  25% {
    left: -90%;
  }

  70%,
  100% {
    left: 150%;
  }

}


@keyframes restoreStoryBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }

}


@keyframes restoreStoryCaption {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

}


@keyframes restoreStoryPhoneRing {

  0%,
  82%,
  100% {
    transform: rotate(0);
  }

  87% {
    transform: rotate(-9deg);
  }

  91% {
    transform: rotate(9deg);
  }

  95% {
    transform: rotate(-4deg);
  }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

  .restore-story-title {
    font-size: 49px;
  }


  .restore-story-content {
    padding:
      42px 32px 90px;
  }


  .restore-story-rail {
    min-width: 570px;
  }


  .restore-story-bottom {
    align-items: flex-start;

    flex-direction: column;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .restore-story-section {
    padding:
      85px 0;
  }


  .restore-story-title {
    max-width: 700px;

    font-size:
      clamp(39px, 6vw, 49px);
  }


  .restore-story-heading-copy {
    max-width: 650px;

    margin: 0;
  }


  .restore-story-layout {
    grid-template-columns: 1fr;
  }


  .restore-story-visual {
    min-height: 590px;
  }


  .restore-story-image-wrap,
  .restore-story-image {
    min-height: 535px;
  }


  .restore-story-content {
    min-height: auto;

    padding:
      45px 40px 120px;
  }


  .restore-story-rail {
    left: 50%;
    bottom: 27px;

    min-width:
      calc(100% - 60px);
  }


  .restore-story-locations {
    align-items: flex-start;

    flex-direction: column;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .restore-story-section {
    padding:
      70px 0;
  }


  .restore-story-heading {
    margin-bottom: 38px;
  }


  .restore-story-title {
    font-size:
      clamp(33px, 9vw, 42px);

    line-height: 1.04;

    letter-spacing: -2px;
  }


  .restore-story-heading-copy {
    font-size: 14px;
  }


  .restore-story-visual {
    min-height: 500px;

    padding: 17px;
  }


  .restore-story-image-frame {
    display: none;
  }


  .restore-story-image-wrap,
  .restore-story-image {
    min-height: 465px;
  }


  .restore-story-content {
    padding:
      34px 23px;
  }


  .restore-story-intro h3 {
    font-size: 24px;
  }


  .restore-story-rail {
    position: relative;

    left: auto;
    bottom: auto;

    width: 100%;
    min-width: 0;

    grid-template-columns: 1fr;

    gap: 12px;

    padding: 18px;

    transform: none;
  }


  .restore-story-rail-divider {
    width: 100%;
    height: 1px;
  }


  .restore-story-bottom {
    padding: 20px;
  }


  .restore-story-actions {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr;
  }


  .restore-story-call,
  .restore-story-estimate {
    width: 100%;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .restore-story-title {
    font-size: 34px;
  }


  .restore-story-visual {
    min-height: 420px;
  }


  .restore-story-image-wrap,
  .restore-story-image {
    min-height: 390px;
  }


  .restore-story-image-badge {
    top: 14px;
    left: 14px;
  }


  .restore-story-image-caption {
    left: 14px;
    bottom: 14px;
  }


  .restore-story-content {
    padding:
      30px 18px;
  }


  .restore-story-step {
    grid-template-columns:
      43px 1fr;
  }


  .restore-story-step-number {
    display: none;
  }


  .restore-story-location-heading {
    font-size: 11px;
  }


  .restore-story-location-list span {
    font-size: 10px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .restore-story-section *,
  .restore-story-section *::before,
  .restore-story-section *::after {
    animation: none !important;

    transition-duration: .01ms !important;
  }

}

/* 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 */

/* =========================================================
   OUR SERVICES — GARAGE DOOR NETWORK
========================================================= */

.gd-services-network {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-charcoal);
}


/* =========================================================
   BACKGROUND
========================================================= */

.gd-services-grid {
  position: absolute;
  inset: 0;
  z-index: -20;

  opacity: .55;

  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(255, 255, 255, .025) 1px,
      transparent 1px);

  background-size: 62px 62px;

  animation:
    gdGridMove 24s linear infinite;
}


.gd-services-glow {
  position: absolute;
  z-index: -16;
  border-radius: 50%;
  pointer-events: none;
}


.gd-services-glow-one {
  width: 650px;
  height: 650px;

  left: -320px;
  top: 12%;

  background:
    radial-gradient(circle,
      rgba(198, 182, 167, .14),
      transparent 70%);

  animation:
    gdGlowOne 7s ease-in-out infinite;
}


.gd-services-glow-two {
  width: 580px;
  height: 580px;

  right: -270px;
  bottom: -150px;

  background:
    radial-gradient(circle,
      rgba(139, 116, 96, .2),
      transparent 70%);

  animation:
    gdGlowTwo 8s ease-in-out infinite;
}


/* =========================================================
   BACKGROUND SHAPES
========================================================= */

.gd-services-shape {
  position: absolute;
  z-index: -14;
  pointer-events: none;
}


.gd-services-shape-one {
  width: 260px;
  height: 260px;

  left: -145px;
  top: 90px;

  border:
    1px solid rgba(198, 182, 167, .11);

  transform: rotate(45deg);

  animation:
    gdShapeRotate 28s linear infinite;
}


.gd-services-shape-two {
  width: 125px;
  height: 125px;

  right: 6%;
  top: 85px;

  background:
    rgba(198, 182, 167, .04);

  transform: rotate(45deg);

  animation:
    gdShapeFloat 6s ease-in-out infinite;
}


.gd-services-shape-three {
  width: 85px;
  height: 85px;

  left: 47%;
  bottom: 45px;

  border:
    1px solid rgba(198, 182, 167, .1);

  transform: rotate(45deg);

  animation:
    gdShapeThree 7s ease-in-out infinite;
}


/* =========================================================
   HEADING
========================================================= */

.gd-services-heading {
  position: relative;
  z-index: 5;
  margin-bottom: 78px;
}


.gd-services-eyebrow {
  width: fit-content;

  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 22px;

  padding:
    7px 15px 7px 7px;

  color:
    var(--color-beige-light);

  background:
    rgba(255, 255, 255, .05);

  border:
    1px solid rgba(255, 255, 255, .08);
}


.gd-services-eyebrow>span {
  width: 38px;
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 16px;

  animation:
    gdEyebrowPulse 2.5s ease-in-out infinite;
}


.gd-services-eyebrow small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}


/* =========================================================
   TITLE
========================================================= */

.gd-services-title {
  max-width: 990px;

  margin: 0;

  color:
    var(--color-white);

  font-size:
    clamp(60px, 6vw, 92px);

  line-height: .95;

  font-weight: 800;

  letter-spacing: -5px;
}


.gd-services-title span {
  display: block;

  color:
    var(--color-beige);
}


/* =========================================================
   HEADING COPY
========================================================= */

.gd-services-heading-copy {
  max-width: 390px;
  margin-left: auto;
}


.gd-services-heading-line {
  display: block;

  width: 70px;
  height: 3px;

  margin-bottom: 18px;

  background:
    var(--color-beige);

  animation:
    gdHeadingLine 2s ease-in-out infinite alternate;
}


.gd-services-heading-copy p {
  margin: 0;

  color:
    rgba(255, 255, 255, .62);

  font-size: 15px;

  line-height: 1.8;
}


/* =========================================================
   NETWORK STAGE
========================================================= */

.gd-services-stage {
  position: relative;
  z-index: 5;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr) 430px minmax(0, 1fr);

  align-items: center;

  gap: 35px;

  min-height: 760px;
}


/* =========================================================
   SERVICE COLUMNS
========================================================= */

.gd-services-column {
  display: grid;
  gap: 17px;
}


/* =========================================================
   SERVICE ITEM
========================================================= */

.gd-service-item {
  position: relative;

  min-height: 142px;

  display: grid;
  align-items: center;

  gap: 14px;

  padding: 19px;

  overflow: hidden;

  color: inherit;

  background:
    rgba(255, 255, 255, .045);

  border:
    1px solid rgba(255, 255, 255, .075);

  backdrop-filter: blur(8px);

  transition:
    transform 350ms ease,
    border-color 350ms ease,
    box-shadow 350ms ease;
}


.gd-services-left .gd-service-item {
  grid-template-columns:
    32px 1fr 28px;
}


.gd-services-right .gd-service-item {
  grid-template-columns:
    28px 1fr 32px;
}


/* =========================================================
   ANIMATED ITEM FILL
========================================================= */

.gd-service-item::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -1;

  background:
    var(--color-beige);

  transform:
    scaleX(0);

  transition:
    transform 450ms cubic-bezier(.2, .8, .2, 1);
}


.gd-services-left .gd-service-item::before {
  transform-origin: right;
}


.gd-services-right .gd-service-item::before {
  transform-origin: left;
}


.gd-service-item:hover::before {
  transform: scaleX(1);
}


.gd-services-left .gd-service-item:hover {
  transform:
    translateX(-8px);
}


.gd-services-right .gd-service-item:hover {
  transform:
    translateX(8px);
}


.gd-service-item:hover {
  border-color:
    var(--color-beige);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, .2);
}


/* =========================================================
   CONNECTING LINE
========================================================= */

.gd-service-item::after {
  content: "";

  position: absolute;

  top: 50%;

  width: 35px;
  height: 1px;

  background:
    linear-gradient(90deg,
      rgba(198, 182, 167, .15),
      rgba(198, 182, 167, .8));

  transition:
    width 350ms ease;
}


.gd-services-left .gd-service-item::after {
  right: -35px;
}


.gd-services-right .gd-service-item::after {
  left: -35px;
}


.gd-service-item:hover::after {
  width: 48px;
}


/* =========================================================
   SERVICE NUMBER
========================================================= */

.gd-service-number {
  color:
    rgba(255, 255, 255, .23);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1px;

  transition:
    color 300ms ease;
}


.gd-service-item:hover .gd-service-number {
  color:
    var(--color-brown-dark);
}


/* =========================================================
   SERVICE MAIN
========================================================= */

.gd-service-main {
  display: grid;

  grid-template-columns:
    53px 1fr;

  align-items: center;

  gap: 14px;

  min-width: 0;
}


/* =========================================================
   SERVICE ICON
========================================================= */

.gd-service-icon {
  width: 53px;
  height: 53px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 19px;

  transition:
    color 300ms ease,
    background 300ms ease,
    transform 350ms ease;
}


.gd-service-item:hover .gd-service-icon {
  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  transform:
    rotate(-8deg) scale(1.08);
}


/* =========================================================
   SERVICE COPY
========================================================= */

.gd-service-copy small {
  display: block;

  margin-bottom: 5px;

  color:
    var(--color-beige);

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 1.2px;

  text-transform: uppercase;

  transition:
    color 300ms ease;
}


.gd-service-copy h3 {
  margin:
    0 0 6px;

  color:
    var(--color-white);

  font-size: 17px;

  line-height: 1.25;

  font-weight: 800;

  transition:
    color 300ms ease;
}


.gd-service-copy p {
  margin: 0;

  color:
    rgba(255, 255, 255, .5);

  font-size: 10px;

  line-height: 1.55;

  transition:
    color 300ms ease;
}


.gd-service-item:hover .gd-service-copy small {
  color:
    var(--color-brown-dark);
}


.gd-service-item:hover .gd-service-copy h3 {
  color:
    var(--color-charcoal);
}


.gd-service-item:hover .gd-service-copy p {
  color:
    rgba(41, 38, 36, .68);
}


/* =========================================================
   SERVICE ARROW
========================================================= */

.gd-service-arrow {
  color:
    var(--color-beige);

  font-size: 17px;

  transition:
    color 300ms ease,
    transform 300ms ease;
}


.gd-services-left .gd-service-item:hover .gd-service-arrow {
  color:
    var(--color-charcoal);

  transform:
    translateX(5px);
}


.gd-services-right .gd-service-item:hover .gd-service-arrow {
  color:
    var(--color-charcoal);

  transform:
    translateX(-5px);
}


/* =========================================================
   EMERGENCY
========================================================= */

.gd-service-emergency {
  background:
    rgba(198, 182, 167, .09);

  border-color:
    rgba(198, 182, 167, .22);
}


/* =========================================================
   CENTER
========================================================= */

.gd-services-center {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: center;

  min-height: 660px;
}


/* =========================================================
   HUB
========================================================= */

.gd-services-hub {
  position: relative;

  width: 410px;
  height: 410px;
}


/* =========================================================
   ORBIT RINGS
========================================================= */

.gd-hub-ring {
  position: absolute;

  left: 50%;
  top: 50%;

  border-radius: 50%;

  pointer-events: none;
}


.gd-ring-one {
  width: 410px;
  height: 410px;

  border:
    1px solid rgba(198, 182, 167, .28);

  transform:
    translate(-50%, -50%);

  animation:
    gdRingRotate 18s linear infinite;
}


.gd-ring-one::before,
.gd-ring-one::after {
  content: "";

  position: absolute;

  width: 9px;
  height: 9px;

  border-radius: 50%;

  background:
    var(--color-beige);
}


.gd-ring-one::before {
  left: 50%;
  top: -5px;
}


.gd-ring-one::after {
  left: 50%;
  bottom: -5px;
}


.gd-ring-two {
  width: 350px;
  height: 350px;

  border:
    1px dashed rgba(198, 182, 167, .22);

  transform:
    translate(-50%, -50%);

  animation:
    gdRingReverse 14s linear infinite;
}


.gd-ring-three {
  width: 310px;
  height: 310px;

  border:
    10px solid rgba(198, 182, 167, .045);

  transform:
    translate(-50%, -50%);

  animation:
    gdRingPulse 4s ease-in-out infinite;
}


/* =========================================================
   CENTER GARAGE DOOR CIRCLE
========================================================= */

.gd-garage-icon-hub {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 285px;
  height: 285px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  transform:
    translate(-50%, -50%);

  border:
    7px solid var(--color-beige);

  background:
    radial-gradient(circle at 30% 25%,
      #fff 0%,
      #f5f0ea 54%,
      #d8cbbf 100%);

  box-shadow:
    0 30px 70px rgba(0, 0, 0, .4),
    inset 0 0 0 1px rgba(41, 38, 36, .07);

  animation:
    gdGarageHubFloat 5s ease-in-out infinite;
}


/* inner circle */

.gd-garage-icon-hub::before {
  content: "";

  position: absolute;

  inset: 17px;

  border-radius: 50%;

  border:
    1px solid rgba(41, 38, 36, .1);
}


/* dashed rotating ring */

.gd-garage-icon-hub::after {
  content: "";

  position: absolute;

  inset: 34px;

  border-radius: 50%;

  border:
    1px dashed rgba(139, 116, 96, .3);

  animation:
    gdInnerCircleRotate 15s linear infinite;
}


/* =========================================================
   GARAGE ICON CORE
========================================================= */

.gd-garage-icon-core {
  position: relative;

  z-index: 3;

  width: 190px;
  height: 190px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, .45);
}


/* Decorative dots */

.gd-garage-icon-core::before,
.gd-garage-icon-core::after {
  content: "";

  position: absolute;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background:
    var(--color-brown);
}


.gd-garage-icon-core::before {
  top: 18px;
  right: 22px;
}


.gd-garage-icon-core::after {
  left: 22px;
  bottom: 20px;
}


/* =========================================================
   DETAILED GARAGE SVG
========================================================= */

.gd-garage-svg {
  width: 135px;
  height: 135px;

  color:
    var(--color-charcoal);

  stroke:
    currentColor;

  stroke-width: 4;

  stroke-linecap: round;

  stroke-linejoin: round;

  filter:
    drop-shadow(0 2px 0 rgba(255, 255, 255, .7));

  animation:
    gdGarageIconPulse 3.5s ease-in-out infinite;
}


/* =========================================================
   HUB NODES
========================================================= */

.gd-hub-node {
  position: absolute;

  z-index: 9;

  width: 44px;
  height: 44px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  border:
    4px solid var(--color-charcoal);

  border-radius: 50%;

  font-size: 14px;

  box-shadow:
    0 9px 22px rgba(0, 0, 0, .25);
}


.gd-node-one {
  left: 50%;
  top: -21px;

  transform:
    translateX(-50%);

  animation:
    gdNodeOne 4s ease-in-out infinite;
}


.gd-node-two {
  right: -20px;
  top: 50%;

  transform:
    translateY(-50%);

  animation:
    gdNodeTwo 4.5s ease-in-out infinite;
}


.gd-node-three {
  left: 50%;
  bottom: -21px;

  transform:
    translateX(-50%);

  animation:
    gdNodeThree 4.2s ease-in-out infinite;
}


.gd-node-four {
  left: -20px;
  top: 50%;

  transform:
    translateY(-50%);

  animation:
    gdNodeFour 4.8s ease-in-out infinite;
}


/* =========================================================
   CENTER LABEL
========================================================= */

.gd-hub-label {
  position: absolute;

  z-index: 12;

  left: 50%;
  bottom: 22px;

  min-width: 210px;

  display: flex;

  align-items: center;

  gap: 10px;

  padding:
    9px 13px 9px 9px;

  color:
    var(--color-charcoal);

  background:
    var(--color-white);

  transform:
    translateX(-50%);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, .25);

  animation:
    gdCenterLabelFloat 4s ease-in-out infinite;
}


.gd-hub-label>span {
  width: 40px;
  height: 40px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  font-size: 15px;
}


.gd-hub-label>div {
  display: flex;
  flex-direction: column;
}


.gd-hub-label small {
  margin-bottom: 2px;

  color:
    var(--color-brown);

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.gd-hub-label strong {
  font-size: 13px;
  font-weight: 800;
}


/* =========================================================
   SAME-DAY BADGE
========================================================= */

.gd-hub-fast {
  position: absolute;

  z-index: 12;

  right: -8px;
  top: 78px;

  display: flex;

  align-items: center;

  gap: 9px;

  padding:
    10px 13px;

  color:
    var(--color-white);

  background:
    var(--color-brown);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, .22);

  animation:
    gdFastBadgeFloat 3.5s ease-in-out infinite;
}


.gd-hub-fast>i {
  color:
    var(--color-beige-light);

  font-size: 17px;
}


.gd-hub-fast>div {
  display: flex;
  flex-direction: column;
}


.gd-hub-fast small {
  margin-bottom: 2px;

  font-size: 7px;

  font-weight: 800;

  opacity: .65;

  text-transform: uppercase;
}


.gd-hub-fast strong {
  font-size: 11px;
  font-weight: 800;
}


/* =========================================================
   PARTS STRIP
========================================================= */

.gd-parts-strip {
  position: relative;

  z-index: 6;

  display: grid;

  grid-template-columns:
    60px 58px 190px minmax(220px, 1fr) auto auto;

  align-items: center;

  gap: 18px;

  margin-top: 35px;

  padding:
    22px 25px;

  overflow: hidden;

  color: inherit;

  background:
    var(--color-beige);

  transition:
    transform 350ms ease,
    box-shadow 350ms ease;
}


.gd-parts-strip::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -1;

  background:
    var(--color-brown);

  transform:
    translateX(-101%);

  transition:
    transform 550ms cubic-bezier(.2, .8, .2, 1);
}


.gd-parts-strip:hover::before {
  transform:
    translateX(0);
}


.gd-parts-strip:hover {
  transform:
    translateY(-6px);

  box-shadow:
    0 22px 50px rgba(0, 0, 0, .24);
}


/* =========================================================
   PARTS NUMBER
========================================================= */

.gd-parts-number {
  color:
    rgba(41, 38, 36, .18);

  font-size: 48px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: -4px;
}


/* =========================================================
   PARTS ICON
========================================================= */

.gd-parts-icon {
  width: 58px;
  height: 58px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  font-size: 21px;

  transition:
    transform 350ms ease;
}


.gd-parts-strip:hover .gd-parts-icon {
  transform:
    rotate(-10deg) scale(1.1);
}


/* =========================================================
   PARTS TITLE
========================================================= */

.gd-parts-title small {
  display: block;

  margin-bottom: 5px;

  color:
    var(--color-brown-dark);

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 1.2px;

  text-transform: uppercase;
}


.gd-parts-title h3 {
  margin: 0;

  color:
    var(--color-charcoal);

  font-size: 21px;

  font-weight: 800;
}


.gd-parts-strip>p {
  margin: 0;

  color:
    rgba(41, 38, 36, .68);

  font-size: 11px;

  line-height: 1.6;
}


/* =========================================================
   PARTS TAGS
========================================================= */

.gd-parts-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 6px;
}


.gd-parts-tags span {
  padding:
    6px 8px;

  color:
    var(--color-charcoal);

  background:
    rgba(255, 255, 255, .42);

  font-size: 8px;

  font-weight: 800;
}


/* =========================================================
   PARTS LINK
========================================================= */

.gd-parts-link {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color:
    var(--color-charcoal);

  font-size: 9px;

  font-weight: 800;

  white-space: nowrap;

  transition:
    color 300ms ease,
    transform 300ms ease;
}


.gd-parts-strip:hover .gd-parts-link {
  color:
    var(--color-white);

  transform:
    translateX(4px);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.gd-services-bottom {
  position: relative;

  z-index: 6;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 24px;

  margin-top: 22px;

  padding:
    21px 23px;

  background:
    rgba(255, 255, 255, .055);

  border:
    1px solid rgba(255, 255, 255, .085);
}


/* =========================================================
   BOTTOM COPY
========================================================= */

.gd-services-bottom-copy {
  display: flex;

  align-items: center;

  gap: 12px;
}


.gd-services-bottom-copy>span {
  width: 49px;
  height: 49px;

  flex: 0 0 49px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 18px;

  animation:
    gdBottomIconPulse 2.5s ease-in-out infinite;
}


.gd-services-bottom-copy>div {
  display: flex;
  flex-direction: column;
}


.gd-services-bottom-copy small {
  margin-bottom: 3px;

  color:
    var(--color-beige);

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.gd-services-bottom-copy strong {
  color:
    var(--color-white);

  font-size: 14px;

  font-weight: 800;
}


/* =========================================================
   TRUST
========================================================= */

.gd-services-trust {
  display: flex;

  flex-wrap: wrap;

  gap: 15px;
}


.gd-services-trust span {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  color:
    rgba(255, 255, 255, .67);

  font-size: 9px;

  font-weight: 700;
}


.gd-services-trust i {
  color:
    var(--color-beige);
}


/* =========================================================
   ACTIONS
========================================================= */

.gd-services-actions {
  display: flex;
  align-items: stretch;

  gap: 9px;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.gd-services-call {
  position: relative;

  min-width: 250px;
  min-height: 61px;

  display: flex;

  align-items: center;

  gap: 10px;

  padding:
    8px 14px 8px 8px;

  overflow: hidden;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  transition:
    color 300ms ease,
    background 300ms ease,
    transform 300ms ease;
}


.gd-services-call::before {
  content: "";

  position: absolute;

  top: 0;
  left: -110%;

  width: 65%;
  height: 100%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .55),
      transparent);

  transform: skewX(-20deg);

  animation:
    gdCallShine 4s ease-in-out infinite;
}


.gd-services-call:hover {
  color:
    var(--color-white);

  background:
    var(--color-brown);

  transform:
    translateY(-5px);
}


.gd-services-call-icon {
  position: relative;
  z-index: 2;

  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  font-size: 16px;

  animation:
    gdPhoneRing 3s ease-in-out infinite;
}


.gd-services-call>div {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
}


.gd-services-call small {
  margin-bottom: 3px;

  font-size: 7px;

  font-weight: 800;

  letter-spacing: .8px;

  text-transform: uppercase;

  opacity: .65;
}


.gd-services-call strong {
  font-size: 16px;
  font-weight: 800;
}


.gd-services-call>i {
  position: relative;
  z-index: 2;

  margin-left: auto;

  transition:
    transform 300ms ease;
}


.gd-services-call:hover>i {
  transform:
    translate(4px, -4px);
}


/* =========================================================
   ESTIMATE
========================================================= */

.gd-services-estimate {
  min-height: 61px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  padding:
    0 19px;

  color:
    var(--color-white);

  border:
    1px solid rgba(255, 255, 255, .18);

  font-size: 10px;

  font-weight: 800;

  transition:
    background 300ms ease,
    color 300ms ease,
    border-color 300ms ease,
    transform 300ms ease;
}


.gd-services-estimate:hover {
  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  border-color:
    var(--color-beige);

  transform:
    translateY(-5px);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes gdGridMove {

  from {
    background-position: 0 0;
  }

  to {
    background-position: 124px 62px;
  }

}


@keyframes gdGlowOne {

  0%,
  100% {
    opacity: .4;
    transform: scale(.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.14);
  }

}


@keyframes gdGlowTwo {

  0%,
  100% {
    transform:
      translate(0, 0) scale(1);
  }

  50% {
    transform:
      translate(-20px, -15px) scale(1.08);
  }

}


@keyframes gdShapeRotate {

  from {
    transform: rotate(45deg);
  }

  to {
    transform: rotate(405deg);
  }

}


@keyframes gdShapeFloat {

  0%,
  100% {
    transform:
      rotate(45deg) translateY(0);
  }

  50% {
    transform:
      rotate(55deg) translateY(-20px);
  }

}


@keyframes gdShapeThree {

  0%,
  100% {
    transform:
      rotate(45deg) translate(0, 0);
  }

  50% {
    transform:
      rotate(125deg) translate(18px, -18px);
  }

}


@keyframes gdEyebrowPulse {

  0%,
  100% {
    transform:
      scale(1) rotate(0);
  }

  50% {
    transform:
      scale(1.1) rotate(-5deg);
  }

}


@keyframes gdHeadingLine {

  from {
    width: 45px;
  }

  to {
    width: 95px;
  }

}


/* rings */

@keyframes gdRingRotate {

  from {
    transform:
      translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform:
      translate(-50%, -50%) rotate(360deg);
  }

}


@keyframes gdRingReverse {

  from {
    transform:
      translate(-50%, -50%) rotate(360deg);
  }

  to {
    transform:
      translate(-50%, -50%) rotate(0deg);
  }

}


@keyframes gdRingPulse {

  0%,
  100% {
    transform:
      translate(-50%, -50%) scale(.96);
  }

  50% {
    transform:
      translate(-50%, -50%) scale(1.05);
  }

}


/* center icon */

@keyframes gdGarageHubFloat {

  0%,
  100% {
    transform:
      translate(-50%, -50%) translateY(0);
  }

  50% {
    transform:
      translate(-50%, -50%) translateY(-7px);
  }

}


@keyframes gdInnerCircleRotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


@keyframes gdGarageIconPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .92;
  }

  50% {
    transform: scale(1.055);
    opacity: 1;
  }

}


/* nodes */

@keyframes gdNodeOne {

  0%,
  100% {
    transform:
      translateX(-50%) translateY(0);
  }

  50% {
    transform:
      translateX(-50%) translateY(-8px);
  }

}


@keyframes gdNodeTwo {

  0%,
  100% {
    transform:
      translateY(-50%) translateX(0);
  }

  50% {
    transform:
      translateY(-50%) translateX(8px);
  }

}


@keyframes gdNodeThree {

  0%,
  100% {
    transform:
      translateX(-50%) translateY(0);
  }

  50% {
    transform:
      translateX(-50%) translateY(8px);
  }

}


@keyframes gdNodeFour {

  0%,
  100% {
    transform:
      translateY(-50%) translateX(0);
  }

  50% {
    transform:
      translateY(-50%) translateX(-8px);
  }

}


@keyframes gdCenterLabelFloat {

  0%,
  100% {
    transform:
      translateX(-50%) translateY(0);
  }

  50% {
    transform:
      translateX(-50%) translateY(-8px);
  }

}


@keyframes gdFastBadgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

}


@keyframes gdBottomIconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.09);
  }

}


@keyframes gdCallShine {

  0%,
  35% {
    left: -110%;
  }

  70%,
  100% {
    left: 160%;
  }

}


@keyframes gdPhoneRing {

  0%,
  82%,
  100% {
    transform: rotate(0);
  }

  87% {
    transform: rotate(-10deg);
  }

  91% {
    transform: rotate(10deg);
  }

  95% {
    transform: rotate(-5deg);
  }

}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1399.98px) {

  .gd-services-stage {
    grid-template-columns:
      minmax(0, 1fr) 360px minmax(0, 1fr);

    gap: 27px;
  }


  .gd-services-hub {
    width: 350px;
    height: 350px;
  }


  .gd-ring-one {
    width: 350px;
    height: 350px;
  }


  .gd-ring-two {
    width: 305px;
    height: 305px;
  }


  .gd-ring-three {
    width: 270px;
    height: 270px;
  }


  .gd-garage-icon-hub {
    width: 245px;
    height: 245px;
  }


  .gd-garage-icon-core {
    width: 160px;
    height: 160px;
  }


  .gd-garage-svg {
    width: 112px;
    height: 112px;
  }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

  .gd-services-title {
    font-size: 68px;
  }


  .gd-services-stage {
    grid-template-columns:
      1fr 300px 1fr;

    gap: 20px;
  }


  .gd-service-item {
    padding: 15px;
  }


  .gd-service-main {
    grid-template-columns:
      45px 1fr;

    gap: 10px;
  }


  .gd-service-icon {
    width: 45px;
    height: 45px;
  }


  .gd-service-copy h3 {
    font-size: 15px;
  }


  .gd-service-copy p {
    font-size: 9px;
  }


  .gd-services-hub {
    width: 290px;
    height: 290px;
  }


  .gd-ring-one {
    width: 290px;
    height: 290px;
  }


  .gd-ring-two {
    width: 250px;
    height: 250px;
  }


  .gd-ring-three {
    width: 220px;
    height: 220px;
  }


  .gd-garage-icon-hub {
    width: 205px;
    height: 205px;
  }


  .gd-garage-icon-core {
    width: 138px;
    height: 138px;
  }


  .gd-garage-svg {
    width: 96px;
    height: 96px;
  }


  .gd-parts-strip {
    grid-template-columns:
      55px 55px minmax(170px, 1fr) minmax(230px, 1.5fr) auto;
  }


  .gd-parts-tags {
    display: none;
  }


  .gd-services-bottom {
    flex-wrap: wrap;
  }


  .gd-services-trust {
    order: 3;
    width: 100%;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .gd-services-network {
    padding: 90px 0;
  }


  .gd-services-title {
    font-size:
      clamp(56px, 9vw, 76px);
  }


  .gd-services-heading-copy {
    max-width: 700px;

    margin-left: 0;
  }


  .gd-services-stage {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 16px;

    min-height: auto;
  }


  .gd-services-center {
    grid-column:
      1 / -1;

    grid-row: 1;

    min-height: 500px;

    margin-bottom: 25px;
  }


  .gd-services-left {
    grid-column: 1;
    grid-row: 2;
  }


  .gd-services-right {
    grid-column: 2;
    grid-row: 2;
  }


  .gd-service-item::after {
    display: none;
  }


  .gd-services-left .gd-service-item,
  .gd-services-right .gd-service-item {
    grid-template-columns: 1fr;
  }


  .gd-service-number,
  .gd-service-arrow {
    display: none;
  }


  .gd-services-left .gd-service-item:hover,
  .gd-services-right .gd-service-item:hover {
    transform:
      translateY(-6px);
  }


  .gd-services-hub {
    width: 390px;
    height: 390px;
  }


  .gd-ring-one {
    width: 390px;
    height: 390px;
  }


  .gd-ring-two {
    width: 335px;
    height: 335px;
  }


  .gd-ring-three {
    width: 295px;
    height: 295px;
  }


  .gd-garage-icon-hub {
    width: 270px;
    height: 270px;
  }


  .gd-garage-icon-core {
    width: 177px;
    height: 177px;
  }


  .gd-garage-svg {
    width: 123px;
    height: 123px;
  }


  .gd-parts-strip {
    grid-template-columns:
      55px minmax(180px, 1fr) minmax(250px, 1.5fr) auto;
  }


  .gd-parts-number,
  .gd-parts-tags {
    display: none;
  }


  .gd-services-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .gd-services-network {
    padding: 75px 0;
  }


  .gd-services-heading {
    margin-bottom: 55px;
  }


  .gd-services-title {
    font-size:
      clamp(45px, 12vw, 60px);

    letter-spacing: -3px;
  }


  .gd-services-heading-copy p {
    font-size: 14px;
  }


  .gd-services-stage {
    grid-template-columns: 1fr;
  }


  .gd-services-center,
  .gd-services-left,
  .gd-services-right {
    grid-column: 1;
  }


  .gd-services-center {
    grid-row: 1;

    min-height: 425px;
  }


  .gd-services-left {
    grid-row: 2;
  }


  .gd-services-right {
    grid-row: 3;
  }


  .gd-service-item {
    min-height: 125px;
  }


  .gd-service-main {
    grid-template-columns:
      51px 1fr;
  }


  .gd-service-icon {
    width: 51px;
    height: 51px;
  }


  .gd-service-copy h3 {
    font-size: 18px;
  }


  .gd-service-copy p {
    font-size: 10px;
  }


  .gd-services-hub {
    width: 330px;
    height: 330px;
  }


  .gd-ring-one {
    width: 330px;
    height: 330px;
  }


  .gd-ring-two {
    width: 285px;
    height: 285px;
  }


  .gd-ring-three {
    width: 250px;
    height: 250px;
  }


  .gd-garage-icon-hub {
    width: 230px;
    height: 230px;
  }


  .gd-garage-icon-core {
    width: 151px;
    height: 151px;
  }


  .gd-garage-svg {
    width: 104px;
    height: 104px;
  }


  .gd-hub-fast {
    right: -3px;
  }


  .gd-parts-strip {
    grid-template-columns:
      52px 1fr auto;

    padding: 18px;
  }


  .gd-parts-strip>p,
  .gd-parts-number,
  .gd-parts-tags {
    display: none;
  }


  .gd-services-bottom {
    padding: 19px;
  }


  .gd-services-actions {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr;
  }


  .gd-services-call,
  .gd-services-estimate {
    width: 100%;

    min-width: 0;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .gd-services-title {
    font-size: 42px;
  }


  .gd-services-center {
    min-height: 360px;
  }


  .gd-services-hub {
    width: 280px;
    height: 280px;
  }


  .gd-ring-one {
    width: 280px;
    height: 280px;
  }


  .gd-ring-two {
    width: 240px;
    height: 240px;
  }


  .gd-ring-three {
    width: 210px;
    height: 210px;
  }


  .gd-garage-icon-hub {
    width: 195px;
    height: 195px;
  }


  .gd-garage-icon-core {
    width: 127px;
    height: 127px;
  }


  .gd-garage-svg {
    width: 88px;
    height: 88px;

    stroke-width: 4.2;
  }


  .gd-hub-node {
    width: 38px;
    height: 38px;
  }


  .gd-hub-label {
    min-width: 175px;

    bottom: 12px;
  }


  .gd-hub-fast {
    top: 45px;

    right: -5px;

    padding:
      8px 10px;
  }


  .gd-parts-strip {
    grid-template-columns:
      48px 1fr;
  }


  .gd-parts-link {
    grid-column:
      1 / -1;

    justify-content: flex-end;
  }


  .gd-services-bottom-copy {
    align-items: flex-start;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .gd-services-network *,
  .gd-services-network *::before,
  .gd-services-network *::after {
    animation:
      none !important;

    transition-duration:
      .01ms !important;
  }

}

/* =========================================================
   SERVICES SECTION TYPOGRAPHY UPDATE
========================================================= */


/* =========================================================
   SMALLER MAIN TITLE
========================================================= */

.gd-services-title {
  max-width: 790px;

  font-size: clamp(38px, 4vw, 56px);

  line-height: 1.03;

  letter-spacing: -2.8px;
}


.gd-services-title span {
  margin-top: 4px;
}


/* Bigger supporting text */
.gd-services-heading-copy p {
  font-size: 16px;

  line-height: 1.75;

  font-weight: 500;
}


/* =========================================================
   BIGGER SERVICE CARD TEXT
========================================================= */

.gd-service-copy small {
  margin-bottom: 6px;

  font-size: 9px;

  letter-spacing: 1.1px;
}


.gd-service-copy h3 {
  margin-bottom: 7px;

  font-size: 19px;

  line-height: 1.2;
}


.gd-service-copy p {
  font-size: 12px;

  line-height: 1.6;

  font-weight: 500;
}


.gd-service-number {
  font-size: 12px;
}


/* =========================================================
   GARAGE DOOR PARTS STRIP
   DARKER + BIGGER TEXT
========================================================= */

.gd-parts-strip {
  padding: 25px 27px;

  color: var(--color-charcoal);

  background: var(--color-beige);
}


.gd-parts-title small {
  margin-bottom: 6px;

  color: var(--color-brown-dark);

  font-size: 10px;

  line-height: 1.2;

  font-weight: 800;

  letter-spacing: 1.1px;
}


.gd-parts-title h3 {
  color: var(--color-charcoal);

  font-size: 23px;

  line-height: 1.15;

  font-weight: 800;
}


/* This is the text shown in your first screenshot */
.gd-parts-strip>p {
  color: var(--color-charcoal);

  font-size: 14px;

  line-height: 1.65;

  font-weight: 500;
}


.gd-parts-tags span {
  color: var(--color-charcoal);

  font-size: 10px;

  font-weight: 800;
}


.gd-parts-link {
  color: var(--color-charcoal);

  font-size: 11px;

  font-weight: 800;
}


/* =========================================================
   BOTTOM CTA
   LIGHT BACKGROUND + DARK TEXT
========================================================= */

.gd-services-bottom {
  padding: 25px 26px;

  background: var(--color-cream);

  border:
    1px solid rgba(139, 116, 96, .16);
}


/* Bigger icon */
.gd-services-bottom-copy>span {
  width: 52px;
  height: 52px;

  flex: 0 0 52px;

  color: var(--color-beige);

  background: var(--color-charcoal);

  font-size: 19px;
}


/* Small top text */
.gd-services-bottom-copy small {
  margin-bottom: 4px;

  color: var(--color-brown-dark);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1px;
}


/* Main bottom title */
.gd-services-bottom-copy strong {
  color: var(--color-charcoal);

  font-size: 18px;

  line-height: 1.3;

  font-weight: 800;
}


/* =========================================================
   TRUST TEXT - BIGGER + DARK
========================================================= */

.gd-services-trust {
  gap: 18px;
}


.gd-services-trust span {
  color: var(--color-charcoal);

  font-size: 12px;

  line-height: 1.3;

  font-weight: 800;
}


.gd-services-trust i {
  color: var(--color-brown);

  font-size: 13px;
}


/* =========================================================
   FREE ESTIMATE BUTTON ON LIGHT BAR
========================================================= */

.gd-services-estimate {
  color: var(--color-charcoal);

  border:
    1px solid rgba(41, 38, 36, .2);

  font-size: 12px;

  font-weight: 800;
}


.gd-services-estimate:hover {
  color: var(--color-white);

  background: var(--color-brown);

  border-color: var(--color-brown);
}


/* =========================================================
   PHONE CTA
========================================================= */

.gd-services-call small {
  font-size: 8px;
}


.gd-services-call strong {
  font-size: 18px;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

  .gd-services-title {
    font-size: 50px;
  }


  .gd-service-copy h3 {
    font-size: 17px;
  }


  .gd-service-copy p {
    font-size: 11px;
  }


  .gd-parts-strip>p {
    font-size: 13px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .gd-services-title {
    max-width: 720px;

    font-size:
      clamp(39px, 6vw, 50px);

    line-height: 1.04;
  }


  .gd-services-heading-copy p {
    font-size: 15px;
  }


  .gd-service-copy small {
    font-size: 9px;
  }


  .gd-service-copy h3 {
    font-size: 18px;
  }


  .gd-service-copy p {
    font-size: 12px;
  }


  .gd-services-bottom-copy strong {
    font-size: 17px;
  }


  .gd-services-trust span {
    font-size: 12px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .gd-services-title {
    font-size:
      clamp(33px, 9vw, 42px);

    line-height: 1.04;

    letter-spacing: -2px;
  }


  .gd-service-copy h3 {
    font-size: 18px;
  }


  .gd-service-copy p {
    font-size: 12px;

    line-height: 1.6;
  }


  .gd-parts-title h3 {
    font-size: 20px;
  }


  .gd-parts-title small {
    font-size: 9px;
  }


  .gd-services-bottom-copy small {
    font-size: 9px;
  }


  .gd-services-bottom-copy strong {
    font-size: 16px;
  }


  .gd-services-trust span {
    font-size: 11px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .gd-services-title {
    font-size: 34px;
  }


  .gd-service-copy h3 {
    font-size: 17px;
  }


  .gd-service-copy p {
    font-size: 11px;
  }


  .gd-services-bottom {
    padding: 20px;
  }


  .gd-services-bottom-copy strong {
    font-size: 15px;
  }

}




/* 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 */

/* =========================================================
   TRIPLE-CORE SYSTEM CARE
========================================================= */

.core-care-section {
  position: relative;
  padding: 125px 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-off-white);
}


/* =========================================================
   BACKGROUND
========================================================= */

.core-care-grid {
  position: absolute;
  inset: 0;
  z-index: -20;

  background-image:
    linear-gradient(rgba(41, 38, 36, .03) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(41, 38, 36, .03) 1px,
      transparent 1px);

  background-size: 62px 62px;

  animation:
    coreCareGridMove 24s linear infinite;
}


.core-care-glow {
  position: absolute;
  z-index: -15;
  border-radius: 50%;
  pointer-events: none;
}


.core-care-glow-one {
  width: 650px;
  height: 650px;

  left: -310px;
  top: 10%;

  background:
    radial-gradient(circle,
      rgba(139, 116, 96, .15),
      transparent 70%);

  animation:
    coreCareGlowOne 7s ease-in-out infinite;
}


.core-care-glow-two {
  width: 520px;
  height: 520px;

  right: -230px;
  bottom: -150px;

  background:
    radial-gradient(circle,
      rgba(198, 182, 167, .17),
      transparent 70%);

  animation:
    coreCareGlowTwo 8s ease-in-out infinite;
}


/* =========================================================
   BACKGROUND SHAPES
========================================================= */

.core-care-shape {
  position: absolute;
  z-index: -12;
  pointer-events: none;
}


.core-care-shape-one {
  width: 280px;
  height: 280px;

  left: -160px;
  top: 100px;

  border:
    1px solid rgba(139, 116, 96, .15);

  transform: rotate(45deg);

  animation:
    coreCareShapeRotate 27s linear infinite;
}


.core-care-shape-two {
  width: 130px;
  height: 130px;

  right: 7%;
  top: 100px;

  background:
    rgba(139, 116, 96, .06);

  transform: rotate(45deg);

  animation:
    coreCareShapeFloat 6s ease-in-out infinite;
}


.core-care-shape-three {
  width: 90px;
  height: 90px;

  left: 47%;
  bottom: 45px;

  border:
    2px solid rgba(139, 116, 96, .08);

  transform: rotate(45deg);

  animation:
    coreCareShapeThree 7s ease-in-out infinite;
}


/* =========================================================
   HEADING
========================================================= */

.core-care-heading {
  position: relative;
  z-index: 5;
  margin-bottom: 55px;
}


/* =========================================================
   EYEBROW
========================================================= */

.core-care-eyebrow {
  width: fit-content;

  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 22px;

  padding:
    7px 15px 7px 7px;

  color:
    var(--color-brown-dark);

  background:
    rgba(139, 116, 96, .09);

  border:
    1px solid rgba(139, 116, 96, .15);
}


.core-care-eyebrow>span {
  width: 38px;
  height: 38px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-white);

  background:
    var(--color-brown);

  font-size: 16px;

  animation:
    coreCareEyebrowPulse 2.5s ease-in-out infinite;
}


.core-care-eyebrow small {
  font-size: 10px;
  font-weight: 800;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


/* =========================================================
   TITLE
========================================================= */

/* =========================================================
   SMALLER SECTION TITLE
========================================================= */

.core-care-title {
  max-width: 760px;

  margin: 0;

  color: var(--color-charcoal);

  font-size: clamp(38px, 4vw, 56px);

  line-height: 1.03;

  font-weight: 800;

  letter-spacing: -2.8px;
}

.core-care-title span {
  display: block;

  color: var(--color-brown);
}


/* LAPTOP */
@media (max-width: 1199.98px) {

  .core-care-title {
    font-size: 50px;
  }

}


/* TABLET */
@media (max-width: 991.98px) {

  .core-care-title {
    max-width: 700px;

    font-size: clamp(39px, 6vw, 50px);
  }

}


/* MOBILE */
@media (max-width: 767.98px) {

  .core-care-title {
    font-size: clamp(33px, 9vw, 42px);

    line-height: 1.04;

    letter-spacing: -2px;
  }

}


/* SMALL MOBILE */
@media (max-width: 480px) {

  .core-care-title {
    font-size: 34px;

    line-height: 1.05;

    letter-spacing: -1.6px;
  }

}




/* =========================================================
   HEADING COPY
========================================================= */

.core-care-heading-copy {
  max-width: 405px;
  margin-left: auto;
}


.core-care-copy-line {
  display: block;

  width: 75px;
  height: 3px;

  margin-bottom: 18px;

  background:
    var(--color-brown);

  animation:
    coreCareHeadingLine 2s ease-in-out infinite alternate;
}


.core-care-heading-copy p {
  margin: 0;

  color:
    var(--color-text);

  font-size: 16px;

  line-height: 1.8;
}


.core-care-heading-copy strong {
  color:
    var(--color-charcoal);

  font-weight: 800;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.core-care-visual {
  position: relative;
  z-index: 5;

  padding: 22px;

  background:
    var(--color-taupe);
}


/* =========================================================
   IMAGE FRAME
========================================================= */

.core-care-image-frame {
  position: absolute;

  left: 9px;
  right: 9px;
  top: 9px;
  bottom: 9px;

  z-index: 1;

  border:
    1px solid rgba(255, 255, 255, .42);

  animation:
    coreCareFrameFloat 5s ease-in-out infinite;
}


/* =========================================================
   IMAGE WRAP
========================================================= */

.core-care-image-wrap {
  position: relative;

  z-index: 3;

  min-height: 580px;

  overflow: hidden;

  background:
    var(--color-charcoal);

  box-shadow:
    0 30px 75px rgba(41, 38, 36, .22);
}


/* =========================================================
   IMAGE
========================================================= */

.core-care-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  animation:
    coreCareImageZoom 12s ease-in-out infinite alternate;
}


.core-care-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(41, 38, 36, .77) 0%,
      rgba(41, 38, 36, .27) 52%,
      rgba(41, 38, 36, .42) 100%);
}


/* =========================================================
   IMAGE SHINE
========================================================= */

.core-care-image-shine {
  position: absolute;

  top: -25%;
  left: -90%;

  width: 50%;
  height: 150%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .13),
      transparent);

  transform: skewX(-20deg);

  animation:
    coreCareImageShine 5.5s ease-in-out infinite;
}


/* =========================================================
   IMAGE BADGE
========================================================= */

.core-care-image-badge {
  position: absolute;

  z-index: 8;

  left: 27px;
  top: 27px;

  display: flex;

  align-items: center;

  gap: 11px;

  padding:
    10px 16px 10px 10px;

  color:
    var(--color-charcoal);

  background:
    rgba(255, 255, 255, .94);

  backdrop-filter: blur(10px);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, .18);

  animation:
    coreCareBadgeFloat 4s ease-in-out infinite;
}


.core-care-image-badge>span {
  width: 45px;
  height: 45px;

  flex: 0 0 45px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  font-size: 17px;
}


.core-care-image-badge>div {
  display: flex;
  flex-direction: column;
}


.core-care-image-badge small {
  margin-bottom: 3px;

  color:
    var(--color-brown);

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.core-care-image-badge strong {
  font-size: 13px;
  font-weight: 800;
}


/* =========================================================
   IMAGE CONTENT
========================================================= */

.core-care-image-content {
  position: absolute;

  z-index: 8;

  left: 45px;
  bottom: 52px;

  max-width: 650px;

  display: flex;

  align-items: flex-start;

  gap: 18px;
}


.core-care-image-icon {
  width: 62px;
  height: 62px;

  flex: 0 0 62px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 23px;

  animation:
    coreCareToolsPulse 3s ease-in-out infinite;
}


.core-care-image-content small {
  display: block;

  margin-bottom: 8px;

  color:
    var(--color-beige);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


.core-care-image-content h3 {
  margin: 0;

  color:
    var(--color-white);

  font-size:
    clamp(38px, 4vw, 58px);

  line-height: 1;

  font-weight: 800;

  letter-spacing: -2.5px;
}


.core-care-image-content h3 span {
  display: block;

  color:
    var(--color-beige);
}


/* =========================================================
   03 BADGE
========================================================= */

.core-care-floating-badge {
  position: absolute;

  z-index: 8;

  right: 32px;
  top: 50%;

  width: 128px;
  height: 128px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  border-radius: 50%;

  border:
    6px solid rgba(255, 255, 255, .88);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, .22);

  transform:
    translateY(-50%);

  animation:
    coreCareCircleFloat 4s ease-in-out infinite;
}


.core-care-floating-badge strong {
  font-size: 42px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: -3px;
}


.core-care-floating-badge>span {
  margin-top: 5px;

  display: flex;

  flex-direction: column;

  align-items: center;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.core-care-floating-badge small {
  font-size: 7px;

  opacity: .65;
}


/* =========================================================
   PROTOCOL CARDS AREA
========================================================= */

.core-care-protocols {
  position: relative;

  z-index: 10;

  margin-top: -38px;

  padding:
    0 30px;
}


/* =========================================================
   CARD
========================================================= */

.core-care-card {
  position: relative;

  height: 100%;

  min-height: 385px;

  padding:
    27px;

  overflow: hidden;

  background:
    var(--color-white);

  border:
    1px solid rgba(41, 38, 36, .08);

  box-shadow:
    0 22px 55px rgba(41, 38, 36, .11);

  transition:
    transform 350ms ease,
    box-shadow 350ms ease;
}


/* sliding hover */

.core-care-card::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 0;

  background:
    var(--color-charcoal);

  transform:
    translateY(101%);

  transition:
    transform 500ms cubic-bezier(.2, .8, .2, 1);
}


.core-care-card:hover::before {
  transform:
    translateY(0);
}


.core-care-card:hover {
  transform:
    translateY(-12px);

  box-shadow:
    0 32px 70px rgba(41, 38, 36, .18);
}


/* featured center */

.core-care-card-featured {
  background:
    var(--color-cream);

  transform:
    translateY(-16px);
}


.core-care-card-featured:hover {
  transform:
    translateY(-26px);
}


/* =========================================================
   CARD CONTENT LAYER
========================================================= */

.core-care-card>* {
  position: relative;
  z-index: 2;
}


/* =========================================================
   CARD TOP
========================================================= */

.core-care-card-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-bottom: 31px;
}


/* =========================================================
   NUMBER
========================================================= */

.core-care-number {
  color:
    rgba(41, 38, 36, .13);

  font-size: 58px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: -4px;

  transition:
    color 300ms ease;
}


.core-care-card:hover .core-care-number {
  color:
    rgba(255, 255, 255, .13);
}


/* =========================================================
   CARD ICON
========================================================= */

.core-care-card-icon {
  width: 58px;
  height: 58px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  font-size: 21px;

  transition:
    color 300ms ease,
    background 300ms ease,
    transform 350ms ease;
}


.core-care-card:hover .core-care-card-icon {
  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  transform:
    rotate(-8deg) scale(1.1);
}


/* =========================================================
   CARD LABEL
========================================================= */

.core-care-card-label {
  width: fit-content;

  margin-bottom: 10px;

  padding:
    6px 10px;

  color:
    var(--color-brown-dark);

  background:
    rgba(139, 116, 96, .11);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.2px;

  text-transform: uppercase;

  transition:
    color 300ms ease,
    background 300ms ease;
}


.core-care-card:hover .core-care-card-label {
  color:
    var(--color-beige);

  background:
    rgba(255, 255, 255, .07);
}


/* =========================================================
   CARD HEADING
========================================================= */

.core-care-card h3 {
  margin:
    0 0 15px;

  color:
    var(--color-charcoal);

  font-size:
    clamp(27px, 2.2vw, 34px);

  line-height: 1.02;

  font-weight: 800;

  letter-spacing: -1.4px;

  transition:
    color 300ms ease;
}


.core-care-card h3 span {
  display: block;

  color:
    var(--color-brown);

  transition:
    color 300ms ease;
}


.core-care-card:hover h3 {
  color:
    var(--color-white);
}


.core-care-card:hover h3 span {
  color:
    var(--color-beige);
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.core-care-card p {
  min-height: 82px;

  margin:
    0 0 25px;

  color:
    var(--color-text);

  font-size: 13px;

  line-height: 1.75;

  transition:
    color 300ms ease;
}


.core-care-card:hover p {
  color:
    rgba(255, 255, 255, .62);
}


/* =========================================================
   CARD BOTTOM
========================================================= */

.core-care-card-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 15px;

  padding-top: 17px;

  border-top:
    1px solid rgba(41, 38, 36, .09);
}


.core-care-card-bottom>span:first-child {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  color:
    var(--color-charcoal);

  font-size: 9px;

  font-weight: 800;

  transition:
    color 300ms ease;
}


.core-care-card-bottom>span:first-child i {
  color:
    var(--color-brown);

  font-size: 15px;
}


.core-care-card-bottom>span:last-child {
  color:
    var(--color-brown);

  font-size: 17px;

  transition:
    color 300ms ease,
    transform 300ms ease;
}


.core-care-card:hover .core-care-card-bottom {
  border-color:
    rgba(255, 255, 255, .1);
}


.core-care-card:hover .core-care-card-bottom>span:first-child {
  color:
    var(--color-white);
}


.core-care-card:hover .core-care-card-bottom>span:last-child {
  color:
    var(--color-beige);

  transform:
    translate(4px, -4px);
}


/* =========================================================
   TECHNICAL FLOW
========================================================= */

.core-care-flow {
  position: relative;

  z-index: 6;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 20px;

  margin-top: 46px;

  padding:
    23px 25px;

  background:
    var(--color-white);

  border:
    1px solid rgba(41, 38, 36, .08);

  box-shadow:
    0 15px 40px rgba(41, 38, 36, .06);
}


/* =========================================================
   FLOW ITEM
========================================================= */

.core-care-flow-item {
  display: flex;

  align-items: center;

  gap: 10px;
}


.core-care-flow-item>span {
  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  font-size: 16px;

  transition:
    transform 300ms ease,
    background 300ms ease;
}


.core-care-flow-item:hover>span {
  background:
    var(--color-brown);

  transform:
    rotate(-7deg) scale(1.08);
}


.core-care-flow-item>div {
  display: flex;
  flex-direction: column;
}


.core-care-flow-item small {
  margin-bottom: 2px;

  color:
    var(--color-brown);

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.core-care-flow-item strong {
  color:
    var(--color-charcoal);

  font-size: 12px;

  font-weight: 800;
}


.core-care-flow-line {
  color:
    var(--color-beige);

  font-size: 17px;

  animation:
    coreCareFlowArrow 2s ease-in-out infinite;
}


/* =========================================================
   CTA
========================================================= */

.core-care-cta {
  position: relative;

  z-index: 6;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 24px;

  margin-top: 20px;

  padding:
    23px 25px;

  background:
    var(--color-cream);

  border:
    1px solid rgba(139, 116, 96, .14);
}


/* =========================================================
   CTA COPY
========================================================= */

.core-care-cta-copy {
  display: flex;

  align-items: center;

  gap: 12px;
}


.core-care-cta-icon {
  width: 52px;
  height: 52px;

  flex: 0 0 52px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  font-size: 19px;

  animation:
    coreCareShieldPulse 2.5s ease-in-out infinite;
}


.core-care-cta-copy>div {
  display: flex;
  flex-direction: column;
}


.core-care-cta-copy small {
  margin-bottom: 3px;

  color:
    var(--color-brown);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.core-care-cta-copy strong {
  max-width: 440px;

  color:
    var(--color-charcoal);

  font-size: 14px;

  line-height: 1.4;

  font-weight: 800;
}


/* =========================================================
   CTA TRUST
========================================================= */

.core-care-trust {
  display: flex;

  flex-wrap: wrap;

  gap: 15px;
}


.core-care-trust span {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  color:
    var(--color-charcoal);

  font-size: 9px;

  font-weight: 700;
}


.core-care-trust i {
  color:
    var(--color-brown);
}


/* =========================================================
   ACTIONS
========================================================= */

.core-care-actions {
  display: flex;

  align-items: stretch;

  gap: 9px;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.core-care-call {
  position: relative;

  min-width: 250px;
  min-height: 62px;

  display: flex;

  align-items: center;

  gap: 10px;

  padding:
    8px 14px 8px 8px;

  overflow: hidden;

  color:
    var(--color-white);

  background:
    var(--color-charcoal);

  transition:
    background 300ms ease,
    transform 300ms ease,
    box-shadow 300ms ease;
}


.core-care-call::before {
  content: "";

  position: absolute;

  top: 0;
  left: -110%;

  width: 65%;
  height: 100%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .2),
      transparent);

  transform:
    skewX(-20deg);

  animation:
    coreCareCallShine 4s ease-in-out infinite;
}


.core-care-call:hover {
  color:
    var(--color-white);

  background:
    var(--color-brown);

  transform:
    translateY(-5px);

  box-shadow:
    0 18px 40px rgba(41, 38, 36, .2);
}


.core-care-call>span {
  position: relative;

  z-index: 2;

  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 16px;

  animation:
    coreCarePhoneRing 3s ease-in-out infinite;
}


.core-care-call>div {
  position: relative;

  z-index: 2;

  display: flex;
  flex-direction: column;
}


.core-care-call small {
  margin-bottom: 3px;

  font-size: 7px;

  font-weight: 800;

  letter-spacing: .8px;

  text-transform: uppercase;

  opacity: .65;
}


.core-care-call strong {
  font-size: 16px;

  font-weight: 800;
}


.core-care-call>i {
  position: relative;

  z-index: 2;

  margin-left: auto;

  transition:
    transform 300ms ease;
}


.core-care-call:hover>i {
  transform:
    translate(4px, -4px);
}


/* =========================================================
   ESTIMATE
========================================================= */

.core-care-estimate {
  min-height: 62px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  padding:
    0 19px;

  color:
    var(--color-charcoal);

  border:
    1px solid rgba(41, 38, 36, .18);

  font-size: 10px;

  font-weight: 800;

  transition:
    color 300ms ease,
    background 300ms ease,
    border-color 300ms ease,
    transform 300ms ease;
}


.core-care-estimate:hover {
  color:
    var(--color-white);

  background:
    var(--color-brown);

  border-color:
    var(--color-brown);

  transform:
    translateY(-5px);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes coreCareGridMove {

  from {
    background-position: 0 0;
  }

  to {
    background-position: 124px 62px;
  }

}


@keyframes coreCareGlowOne {

  0%,
  100% {
    opacity: .45;
    transform: scale(.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.13);
  }

}


@keyframes coreCareGlowTwo {

  0%,
  100% {
    transform:
      translate(0, 0) scale(1);
  }

  50% {
    transform:
      translate(-18px, -15px) scale(1.08);
  }

}


@keyframes coreCareShapeRotate {

  from {
    transform: rotate(45deg);
  }

  to {
    transform: rotate(405deg);
  }

}


@keyframes coreCareShapeFloat {

  0%,
  100% {
    transform:
      rotate(45deg) translateY(0);
  }

  50% {
    transform:
      rotate(55deg) translateY(-20px);
  }

}


@keyframes coreCareShapeThree {

  0%,
  100% {
    transform:
      rotate(45deg) translate(0, 0);
  }

  50% {
    transform:
      rotate(130deg) translate(20px, -20px);
  }

}


@keyframes coreCareEyebrowPulse {

  0%,
  100% {
    transform:
      scale(1) rotate(0);
  }

  50% {
    transform:
      scale(1.1) rotate(-5deg);
  }

}


@keyframes coreCareHeadingLine {

  from {
    width: 45px;
  }

  to {
    width: 95px;
  }

}


@keyframes coreCareFrameFloat {

  0%,
  100% {
    transform:
      translate(0, 0);
  }

  50% {
    transform:
      translate(8px, -8px);
  }

}


@keyframes coreCareImageZoom {

  from {
    transform:
      scale(1.02);
  }

  to {
    transform:
      scale(1.1);
  }

}


@keyframes coreCareImageShine {

  0%,
  25% {
    left: -90%;
  }

  70%,
  100% {
    left: 150%;
  }

}


@keyframes coreCareBadgeFloat {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(-9px);
  }

}


@keyframes coreCareToolsPulse {

  0%,
  100% {
    transform:
      scale(1) rotate(0);
  }

  50% {
    transform:
      scale(1.1) rotate(-7deg);
  }

}


@keyframes coreCareCircleFloat {

  0%,
  100% {
    transform:
      translateY(-50%) rotate(0);
  }

  50% {
    transform:
      translateY(calc(-50% - 10px)) rotate(3deg);
  }

}


@keyframes coreCareFlowArrow {

  0%,
  100% {
    transform:
      translateX(0);
  }

  50% {
    transform:
      translateX(5px);
  }

}


@keyframes coreCareShieldPulse {

  0%,
  100% {
    transform:
      scale(1);
  }

  50% {
    transform:
      scale(1.09);
  }

}


@keyframes coreCareCallShine {

  0%,
  35% {
    left: -110%;
  }

  70%,
  100% {
    left: 160%;
  }

}


@keyframes coreCarePhoneRing {

  0%,
  82%,
  100% {
    transform:
      rotate(0);
  }

  87% {
    transform:
      rotate(-10deg);
  }

  91% {
    transform:
      rotate(10deg);
  }

  95% {
    transform:
      rotate(-5deg);
  }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

  .core-care-title {
    font-size: 70px;
  }


  .core-care-image-wrap {
    min-height: 540px;
  }


  .core-care-card {
    padding: 24px;

    min-height: 405px;
  }


  .core-care-flow {
    gap: 13px;
  }


  .core-care-cta {
    flex-wrap: wrap;
  }


  .core-care-trust {
    order: 3;

    width: 100%;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .core-care-section {
    padding: 90px 0;
  }


  .core-care-title {
    font-size:
      clamp(56px, 9vw, 76px);
  }


  .core-care-heading-copy {
    max-width: 700px;

    margin-left: 0;
  }


  .core-care-image-wrap {
    min-height: 500px;
  }


  .core-care-image-content {
    left: 30px;
    right: 150px;

    bottom: 38px;
  }


  .core-care-protocols {
    margin-top: 20px;

    padding: 0;
  }


  .core-care-card,
  .core-care-card-featured {
    min-height: auto;

    transform: none;
  }


  .core-care-card-featured:hover,
  .core-care-card:hover {
    transform:
      translateY(-7px);
  }


  .core-care-card p {
    min-height: auto;
  }


  .core-care-flow {
    flex-wrap: wrap;

    justify-content: flex-start;
  }


  .core-care-flow-line {
    display: none;
  }


  .core-care-cta {
    align-items: flex-start;

    flex-direction: column;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .core-care-section {
    padding: 75px 0;
  }


  .core-care-heading {
    margin-bottom: 42px;
  }


  .core-care-title {
    font-size:
      clamp(45px, 12vw, 60px);

    letter-spacing: -3px;
  }


  .core-care-heading-copy p {
    font-size: 14px;
  }


  .core-care-visual {
    padding: 14px;
  }


  .core-care-image-frame {
    display: none;
  }


  .core-care-image-wrap {
    min-height: 480px;
  }


  .core-care-image-overlay {
    background:
      linear-gradient(180deg,
        rgba(41, 38, 36, .15),
        rgba(41, 38, 36, .84));
  }


  .core-care-image-badge {
    left: 17px;
    top: 17px;
  }


  .core-care-image-content {
    left: 20px;
    right: 20px;

    bottom: 28px;
  }


  .core-care-image-content h3 {
    font-size: 40px;
  }


  .core-care-floating-badge {
    width: 95px;
    height: 95px;

    right: 17px;
    top: 45%;
  }


  .core-care-floating-badge strong {
    font-size: 31px;
  }


  .core-care-card {
    min-height: auto;
  }


  .core-care-flow {
    display: grid;

    grid-template-columns:
      repeat(2, 1fr);
  }


  .core-care-cta {
    padding: 20px;
  }


  .core-care-actions {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr;
  }


  .core-care-call,
  .core-care-estimate {
    width: 100%;

    min-width: 0;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .core-care-title {
    font-size: 42px;
  }


  .core-care-image-wrap {
    min-height: 430px;
  }


  .core-care-image-badge {
    max-width: 210px;
  }


  .core-care-floating-badge {
    display: none;
  }


  .core-care-image-icon {
    width: 50px;
    height: 50px;

    flex-basis: 50px;
  }


  .core-care-image-content {
    align-items: flex-start;
  }


  .core-care-image-content h3 {
    font-size: 34px;
  }


  .core-care-card {
    padding: 22px;
  }


  .core-care-number {
    font-size: 48px;
  }


  .core-care-card h3 {
    font-size: 28px;
  }


  .core-care-flow {
    grid-template-columns: 1fr;
  }


  .core-care-cta-copy {
    align-items: flex-start;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .core-care-section *,
  .core-care-section *::before,
  .core-care-section *::after {
    animation: none !important;

    transition-duration: .01ms !important;
  }

}

/* 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 */

/* =========================================================
   FAQ KNOWLEDGE PATH
========================================================= */

.faq-path-section {
  position: relative;
  padding: 125px 0;
  overflow: hidden;
  isolation: isolate;

  background:
    var(--color-off-white);
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.faq-path-grid {
  position: absolute;
  inset: 0;

  z-index: -20;

  background-image:
    linear-gradient(rgba(41, 38, 36, .028) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(41, 38, 36, .028) 1px,
      transparent 1px);

  background-size:
    64px 64px;

  animation:
    faqPathGridMove 25s linear infinite;
}


/* =========================================================
   GLOWS
========================================================= */

.faq-path-glow {
  position: absolute;

  z-index: -15;

  border-radius: 50%;

  pointer-events: none;
}


.faq-path-glow-one {
  width: 650px;
  height: 650px;

  left: -330px;
  top: 12%;

  background:
    radial-gradient(circle,
      rgba(139, 116, 96, .15),
      transparent 70%);

  animation:
    faqPathGlowOne 7s ease-in-out infinite;
}


.faq-path-glow-two {
  width: 580px;
  height: 580px;

  right: -280px;
  bottom: -160px;

  background:
    radial-gradient(circle,
      rgba(198, 182, 167, .18),
      transparent 70%);

  animation:
    faqPathGlowTwo 8s ease-in-out infinite;
}


/* =========================================================
   BACKGROUND SHAPES
========================================================= */

.faq-path-shape {
  position: absolute;

  z-index: -12;

  pointer-events: none;
}


.faq-path-shape-one {
  width: 280px;
  height: 280px;

  left: -160px;
  top: 100px;

  border:
    1px solid rgba(139, 116, 96, .15);

  transform:
    rotate(45deg);

  animation:
    faqPathShapeRotate 28s linear infinite;
}


.faq-path-shape-two {
  width: 125px;
  height: 125px;

  right: 7%;
  top: 100px;

  background:
    rgba(139, 116, 96, .055);

  transform:
    rotate(45deg);

  animation:
    faqPathShapeFloat 6s ease-in-out infinite;
}


/* =========================================================
   HEADING
========================================================= */

.faq-path-heading {
  position: relative;

  z-index: 5;

  margin-bottom: 55px;
}


/* =========================================================
   EYEBROW
========================================================= */

.faq-path-eyebrow {
  width: fit-content;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 22px;

  padding:
    7px 15px 7px 7px;

  color:
    var(--color-brown-dark);

  background:
    rgba(139, 116, 96, .09);

  border:
    1px solid rgba(139, 116, 96, .15);
}


.faq-path-eyebrow>span {
  width: 38px;
  height: 38px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-white);

  background:
    var(--color-brown);

  font-size: 17px;

  animation:
    faqPathEyebrowPulse 2.5s ease-in-out infinite;
}


.faq-path-eyebrow small {
  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


/* =========================================================
   TITLE
========================================================= */

/* =========================================================
   SMALLER FAQ SECTION TITLE
========================================================= */

.faq-path-title {
  max-width: 760px;

  margin: 0;

  color: var(--color-charcoal);

  font-size: clamp(38px, 4vw, 56px);

  line-height: 1.03;

  font-weight: 800;

  letter-spacing: -2.8px;
}


.faq-path-title span {
  display: block;

  margin-top: 4px;

  color: var(--color-brown);
}


/* LAPTOP */
@media (max-width: 1199.98px) {

  .faq-path-title {
    font-size: 50px;
  }

}


/* TABLET */
@media (max-width: 991.98px) {

  .faq-path-title {
    max-width: 700px;

    font-size: clamp(39px, 6vw, 50px);
  }

}


/* MOBILE */
@media (max-width: 767.98px) {

  .faq-path-title {
    font-size: clamp(33px, 9vw, 42px);

    line-height: 1.04;

    letter-spacing: -2px;
  }

}


/* SMALL MOBILE */
@media (max-width: 480px) {

  .faq-path-title {
    font-size: 34px;

    line-height: 1.05;

    letter-spacing: -1.6px;
  }

}

/* =========================================================
   HEADING COPY
========================================================= */

.faq-path-heading-copy {
  max-width: 390px;

  margin-left: auto;
}


.faq-path-heading-copy>span {
  display: block;

  width: 70px;
  height: 3px;

  margin-bottom: 18px;

  background:
    var(--color-brown);

  animation:
    faqPathHeadingLine 2s ease-in-out infinite alternate;
}


.faq-path-heading-copy p {
  margin: 0;

  color:
    var(--color-text);

  font-size: 16px;

  line-height: 1.8;
}


/* =========================================================
   LOCAL BAR
========================================================= */

.faq-path-local-bar {
  position: relative;

  z-index: 6;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 65px;

  padding:
    20px 22px;

  color:
    var(--color-white);

  background:
    var(--color-charcoal);

  box-shadow:
    0 22px 55px rgba(41, 38, 36, .14);
}


/* =========================================================
   LOCAL MAIN
========================================================= */

.faq-path-local-main {
  display: flex;

  align-items: center;

  gap: 12px;
}


.faq-path-local-icon {
  width: 50px;
  height: 50px;

  flex: 0 0 50px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 19px;

  animation:
    faqPathLocationPulse 2.7s ease-in-out infinite;
}


.faq-path-local-main>div {
  display: flex;

  flex-direction: column;
}


.faq-path-local-main small {
  margin-bottom: 3px;

  color:
    var(--color-beige);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.faq-path-local-main strong {
  font-size: 16px;

  font-weight: 800;
}


/* =========================================================
   SEASON TAGS
========================================================= */

.faq-path-season-tags {
  display: flex;

  flex-wrap: wrap;

  justify-content: flex-end;

  gap: 8px;
}


.faq-path-season-tags span {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  padding:
    9px 12px;

  color:
    rgba(255, 255, 255, .8);

  background:
    rgba(255, 255, 255, .06);

  border:
    1px solid rgba(255, 255, 255, .08);

  font-size: 9px;

  font-weight: 700;

  transition:
    background 300ms ease,
    color 300ms ease,
    transform 300ms ease;
}


.faq-path-season-tags span:hover {
  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  transform:
    translateY(-4px);
}


/* =========================================================
   PATH STAGE
========================================================= */

.faq-path-stage {
  position: relative;

  z-index: 5;

  display: grid;

  gap: 40px;

  padding:
    20px 0 25px;
}


/* =========================================================
   CENTER PATH LINE
========================================================= */

.faq-path-line {
  position: absolute;

  left: 50%;
  top: 0;
  bottom: 0;

  width: 2px;

  overflow: hidden;

  background:
    rgba(139, 116, 96, .15);

  transform:
    translateX(-50%);
}


.faq-path-line-progress {
  position: absolute;

  left: 0;
  top: -45%;

  width: 100%;
  height: 45%;

  background:
    linear-gradient(180deg,
      transparent,
      var(--color-brown),
      var(--color-beige),
      transparent);

  animation:
    faqPathLineMove 5s linear infinite;
}


/* =========================================================
   FAQ ROW
========================================================= */

.faq-path-row {
  position: relative;

  width: calc(50% - 45px);
}


.faq-path-left {
  justify-self: start;
}


.faq-path-right {
  justify-self: end;
}


/* =========================================================
   MARKER
========================================================= */

.faq-path-marker {
  position: absolute;

  z-index: 8;

  top: 43px;

  width: 56px;
  height: 56px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  border:
    8px solid var(--color-off-white);

  box-shadow:
    0 0 0 1px rgba(139, 116, 96, .2);

  transition:
    background 300ms ease,
    color 300ms ease,
    transform 300ms ease;
}


.faq-path-left .faq-path-marker {
  right: -73px;
}


.faq-path-right .faq-path-marker {
  left: -73px;
}


.faq-path-marker span {
  font-size: 9px;

  font-weight: 800;
}


/* horizontal connector */

.faq-path-marker::after {
  content: "";

  position: absolute;

  top: 50%;

  width: 35px;
  height: 1px;

  background:
    var(--color-brown);
}


.faq-path-left .faq-path-marker::after {
  right: 48px;
}


.faq-path-right .faq-path-marker::after {
  left: 48px;
}


/* =========================================================
   CARD
========================================================= */

.faq-path-card {
  position: relative;

  overflow: hidden;

  background:
    var(--color-white);

  border:
    1px solid rgba(41, 38, 36, .08);

  box-shadow:
    0 20px 50px rgba(41, 38, 36, .08);

  transition:
    transform 350ms ease,
    box-shadow 350ms ease,
    border-color 350ms ease;
}


.faq-path-left .faq-path-card:hover {
  transform:
    translateX(-8px);
}


.faq-path-right .faq-path-card:hover {
  transform:
    translateX(8px);
}


.faq-path-card:hover {
  box-shadow:
    0 28px 65px rgba(41, 38, 36, .13);
}


.faq-path-card[open] {
  border-color:
    rgba(139, 116, 96, .35);
}


/* top accent */

.faq-path-card::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 0;
  height: 4px;

  background:
    var(--color-brown);

  transition:
    width 450ms ease;
}


.faq-path-card[open]::before {
  width: 100%;
}


/* =========================================================
   SUMMARY
========================================================= */

.faq-path-card summary {
  display: grid;

  grid-template-columns:
    1fr 45px;

  align-items: center;

  gap: 18px;

  min-height: 150px;

  padding:
    25px;

  cursor: pointer;

  list-style: none;
}


.faq-path-card summary::-webkit-details-marker {
  display: none;
}


/* =========================================================
   CARD HEAD
========================================================= */

.faq-path-card-head {
  display: grid;

  grid-template-columns:
    60px 1fr;

  align-items: center;

  gap: 16px;
}


/* =========================================================
   CARD ICON
========================================================= */

.faq-path-card-icon {
  width: 60px;
  height: 60px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  font-size: 22px;

  transition:
    color 300ms ease,
    background 300ms ease,
    transform 350ms ease;
}


.faq-path-card[open] .faq-path-card-icon {
  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  transform:
    rotate(-7deg) scale(1.07);
}


/* =========================================================
   QUESTION
========================================================= */

.faq-path-card-head small {
  display: block;

  margin-bottom: 7px;

  color:
    var(--color-brown);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.2px;

  text-transform: uppercase;
}


.faq-path-card-head h3 {
  margin: 0;

  color:
    var(--color-charcoal);

  font-size: 21px;

  line-height: 1.3;

  font-weight: 800;

  letter-spacing: -.55px;
}


/* =========================================================
   TOGGLE
========================================================= */

.faq-path-toggle {
  width: 44px;
  height: 44px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-cream);

  font-size: 16px;

  transition:
    color 300ms ease,
    background 300ms ease,
    transform 400ms ease;
}


.faq-path-card[open] .faq-path-toggle {
  color:
    var(--color-white);

  background:
    var(--color-brown);

  transform:
    rotate(45deg);
}


/* =========================================================
   ANSWER
========================================================= */

.faq-path-answer {
  padding:
    0 25px 26px 101px;

  animation:
    faqPathAnswerIn 400ms ease both;
}


.faq-path-answer>p {
  margin: 0;

  color:
    var(--color-text);

  font-size: 14px;

  line-height: 1.8;
}


.faq-path-answer>p strong {
  color:
    var(--color-charcoal);

  font-weight: 800;
}


/* =========================================================
   INSIGHT
========================================================= */

.faq-path-insight {
  display: flex;

  align-items: center;

  gap: 11px;

  margin-top: 18px;

  padding: 13px;

  background:
    var(--color-cream);
}


.faq-path-insight>span {
  width: 43px;
  height: 43px;

  flex: 0 0 43px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  font-size: 16px;
}


.faq-path-insight>div {
  display: flex;

  flex-direction: column;
}


.faq-path-insight small {
  margin-bottom: 3px;

  color:
    var(--color-brown);

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.faq-path-insight strong {
  color:
    var(--color-charcoal);

  font-size: 11px;

  line-height: 1.5;

  font-weight: 800;
}


/* =========================================================
   PRICE BOXES
========================================================= */

.faq-path-prices {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 7px;

  margin-top: 18px;
}


.faq-path-prices>div {
  padding:
    12px;

  background:
    var(--color-off-white);

  border:
    1px solid rgba(41, 38, 36, .07);
}


.faq-path-prices small {
  display: block;

  margin-bottom: 4px;

  color:
    var(--color-brown);

  font-size: 6px;

  font-weight: 800;

  letter-spacing: .8px;

  text-transform: uppercase;
}


.faq-path-prices strong {
  color:
    var(--color-charcoal);

  font-size: 15px;

  font-weight: 800;
}


/* =========================================================
   CTA
========================================================= */

.faq-path-cta {
  position: relative;

  z-index: 6;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;

  margin-top: 65px;

  padding:
    23px 25px;

  background:
    var(--color-charcoal);

  box-shadow:
    0 25px 60px rgba(41, 38, 36, .14);
}


/* =========================================================
   CTA MESSAGE
========================================================= */

.faq-path-cta-message {
  display: flex;

  align-items: center;

  gap: 13px;
}


.faq-path-cta-message>span {
  width: 52px;
  height: 52px;

  flex: 0 0 52px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 19px;

  animation:
    faqPathCtaIcon 2.6s ease-in-out infinite;
}


.faq-path-cta-message>div {
  display: flex;

  flex-direction: column;
}


.faq-path-cta-message small {
  margin-bottom: 3px;

  color:
    var(--color-beige);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.faq-path-cta-message strong {
  color:
    var(--color-white);

  font-size: 15px;

  font-weight: 800;
}


/* =========================================================
   CTA TRUST
========================================================= */

.faq-path-cta-trust {
  display: flex;

  flex-wrap: wrap;

  gap: 15px;
}


.faq-path-cta-trust span {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  color:
    rgba(255, 255, 255, .65);

  font-size: 9px;

  font-weight: 700;
}


.faq-path-cta-trust i {
  color:
    var(--color-beige);
}


/* =========================================================
   ACTIONS
========================================================= */

.faq-path-actions {
  display: flex;

  align-items: stretch;

  gap: 9px;
}


/* =========================================================
   CALL
========================================================= */

.faq-path-call {
  position: relative;

  min-width: 245px;
  min-height: 62px;

  display: flex;

  align-items: center;

  gap: 10px;

  padding:
    8px 14px 8px 8px;

  overflow: hidden;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  transition:
    color 300ms ease,
    background 300ms ease,
    transform 300ms ease;
}


.faq-path-call::before {
  content: "";

  position: absolute;

  top: 0;
  left: -110%;

  width: 65%;
  height: 100%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .55),
      transparent);

  transform:
    skewX(-20deg);

  animation:
    faqPathCallShine 4s ease-in-out infinite;
}


.faq-path-call:hover {
  color:
    var(--color-white);

  background:
    var(--color-brown);

  transform:
    translateY(-5px);
}


.faq-path-call>span {
  position: relative;

  z-index: 2;

  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  font-size: 16px;

  animation:
    faqPathPhoneRing 3s ease-in-out infinite;
}


.faq-path-call>div {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;
}


.faq-path-call small {
  margin-bottom: 3px;

  font-size: 7px;

  font-weight: 800;

  letter-spacing: .8px;

  text-transform: uppercase;

  opacity: .65;
}


.faq-path-call strong {
  font-size: 16px;

  font-weight: 800;
}


.faq-path-call>i {
  position: relative;

  z-index: 2;

  margin-left: auto;
}


/* =========================================================
   ESTIMATE
========================================================= */

.faq-path-estimate {
  min-height: 62px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  padding:
    0 18px;

  color:
    var(--color-white);

  border:
    1px solid rgba(255, 255, 255, .18);

  font-size: 10px;

  font-weight: 800;

  transition:
    background 300ms ease,
    color 300ms ease,
    border-color 300ms ease,
    transform 300ms ease;
}


.faq-path-estimate:hover {
  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  border-color:
    var(--color-beige);

  transform:
    translateY(-5px);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes faqPathGridMove {

  from {
    background-position: 0 0;
  }

  to {
    background-position: 128px 64px;
  }

}


@keyframes faqPathGlowOne {

  0%,
  100% {
    opacity: .4;

    transform:
      scale(.9);
  }

  50% {
    opacity: 1;

    transform:
      scale(1.13);
  }

}


@keyframes faqPathGlowTwo {

  0%,
  100% {
    transform:
      translate(0, 0) scale(1);
  }

  50% {
    transform:
      translate(-20px, -15px) scale(1.08);
  }

}


@keyframes faqPathShapeRotate {

  from {
    transform:
      rotate(45deg);
  }

  to {
    transform:
      rotate(405deg);
  }

}


@keyframes faqPathShapeFloat {

  0%,
  100% {
    transform:
      rotate(45deg) translateY(0);
  }

  50% {
    transform:
      rotate(55deg) translateY(-20px);
  }

}


@keyframes faqPathEyebrowPulse {

  0%,
  100% {
    transform:
      scale(1) rotate(0);
  }

  50% {
    transform:
      scale(1.1) rotate(-5deg);
  }

}


@keyframes faqPathHeadingLine {

  from {
    width: 45px;
  }

  to {
    width: 95px;
  }

}


@keyframes faqPathLocationPulse {

  0%,
  100% {
    transform:
      scale(1);
  }

  50% {
    transform:
      scale(1.09);
  }

}


@keyframes faqPathLineMove {

  from {
    top: -45%;
  }

  to {
    top: 100%;
  }

}


@keyframes faqPathAnswerIn {

  from {
    opacity: 0;

    transform:
      translateY(-10px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }

}


@keyframes faqPathCtaIcon {

  0%,
  100% {
    transform:
      scale(1) rotate(0);
  }

  50% {
    transform:
      scale(1.08) rotate(-5deg);
  }

}


@keyframes faqPathCallShine {

  0%,
  35% {
    left: -110%;
  }

  70%,
  100% {
    left: 160%;
  }

}


@keyframes faqPathPhoneRing {

  0%,
  82%,
  100% {
    transform:
      rotate(0);
  }

  87% {
    transform:
      rotate(-10deg);
  }

  91% {
    transform:
      rotate(10deg);
  }

  95% {
    transform:
      rotate(-5deg);
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .faq-path-section {
    padding:
      90px 0;
  }


  .faq-path-title {
    font-size:
      clamp(56px, 9vw, 76px);
  }


  .faq-path-heading-copy {
    max-width: 700px;

    margin-left: 0;
  }


  .faq-path-local-bar {
    align-items: flex-start;

    flex-direction: column;
  }


  .faq-path-season-tags {
    justify-content: flex-start;
  }


  .faq-path-line {
    left: 28px;
  }


  .faq-path-row {
    width: calc(100% - 75px);

    justify-self: end;
  }


  .faq-path-left,
  .faq-path-right {
    justify-self: end;
  }


  .faq-path-left .faq-path-marker,
  .faq-path-right .faq-path-marker {
    left: -74px;
    right: auto;
  }


  .faq-path-left .faq-path-marker::after,
  .faq-path-right .faq-path-marker::after {
    left: 48px;
    right: auto;
  }


  .faq-path-left .faq-path-card:hover,
  .faq-path-right .faq-path-card:hover {
    transform:
      translateY(-6px);
  }


  .faq-path-cta {
    align-items: flex-start;

    flex-direction: column;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .faq-path-section {
    padding:
      75px 0;
  }


  .faq-path-title {
    font-size:
      clamp(45px, 12vw, 60px);

    letter-spacing:
      -3px;
  }


  .faq-path-heading-copy p {
    font-size: 14px;
  }


  .faq-path-local-bar {
    margin-bottom: 45px;
  }


  .faq-path-season-tags {
    width: 100%;
  }


  .faq-path-stage {
    gap: 22px;
  }


  .faq-path-line,
  .faq-path-marker {
    display: none;
  }


  .faq-path-row {
    width: 100%;

    justify-self: stretch;
  }


  .faq-path-card summary {
    min-height: auto;

    grid-template-columns:
      1fr 40px;

    padding: 19px;
  }


  .faq-path-card-head {
    grid-template-columns:
      50px 1fr;

    gap: 12px;
  }


  .faq-path-card-icon {
    width: 50px;
    height: 50px;

    font-size: 18px;
  }


  .faq-path-card-head h3 {
    font-size: 17px;
  }


  .faq-path-answer {
    padding:
      0 19px 22px;
  }


  .faq-path-prices {
    grid-template-columns: 1fr;
  }


  .faq-path-cta {
    margin-top: 40px;

    padding: 20px;
  }


  .faq-path-actions {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr;
  }


  .faq-path-call,
  .faq-path-estimate {
    width: 100%;

    min-width: 0;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .faq-path-title {
    font-size: 42px;
  }


  .faq-path-season-tags {
    display: grid;

    grid-template-columns:
      repeat(2, 1fr);
  }


  .faq-path-season-tags span {
    justify-content: center;
  }


  .faq-path-card-head {
    grid-template-columns: 1fr;
  }


  .faq-path-card-head h3 {
    font-size: 16px;
  }


  .faq-path-toggle {
    width: 38px;
    height: 38px;
  }


  .faq-path-cta-message {
    align-items: flex-start;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .faq-path-section *,
  .faq-path-section *::before,
  .faq-path-section *::after {
    animation:
      none !important;

    transition-duration:
      .01ms !important;
  }

}


/* 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 */

/* =========================================================
   CONTACT COMMAND CENTER
========================================================= */

.contact-command-section {
  position: relative;
  padding: 125px 0;
  overflow: hidden;
  isolation: isolate;

  background:
    var(--color-off-white);
}


/* =========================================================
   BACKGROUND
========================================================= */

.contact-command-grid {
  position: absolute;
  inset: 0;

  z-index: -20;

  background-image:
    linear-gradient(rgba(41, 38, 36, .028) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(41, 38, 36, .028) 1px,
      transparent 1px);

  background-size:
    62px 62px;

  animation:
    contactGridMove 24s linear infinite;
}


.contact-command-glow {
  position: absolute;

  z-index: -15;

  border-radius: 50%;

  pointer-events: none;
}


.contact-command-glow-one {
  width: 650px;
  height: 650px;

  left: -320px;
  top: 10%;

  background:
    radial-gradient(circle,
      rgba(139, 116, 96, .15),
      transparent 70%);

  animation:
    contactGlowOne 7s ease-in-out infinite;
}


.contact-command-glow-two {
  width: 580px;
  height: 580px;

  right: -280px;
  bottom: -160px;

  background:
    radial-gradient(circle,
      rgba(198, 182, 167, .18),
      transparent 70%);

  animation:
    contactGlowTwo 8s ease-in-out infinite;
}


/* =========================================================
   SHAPES
========================================================= */

.contact-command-shape {
  position: absolute;

  z-index: -12;

  pointer-events: none;
}


.contact-command-shape-one {
  width: 270px;
  height: 270px;

  left: -150px;
  top: 90px;

  border:
    1px solid rgba(139, 116, 96, .15);

  transform: rotate(45deg);

  animation:
    contactShapeRotate 28s linear infinite;
}


.contact-command-shape-two {
  width: 125px;
  height: 125px;

  right: 7%;
  top: 105px;

  background:
    rgba(139, 116, 96, .055);

  transform: rotate(45deg);

  animation:
    contactShapeFloat 6s ease-in-out infinite;
}


/* =========================================================
   HEADING
========================================================= */

.contact-command-heading {
  position: relative;

  z-index: 5;

  margin-bottom: 60px;
}


/* =========================================================
   EYEBROW
========================================================= */

.contact-command-eyebrow {
  width: fit-content;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 22px;

  padding:
    7px 15px 7px 7px;

  color:
    var(--color-brown-dark);

  background:
    rgba(139, 116, 96, .09);

  border:
    1px solid rgba(139, 116, 96, .15);
}


.contact-command-eyebrow>span {
  width: 38px;
  height: 38px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-white);

  background:
    var(--color-brown);

  font-size: 16px;

  animation:
    contactEyebrowPulse 2.5s ease-in-out infinite;
}


.contact-command-eyebrow small {
  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


/* =========================================================
   TITLE
========================================================= */

.contact-command-title {
  max-width: 990px;

  margin: 0;

  color:
    var(--color-charcoal);

  font-size:
    clamp(60px, 6vw, 92px);

  line-height: .95;

  font-weight: 800;

  letter-spacing: -5px;
}


.contact-command-title span {
  display: block;

  color:
    var(--color-brown);
}


/* =========================================================
   HEADING COPY
========================================================= */

.contact-command-heading-copy {
  max-width: 390px;

  margin-left: auto;
}


.contact-command-heading-copy>span {
  display: block;

  width: 70px;
  height: 3px;

  margin-bottom: 18px;

  background:
    var(--color-brown);

  animation:
    contactHeadingLine 2s ease-in-out infinite alternate;
}


.contact-command-heading-copy p {
  margin: 0;

  color:
    var(--color-text);

  font-size: 16px;

  line-height: 1.8;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.contact-command-layout {
  position: relative;

  z-index: 5;

  overflow: hidden;

  background:
    var(--color-white);

  box-shadow:
    0 35px 90px rgba(41, 38, 36, .14);
}


/* =========================================================
   LEFT INFORMATION
========================================================= */

.contact-command-info {
  position: relative;

  height: 100%;

  padding:
    55px 42px;

  overflow: hidden;

  color:
    var(--color-white);

  background:
    var(--color-charcoal);
}


/* decorative huge number */

.contact-command-big-number {
  position: absolute;

  right: -6px;
  top: -20px;

  color:
    rgba(255, 255, 255, .035);

  font-size: 180px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: -12px;

  pointer-events: none;
}


/* =========================================================
   INFO HEADER
========================================================= */

.contact-command-info-head {
  position: relative;

  z-index: 3;

  margin-bottom: 32px;
}


.contact-command-info-head>small {
  display: block;

  margin-bottom: 9px;

  color:
    var(--color-beige);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}


.contact-command-info-head h3 {
  margin:
    0 0 15px;

  color:
    var(--color-white);

  font-size:
    clamp(38px, 3.5vw, 53px);

  line-height: .98;

  font-weight: 800;

  letter-spacing: -2.5px;
}


.contact-command-info-head h3 span {
  display: block;

  color:
    var(--color-beige);
}


.contact-command-info-head p {
  max-width: 430px;

  margin: 0;

  color:
    rgba(255, 255, 255, .57);

  font-size: 13px;

  line-height: 1.75;
}


/* =========================================================
   CONTACT DETAIL
========================================================= */

.contact-command-detail {
  position: relative;

  z-index: 3;

  min-height: 88px;

  display: grid;

  grid-template-columns:
    52px 1fr auto;

  align-items: center;

  gap: 13px;

  padding:
    13px 0;

  color: inherit;

  border-top:
    1px solid rgba(255, 255, 255, .08);

  transition:
    padding 300ms ease;
}


.contact-command-detail:hover {
  padding-left: 9px;
}


.contact-command-detail-icon {
  width: 52px;
  height: 52px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 18px;

  transition:
    color 300ms ease,
    background 300ms ease,
    transform 300ms ease;
}


.contact-command-detail:hover .contact-command-detail-icon {
  color:
    var(--beige);

  background:
    var(--color-brown);

  transform:
    rotate(-7deg) scale(1.07);
}


.contact-command-detail>div {
  min-width: 0;

  display: flex;

  flex-direction: column;
}


.contact-command-detail small {
  margin-bottom: 3px;

  color:
    var(--color-beige);

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.contact-command-detail strong {
  color:
    var(--color-white);

  font-size: 14px;

  line-height: 1.35;

  font-weight: 800;

  overflow-wrap: anywhere;
}


.contact-command-detail div>span {
  margin-top: 3px;

  color:
    rgba(255, 255, 255, .45);

  font-size: 9px;

  line-height: 1.5;
}


.contact-command-detail>i {
  color:
    var(--color-beige);

  font-size: 16px;

  transition:
    transform 300ms ease;
}


.contact-command-detail:hover>i {
  transform:
    translate(4px, -4px);
}


/* =========================================================
   FEATURED PHONE
========================================================= */

.contact-command-phone {
  margin-bottom: 5px;
}


/* =========================================================
   MAP
========================================================= */

.contact-command-map {
  position: relative;

  z-index: 5;

  margin-top: 30px;

  padding-top: 25px;

  border-top:
    1px solid rgba(255, 255, 255, .1);
}


.contact-command-map-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 15px;

  margin-bottom: 13px;
}


.contact-command-map-top>div {
  display: flex;

  flex-direction: column;
}


.contact-command-map-top small {
  margin-bottom: 3px;

  color:
    var(--color-beige);

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.contact-command-map-top strong {
  color:
    var(--color-white);

  font-size: 15px;

  font-weight: 800;
}


.contact-command-map-top>span {
  width: 41px;
  height: 41px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 16px;

  animation:
    contactMapPinPulse 2.5s ease-in-out infinite;
}


/* =========================================================
   MAP FRAME
========================================================= */

.contact-command-map-frame {
  position: relative;

  height: 285px;

  overflow: hidden;

  border:
    7px solid rgba(255, 255, 255, .06);

  background:
    var(--color-charcoal-soft);
}


.contact-command-map-frame iframe {
  display: block;

  width: 100%;
  height: 100%;

  border: 0;

  filter:
    grayscale(25%) contrast(.95);
}


/* =========================================================
   MAP LABEL
========================================================= */

.contact-command-map-label {
  position: absolute;

  left: 14px;
  bottom: 14px;

  display: flex;

  align-items: center;

  gap: 9px;

  padding:
    8px 12px 8px 8px;

  color:
    var(--color-charcoal);

  background:
    rgba(255, 255, 255, .96);

  box-shadow:
    0 14px 32px rgba(0, 0, 0, .2);
}


.contact-command-map-label>span {
  width: 38px;
  height: 38px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);
}


.contact-command-map-label>div {
  display: flex;

  flex-direction: column;
}


.contact-command-map-label small {
  margin-bottom: 2px;

  color:
    var(--color-brown);

  font-size: 6px;

  font-weight: 800;

  letter-spacing: .8px;

  text-transform: uppercase;
}


.contact-command-map-label strong {
  color:
    var(--color-charcoal);

  font-size: 11px;

  font-weight: 800;
}


/* =========================================================
   FORM SIDE
========================================================= */

.contact-command-form-side {
  position: relative;

  height: 100%;

  padding:
    58px 52px;

  overflow: hidden;

  background:
    var(--color-white);
}


.contact-command-form-number {
  position: absolute;

  right: 15px;
  top: 0;

  color:
    rgba(41, 38, 36, .035);

  font-size: 170px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: -11px;

  pointer-events: none;
}


/* =========================================================
   FORM HEADER
========================================================= */

.contact-command-form-head {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  gap: 17px;

  margin-bottom: 18px;
}


.contact-command-form-icon {
  width: 65px;
  height: 65px;

  flex: 0 0 65px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  font-size: 23px;

  animation:
    contactFormIconPulse 3s ease-in-out infinite;
}


.contact-command-form-head>div:last-child {
  display: flex;

  flex-direction: column;
}


.contact-command-form-head small {
  margin-bottom: 5px;

  color:
    var(--color-brown);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.3px;

  text-transform: uppercase;
}


.contact-command-form-head h3 {
  margin: 0;

  color:
    var(--color-charcoal);

  font-size:
    clamp(35px, 3.5vw, 51px);

  line-height: .98;

  font-weight: 800;

  letter-spacing: -2px;
}


.contact-command-form-head h3 span {
  display: block;

  color:
    var(--color-brown);
}


.contact-command-form-intro {
  position: relative;

  z-index: 2;

  max-width: 610px;

  margin:
    0 0 31px;

  color:
    var(--color-text);

  font-size: 13px;

  line-height: 1.75;
}


/* =========================================================
   BOOKING FORM
========================================================= */

.booking-form {
  position: relative;

  z-index: 3;
}


/* =========================================================
   FORM FIELD
========================================================= */

.booking-field {
  position: relative;
}


/* control */

.booking-field__control {
  min-height: 64px;

  padding:
    22px 48px 8px 16px !important;

  color:
    var(--color-charcoal) !important;

  background:
    var(--color-off-white) !important;

  border:
    1px solid rgba(41, 38, 36, .11) !important;

  border-radius:
    0 !important;

  box-shadow:
    none !important;

  font-size:
    13px !important;

  font-weight:
    600;

  transition:
    border-color 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
}


/* textarea */

.booking-field--textarea .booking-field__control {
  min-height: 135px;

  padding-top:
    27px !important;

  resize:
    vertical;
}


/* =========================================================
   LABEL
========================================================= */

.booking-field label {
  position: absolute;

  z-index: 3;

  left: 16px;
  top: 50%;

  margin: 0;

  color:
    var(--color-text);

  font-size: 11px;

  font-weight: 700;

  pointer-events: none;

  transform:
    translateY(-50%);

  transition:
    top 220ms ease,
    transform 220ms ease,
    color 220ms ease,
    font-size 220ms ease;
}


.booking-field--textarea label {
  top: 25px;

  transform: none;
}


/* floating label */

.booking-field__control:focus~label,
.booking-field__control:not(:placeholder-shown)~label {
  top: 10px;

  color:
    var(--color-brown);

  font-size: 7px;

  letter-spacing: .7px;

  text-transform: uppercase;

  transform: none;
}


/* =========================================================
   FIELD ICON
========================================================= */

.booking-field__icon {
  position: absolute;

  z-index: 3;

  right: 16px;
  top: 50%;

  color:
    var(--color-brown);

  font-size: 16px;

  pointer-events: none;

  transform:
    translateY(-50%);
}


.booking-field--textarea .booking-field__icon {
  top: 24px;

  transform: none;
}


/* =========================================================
   FIELD FOCUS
========================================================= */

.booking-field__control:focus {
  background:
    var(--color-white) !important;

  border-color:
    var(--color-brown) !important;

  box-shadow:
    0 0 0 3px rgba(139, 116, 96, .08) !important;
}


/* =========================================================
   SELECT FIELDS
========================================================= */

.booking-field--select .booking-field__control {
  padding-top:
    21px !important;

  cursor:
    pointer;
}


.booking-field--select label {
  top: 9px;

  color:
    var(--color-brown);

  font-size: 7px;

  letter-spacing: .7px;

  text-transform: uppercase;

  transform: none;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.booking-form__submit {
  position: relative;

  width: 100%;
  min-height: 70px;

  display: flex;

  align-items: center;

  gap: 12px;

  padding:
    8px 20px 8px 8px;

  overflow: hidden;

  color:
    var(--color-white);

  background:
    var(--color-charcoal);

  border: 0;

  font-size: 13px;

  font-weight: 800;

  letter-spacing: .3px;

  transition:
    background 300ms ease,
    transform 300ms ease,
    box-shadow 300ms ease;
}


.booking-form__submit::before {
  content: "";

  position: absolute;

  top: 0;
  left: -110%;

  width: 55%;
  height: 100%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .18),
      transparent);

  transform:
    skewX(-20deg);

  animation:
    contactSubmitShine 4s ease-in-out infinite;
}


.booking-form__submit:hover {
  background:
    var(--color-brown);

  transform:
    translateY(-4px);

  box-shadow:
    0 18px 40px rgba(41, 38, 36, .2);
}


.booking-form__submit-icon {
  position: relative;

  z-index: 2;

  width: 52px;
  height: 52px;

  flex: 0 0 52px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 19px;
}


.booking-form__submit>span:nth-child(2) {
  position: relative;

  z-index: 2;
}


.booking-form__submit-arrow {
  position: relative;

  z-index: 2;

  margin-left: auto;

  font-size: 18px;

  transition:
    transform 300ms ease;
}


.booking-form__submit:hover .booking-form__submit-arrow {
  transform:
    translateX(6px);
}


/* =========================================================
   FORM NOTE
========================================================= */

.booking-form__note {
  margin:
    15px 0 0;

  padding-left:
    13px;

  color:
    var(--color-text-light);

  border-left:
    2px solid var(--color-beige);

  font-size:
    9px;

  line-height:
    1.6;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes contactGridMove {

  from {
    background-position:
      0 0;
  }

  to {
    background-position:
      124px 62px;
  }

}


@keyframes contactGlowOne {

  0%,
  100% {
    opacity: .4;

    transform:
      scale(.9);
  }

  50% {
    opacity: 1;

    transform:
      scale(1.13);
  }

}


@keyframes contactGlowTwo {

  0%,
  100% {
    transform:
      translate(0, 0) scale(1);
  }

  50% {
    transform:
      translate(-20px, -15px) scale(1.08);
  }

}


@keyframes contactShapeRotate {

  from {
    transform:
      rotate(45deg);
  }

  to {
    transform:
      rotate(405deg);
  }

}


@keyframes contactShapeFloat {

  0%,
  100% {
    transform:
      rotate(45deg) translateY(0);
  }

  50% {
    transform:
      rotate(55deg) translateY(-20px);
  }

}


@keyframes contactEyebrowPulse {

  0%,
  100% {
    transform:
      scale(1) rotate(0);
  }

  50% {
    transform:
      scale(1.1) rotate(-5deg);
  }

}


@keyframes contactHeadingLine {

  from {
    width:
      45px;
  }

  to {
    width:
      95px;
  }

}


@keyframes contactMapPinPulse {

  0%,
  100% {
    transform:
      scale(1);
  }

  50% {
    transform:
      scale(1.12);
  }

}


@keyframes contactFormIconPulse {

  0%,
  100% {
    transform:
      scale(1) rotate(0);
  }

  50% {
    transform:
      scale(1.08) rotate(-5deg);
  }

}


@keyframes contactSubmitShine {

  0%,
  35% {
    left:
      -110%;
  }

  70%,
  100% {
    left:
      160%;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .contact-command-section {
    padding:
      90px 0;
  }


  .contact-command-title {
    font-size:
      clamp(56px, 9vw, 76px);
  }


  .contact-command-heading-copy {
    max-width:
      720px;

    margin-left:
      0;
  }


  .contact-command-info {
    padding:
      48px 40px;
  }


  .contact-command-form-side {
    padding:
      50px 40px;
  }


  .contact-command-map-frame {
    height:
      340px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .contact-command-section {
    padding:
      75px 0;
  }


  .contact-command-heading {
    margin-bottom:
      43px;
  }


  .contact-command-title {
    font-size:
      clamp(45px, 12vw, 60px);

    letter-spacing:
      -3px;
  }


  .contact-command-heading-copy p {
    font-size:
      14px;
  }


  .contact-command-info {
    padding:
      38px 24px;
  }


  .contact-command-form-side {
    padding:
      40px 24px;
  }


  .contact-command-info-head h3,
  .contact-command-form-head h3 {
    font-size:
      39px;
  }


  .contact-command-form-head {
    align-items:
      flex-start;
  }


  .contact-command-map-frame {
    height:
      300px;
  }


  .booking-field__control {
    min-height:
      61px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .contact-command-title {
    font-size:
      42px;
  }


  .contact-command-info {
    padding:
      34px 18px;
  }


  .contact-command-form-side {
    padding:
      34px 18px;
  }


  .contact-command-info-head h3,
  .contact-command-form-head h3 {
    font-size:
      34px;
  }


  .contact-command-form-icon {
    width:
      54px;

    height:
      54px;

    flex-basis:
      54px;
  }


  .contact-command-detail {
    grid-template-columns:
      48px 1fr;
  }


  .contact-command-detail>i {
    display:
      none;
  }


  .contact-command-detail-icon {
    width:
      48px;

    height:
      48px;
  }


  .contact-command-map-frame {
    height:
      260px;
  }


  .contact-command-big-number,
  .contact-command-form-number {
    font-size:
      115px;
  }


  .booking-form .row.g-4 {
    --bs-gutter-y:
      1rem;
  }


  .booking-form .row.g-3 {
    --bs-gutter-x:
      .5rem;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .contact-command-section *,
  .contact-command-section *::before,
  .contact-command-section *::after {
    animation:
      none !important;

    transition-duration:
      .01ms !important;
  }

}

/* =========================================================
   BIGGER CONTACT FORM TYPOGRAPHY
   Paste AFTER the existing form CSS
========================================================= */

/* Input / Select / Textarea Typed Text */
.booking-field__control {
  font-size: 16px !important;
  font-weight: 600;
}


/* Floating Field Labels */
.booking-field label {
  font-size: 14px;
  font-weight: 700;
}


/* Label when field is active / filled */
.booking-field__control:focus~label,
.booking-field__control:not(:placeholder-shown)~label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
}


/* Select Labels */
.booking-field--select label {
  font-size: 10px;
  font-weight: 800;
}


/* Select Option Text */
.booking-field select,
.booking-field select option {
  font-size: 16px;
}


/* Form Field Icons */
.booking-field__icon {
  font-size: 19px;
}


/* Textarea */
.booking-field--textarea .booking-field__control {
  font-size: 16px !important;
  line-height: 1.65;
}


/* Form Intro Paragraph */
.contact-command-form-intro {
  font-size: 16px;
  line-height: 1.8;
}


/* Small Heading Above Form */
.contact-command-form-head small {
  font-size: 10px;
}


/* Main Form Heading */
.contact-command-form-head h3 {
  font-size: clamp(42px, 4vw, 58px);
}


/* Submit Button */
.booking-form__submit {
  font-size: 16px;
  font-weight: 800;
}


/* Submit Button Icon */
.booking-form__submit-icon {
  font-size: 21px;
}


/* Form Note */
.booking-form__note {
  font-size: 11px;
  line-height: 1.7;
}


/* =========================================================
   GIVE BIGGER TEXT MORE SPACE
========================================================= */

.booking-field__control {
  min-height: 70px;

  padding:
    25px 52px 9px 18px !important;
}


.booking-field--textarea .booking-field__control {
  min-height: 155px;

  padding-top: 31px !important;
}


.booking-field label {
  left: 18px;
}


.booking-field__icon {
  right: 18px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .booking-field__control {
    font-size: 15px !important;
    min-height: 66px;
  }


  .booking-field label {
    font-size: 13px;
  }


  .booking-field__control:focus~label,
  .booking-field__control:not(:placeholder-shown)~label,
  .booking-field--select label {
    font-size: 9px;
  }


  .contact-command-form-intro {
    font-size: 15px;
  }


  .booking-form__submit {
    font-size: 15px;
  }


  .booking-form__note {
    font-size: 10px;
  }

}


/* =========================================================
   SMALLER CONTACT SECTION TITLE
========================================================= */

.contact-command-title {
  max-width: 780px;

  margin: 0;

  color: var(--color-charcoal);

  font-size: clamp(38px, 4vw, 56px);

  line-height: 1.03;

  font-weight: 800;

  letter-spacing: -2.8px;
}


.contact-command-title span {
  display: block;

  margin-top: 4px;

  color: var(--color-brown);
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

  .contact-command-title {
    font-size: 50px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .contact-command-title {
    max-width: 700px;

    font-size: clamp(39px, 6vw, 50px);

    line-height: 1.04;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .contact-command-title {
    font-size: clamp(33px, 9vw, 42px);

    line-height: 1.04;

    letter-spacing: -2px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .contact-command-title {
    font-size: 34px;

    line-height: 1.05;

    letter-spacing: -1.6px;
  }

}


/* 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 */
/* =========================================================
   SITE FOOTER
========================================================= */

.site-footer {
  position: relative;

  overflow: hidden;

  isolation: isolate;

  color: var(--color-white);

  background: var(--color-charcoal);
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.footer-grid {
  position: absolute;

  inset: 0;

  z-index: -20;

  opacity: .52;

  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(255, 255, 255, .025) 1px,
      transparent 1px);

  background-size:
    62px 62px;

  animation:
    footerGridMove 25s linear infinite;
}


/* =========================================================
   BACKGROUND GLOWS
========================================================= */

.footer-glow {
  position: absolute;

  z-index: -15;

  border-radius: 50%;

  pointer-events: none;
}


.footer-glow-one {
  width: 650px;
  height: 650px;

  left: -320px;
  top: 18%;

  background:
    radial-gradient(circle,
      rgba(198, 182, 167, .12),
      transparent 70%);

  animation:
    footerGlowOne 7s ease-in-out infinite;
}


.footer-glow-two {
  width: 550px;
  height: 550px;

  right: -260px;
  bottom: -180px;

  background:
    radial-gradient(circle,
      rgba(139, 116, 96, .20),
      transparent 70%);

  animation:
    footerGlowTwo 8s ease-in-out infinite;
}


/* =========================================================
   BACKGROUND SHAPES
========================================================= */

.footer-shape {
  position: absolute;

  z-index: -12;

  pointer-events: none;
}


.footer-shape-one {
  width: 260px;
  height: 260px;

  left: -150px;
  top: 160px;

  border:
    1px solid rgba(198, 182, 167, .10);

  transform:
    rotate(45deg);

  animation:
    footerShapeRotate 28s linear infinite;
}


.footer-shape-two {
  width: 125px;
  height: 125px;

  right: 6%;
  top: 360px;

  background:
    rgba(198, 182, 167, .04);

  transform:
    rotate(45deg);

  animation:
    footerShapeFloat 6s ease-in-out infinite;
}


/* =========================================================
   SERVICE AREA
========================================================= */

.footer-service-area {
  position: relative;

  z-index: 5;

  padding:
    40px 0 32px;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);
}


/* =========================================================
   AREA TITLE
========================================================= */

.footer-area-title {
  display: flex;

  align-items: center;

  gap: 14px;
}


.footer-area-icon {
  width: 60px;
  height: 60px;

  flex: 0 0 60px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  font-size: 22px;

  animation:
    footerPinPulse 2.6s ease-in-out infinite;
}


.footer-area-title>div {
  display: flex;

  flex-direction: column;
}


.footer-area-title small {
  margin-bottom: 4px;

  color:
    var(--color-brown-dark);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.2px;

  text-transform: uppercase;
}


.footer-area-title strong {
  color:
    var(--color-charcoal);

  font-size: 25px;

  line-height: 1.1;

  font-weight: 800;

  letter-spacing: -1px;
}


/* =========================================================
   SERVICE AREA TEXT
========================================================= */

.footer-area-text {
  margin: 0;

  color:
    rgba(41, 38, 36, .73);

  font-size: 16px;

  line-height: 1.8;
}


.footer-area-text strong {
  color:
    var(--color-charcoal);

  font-weight: 800;
}


/* =========================================================
   LOCATION CHIPS
========================================================= */

.footer-location-chips {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 23px;

  padding-top: 20px;

  border-top:
    1px solid rgba(41, 38, 36, .12);
}


.footer-location-chips span {
  min-height: 40px;

  display: inline-flex;

  align-items: center;

  gap: 7px;

  padding:
    0 13px;

  color:
    var(--color-charcoal);

  background:
    rgba(255, 255, 255, .37);

  border:
    1px solid rgba(41, 38, 36, .08);

  font-size: 10px;

  font-weight: 800;

  transition:
    color 300ms ease,
    background 300ms ease,
    transform 300ms ease;
}


.footer-location-chips span:hover {
  color:
    var(--color-white);

  background:
    var(--color-charcoal);

  transform:
    translateY(-4px);
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.footer-main {
  position: relative;

  z-index: 5;

  padding:
    85px 0 42px;
}


/* =========================================================
   LOGO
========================================================= */

.footer-logo {
  display: inline-flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 27px;

  color:
    var(--color-white);

  text-decoration: none;
}


.footer-logo:hover {
  color:
    var(--color-white);
}


.footer-logo-icon {
  width: 62px;
  height: 62px;

  flex: 0 0 62px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 25px;

  transform:
    rotate(0deg);

  transition:
    background 300ms ease,
    transform 400ms ease;
}


.footer-logo-icon i {
  transform:
    rotate(0deg);

  transition:
    transform 400ms ease;
}


.footer-logo:hover .footer-logo-icon {
  background:
    var(--color-brown);

  transform:
    rotate(360deg);
}


.footer-logo:hover .footer-logo-icon i {
  transform:
    rotate(-135deg);
}


.footer-logo-text {
  display: flex;

  flex-direction: column;
}


.footer-logo-text strong {
  color:
    var(--color-white);

  font-size: 27px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: -1.1px;
}


.footer-logo-text small {
  margin-top: 5px;

  color:
    var(--color-beige);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 2px;

  text-transform: uppercase;
}


/* =========================================================
   BRAND TEXT
========================================================= */

.footer-brand-text {
  max-width: 470px;

  margin:
    0 0 22px;

  color:
    rgba(255, 255, 255, .56);

  font-size: 14px;

  line-height: 1.8;
}


/* =========================================================
   BRAND TRUST
========================================================= */

.footer-brand-trust {
  display: flex;

  flex-wrap: wrap;

  gap:
    8px 15px;

  max-width: 480px;

  margin-bottom: 30px;
}


.footer-brand-trust span {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  color:
    rgba(255, 255, 255, .73);

  font-size: 10px;

  font-weight: 700;
}


.footer-brand-trust i {
  color:
    var(--color-beige);
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

.footer-social-label {
  display: block;

  margin-bottom: 13px;

  color:
    var(--color-beige);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}


.footer-social-links {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;
}


.footer-social-links a {
  position: relative;

  width: 50px;
  height: 50px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  overflow: visible;

  color:
    rgba(255, 255, 255, .78);

  background:
    rgba(255, 255, 255, .055);

  border:
    1px solid rgba(255, 255, 255, .09);

  font-size: 18px;

  text-decoration: none;

  transition:
    color 300ms ease,
    background 300ms ease,
    border-color 300ms ease,
    transform 350ms ease;
}


.footer-social-links a>span {
  position: absolute;

  left: 50%;
  bottom: -28px;

  z-index: 5;

  padding:
    4px 7px;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 7px;

  font-weight: 800;

  white-space: nowrap;

  opacity: 0;

  pointer-events: none;

  transform:
    translateX(-50%);

  transition:
    opacity 300ms ease,
    bottom 300ms ease;
}


.footer-social-links a:hover {
  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  border-color:
    var(--color-beige);

  transform:
    translateY(-6px) rotate(-4deg);
}


.footer-social-links a:hover>span {
  bottom: -24px;

  opacity: 1;
}


/* =========================================================
   COLUMN HEADING
========================================================= */

.footer-column-heading {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 26px;
}


.footer-column-heading>span {
  color:
    var(--color-brown);

  font-size: 10px;

  font-weight: 800;
}


.footer-column-heading h3 {
  position: relative;

  margin: 0;

  color:
    var(--color-white);

  font-size: 18px;

  font-weight: 800;
}


.footer-column-heading h3::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -9px;

  width: 32px;
  height: 2px;

  background:
    var(--color-beige);

  transition:
    width 300ms ease;
}


.footer-column:hover .footer-column-heading h3::after {
  width: 60px;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {
  display: grid;

  gap: 3px;

  margin: 0;

  padding: 0;

  list-style: none;
}


.footer-links a {
  display: inline-flex;

  align-items: center;

  gap: 4px;

  padding:
    7px 0;

  color:
    rgba(255, 255, 255, .56);

  font-size: 13px;

  font-weight: 600;

  text-decoration: none;

  transition:
    color 300ms ease,
    transform 300ms ease;
}


.footer-links a i {
  color:
    var(--color-beige);

  font-size: 16px;

  transition:
    transform 300ms ease;
}


.footer-links a:hover {
  color:
    var(--color-white);

  transform:
    translateX(5px);
}


.footer-links a:hover i {
  transform:
    translateX(3px);
}


/* =========================================================
   CONTACT ITEMS
========================================================= */

.footer-contact-column {
  min-width: 0;
}


.footer-contact-item {
  display: grid;

  grid-template-columns:
    44px 1fr;

  align-items: center;

  gap: 11px;

  padding:
    11px 0;

  color:
    inherit;

  text-decoration:
    none;

  border-bottom:
    1px solid rgba(255, 255, 255, .07);
}


.footer-contact-item>span {
  width: 44px;
  height: 44px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 15px;

  transition:
    color 300ms ease,
    background 300ms ease,
    transform 300ms ease;
}


.footer-contact-item:hover>span {
  color:
    var(--color-white);

  background:
    var(--color-brown);

  transform:
    rotate(-7deg) scale(1.05);
}


.footer-contact-item>div {
  min-width: 0;

  display: flex;

  flex-direction: column;
}


.footer-contact-item small {
  margin-bottom: 3px;

  color:
    var(--color-beige);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: .9px;

  text-transform: uppercase;
}


.footer-contact-item strong {
  color:
    rgba(255, 255, 255, .74);

  font-size: 11px;

  line-height: 1.5;

  font-weight: 700;

  overflow-wrap: anywhere;

  transition:
    color 300ms ease;
}


a.footer-contact-item:hover strong {
  color:
    var(--color-white);
}


/* =========================================================
   CTA
========================================================= */

.footer-cta {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;

  margin-top: 65px;

  padding:
    24px 25px;

  background:
    rgba(255, 255, 255, .055);

  border:
    1px solid rgba(255, 255, 255, .09);
}


/* =========================================================
   CTA LEFT
========================================================= */

.footer-cta-left {
  display: flex;

  align-items: center;

  gap: 13px;
}


.footer-cta-icon {
  width: 55px;
  height: 55px;

  flex: 0 0 55px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 20px;

  animation:
    footerToolsPulse 2.7s ease-in-out infinite;
}


.footer-cta-left>div {
  display: flex;

  flex-direction: column;
}


.footer-cta-left small {
  margin-bottom: 3px;

  color:
    var(--color-beige);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.footer-cta-left strong {
  color:
    var(--color-white);

  font-size: 16px;

  font-weight: 800;
}


/* =========================================================
   CTA POINTS
========================================================= */

.footer-cta-points {
  display: flex;

  flex-wrap: wrap;

  gap: 15px;
}


.footer-cta-points span {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  color:
    rgba(255, 255, 255, .67);

  font-size: 10px;

  font-weight: 700;
}


.footer-cta-points i {
  color:
    var(--color-beige);
}


/* =========================================================
   CTA ACTIONS
========================================================= */

.footer-cta-actions {
  display: flex;

  align-items: stretch;

  gap: 8px;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.footer-call-btn {
  position: relative;

  min-width: 235px;
  min-height: 62px;

  display: flex;

  align-items: center;

  gap: 10px;

  padding:
    8px 14px 8px 8px;

  overflow: hidden;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  text-decoration: none;

  transition:
    color 300ms ease,
    background 300ms ease,
    transform 300ms ease,
    box-shadow 300ms ease;
}


.footer-call-btn::before {
  content: "";

  position: absolute;

  left: -120%;
  top: 0;

  width: 60%;
  height: 100%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .55),
      transparent);

  transform:
    skewX(-20deg);

  animation:
    footerCallShine 4s ease-in-out infinite;
}


.footer-call-btn:hover {
  color:
    var(--color-white);

  background:
    var(--color-brown);

  transform:
    translateY(-5px);

  box-shadow:
    0 18px 38px rgba(0, 0, 0, .18);
}


.footer-call-btn>span {
  position: relative;

  z-index: 2;

  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  font-size: 16px;

  animation:
    footerPhoneRing 3s ease-in-out infinite;
}


.footer-call-btn>div {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;
}


.footer-call-btn small {
  margin-bottom: 2px;

  font-size: 7px;

  font-weight: 800;

  text-transform: uppercase;

  opacity: .65;
}


.footer-call-btn strong {
  font-size: 15px;

  font-weight: 800;
}


.footer-call-arrow {
  position: relative;

  z-index: 2;

  margin-left: auto;

  transition:
    transform 300ms ease;
}


.footer-call-btn:hover .footer-call-arrow {
  transform:
    translate(4px, -4px);
}


/* =========================================================
   ESTIMATE BUTTON
========================================================= */

.footer-estimate-btn {
  min-height: 62px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  padding:
    0 18px;

  color:
    var(--color-white);

  border:
    1px solid rgba(255, 255, 255, .18);

  font-size: 11px;

  font-weight: 800;

  text-decoration: none;

  transition:
    color 300ms ease,
    background 300ms ease,
    border-color 300ms ease,
    transform 300ms ease;
}


.footer-estimate-btn:hover {
  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  border-color:
    var(--color-beige);

  transform:
    translateY(-5px);
}


/* =========================================================
   LEGAL BAR
========================================================= */

.footer-legal {
  position: relative;

  z-index: 5;

  border-top:
    1px solid rgba(255, 255, 255, .08);

  background:
    rgba(0, 0, 0, .08);
}


.footer-legal-inner {
  min-height: 74px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;
}


/* =========================================================
   LEGAL LINKS
========================================================= */

.footer-legal-links {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 13px;
}


.footer-legal-links a {
  color:
    rgba(255, 255, 255, .48);

  font-size: 10px;

  font-weight: 700;

  text-decoration: none;

  transition:
    color 300ms ease;
}


.footer-legal-links a:hover {
  color:
    var(--color-beige);
}


.footer-legal-links>span {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background:
    var(--color-brown);
}


/* =========================================================
   BACK TO TOP
========================================================= */

.footer-back-top {
  width: 44px;
  height: 44px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 17px;

  text-decoration: none;

  transition:
    color 300ms ease,
    background 300ms ease,
    transform 300ms ease;
}


.footer-back-top:hover {
  color:
    var(--color-white);

  background:
    var(--color-brown);

  transform:
    translateY(-5px);
}


/* =========================================================
   COPYRIGHT — VERY BOTTOM
========================================================= */

.footer-copyright {
  position: relative;

  z-index: 6;

  background:
    #1f1d1b;

  border-top:
    1px solid rgba(255, 255, 255, .06);
}


.footer-copyright-inner {
  min-height: 64px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;
}


.footer-copyright p {
  margin: 0;

  color:
    rgba(255, 255, 255, .48);

  font-size: 11px;

  line-height: 1.5;
}


.footer-copyright p strong {
  color:
    rgba(255, 255, 255, .82);

  font-weight: 800;
}


.footer-copyright-mark {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  color:
    rgba(255, 255, 255, .42);

  font-size: 9px;

  font-weight: 700;
}


.footer-copyright-mark i {
  color:
    var(--color-beige);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes footerGridMove {

  from {
    background-position: 0 0;
  }

  to {
    background-position: 124px 62px;
  }

}


@keyframes footerGlowOne {

  0%,
  100% {
    opacity: .4;

    transform:
      scale(.9);
  }

  50% {
    opacity: 1;

    transform:
      scale(1.13);
  }

}


@keyframes footerGlowTwo {

  0%,
  100% {
    transform:
      translate(0, 0) scale(1);
  }

  50% {
    transform:
      translate(-20px, -15px) scale(1.08);
  }

}


@keyframes footerShapeRotate {

  from {
    transform:
      rotate(45deg);
  }

  to {
    transform:
      rotate(405deg);
  }

}


@keyframes footerShapeFloat {

  0%,
  100% {
    transform:
      rotate(45deg) translateY(0);
  }

  50% {
    transform:
      rotate(58deg) translateY(-20px);
  }

}


@keyframes footerPinPulse {

  0%,
  100% {
    transform:
      scale(1);
  }

  50% {
    transform:
      scale(1.1) translateY(-3px);
  }

}


@keyframes footerToolsPulse {

  0%,
  100% {
    transform:
      scale(1) rotate(0);
  }

  50% {
    transform:
      scale(1.09) rotate(-5deg);
  }

}


@keyframes footerCallShine {

  0%,
  35% {
    left:
      -120%;
  }

  70%,
  100% {
    left:
      160%;
  }

}


@keyframes footerPhoneRing {

  0%,
  82%,
  100% {
    transform:
      rotate(0);
  }

  87% {
    transform:
      rotate(-10deg);
  }

  91% {
    transform:
      rotate(10deg);
  }

  95% {
    transform:
      rotate(-5deg);
  }

}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

  .footer-cta {
    flex-wrap: wrap;
  }


  .footer-cta-points {
    order: 3;

    width: 100%;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .footer-main {
    padding-top:
      70px;
  }


  .footer-cta {
    align-items:
      flex-start;

    flex-direction:
      column;
  }


  .footer-cta-points {
    order:
      initial;

    width:
      auto;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .footer-service-area {
    padding:
      31px 0 27px;
  }


  .footer-area-text {
    font-size:
      14px;
  }


  .footer-main {
    padding:
      60px 0 30px;
  }


  .footer-logo-text strong {
    font-size:
      23px;
  }


  .footer-location-chips span {
    flex:
      1 1 calc(50% - 8px);

    justify-content:
      center;
  }


  .footer-cta {
    margin-top:
      45px;

    padding:
      20px;
  }


  .footer-cta-actions {
    width:
      100%;

    display:
      grid;

    grid-template-columns:
      1fr;
  }


  .footer-call-btn,
  .footer-estimate-btn {
    width:
      100%;

    min-width:
      0;
  }


  .footer-legal-inner {
    min-height:
      100px;

    flex-direction:
      column;

    justify-content:
      center;
  }


  .footer-legal-links {
    justify-content:
      center;
  }


  .footer-copyright-inner {
    min-height:
      90px;

    flex-direction:
      column;

    justify-content:
      center;

    text-align:
      center;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .footer-area-title {
    align-items:
      flex-start;
  }


  .footer-area-title strong {
    font-size:
      21px;
  }


  .footer-location-chips {
    display:
      grid;

    grid-template-columns:
      1fr;
  }


  .footer-location-chips span {
    justify-content:
      flex-start;
  }


  .footer-social-links a {
    width:
      47px;

    height:
      47px;
  }


  .footer-cta-left {
    align-items:
      flex-start;
  }


  .footer-copyright p {
    font-size:
      10px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .site-footer *,
  .site-footer *::before,
  .site-footer *::after {
    animation:
      none !important;

    transition-duration:
      .01ms !important;
  }

}


/* 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 */

/* =========================================================
   COMPACT FULL WIDTH OPENER CTA
========================================================= */

.compact-opener-cta {
  position: relative;

  width: 100%;

  overflow: hidden;
  isolation: isolate;

  color: var(--color-white);

  background: var(--color-charcoal);
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.compact-opener-grid {
  position: absolute;

  inset: 0;

  z-index: -10;

  opacity: 0.75;

  background-image:
    linear-gradient(rgba(198, 182, 167, 0.055) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(198, 182, 167, 0.055) 1px,
      transparent 1px);

  background-size: 54px 54px;

  animation:
    compactGridMove 22s linear infinite;
}


/* =========================================================
   BACKGROUND SHAPES
========================================================= */

.compact-opener-shape {
  position: absolute;

  z-index: -6;

  pointer-events: none;
}


.compact-opener-shape-one {
  width: 320px;
  height: 320px;

  left: -175px;
  top: -185px;

  border:
    2px solid rgba(198, 182, 167, 0.2);

  transform: rotate(45deg);

  animation:
    compactShapeRotate 24s linear infinite;
}


.compact-opener-shape-two {
  width: 180px;
  height: 180px;

  right: 7%;
  bottom: -125px;

  background:
    rgba(139, 116, 96, 0.16);

  border:
    1px solid rgba(198, 182, 167, 0.2);

  transform: rotate(45deg);

  animation:
    compactShapeFloat 6s ease-in-out infinite;
}


/* =========================================================
   MAIN RECTANGLE
========================================================= */

.compact-opener-inner {
  position: relative;

  z-index: 3;

  min-height: 330px;

  display: grid;

  grid-template-columns:
    minmax(360px, 1.05fr) minmax(500px, 1.35fr) minmax(310px, 0.8fr);

  align-items: stretch;

  width: 100%;
}


/* =========================================================
   LEFT INTRO
========================================================= */

.compact-opener-intro {
  position: relative;

  display: flex;

  flex-direction: column;
  justify-content: center;

  padding:
    48px 42px 48px max(42px, calc((100vw - 1320px) / 2));

  background:
    rgba(255, 255, 255, 0.018);

  border-right:
    1px solid rgba(255, 255, 255, 0.08);
}


/* =========================================================
   EYEBROW
========================================================= */

.compact-opener-eyebrow {
  width: fit-content;

  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 17px;

  padding:
    6px 13px 6px 6px;

  color: var(--color-beige-light);

  border:
    1px solid rgba(255, 255, 255, 0.1);

  background:
    rgba(255, 255, 255, 0.045);
}


.compact-opener-eyebrow>span {
  width: 31px;
  height: 31px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: var(--color-charcoal);

  background: var(--color-beige);

  font-size: 13px;

  animation:
    compactIconPulse 2.5s ease-in-out infinite;
}


.compact-opener-eyebrow small {
  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.3px;

  text-transform: uppercase;
}


/* =========================================================
   TITLE
========================================================= */

.compact-opener-title {
  max-width: 470px;

  margin: 0 0 15px;

  color: var(--color-white);

  font-size:
    clamp(32px, 3vw, 45px);

  line-height: 1.03;

  font-weight: 800;

  letter-spacing: -2.2px;
}


.compact-opener-title span {
  display: block;

  color: var(--color-beige);
}


/* =========================================================
   INTRO DESCRIPTION
========================================================= */

.compact-opener-intro>p {
  max-width: 500px;

  margin: 0;

  color:
    rgba(255, 255, 255, 0.64);

  font-size: 14px;

  line-height: 1.7;

  font-weight: 500;
}


/* =========================================================
   CENTER SERVICES
========================================================= */

.compact-opener-services {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  background:
    var(--color-charcoal-soft);
}


/* =========================================================
   SERVICE BOX
========================================================= */

.compact-opener-service {
  position: relative;

  min-height: 165px;

  display: grid;

  grid-template-columns:
    30px 52px 1fr;

  align-items: center;

  gap: 15px;

  padding:
    26px 28px;

  overflow: hidden;

  border-right:
    1px solid rgba(255, 255, 255, 0.07);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);

  transition:
    background 300ms ease,
    padding-left 300ms ease;
}


.compact-opener-service:nth-child(2n) {
  border-right: 0;
}


.compact-opener-service:nth-child(n+3) {
  border-bottom: 0;
}


/* Animated hover fill */
.compact-opener-service::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    var(--color-brown);

  transform:
    translateY(101%);

  transition:
    transform 400ms cubic-bezier(.2, .8, .2, 1);
}


.compact-opener-service:hover::before {
  transform:
    translateY(0);
}


.compact-opener-service>* {
  position: relative;

  z-index: 2;
}


/* =========================================================
   SERVICE NUMBER - BIGGER
========================================================= */

.compact-opener-service-number {
  color:
    rgba(255, 255, 255, 0.3);

  font-size: 12px;

  font-weight: 800;

  line-height: 1;
}


/* =========================================================
   SERVICE ICON - BIGGER
========================================================= */

.compact-opener-service>i {
  width: 50px;
  height: 50px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: var(--color-charcoal);

  background: var(--color-beige);

  font-size: 19px;

  transition:
    color 300ms ease,
    background 300ms ease,
    transform 300ms ease;
}


.compact-opener-service:hover>i {
  color: var(--color-charcoal);

  background: var(--color-white);

  transform:
    rotate(-7deg) scale(1.08);
}


/* =========================================================
   SERVICE COPY - BIGGER
========================================================= */

.compact-opener-service div {
  display: flex;

  flex-direction: column;

  min-width: 0;
}


.compact-opener-service strong {
  color: var(--color-white);

  font-size: 16px;

  line-height: 1.25;

  font-weight: 800;

  letter-spacing: -0.25px;
}


.compact-opener-service small {
  margin-top: 5px;

  color:
    rgba(255, 255, 255, 0.62);

  font-size: 12px;

  line-height: 1.45;

  font-weight: 500;
}


.compact-opener-service:hover small {
  color:
    rgba(255, 255, 255, 0.88);
}


/* =========================================================
   RIGHT CTA
========================================================= */

.compact-opener-action {
  position: relative;

  display: flex;

  flex-direction: column;
  justify-content: center;

  padding:
    36px max(36px, calc((100vw - 1320px) / 2)) 36px 34px;

  overflow: hidden;

  color: var(--color-charcoal);

  background:
    var(--color-beige);
}


.compact-opener-action::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  right: -100px;
  top: -100px;

  border:
    1px solid rgba(41, 38, 36, 0.15);

  transform: rotate(45deg);

  animation:
    compactActionRotate 20s linear infinite;
}


/* =========================================================
   STATUS
========================================================= */

.compact-opener-status {
  position: relative;

  z-index: 2;

  width: fit-content;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 14px;

  color: var(--color-brown-dark);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.compact-opener-status>span {
  position: relative;

  width: 9px;
  height: 9px;

  border-radius: 50%;

  background:
    var(--color-brown);
}


.compact-opener-status>span::before {
  content: "";

  position: absolute;

  inset: -5px;

  border:
    1px solid rgba(89, 73, 55, 0.4);

  border-radius: 50%;

  animation:
    compactStatusPulse 1.8s ease-out infinite;
}


/* =========================================================
   ACTION COPY
========================================================= */

.compact-opener-action-copy {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  margin-bottom: 18px;
}


.compact-opener-action-copy small {
  margin-bottom: 4px;

  color: var(--color-brown);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.compact-opener-action-copy strong {
  color: var(--color-charcoal);

  font-size: 25px;

  line-height: 1.1;

  font-weight: 800;

  letter-spacing: -0.8px;
}


/* =========================================================
   PHONE CTA
========================================================= */

.compact-opener-call {
  position: relative;

  z-index: 2;

  min-height: 70px;

  display: flex;

  align-items: center;

  gap: 11px;

  padding:
    8px 14px 8px 8px;

  overflow: hidden;

  color: var(--color-white);

  background:
    var(--color-charcoal);

  text-decoration: none;

  box-shadow:
    0 14px 30px rgba(41, 38, 36, 0.18);

  transition:
    transform 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
}


.compact-opener-call::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 65%;
  height: 100%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);

  transform: skewX(-20deg);

  animation:
    compactCallShine 4s ease-in-out infinite;
}


.compact-opener-call:hover {
  color: var(--color-white);

  background:
    var(--color-brown);

  transform:
    translateY(-4px);

  box-shadow:
    0 18px 38px rgba(41, 38, 36, 0.24);
}


/* =========================================================
   PHONE ICON
========================================================= */

.compact-opener-call-icon {
  position: relative;

  z-index: 2;

  width: 50px;
  height: 50px;

  flex: 0 0 50px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: var(--color-charcoal);

  background: var(--color-beige);

  font-size: 18px;

  animation:
    compactPhoneRing 3s ease-in-out infinite;
}


/* =========================================================
   PHONE COPY
========================================================= */

.compact-opener-call-copy {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  flex: 1;
}


.compact-opener-call-copy small {
  margin-bottom: 3px;

  color:
    rgba(255, 255, 255, 0.65);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.7px;

  text-transform: uppercase;
}


.compact-opener-call-copy strong {
  color: var(--color-white);

  font-size: 19px;

  line-height: 1.1;

  font-weight: 800;
}


.compact-opener-call>i {
  position: relative;

  z-index: 2;

  margin-left: auto;

  font-size: 16px;

  transition:
    transform 300ms ease;
}


.compact-opener-call:hover>i {
  transform:
    translate(4px, -4px);
}


/* =========================================================
   FREE ESTIMATE
========================================================= */

.compact-opener-estimate {
  position: relative;

  z-index: 2;

  min-height: 52px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 10px;

  margin-top: 8px;

  padding:
    0 16px;

  color: var(--color-charcoal);

  border:
    1px solid rgba(41, 38, 36, 0.16);

  background:
    rgba(255, 255, 255, 0.42);

  text-decoration: none;

  font-size: 13px;

  font-weight: 800;

  transition:
    color 300ms ease,
    background 300ms ease,
    border-color 300ms ease,
    transform 300ms ease;
}


.compact-opener-estimate:hover {
  color: var(--color-white);

  background:
    var(--color-brown-dark);

  border-color:
    var(--color-brown-dark);

  transform:
    translateY(-3px);
}


.compact-opener-estimate i {
  font-size: 15px;

  transition:
    transform 300ms ease;
}


.compact-opener-estimate:hover i {
  transform:
    translateX(4px);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes compactGridMove {

  from {
    background-position:
      0 0;
  }

  to {
    background-position:
      108px 54px;
  }

}


@keyframes compactShapeRotate {

  from {
    transform:
      rotate(45deg);
  }

  to {
    transform:
      rotate(405deg);
  }

}


@keyframes compactShapeFloat {

  0%,
  100% {
    transform:
      rotate(45deg) translateY(0);
  }

  50% {
    transform:
      rotate(58deg) translateY(-18px);
  }

}


@keyframes compactIconPulse {

  0%,
  100% {
    transform:
      scale(1);
  }

  50% {
    transform:
      scale(1.1) rotate(-4deg);
  }

}


@keyframes compactActionRotate {

  from {
    transform:
      rotate(45deg);
  }

  to {
    transform:
      rotate(405deg);
  }

}


@keyframes compactStatusPulse {

  from {
    opacity: 1;

    transform:
      scale(0.7);
  }

  to {
    opacity: 0;

    transform:
      scale(1.7);
  }

}


@keyframes compactCallShine {

  0%,
  35% {
    left: -120%;
  }

  70%,
  100% {
    left: 160%;
  }

}


@keyframes compactPhoneRing {

  0%,
  82%,
  100% {
    transform:
      rotate(0);
  }

  87% {
    transform:
      rotate(-9deg);
  }

  91% {
    transform:
      rotate(9deg);
  }

  95% {
    transform:
      rotate(-4deg);
  }

}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

  .compact-opener-inner {
    grid-template-columns:
      1fr 1.15fr 0.85fr;
  }


  .compact-opener-intro {
    padding:
      42px 30px;
  }


  .compact-opener-action {
    padding:
      30px;
  }


  .compact-opener-title {
    font-size: 38px;
  }


  .compact-opener-service {
    grid-template-columns:
      28px 50px 1fr;

    gap: 13px;

    padding:
      24px 20px;
  }


  .compact-opener-service strong {
    font-size: 15px;
  }


  .compact-opener-service small {
    font-size: 11px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .compact-opener-inner {
    grid-template-columns:
      1fr 1fr;
  }


  .compact-opener-intro {
    grid-column:
      1 / -1;

    padding:
      45px;
  }


  .compact-opener-services {
    grid-column:
      1;
  }


  .compact-opener-action {
    grid-column:
      2;

    padding:
      35px;
  }


  .compact-opener-title {
    max-width: 650px;

    font-size: 42px;
  }


  .compact-opener-service {
    grid-template-columns:
      26px 48px 1fr;

    gap: 12px;

    padding:
      23px 20px;
  }


  .compact-opener-service>i {
    width: 46px;
    height: 46px;

    font-size: 18px;
  }


  .compact-opener-service strong {
    font-size: 15px;
  }


  .compact-opener-service small {
    font-size: 11px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .compact-opener-inner {
    display: block;
  }


  .compact-opener-intro {
    padding:
      38px 24px;
  }


  .compact-opener-title {
    font-size:
      clamp(32px, 9vw, 40px);
  }


  .compact-opener-intro>p {
    font-size: 13px;
  }


  .compact-opener-services {
    grid-template-columns:
      1fr 1fr;
  }


  .compact-opener-service {
    min-height: 145px;

    grid-template-columns:
      46px 1fr;

    gap: 14px;

    padding:
      22px;
  }


  .compact-opener-service-number {
    display: none;
  }


  .compact-opener-service>i {
    width: 46px;
    height: 46px;

    font-size: 18px;
  }


  .compact-opener-service strong {
    font-size: 15px;
  }


  .compact-opener-service small {
    font-size: 11px;

    line-height: 1.45;
  }


  .compact-opener-action {
    padding:
      32px 24px;
  }


  .compact-opener-action-copy strong {
    font-size: 24px;
  }


  .compact-opener-call-copy strong {
    font-size: 18px;
  }


  .compact-opener-estimate {
    font-size: 13px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .compact-opener-title {
    font-size: 34px;
  }


  .compact-opener-eyebrow small {
    font-size: 8px;
  }


  .compact-opener-services {
    grid-template-columns:
      1fr;
  }


  .compact-opener-service {
    min-height: 105px;

    grid-template-columns:
      48px 1fr;

    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.07);
  }


  .compact-opener-service:nth-child(n+3) {
    border-bottom:
      1px solid rgba(255, 255, 255, 0.07);
  }


  .compact-opener-service:last-child {
    border-bottom: 0;
  }


  .compact-opener-service strong {
    font-size: 16px;
  }


  .compact-opener-service small {
    font-size: 11px;
  }


  .compact-opener-action {
    padding:
      30px 20px;
  }


  .compact-opener-action-copy strong {
    font-size: 23px;
  }


  .compact-opener-call {
    min-height: 68px;
  }


  .compact-opener-call-icon {
    width: 48px;
    height: 48px;

    flex-basis: 48px;
  }


  .compact-opener-call-copy strong {
    font-size: 17px;
  }


  .compact-opener-estimate {
    min-height: 50px;

    font-size: 12px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .compact-opener-cta *,
  .compact-opener-cta *::before,
  .compact-opener-cta *::after {
    animation: none !important;

    transition-duration:
      0.01ms !important;
  }

}

/* 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 */
/* =========================================================
   FULL WIDTH STATISTICS
========================================================= */

.stats-impact-section {
  position: relative;

  width: 100%;

  overflow: hidden;

  isolation: isolate;

  color: var(--color-white);

  background: var(--color-charcoal);
}


/* =========================================================
   GRID BACKGROUND
========================================================= */

.stats-impact-grid {
  position: absolute;

  inset: 0;

  z-index: -20;

  opacity: .52;

  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(255, 255, 255, .025) 1px,
      transparent 1px);

  background-size:
    58px 58px;

  animation:
    statsGridMove 24s linear infinite;
}


/* =========================================================
   GLOWS
========================================================= */

.stats-impact-glow {
  position: absolute;

  z-index: -15;

  border-radius: 50%;

  pointer-events: none;
}


.stats-impact-glow-left {
  width: 550px;
  height: 550px;

  left: -290px;
  top: -160px;

  background:
    radial-gradient(circle,
      rgba(198, 182, 167, .14),
      transparent 70%);

  animation:
    statsGlowLeft 7s ease-in-out infinite;
}


.stats-impact-glow-right {
  width: 500px;
  height: 500px;

  right: -240px;
  bottom: -180px;

  background:
    radial-gradient(circle,
      rgba(139, 116, 96, .22),
      transparent 70%);

  animation:
    statsGlowRight 8s ease-in-out infinite;
}


/* =========================================================
   DECORATIVE SHAPES
========================================================= */

.stats-impact-shape {
  position: absolute;

  z-index: -12;

  pointer-events: none;
}


.stats-impact-shape-one {
  width: 220px;
  height: 220px;

  left: -120px;
  top: 80px;

  border:
    1px solid rgba(198, 182, 167, .11);

  transform:
    rotate(45deg);

  animation:
    statsShapeRotate 28s linear infinite;
}


.stats-impact-shape-two {
  width: 95px;
  height: 95px;

  right: 8%;
  top: 55px;

  background:
    rgba(198, 182, 167, .04);

  transform:
    rotate(45deg);

  animation:
    statsShapeFloat 6s ease-in-out infinite;
}


/* =========================================================
   HEADING
========================================================= */

.stats-impact-heading {
  position: relative;

  z-index: 5;

  padding:
    70px 0 42px;
}


/* =========================================================
   EYEBROW
========================================================= */

.stats-impact-eyebrow {
  width: fit-content;

  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 17px;

  padding:
    6px 13px 6px 6px;

  color:
    var(--color-beige-light);

  background:
    rgba(255, 255, 255, .05);

  border:
    1px solid rgba(255, 255, 255, .08);
}


.stats-impact-eyebrow>span {
  width: 35px;
  height: 35px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 14px;

  animation:
    statsEyebrowPulse 2.6s ease-in-out infinite;
}


.stats-impact-eyebrow small {
  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.3px;

  text-transform: uppercase;
}


/* =========================================================
   TITLE
========================================================= */

.stats-impact-title {
  max-width: 680px;

  margin: 0;

  color:
    var(--color-white);

  font-size:
    clamp(36px, 3.6vw, 52px);

  line-height: 1;

  font-weight: 800;

  letter-spacing: -2.5px;
}


.stats-impact-title span {
  display: block;

  color:
    var(--color-beige);
}


/* =========================================================
   HEADING COPY
========================================================= */

.stats-impact-heading-copy {
  max-width: 390px;

  margin-left: auto;
}


.stats-impact-copy-line {
  display: block;

  width: 58px;
  height: 2px;

  margin-bottom: 13px;

  background:
    var(--color-beige);

  animation:
    statsHeadingLine 2s ease-in-out infinite alternate;
}


.stats-impact-heading-copy p {
  margin: 0;

  color:
    rgba(255, 255, 255, .55);

  font-size: 13px;

  line-height: 1.65;
}


/* =========================================================
   STAT BAND
========================================================= */

.stats-impact-band {
  position: relative;

  z-index: 5;

  width: 100%;

  background:
    rgba(255, 255, 255, .025);

  border-top:
    1px solid rgba(255, 255, 255, .08);

  border-bottom:
    1px solid rgba(255, 255, 255, .08);
}


/* =========================================================
   GRID
========================================================= */

.stats-impact-grid-items {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);
}


/* =========================================================
   ITEM
========================================================= */

.stats-impact-item {
  position: relative;

  min-height: 310px;

  display: flex;

  flex-direction: column;

  padding:
    27px 24px;

  overflow: hidden;

  border-right:
    1px solid rgba(255, 255, 255, .08);
}


.stats-impact-item:first-child {
  border-left:
    1px solid rgba(255, 255, 255, .08);
}


/* =========================================================
   HOVER BACKGROUND
========================================================= */

.stats-impact-item::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: -1;

  background:
    var(--color-beige);

  transform:
    translateY(101%);

  transition:
    transform 500ms cubic-bezier(.2, .8, .2, 1);
}


.stats-impact-item:hover::before {
  transform:
    translateY(0);
}


/* =========================================================
   INDEX
========================================================= */

.stats-impact-index {
  position: absolute;

  right: 18px;
  top: 17px;

  color:
    rgba(255, 255, 255, .18);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1px;

  transition:
    color 300ms ease;
}


.stats-impact-item:hover .stats-impact-index {
  color:
    rgba(41, 38, 36, .25);
}


/* =========================================================
   ICON WRAPPER
========================================================= */

.stats-impact-icon-wrap {
  position: relative;

  width: 74px;
  height: 74px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 27px;
}


/* =========================================================
   ICON RING
========================================================= */

.stats-impact-icon-ring {
  position: absolute;

  inset: 0;

  border-radius: 50%;

  border:
    1px dashed rgba(198, 182, 167, .38);

  animation:
    statsRingRotate 10s linear infinite;
}


.stats-impact-icon-ring::before {
  content: "";

  position: absolute;

  left: 50%;
  top: -4px;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background:
    var(--color-beige);

  transform:
    translateX(-50%);
}


/* =========================================================
   ICON
========================================================= */

.stats-impact-icon {
  position: relative;

  z-index: 2;

  width: 51px;
  height: 51px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 19px;

  box-shadow:
    0 12px 28px rgba(0, 0, 0, .16);

  transition:
    color 300ms ease,
    background 300ms ease,
    transform 350ms ease;
}


.stats-impact-item:hover .stats-impact-icon {
  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  transform:
    rotate(-7deg) scale(1.08);
}


.stats-impact-item:hover .stats-impact-icon-ring {
  border-color:
    rgba(41, 38, 36, .25);
}


/* =========================================================
   VALUE
========================================================= */

.stats-impact-value {
  display: flex;

  align-items: flex-end;

  gap: 5px;

  margin-bottom: 9px;
}


.stats-impact-value strong {
  color:
    var(--color-white);

  font-size:
    clamp(50px, 4.4vw, 68px);

  line-height: .82;

  font-weight: 800;

  letter-spacing: -4px;

  transition:
    color 300ms ease;
}


.stats-impact-value>span {
  padding-bottom: 2px;

  color:
    var(--color-beige);

  font-size: 18px;

  font-weight: 800;

  transition:
    color 300ms ease;
}


/* =========================================================
   TEXT VALUES
========================================================= */

.stats-impact-value-text {
  align-items: baseline;

  gap: 7px;
}


.stats-impact-value-text strong {
  font-size:
    clamp(36px, 3.2vw, 48px);

  letter-spacing:
    -2px;
}


.stats-impact-value-text>span {
  font-size: 14px;
}


/* Hover */

.stats-impact-item:hover .stats-impact-value strong {
  color:
    var(--color-charcoal);
}


.stats-impact-item:hover .stats-impact-value>span {
  color:
    var(--color-brown-dark);
}


/* =========================================================
   TITLE
========================================================= */

.stats-impact-data h3 {
  margin:
    0 0 7px;

  color:
    var(--color-white);

  font-size: 16px;

  line-height: 1.3;

  font-weight: 800;

  transition:
    color 300ms ease;
}


.stats-impact-item:hover .stats-impact-data h3 {
  color:
    var(--color-charcoal);
}


/* =========================================================
   TEXT
========================================================= */

.stats-impact-data p {
  max-width: 220px;

  margin: 0;

  color:
    rgba(255, 255, 255, .48);

  font-size: 9px;

  line-height: 1.6;

  transition:
    color 300ms ease;
}


.stats-impact-item:hover .stats-impact-data p {
  color:
    rgba(41, 38, 36, .66);
}


/* =========================================================
   CORNER ICON
========================================================= */

.stats-impact-corner-icon {
  position: absolute;

  right: 19px;
  bottom: 19px;

  width: 33px;
  height: 33px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  border:
    1px solid rgba(198, 182, 167, .22);

  font-size: 12px;

  opacity: .65;

  transition:
    color 300ms ease,
    background 300ms ease,
    opacity 300ms ease,
    transform 300ms ease;
}


.stats-impact-item:hover .stats-impact-corner-icon {
  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  border-color:
    var(--color-charcoal);

  opacity: 1;

  transform:
    rotate(-7deg) scale(1.08);
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.stats-impact-bottom {
  position: relative;

  z-index: 6;

  padding:
    20px 0;

  background:
    var(--color-charcoal-soft);
}


/* =========================================================
   BOTTOM LAYOUT
========================================================= */

.stats-impact-bottom-inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 24px;
}


/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.stats-impact-bottom-message {
  display: flex;

  align-items: center;

  gap: 11px;
}


.stats-impact-bottom-message>span {
  width: 45px;
  height: 45px;

  flex: 0 0 45px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  font-size: 17px;

  animation:
    statsShieldPulse 2.5s ease-in-out infinite;
}


.stats-impact-bottom-message>div {
  display: flex;

  flex-direction: column;
}


.stats-impact-bottom-message small {
  margin-bottom: 2px;

  color:
    var(--color-beige);

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.stats-impact-bottom-message strong {
  color:
    var(--color-white);

  font-size: 13px;

  font-weight: 800;
}


/* =========================================================
   POINTS
========================================================= */

.stats-impact-bottom-points {
  display: flex;

  flex-wrap: wrap;

  gap: 14px;
}


.stats-impact-bottom-points span {
  display: inline-flex;

  align-items: center;

  gap: 5px;

  color:
    rgba(255, 255, 255, .57);

  font-size: 9px;

  font-weight: 700;
}


.stats-impact-bottom-points i {
  color:
    var(--color-beige);

  font-size: 11px;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.stats-impact-call {
  position: relative;

  min-width: 235px;
  min-height: 57px;

  display: flex;

  align-items: center;

  gap: 9px;

  padding:
    7px 13px 7px 7px;

  overflow: hidden;

  color:
    var(--color-charcoal);

  background:
    var(--color-beige);

  text-decoration: none;

  transition:
    color 300ms ease,
    background 300ms ease,
    transform 300ms ease;
}


.stats-impact-call::before {
  content: "";

  position: absolute;

  left: -120%;
  top: 0;

  width: 60%;
  height: 100%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .55),
      transparent);

  transform:
    skewX(-20deg);

  animation:
    statsCallShine 4s ease-in-out infinite;
}


.stats-impact-call:hover {
  color:
    var(--color-white);

  background:
    var(--color-brown);

  transform:
    translateY(-4px);
}


.stats-impact-call>span {
  position: relative;

  z-index: 2;

  width: 41px;
  height: 41px;

  flex: 0 0 41px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    var(--color-charcoal);

  font-size: 14px;

  animation:
    statsPhoneRing 3s ease-in-out infinite;
}


.stats-impact-call>div {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;
}


.stats-impact-call small {
  margin-bottom: 2px;

  font-size: 6px;

  font-weight: 800;

  text-transform: uppercase;

  opacity: .65;
}


.stats-impact-call strong {
  font-size: 14px;

  font-weight: 800;
}


.stats-impact-call>i {
  position: relative;

  z-index: 2;

  margin-left: auto;

  font-size: 13px;

  transition:
    transform 300ms ease;
}


.stats-impact-call:hover>i {
  transform:
    translate(4px, -4px);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes statsGridMove {

  from {
    background-position: 0 0;
  }

  to {
    background-position: 116px 58px;
  }

}


@keyframes statsGlowLeft {

  0%,
  100% {
    opacity: .4;
    transform: scale(.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }

}


@keyframes statsGlowRight {

  0%,
  100% {
    transform:
      translate(0, 0) scale(1);
  }

  50% {
    transform:
      translate(-18px, -14px) scale(1.08);
  }

}


@keyframes statsShapeRotate {

  from {
    transform:
      rotate(45deg);
  }

  to {
    transform:
      rotate(405deg);
  }

}


@keyframes statsShapeFloat {

  0%,
  100% {
    transform:
      rotate(45deg) translateY(0);
  }

  50% {
    transform:
      rotate(56deg) translateY(-18px);
  }

}


@keyframes statsEyebrowPulse {

  0%,
  100% {
    transform:
      scale(1) rotate(0);
  }

  50% {
    transform:
      scale(1.08) rotate(-5deg);
  }

}


@keyframes statsHeadingLine {

  from {
    width: 35px;
  }

  to {
    width: 75px;
  }

}


@keyframes statsRingRotate {

  from {
    transform:
      rotate(0deg);
  }

  to {
    transform:
      rotate(360deg);
  }

}


@keyframes statsShieldPulse {

  0%,
  100% {
    transform:
      scale(1);
  }

  50% {
    transform:
      scale(1.08);
  }

}


@keyframes statsCallShine {

  0%,
  35% {
    left: -120%;
  }

  70%,
  100% {
    left: 160%;
  }

}


@keyframes statsPhoneRing {

  0%,
  82%,
  100% {
    transform:
      rotate(0);
  }

  87% {
    transform:
      rotate(-10deg);
  }

  91% {
    transform:
      rotate(10deg);
  }

  95% {
    transform:
      rotate(-5deg);
  }

}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

  .stats-impact-grid-items {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .stats-impact-item {
    border-bottom:
      1px solid rgba(255, 255, 255, .08);
  }


  .stats-impact-item:nth-child(2) {
    border-right: 0;
  }


  .stats-impact-item:nth-child(3) {
    border-left:
      1px solid rgba(255, 255, 255, .08);
  }


  .stats-impact-bottom-inner {
    flex-wrap: wrap;
  }


  .stats-impact-bottom-points {
    order: 3;

    width: 100%;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .stats-impact-heading {
    padding:
      62px 0 38px;
  }


  .stats-impact-title {
    font-size:
      clamp(36px, 6vw, 48px);
  }


  .stats-impact-heading-copy {
    max-width: 650px;

    margin-left: 0;
  }


  .stats-impact-bottom-inner {
    align-items: flex-start;

    flex-direction: column;
  }


  .stats-impact-bottom-points {
    order: initial;

    width: auto;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .stats-impact-heading {
    padding:
      55px 0 34px;
  }


  .stats-impact-title {
    font-size:
      clamp(32px, 9vw, 42px);

    letter-spacing:
      -2px;
  }


  .stats-impact-heading-copy p {
    font-size: 12px;
  }


  .stats-impact-grid-items {
    grid-template-columns:
      1fr;
  }


  .stats-impact-item,
  .stats-impact-item:first-child,
  .stats-impact-item:nth-child(3) {
    min-height: 270px;

    border-left:
      1px solid rgba(255, 255, 255, .08);

    border-right:
      1px solid rgba(255, 255, 255, .08);
  }


  .stats-impact-value strong {
    font-size: 56px;
  }


  .stats-impact-value-text strong {
    font-size: 42px;
  }


  .stats-impact-call {
    width: 100%;

    min-width: 0;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .stats-impact-title {
    font-size: 35px;
  }


  .stats-impact-item {
    min-height: 255px;

    padding:
      23px 20px;
  }


  .stats-impact-icon-wrap {
    width: 68px;
    height: 68px;

    margin-bottom: 24px;
  }


  .stats-impact-icon {
    width: 47px;
    height: 47px;

    font-size: 17px;
  }


  .stats-impact-value strong {
    font-size: 52px;
  }


  .stats-impact-value-text strong {
    font-size: 39px;
  }


  .stats-impact-bottom-message {
    align-items: flex-start;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .stats-impact-section *,
  .stats-impact-section *::before,
  .stats-impact-section *::after {
    animation: none !important;

    transition-duration: .01ms !important;
  }

}

/* =========================================================
   CLEAN OUTLINED STAT ICONS
   NO SQUARE BACKGROUNDS
========================================================= */

.stats-impact-icon-wrap {
  position: relative;

  width: 76px;
  height: 76px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 27px;
}


/* Large circular outline */
.stats-impact-icon-ring {
  position: absolute;

  inset: 0;

  border-radius: 50%;

  border:
    1px solid rgba(198, 182, 167, .34);

  animation:
    statsRingRotate 12s linear infinite;
}


/* Small orbit point */
.stats-impact-icon-ring::before {
  content: "";

  position: absolute;

  left: 50%;
  top: -4px;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background:
    var(--color-beige);

  transform:
    translateX(-50%);
}


/* Actual Icon */
.stats-impact-icon {
  position: relative;

  z-index: 2;

  width: auto;
  height: auto;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-beige);

  background:
    transparent;

  border: 0;

  box-shadow: none;

  font-size: 30px;

  transition:
    color 300ms ease,
    transform 350ms ease;
}


/* Hover */
.stats-impact-item:hover .stats-impact-icon {
  color:
    var(--color-charcoal);

  background:
    transparent;

  transform:
    scale(1.15) rotate(-6deg);
}


.stats-impact-item:hover .stats-impact-icon-ring {
  border-color:
    rgba(41, 38, 36, .32);
}


.stats-impact-item:hover .stats-impact-icon-ring::before {
  background:
    var(--color-charcoal);
}


/* =========================================================
   BOTTOM CORNER ICON
   ALSO NO SQUARE
========================================================= */

.stats-impact-corner-icon {
  position: absolute;

  right: 20px;
  bottom: 20px;

  width: auto;
  height: auto;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    rgba(198, 182, 167, .55);

  background:
    transparent;

  border: 0;

  font-size: 18px;

  opacity: .7;

  transition:
    color 300ms ease,
    opacity 300ms ease,
    transform 300ms ease;
}


.stats-impact-item:hover .stats-impact-corner-icon {
  color:
    var(--color-charcoal);

  background:
    transparent;

  border: 0;

  opacity: 1;

  transform:
    translate(-3px, -3px) rotate(-7deg);
}

/* =========================================================
   STATS IMPACT SECTION - BIGGER TEXT
   ADD AT THE VERY END OF YOUR CSS
========================================================= */

/* Eyebrow */
.stats-impact-eyebrow small {
  font-size: 11px;
  line-height: 1.4;
}


/* Main Section Title */
.stats-impact-title {
  font-size: clamp(40px, 3.9vw, 56px);
}


/* Heading Description */
.stats-impact-heading-copy p {
  font-size: 15px;
  line-height: 1.7;
}


/* =========================================================
   STAT CARD NUMBER / VALUE
========================================================= */

.stats-impact-value strong {
  font-size: clamp(54px, 4.7vw, 72px);
}


.stats-impact-value>span {
  font-size: 20px;
}


/* Same Day / Free Quote */
.stats-impact-value-text strong {
  font-size: clamp(39px, 3.4vw, 51px);
}


.stats-impact-value-text>span {
  font-size: 16px;
}


/* Card Index */
.stats-impact-index {
  font-size: 10px;
}


/* =========================================================
   STAT CARD COPY
========================================================= */

.stats-impact-data h3 {
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 9px;
}


.stats-impact-data p {
  max-width: 230px;

  font-size: 12px;
  line-height: 1.7;
}


/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.stats-impact-bottom-message small {
  font-size: 9px;
  line-height: 1.4;
}


.stats-impact-bottom-message strong {
  font-size: 16px;
  line-height: 1.35;
}


/* =========================================================
   SERVICE POINTS
========================================================= */

.stats-impact-bottom-points span {
  font-size: 12px;
}


.stats-impact-bottom-points i {
  font-size: 13px;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.stats-impact-call small {
  font-size: 9px;
  line-height: 1.3;
}


.stats-impact-call strong {
  font-size: 18px;
  line-height: 1.2;
}


.stats-impact-call>i {
  font-size: 15px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .stats-impact-title {
    font-size: clamp(38px, 6vw, 50px);
  }

  .stats-impact-heading-copy p {
    font-size: 15px;
  }

  .stats-impact-data h3 {
    font-size: 18px;
  }

  .stats-impact-data p {
    font-size: 12px;
  }

  .stats-impact-bottom-message strong {
    font-size: 16px;
  }

  .stats-impact-bottom-points span {
    font-size: 12px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .stats-impact-eyebrow small {
    font-size: 10px;
  }

  .stats-impact-title {
    font-size: clamp(35px, 9vw, 44px);
  }

  .stats-impact-heading-copy p {
    font-size: 14px;
    line-height: 1.7;
  }

  .stats-impact-value strong {
    font-size: 58px;
  }

  .stats-impact-value-text strong {
    font-size: 44px;
  }

  .stats-impact-value-text>span {
    font-size: 15px;
  }

  .stats-impact-data h3 {
    font-size: 18px;
  }

  .stats-impact-data p {
    max-width: 260px;

    font-size: 13px;
  }

  .stats-impact-bottom-message small {
    font-size: 9px;
  }

  .stats-impact-bottom-message strong {
    font-size: 16px;
  }

  .stats-impact-bottom-points span {
    font-size: 12px;
  }

  .stats-impact-call small {
    font-size: 9px;
  }

  .stats-impact-call strong {
    font-size: 18px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .stats-impact-title {
    font-size: 37px;
  }

  .stats-impact-heading-copy p {
    font-size: 14px;
  }

  .stats-impact-data h3 {
    font-size: 18px;
  }

  .stats-impact-data p {
    font-size: 13px;
  }

  .stats-impact-value strong {
    font-size: 54px;
  }

  .stats-impact-value-text strong {
    font-size: 41px;
  }

  .stats-impact-bottom-message strong {
    font-size: 15px;
  }

  .stats-impact-call strong {
    font-size: 17px;
  }

}

/* =========================================================
   BIGGER EMAIL TEXT
========================================================= */

.obfuscatedEmail {
  display: inline-flex;
  align-items: center;

  font-size: 18px;
  line-height: 1.5;

  font-weight: 700;
}


.obfuscatedEmail a {
  position: relative;

  display: inline-flex;
  align-items: center;

  color: var(--color-charcoal);

  font-size: 15px;
  line-height: 1.5;

  font-weight: 700;

  text-decoration: none;

  overflow-wrap: anywhere;

  transition:
    color 300ms ease;
}


.obfuscatedEmail a:hover {
  color: var(--color-brown);
}


/* Dark background */
.contact-command-info .obfuscatedEmail a,
footer .obfuscatedEmail a,
.dark-section .obfuscatedEmail a {
  color: var(--color-white);
}


.contact-command-info .obfuscatedEmail a:hover,
footer .obfuscatedEmail a:hover,
.dark-section .obfuscatedEmail a:hover {
  color: var(--color-beige);
}


/* Tablet */
@media (max-width: 991.98px) {

  .obfuscatedEmail,
  .obfuscatedEmail a {
    font-size: 17px;
  }

}


/* Mobile */
@media (max-width: 767.98px) {

  .obfuscatedEmail,
  .obfuscatedEmail a {
    font-size: 16px;
  }

}