/*
 * Simpleweb Real Estate - Parity Batch 1
 * Exact native shell, hero and consultation-lead presentation.
 */

/* Remove the clean-room theme content constraint only on the native parity homepage. */
body.swrep-parity-home main.site-main.swre-home {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Roboto";
  src: url("../parity/vendor/fonts/roboto-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../parity/vendor/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --swrep-font: "Roboto", sans-serif;
  --swrep-heading-font: "Manrope", sans-serif;
  --swrep-black: #0b0b0d;
  --swrep-black-rgb: 11, 11, 13;
  --swrep-gold: #d4af37;
  --swrep-gold-rgb: 212, 175, 55;
  --swrep-bright-gold: #ffd700;
  --swrep-gold-tint: #f3e9ce;
  --swrep-orange: #ee1c00;
  --swrep-orange-rgb: 238, 28, 0;
  --swrep-white: #fff;
  --swrep-white-rgb: 255, 255, 255;
  --swrep-ivory: #fbf7ef;
  --swrep-gray: #6e6a60;
  --swrep-gray-rgb: 110, 106, 96;
  --swrep-charcoal: #26262b;
  --swrep-hairline: #e4dcc9;
  --swrep-success: #2e6b45;
}

html {
  box-sizing: border-box;
  overflow-x: clip;
  scroll-behavior: smooth;
}

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

body.swrep-parity-shell {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--swrep-white);
  color: var(--swrep-gray);
  font-family: var(--swrep-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

body.swrep-parity-shell.swrep-panel-open {
  overflow: hidden;
}

body.swrep-parity-shell img {
  max-width: 100%;
  height: auto;
}

:where(body.swrep-parity-home) a,
:where(body.swrep-parity-shell) :where(.swrep-header, .swrep-footer, .swrep-mobile-nav, .swrep-search, .swrep-chat, .swrep-scroll) a {
  color: inherit;
  text-decoration: none;
}

body.swrep-parity-home :where(button, input, select, textarea),
body.swrep-parity-shell :where(.swrep-header, .swrep-footer, .swrep-mobile-nav, .swrep-search, .swrep-chat) :where(button, input, select, textarea) {
  font: inherit;
}

body.swrep-parity-home button,
body.swrep-parity-shell :where(.swrep-header, .swrep-footer, .swrep-mobile-nav, .swrep-search, .swrep-chat) button {
  cursor: pointer;
}

body.swrep-parity-home :where(p, h1, h2, h3, h4, ul),
body.swrep-parity-shell :where(.swrep-header, .swrep-footer, .swrep-mobile-nav, .swrep-search, .swrep-chat) :where(p, h1, h2, h3, h4, ul) {
  margin-top: 0;
}

body.swrep-parity-home :where(h1, h2, h3, h4),
body.swrep-parity-shell :where(.swrep-header, .swrep-footer, .swrep-mobile-nav, .swrep-search, .swrep-chat) :where(h1, h2, h3, h4) {
  margin-bottom: 0;
  color: var(--swrep-black);
  font-family: var(--swrep-heading-font);
}

body.swrep-parity-home ul,
body.swrep-parity-shell :where(.swrep-header, .swrep-footer, .swrep-mobile-nav, .swrep-search, .swrep-chat) ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.swrep-container {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.swrep-grid,
.swrep-grid__full {
  width: 100%;
}

@media (min-width: 576px) {
  .swrep-container { max-width: 540px; }
}

@media (min-width: 768px) {
  .swrep-container { max-width: 720px; }
}

@media (min-width: 992px) {
  .swrep-container { max-width: 960px; }
}

@media (min-width: 1200px) {
  .swrep-container { max-width: 1140px; }
}

@media (min-width: 1400px) {
  .swrep-container { max-width: 1320px; }
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
  position: fixed !important;
  top: 10px;
  left: 10px;
  z-index: 100000;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 18px;
  background: var(--swrep-white);
  color: var(--swrep-black);
  box-shadow: 0 4px 18px rgba(var(--swrep-black-rgb), .2);
}

[data-swrep-icon] {
  --swrep-icon-url: none;
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 1em;
  background-color: currentColor;
  -webkit-mask: var(--swrep-icon-url) center / contain no-repeat;
  mask: var(--swrep-icon-url) center / contain no-repeat;
}

[data-swrep-icon="phone"] { --swrep-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/solid/phone.svg"); }
[data-swrep-icon="email"] { --swrep-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/solid/envelope.svg"); }
[data-swrep-icon="location"],
[data-swrep-icon="map-marker"] { --swrep-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/solid/map-marker-alt.svg"); }
[data-swrep-icon="clock"] { --swrep-icon-url: url("../parity/icons/clock.svg"); }
[data-swrep-icon="search"] { --swrep-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/solid/search.svg"); }
[data-swrep-icon="menu"] { --swrep-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/solid/bars.svg"); }
[data-swrep-icon="close"] { --swrep-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/solid/times.svg"); }
[data-swrep-icon="plus"] { --swrep-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/solid/plus.svg"); }
[data-swrep-icon="home"] { --swrep-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/solid/home.svg"); }
[data-swrep-icon="key"] { --swrep-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/solid/key.svg"); }
[data-swrep-icon="lock"] { --swrep-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/solid/lock.svg"); }
[data-swrep-icon="facebook"] { --swrep-icon-url: url("../parity/icons/facebook.svg"); }
[data-swrep-icon="facebook-f"] { --swrep-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/brands/facebook-f.svg"); }
[data-swrep-icon="facebook-square"] { --swrep-icon-url: url("../parity/icons/facebook-square.svg"); }
[data-swrep-icon="instagram"] { --swrep-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/brands/instagram.svg"); }
[data-swrep-icon="pinterest"] { --swrep-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/brands/pinterest-p.svg"); }
[data-swrep-icon="x"] { --swrep-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/brands/twitter.svg"); }

.swrep-header [data-swrep-icon="phone"] {
  transform: scaleX(-1);
  transform-origin: center;
}

.swrep-button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  padding: 17px 30px;
  background: var(--swrep-gold);
  color: var(--swrep-white) !important;
  font-family: var(--swrep-heading-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  text-transform: capitalize;
  box-shadow: 0 6px 0 rgba(var(--swrep-black-rgb), .32), 0 13px 22px rgba(var(--swrep-black-rgb), .18);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, color 250ms ease, background-color 250ms ease;
  z-index: 1;
}

.swrep-button:hover,
.swrep-button:focus-visible {
  background: var(--swrep-gold-tint);
  color: var(--swrep-black) !important;
  box-shadow: 0 3px 0 rgba(var(--swrep-black-rgb), .28), 0 8px 15px rgba(var(--swrep-black-rgb), .14);
  transform: translateY(3px);
}

.swrep-button:active {
  box-shadow: 0 1px 0 rgba(var(--swrep-black-rgb), .24);
  transform: translateY(6px);
}

/* Header */
.swrep-header {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  z-index: 999;
}

.swrep-header__topbar,
.swrep-header__topbar-inner {
  position: relative;
  height: 47px;
  min-height: 47px;
}

.swrep-header__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 0 55px;
  background: var(--swrep-black);
  color: var(--swrep-white);
  isolation: isolate;
}

.swrep-header__topbar-inner::before {
  position: absolute;
  inset: 0 0 0 50%;
  background: var(--swrep-orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 2% 100%);
  content: "";
  z-index: -1;
}

.swrep-header__contact-list,
.swrep-header__topbar-right,
.swrep-header__hours,
.swrep-header__social {
  display: flex;
  align-items: center;
}

.swrep-header__contact-list {
  margin: 0;
  color: var(--swrep-white);
}

.swrep-header__contact-item {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--swrep-white);
  font-size: 16px;
  line-height: 16px;
  white-space: nowrap;
}

.swrep-header__contact-item + .swrep-header__contact-item {
  margin-left: 46px;
}

.swrep-header__contact-item + .swrep-header__contact-item::before {
  position: absolute;
  top: -3px;
  bottom: -2px;
  left: -23px;
  width: 1px;
  background: rgba(var(--swrep-white-rgb), .3);
  content: "";
}

.swrep-header__contact-icon {
  margin-right: 10px;
  font-size: 16px;
}

.swrep-header__contact-item a {
  color: var(--swrep-white);
  transition: color 300ms ease;
}

.swrep-header__contact-item a:hover {
  color: var(--swrep-bright-gold);
}

.swrep-header__topbar-right {
  column-gap: 20px;
}

.swrep-header__welcome {
  margin: 0;
  color: var(--swrep-white);
  font-family: var(--swrep-heading-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  text-transform: capitalize;
  white-space: nowrap;
}

.swrep-header__hours {
  color: var(--swrep-white);
  white-space: nowrap;
}

.swrep-header__hours [data-swrep-icon] {
  font-size: 18px;
}

.swrep-header__hours p {
  margin: 0 0 0 10px;
  color: var(--swrep-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
}

.swrep-header__social {
  gap: 5px;
}

.swrep-header__social-item {
  display: flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--swrep-white-rgb), .4);
  border-radius: 5px;
  color: var(--swrep-white);
  font-size: 15px;
}

.swrep-header__nav,
.swrep-header__nav-wrapper,
.swrep-header__nav-inner {
  position: relative;
  display: block;
  background: var(--swrep-white);
}

.swrep-header__nav-inner {
  display: flex;
  height: 80px;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 0 55px;
}

.swrep-header__brand,
.swrep-header__actions,
.swrep-header__menu-box {
  position: relative;
  z-index: 2;
}

.swrep-header__brand {
  display: flex;
  align-items: center;
  padding: 15px 28px 15px 0;
}

.swrep-brand {
  display: inline-flex;
  max-width: 310px;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.swrep-brand__mark {
  position: relative;
  display: flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
}

.swrep-brand__mark-image {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.swrep-brand__wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--swrep-black);
  font-family: var(--swrep-heading-font);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.05;
  white-space: nowrap;
}

.swrep-brand__wordmark-accent {
  color: #d4af37;
  margin-left: 0;
}

.swrep-header__menu-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.swrep-header__menu-list {
  display: flex;
  align-items: center;
  margin: 0;
}

.swrep-header__menu-list > li {
  position: relative;
  display: block;
}

.swrep-header__menu-list > li + li {
  margin-left: 26px;
}

.swrep-header__menu-list > li > a {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--swrep-black);
  font-family: var(--swrep-heading-font);
  font-size: 17px;
  font-weight: 500;
  line-height: 20px;
  text-transform: capitalize;
  white-space: nowrap;
  transition: color 300ms ease;
}

.swrep-header__menu-list > li.current-menu-item > a:not([href*="#"]),
.swrep-header__menu-list > li.current_page_item > a:not([href*="#"]),
.swrep-header__menu-list > li > a:hover,
.swrep-header__menu-list > li > a:focus-visible {
  color: var(--swrep-gold);
}

.swrep-header__menu-list > li > a:focus-visible {
  outline: 2px solid var(--swrep-gold);
  outline-offset: 4px;
}

.swrep-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.swrep-header__action {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--swrep-black);
}

.swrep-header__action--phone,
.swrep-header__action--email {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--swrep-gold);
  color: var(--swrep-white);
}

.swrep-header__action--phone {
  font-size: 18px;
}

.swrep-header__action--search {
  width: 34px;
  font-size: 24px;
}

.swrep-header__action--email {
  font-size: 20px;
}

.swrep-header__action:hover,
.swrep-header__action:focus-visible {
  background-color: var(--swrep-orange);
  color: var(--swrep-white);
}

.swrep-header__cta {
  min-width: 156px;
  padding: 17px 30px;
  font-family: var(--swrep-font);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: none;
  transition: color 500ms ease, background-color 500ms ease;
}

.swrep-header__cta:hover,
.swrep-header__cta:focus-visible,
.swrep-header__cta:active {
  background: var(--swrep-orange);
  color: var(--swrep-white) !important;
  box-shadow: none;
  transform: none;
}

.swrep-header__mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--swrep-gold);
  font-size: 24px;
}

.swrep-header--sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-110%);
  transition: transform 400ms ease, opacity 400ms ease, visibility 400ms ease;
  box-shadow: 0 10px 30px rgba(var(--swrep-black-rgb), .09);
}

.swrep-header--sticky.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.swrep-header--sticky .swrep-header__topbar {
  display: none;
}

/* Hero */
.swrep-hero {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--swrep-black);
  z-index: 91;
}

.swrep-hero .swiper-slide {
  position: relative;
  overflow: hidden;
  background: var(--swrep-black);
}

.swrep-hero__background-box {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.swrep-hero__background-box::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 13, .9) 10%, rgba(11, 11, 13, .53) 100%);
  content: "";
  z-index: 1;
}

.swrep-hero__background {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform 7000ms ease, opacity 1000ms ease-in;
}

.swrep-hero .swiper-slide-active .swrep-hero__background {
  transform: scale(1.1);
}

.swrep-hero__shape-1,
.swrep-hero__shape-2 {
  position: absolute;
  top: -200px;
  bottom: -200px;
  width: 400px;
  background: var(--swrep-gold);
  opacity: 0;
  transform: perspective(400px) rotate(18deg) translateX(-100px);
  transform-origin: right;
  transition: all 1000ms ease;
  z-index: -1;
}

.swrep-hero__shape-1 { right: 300px; }
.swrep-hero__shape-2 { left: 200px; transition-duration: 1800ms; }

.swrep-hero .swiper-slide-active .swrep-hero__shape-1,
.swrep-hero .swiper-slide-active .swrep-hero__shape-2 {
  opacity: .05;
  transform: perspective(400px) rotate(18deg) translateX(0);
}

.swrep-hero .swiper-slide-active .swrep-hero__shape-1 { transition-delay: 2000ms; }
.swrep-hero .swiper-slide-active .swrep-hero__shape-2 { transition-delay: 2500ms; }

.swrep-hero .swrep-container {
  z-index: 30;
}

.swrep-hero__content {
  position: relative;
  display: block;
  padding-top: 146px;
  padding-bottom: 215px;
  z-index: 15;
}

.swrep-hero__eyebrow,
.swrep-hero__title,
.swrep-hero__text,
.swrep-hero__actions {
  opacity: 0;
  transform-origin: bottom;
  transition: all 1000ms ease;
}

.swrep-hero__eyebrow,
.swrep-hero__title {
  transform: perspective(400px) translateY(-80px);
}

.swrep-hero__text,
.swrep-hero__actions {
  transform: perspective(400px) translateY(80px);
}

.swrep-hero .swiper-slide-active .swrep-hero__eyebrow,
.swrep-hero .swiper-slide-active .swrep-hero__title,
.swrep-hero .swiper-slide-active .swrep-hero__text,
.swrep-hero .swiper-slide-active .swrep-hero__actions {
  opacity: 1;
  transform: perspective(400px) translateY(0);
}

.swrep-hero .swiper-slide-active .swrep-hero__title { transition-delay: 900ms; }
.swrep-hero .swiper-slide-active .swrep-hero__eyebrow { transition-delay: 1200ms; }
.swrep-hero .swiper-slide-active .swrep-hero__text { transition-delay: 1400ms; }
.swrep-hero .swiper-slide-active .swrep-hero__actions { transition-delay: 2000ms; }

.swrep-hero__eyebrow {
  display: block;
  color: var(--swrep-bright-gold) !important;
  font-family: var(--swrep-heading-font);
  font-size: 20px;
  font-weight: 500;
  line-height: 1em;
  text-transform: capitalize;
}

.swrep-hero__title {
  margin-top: 18px;
  color: var(--swrep-white) !important;
  font-size: 65px;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: capitalize;
}

.swrep-hero__title span {
  color: var(--swrep-bright-gold);
}

.swrep-hero__text {
  display: block;
  margin-top: 22px;
  margin-bottom: 43px;
  color: rgba(var(--swrep-white-rgb), .8);
  font-size: 18px;
}

.swrep-hero__actions {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.swrep-hero__actions > .swrep-button {
  padding: 17px 35px;
  font-family: var(--swrep-font);
  font-size: 16px;
  font-weight: 500;
}

.swrep-hero__review-box,
.swrep-hero__review-icons,
.swrep-hero__review-content,
.swrep-hero__review-count {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.swrep-hero__review-box { gap: 10px; }
.swrep-hero__review-icons { gap: 5px; color: var(--swrep-gold); font-size: 15px; }
.swrep-hero__review-icons [data-swrep-icon="map-marker"] {
  width: .75em;
  flex-basis: .75em;
}

.swrep-hero__review-icons [data-swrep-icon="home"] {
  width: 1.125em;
  flex-basis: 1.125em;
}

.swrep-hero__review-icons [data-swrep-icon="key"] {
  width: 1em;
  flex-basis: 1em;
}
.swrep-hero__review-content { gap: 7px; }
.swrep-hero__review-count { gap: 5px; }

.swrep-hero__review-count h3,
.swrep-hero__review-count span,
.swrep-hero__review-label {
  margin: 0;
  color: var(--swrep-white) !important;
  font-family: var(--swrep-font) !important;
  font-size: 20px;
  font-weight: 400;
  line-height: 1em;
}

.swrep-hero__review-count h3 {
  line-height: 1em !important;
}

#swrep-hero-pagination {
  position: absolute;
  right: auto;
  bottom: 102px;
  left: 50%;
  display: flex;
  width: auto;
  height: auto;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0;
  padding: 11px 18px;
  border: 1px solid rgba(var(--swrep-white-rgb), .22);
  border-radius: 999px;
  background: rgba(var(--swrep-black-rgb), .34);
  box-shadow: 0 12px 30px rgba(var(--swrep-black-rgb), .22), inset 0 1px 0 rgba(var(--swrep-white-rgb), .16);
  backdrop-filter: blur(14px) saturate(135%);
  transform: translateX(-50%);
  z-index: 100;
}

#swrep-hero-pagination .swiper-pagination-bullet {
  position: relative;
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(var(--swrep-white-rgb), .58);
  opacity: 1;
  transition: transform 200ms ease, background-color 200ms ease;
}

#swrep-hero-pagination .swiper-pagination-bullet::before {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(var(--swrep-white-rgb), .52);
  border-radius: 50%;
  content: "";
  transform: scale(0);
  transition: transform 200ms linear;
}

#swrep-hero-pagination .swiper-pagination-bullet-active {
  background: var(--swrep-gold);
  transform: scale(1.15);
}

#swrep-hero-pagination .swiper-pagination-bullet-active::before {
  transform: scale(1);
}

/* Consultation lead */
.swrep-lead {
  position: relative;
  display: block;
  margin-top: -78px;
  z-index: 93;
}

.swrep-lead__wrap {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(var(--swrep-white-rgb), .74);
  border-top: 3px solid var(--swrep-orange);
  border-radius: 18px;
  background: var(--swrep-ivory);
  box-shadow: inset 0 1px 0 rgba(var(--swrep-white-rgb), .95), inset 0 -1px 0 rgba(var(--swrep-gray-rgb), .08), 0 10px 0 -5px rgba(var(--swrep-gold-rgb), .2), 0 19px 0 -10px rgba(var(--swrep-orange-rgb), .1), 0 34px 70px rgba(var(--swrep-black-rgb), .2);
}

.swrep-lead__layout {
  display: grid;
  grid-template-columns: minmax(250px, 285px) minmax(0, 1fr);
  align-items: stretch;
}

.swrep-lead__left {
  position: relative;
  overflow: hidden;
  padding: 31px 30px 30px;
  border-right: 1px solid rgba(var(--swrep-gray-rgb), .12);
  border-radius: 14px 0 0 14px;
  background: linear-gradient(145deg, #fffdf8, var(--swrep-gold-tint));
  isolation: isolate;
}

.swrep-lead__left::after {
  position: absolute;
  right: -95px;
  bottom: -115px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(var(--swrep-gold-rgb), .28);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(var(--swrep-gold-rgb), .04), 0 0 0 68px rgba(var(--swrep-gold-rgb), .025);
  content: "";
  z-index: -1;
}

.swrep-lead__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--swrep-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.swrep-lead__title {
  max-width: 235px;
  margin: 0;
  color: var(--swrep-black) !important;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.16;
}

.swrep-lead__text {
  max-width: 235px;
  margin-top: 12px;
  margin-bottom: 0;
  color: var(--swrep-gray);
  font-size: 13px;
  line-height: 20px;
}

.swrep-lead__assurance {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  color: var(--swrep-charcoal);
  font-size: 12px;
  font-weight: 600;
}

.swrep-lead__assurance [data-swrep-icon] {
  color: var(--swrep-orange);
}

.swrep-lead__right {
  position: relative;
  overflow: hidden;
  padding: 26px 28px 22px;
  border-radius: 0 14px 14px 0;
  background: var(--swrep-white);
  isolation: isolate;
}

body.swrep-parity-shell .swrep-lead__skyline {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 104px;
  border-radius: 0 0 14px;
  object-fit: cover;
  object-position: center bottom;
  opacity: .14;
  pointer-events: none;
  z-index: 0;
}

.swrep-lead__form,
.swrep-lead__form form {
  position: relative;
  z-index: 2;
}

.swrep-lead__fields,
.swrep-lead__form .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.swrep-lead__form .wpcf7-form > .swrep-lead__fields {
  grid-column: 1 / -1;
  width: 100%;
}

.swrep-lead__field,
.swrep-lead__form .wpcf7-form > p {
  min-width: 0;
  margin: 0;
}

.swrep-lead__field label,
.swrep-lead__form .wpcf7-form > p > label {
  display: block;
  margin-bottom: 7px;
  color: var(--swrep-charcoal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 15px;
  text-transform: uppercase;
}

.swrep-lead__form .wpcf7-form-control-wrap {
  display: block;
}

/* CF7 applies automatic paragraph and line-break markup around form tags. */
.swrep-lead__field > p,
.swrep-lead__button-box > p {
  display: contents;
}

.swrep-lead__field br,
.swrep-lead__button-box br,
.swrep-lead__privacy > br {
  display: none;
}

.swrep-lead__form input:not([type="submit"]),
.swrep-lead__form select {
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid rgba(var(--swrep-white-rgb), .88);
  border-bottom-color: rgba(var(--swrep-gray-rgb), .2);
  border-radius: 10px;
  outline: 0;
  padding: 0 15px;
  background-color: var(--swrep-white);
  box-shadow: inset 0 1px 0 rgba(var(--swrep-white-rgb), .94), 0 7px 16px rgba(var(--swrep-black-rgb), .06);
  color: var(--swrep-black);
  font-size: 14px;
  line-height: 48px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.swrep-lead__form input::placeholder {
  color: var(--swrep-gray);
  opacity: 1;
}

.swrep-lead__form input:focus,
.swrep-lead__form select:focus {
  border-color: var(--swrep-gold);
  box-shadow: 0 0 0 3px rgba(var(--swrep-gold-rgb), .16);
}

.swrep-lead__form input:focus-visible,
.swrep-lead__form select:focus-visible {
  border-color: var(--swrep-orange);
  outline: 3px solid var(--swrep-orange);
  outline-offset: 2px;
}

.swrep-lead__form select {
  appearance: none;
  padding-right: 38px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--swrep-orange) 50%),
    linear-gradient(135deg, var(--swrep-orange) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 22px,
    calc(100% - 15px) 22px;
  background-repeat: no-repeat;
  background-size: 4px 4px;
  cursor: pointer;
}

.swrep-lead__form select:required:invalid {
  color: var(--swrep-gray);
}

.swrep-lead__form select option {
  background: var(--swrep-white);
  color: var(--swrep-black);
}

.swrep-lead__button-box {
  position: relative;
  margin-top: 22px;
}

.swrep-lead__button-box .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 12px;
  margin: 0;
  transform: translateY(-50%);
}

.swrep-lead__button-box .wpcf7-submit,
.swrep-lead__form input[type="submit"] {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  background: var(--swrep-orange);
  color: var(--swrep-white);
  font-size: 13px;
  font-weight: 800;
  line-height: 18px;
  white-space: nowrap;
}

.swrep-lead__privacy {
  position: relative;
  grid-column: 1 / -1;
  display: flex;
  width: auto;
  min-width: 0;
  max-width: 100%;
  align-items: center;
  justify-self: start;
  gap: 7px;
  margin: -1px 0 0;
  border-radius: 999px;
  padding: 3px 9px;
  background: rgba(var(--swrep-white-rgb), .94);
  color: var(--swrep-charcoal);
  font-size: 11px;
  line-height: 16px;
  z-index: 2;
}

.swrep-lead__privacy [data-swrep-icon] {
  color: var(--swrep-success);
  font-size: 10px;
}

.swrep-lead__form .wpcf7-response-output,
.swrep-lead__form .wpcf7-spinner {
  grid-column: 1 / -1;
}

.swrep-lead__form .wpcf7-form .wpcf7-response-output {
  margin: 0;
  border: 1px solid rgba(var(--swrep-orange-rgb), .28);
  border-radius: 10px;
  padding: 11px 14px;
  background: rgba(var(--swrep-orange-rgb), .06);
  color: var(--swrep-charcoal);
  font-size: 13px;
  line-height: 20px;
}

.swrep-lead__form .wpcf7-form.sent .wpcf7-response-output {
  border-color: rgba(46, 107, 69, .35);
  background: rgba(46, 107, 69, .08);
}

.swrep-lead__form .wpcf7-not-valid-tip {
  margin-top: 4px;
  color: var(--swrep-orange);
  font-size: 11px;
  line-height: 14px;
}

/* Modal shell */
.swrep-mobile-nav,
.swrep-search,
.swrep-chat__panel {
  position: fixed;
  inset: 0;
  z-index: 10020;
}

.swrep-mobile-nav[hidden],
.swrep-search[hidden],
.swrep-chat__panel[hidden] {
  display: none;
}

.swrep-mobile-nav__overlay,
.swrep-search__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(var(--swrep-black-rgb), .8);
}

.swrep-mobile-nav__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 420px);
  overflow-y: auto;
  padding: 42px 30px;
  background: var(--swrep-black);
  color: rgba(var(--swrep-white-rgb), .75);
  box-shadow: -15px 0 45px rgba(var(--swrep-black-rgb), .3);
}

.swrep-mobile-nav__close,
.swrep-search__close,
.swrep-chat__close {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--swrep-white);
  font-size: 20px;
}

.swrep-mobile-nav__close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.swrep-brand--mobile .swrep-brand__wordmark,
.swrep-brand--footer .swrep-brand__wordmark {
  color: var(--swrep-white);
}

.swrep-brand--mobile .swrep-brand__wordmark-accent,
.swrep-brand--footer .swrep-brand__wordmark-accent {
  color: #d4af37;
}

.swrep-mobile-nav__brand {
  margin-bottom: 32px;
}

.swrep-mobile-nav__menu li {
  border-bottom: 1px solid rgba(var(--swrep-white-rgb), .12);
}

.swrep-mobile-nav__menu a {
  display: block;
  padding: 12px 0;
  color: var(--swrep-white);
  font-family: var(--swrep-heading-font);
  font-weight: 600;
}

.swrep-mobile-nav__contact {
  margin-top: 32px;
}

.swrep-mobile-nav__contact li,
.swrep-footer__contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.swrep-mobile-nav__contact a {
  color: rgba(var(--swrep-white-rgb), .75);
}

.swrep-mobile-nav__social,
.swrep-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.swrep-mobile-nav__social-item,
.swrep-footer__social-item {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(var(--swrep-white-rgb), .15);
  color: var(--swrep-white);
  font-size: 15px;
}

.swrep-search {
  background: var(--swrep-orange);
}

.swrep-search__overlay {
  background: transparent;
}

.swrep-search__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.swrep-search__close {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  background: rgba(var(--swrep-white-rgb), .15);
  font-size: 26px;
}

.swrep-search__form {
  position: relative;
  width: 100%;
  max-width: 700px;
}

.swrep-search__field {
  display: flex;
  height: 70px;
}

.swrep-search__input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 20px;
  background: var(--swrep-white);
  color: var(--swrep-black);
  font-size: 18px;
}

.swrep-search__submit {
  display: flex;
  width: 70px;
  flex: 0 0 70px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--swrep-black);
  color: var(--swrep-white);
  font-size: 22px;
}

.swrep-chat__form input,
.swrep-chat__form textarea {
  width: 100%;
  margin-top: 12px;
  border: 1px solid rgba(var(--swrep-white-rgb), .2);
  outline: 0;
  padding: 13px 15px;
  background: rgba(var(--swrep-white-rgb), .07);
  color: var(--swrep-white);
}

.swrep-chat__form textarea {
  min-height: 110px;
  resize: vertical;
}

.swrep-search__input:focus-visible,
.swrep-chat__form input:focus-visible,
.swrep-chat__form textarea:focus-visible {
  outline: 3px solid var(--swrep-orange);
  outline-offset: -3px;
}

.swrep-chat {
  position: fixed;
  right: 16px;
  bottom: 35px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  z-index: 10010;
}

body.swrep-parity-shell .swrep-chat__trigger {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 50%;
  padding: 1px 6px;
  background: var(--swrep-gold);
  color: var(--swrep-white);
  box-shadow: 0 10px 24px rgba(var(--swrep-black-rgb), .22);
  font-family: var(--swrep-font);
  font-size: 30px;
  font-weight: 300;
  line-height: 47px;
  text-align: center;
  z-index: 1;
}

.swrep-chat__trigger::before {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(var(--swrep-gold-rgb), .2);
  content: "";
  z-index: -1;
}

.swrep-chat__plus {
  display: block;
  line-height: 42px;
  transition: transform 220ms ease;
}

.swrep-chat__trigger:hover .swrep-chat__plus,
.swrep-chat__trigger:focus-visible .swrep-chat__plus {
  transform: rotate(90deg);
}

.swrep-chat__panel {
  inset: auto 30px 95px auto;
  width: min(390px, calc(100vw - 32px));
  height: auto;
}

.swrep-chat__inner {
  position: relative;
  padding: 35px;
  background: var(--swrep-black);
  color: rgba(var(--swrep-white-rgb), .75);
  box-shadow: 0 18px 60px rgba(var(--swrep-black-rgb), .3);
}

.swrep-chat__inner h2 {
  color: var(--swrep-white) !important;
  font-size: 24px;
}

.swrep-chat__close {
  position: absolute;
  top: 8px;
  right: 8px;
}

.swrep-scroll {
  position: fixed;
  right: -12px;
  bottom: 145px;
  display: flex;
  align-items: center;
  color: var(--swrep-gold);
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg) translateX(-10px);
  transform-origin: center;
  transition: opacity 300ms ease, visibility 300ms ease, transform 300ms ease;
  z-index: 999;
}

.swrep-scroll.is-visible {
  opacity: 1;
  visibility: visible;
  transform: rotate(-90deg) translateX(0);
}

.swrep-scroll__wrapper {
  display: block;
  width: 50px;
  height: 1px;
  margin-right: 10px;
  background: rgba(var(--swrep-gold-rgb), .4);
}

.swrep-scroll__inner {
  display: block;
  width: var(--swrep-scroll-progress, 0%);
  height: 1px;
  background: var(--swrep-gold);
}

.swrep-scroll__text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Footer */
.swrep-footer {
  position: relative;
  overflow: hidden;
  background: var(--swrep-black);
  color: rgba(var(--swrep-white-rgb), .7);
  z-index: 1;
}

.swrep-footer__newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 110px 0 73px;
}

.swrep-footer__newsletter-title {
  color: var(--swrep-white) !important;
  font-size: 35px;
  font-weight: 600;
  line-height: 1.3em;
}

.swrep-footer__newsletter-form {
  display: flex;
  width: 100%;
  max-width: 550px;
  align-items: center;
  gap: 10px;
}

.swrep-footer__newsletter-field {
  width: 100%;
  max-width: 389px;
}

.swrep-footer__newsletter input[type="email"] {
  width: 100%;
  height: 50px;
  border: 0;
  outline: 0;
  padding: 0 20px;
  background: rgba(var(--swrep-white-rgb), .1);
  color: rgba(var(--swrep-white-rgb), .7);
}

.swrep-footer__newsletter-button {
  background: var(--swrep-orange);
}

.swrep-footer__newsletter-form--fallback {
  justify-content: flex-end;
}

.swrep-footer__newsletter-form--fallback .swrep-footer__newsletter-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
}

.swrep-footer__middle {
  padding-bottom: 80px;
}

.swrep-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.swrep-footer__brand {
  margin-top: 5px;
}

.swrep-footer__about-text {
  margin-top: 20px;
  margin-bottom: 22px;
}

.swrep-footer__social {
  padding-top: 20px;
  border-top: 1px dashed rgba(var(--swrep-white-rgb), .2);
}

.swrep-footer__title {
  margin-bottom: 25px;
  color: var(--swrep-white) !important;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  text-transform: capitalize;
}

.swrep-footer__menu li + li,
.swrep-footer__service-list li + li {
  margin-top: 12px;
}

.swrep-footer__menu a,
.swrep-footer__service-list a,
.swrep-footer__contact-list a {
  color: rgba(var(--swrep-white-rgb), .7);
  transition: color 300ms ease;
}

.swrep-footer__menu a:hover,
.swrep-footer__service-list a:hover,
.swrep-footer__contact-list a:hover,
.swrep-footer__legal-menu a:hover {
  color: var(--swrep-bright-gold);
}

.swrep-footer__contact-list [data-swrep-icon] {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  padding: 9px;
  border-radius: 5px;
  background: rgba(var(--swrep-white-rgb), .15);
  color: var(--swrep-white);
  -webkit-mask-size: 16px;
  mask-size: 16px;
}

.swrep-footer__bottom {
  border-top: 1px dashed rgba(var(--swrep-white-rgb), .2);
}

.swrep-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 26px 0 25px;
}

.swrep-footer__copyright {
  margin: 0;
}

.swrep-footer__legal-menu {
  display: flex;
  align-items: center;
}

.swrep-footer__legal-menu li + li {
  margin-left: 30px;
}

.swrep-footer__legal-menu a {
  color: rgba(var(--swrep-white-rgb), .7);
}

@media (max-width: 1600px) and (min-width: 1200px) {
  .swrep-header__topbar-inner,
  .swrep-header__nav-inner {
    padding-right: 25px;
    padding-left: 25px;
  }

  .swrep-header__welcome,
  .swrep-header__action--phone {
    display: none;
  }

  .swrep-header__contact-item + .swrep-header__contact-item {
    margin-left: 20px;
  }

  .swrep-header__contact-item + .swrep-header__contact-item::before {
    left: -10px;
  }
}

@media (max-width: 1199px) {
  body.swrep-lead-in-view .swrep-chat:not(:focus-within) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
  }

  body.swrep-lead-in-view .swrep-scroll:not(:focus-visible) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .swrep-header__topbar-inner,
  .swrep-header__nav-inner {
    padding-right: 15px;
    padding-left: 15px;
  }

  .swrep-header__welcome,
  .swrep-header__contact-item:nth-child(3) {
    display: none;
  }

  .swrep-header__nav-inner {
    height: 55px;
    min-height: 55px;
  }

  .swrep-header__menu-box {
    position: static;
    margin-left: auto;
    transform: none;
  }

  .swrep-header__menu-list {
    display: none;
  }

  .swrep-header__mobile-toggle {
    display: flex;
  }

  .swrep-header__actions {
    gap: 12px;
    margin-left: 12px;
  }

  .swrep-header__action--phone,
  .swrep-header__action--search {
    display: none;
  }

  .swrep-header__action--email {
    width: 44px;
    height: 44px;
  }

  .swrep-header__cta {
    min-height: 44px;
    padding: 14px 30px;
  }

  .swrep-lead__layout {
    grid-template-columns: 1fr;
  }

  .swrep-lead__left {
    padding: 28px 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(var(--swrep-gray-rgb), .12);
    border-radius: 14px 14px 0 0;
  }

  .swrep-lead__title,
  .swrep-lead__text {
    max-width: 620px;
  }

  .swrep-lead__right {
    border-radius: 0 0 14px 14px;
  }

  .swrep-lead__fields,
  .swrep-lead__form .wpcf7-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .swrep-footer__newsletter {
    flex-direction: column;
    text-align: center;
  }

  .swrep-footer__newsletter-title {
    margin-bottom: 20px;
  }

  .swrep-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 45px;
  }
}

@media (max-width: 991px) {
  .swrep-header__topbar {
    display: none;
  }

  .swrep-header__actions {
    display: none;
  }

  .swrep-hero__title {
    font-size: 55px;
  }
}

@media (max-width: 767px) {
  .swrep-header__brand {
    padding: 6.5px 24px 6.5px 0;
  }

  .swrep-header__mobile-toggle {
    width: 17.5px;
    height: 24px;
    padding: 0;
    font-size: 20px;
  }

  .swrep-header__mobile-toggle [data-swrep-icon] {
    width: 17.5px;
    height: 20px;
    flex-basis: 17.5px;
  }

  .swrep-hero__content {
    padding-top: 96px;
    padding-bottom: 165px;
  }

  .swrep-hero__title {
    font-size: 35px;
  }

  .swrep-hero__title br,
  .swrep-hero__text br {
    display: none;
  }

  .swrep-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  #swrep-hero-pagination {
    bottom: 62px;
    gap: 16px;
    padding: 10px 17px;
  }

  .swrep-lead {
    margin-top: -38px;
  }

  .swrep-lead__wrap {
    border-radius: 14px;
  }

  .swrep-lead__left {
    padding: 25px 22px 24px;
    border-radius: 10px 10px 0 0;
  }

  .swrep-lead__title {
    font-size: 25px;
    line-height: 1.18;
  }

  .swrep-lead__text {
    margin-top: 9px;
  }

  .swrep-lead__right {
    padding: 23px 20px 21px;
    border-radius: 0 0 10px 10px;
  }

  .swrep-lead__skyline {
    display: none;
  }

  .swrep-lead__fields,
  .swrep-lead__form .wpcf7-form {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .swrep-lead__button-box {
    margin-top: 0;
  }

  .swrep-lead__privacy {
    align-items: flex-start;
  }

  .swrep-scroll {
    display: none !important;
  }

  .swrep-chat {
    right: 16px;
    bottom: max(80px, calc(100vh - 718px));
  }

  .swrep-chat__panel {
    right: 16px;
    bottom: max(141px, calc(100vh - 657px));
  }

  .swrep-footer__newsletter {
    padding: 73px 0 65px;
  }

  .swrep-footer__newsletter-title {
    font-size: 25px;
  }

  .swrep-footer__newsletter-form {
    flex-direction: column;
  }

  .swrep-footer__newsletter-field {
    max-width: none;
  }

  .swrep-footer__grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .swrep-footer__bottom-inner,
  .swrep-footer__legal-menu {
    flex-direction: column;
    text-align: center;
  }

  .swrep-footer__legal-menu {
    margin-top: 10px;
  }

  .swrep-footer__legal-menu li + li {
    margin-top: 5px;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
