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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  background-color: white;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
}

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

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}
.page-wrapper .site-footer {
  margin-top: auto;
}

.container {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 1rem;
  width: 100%;
}

.site-video-bg {
  height: 100vh;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -2;
}
.site-video-bg video {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.site-video-bg .site-video-overlay {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.topbar {
  background: #000;
  color: #f7f5f0;
  position: relative;
  transition: transform 0.35s ease;
  z-index: 1001;
}
.topbar.is-hidden {
  transform: translateY(-100%);
}
.topbar .topbar-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 44px;
}
@media (max-width: 767.98px) {
  .topbar .topbar-inner {
    justify-content: center;
    min-height: 40px;
  }
}
.topbar .topbar-inner .topbar-social {
  align-items: center;
  display: flex;
  gap: 22px;
}
@media (max-width: 767.98px) {
  .topbar .topbar-inner .topbar-social {
    display: none;
  }
}
.topbar .topbar-inner .topbar-social a {
  color: #f7f5f0;
  font-size: 15px;
  font-weight: 700;
  line-height: 0.5;
  text-decoration: none;
}
.topbar .topbar-inner .topbar-social a svg {
  height: 20px;
  width: 20px;
}
.topbar .topbar-inner .topbar-social a svg path {
  fill: white;
}
.topbar .topbar-inner .topbar-social a:hover, .topbar .topbar-inner .topbar-social a:focus {
  color: #e0c273;
}
.topbar .topbar-inner .topbar-contact {
  align-items: center;
  display: flex;
  gap: 18px;
}
@media (max-width: 575.98px) {
  .topbar .topbar-inner .topbar-contact {
    gap: 10px;
  }
}
.topbar .topbar-inner .topbar-contact a {
  color: #f7f5f0;
  font-size: 16px;
  text-decoration: none;
}
@media (max-width: 575.98px) {
  .topbar .topbar-inner .topbar-contact a {
    font-size: 13px;
  }
}
.topbar .topbar-inner .topbar-contact a:hover, .topbar .topbar-inner .topbar-contact a:focus {
  color: #e0c273;
}
.topbar .topbar-inner .topbar-contact span {
  background: #c8a24a;
  display: block;
  height: 18px;
  width: 1px;
}
@media (max-width: 575.98px) {
  .topbar .topbar-inner .topbar-contact span {
    height: 14px;
  }
}

.site-header {
  left: 0;
  position: absolute;
  right: 0;
  top: 44px;
  z-index: 1000;
}
@media (max-width: 1199.98px) {
  .site-header {
    background-color: transparent;
  }
}
@media (max-width: 767.98px) {
  .site-header {
    top: 40px;
  }
}
.site-header.is-menu-open {
  background: rgba(6, 21, 42, 0.96);
}
.site-header.is-menu-open .mobile-menu {
  max-height: 620px;
  opacity: 1;
  visibility: visible;
}
.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.site-header.is-fixed {
  background: rgba(6, 21, 42, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  position: fixed;
  top: 0;
}
.site-header.is-fixed .site-header-inner {
  min-height: 78px;
}
@media (max-width: 1199.98px) {
  .site-header.is-fixed .site-header-inner {
    min-height: 70px;
  }
}
@media (max-width: 575.98px) {
  .site-header.is-fixed .site-header-inner {
    min-height: 64px;
  }
}
.site-header.is-fixed .site-header-inner .site-header-inner-top .site-header-inner-top-image {
  display: none;
}
.site-header.is-fixed .site-header-inner .site-header-inner-top .brokerage-box {
  display: none;
}
.site-header.is-fixed .site-header-inner .site-header-inner-top .site-header-inner-menu {
  display: flex;
}
.site-header.is-fixed .site-header-inner .site-header-inner-bottom {
  display: none;
}
.site-header .site-header-inner {
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  display: flex;
  justify-content: space-between;
  min-height: 104px;
  padding: 1rem 0;
}
@media (max-width: 1199.98px) {
  .site-header .site-header-inner {
    min-height: 86px;
  }
}
@media (max-width: 575.98px) {
  .site-header .site-header-inner {
    min-height: 76px;
  }
}
.site-header .site-header-inner .site-header-inner-top-image {
  max-width: 350px;
}
@media (max-width: 1199.98px) {
  .site-header .site-header-inner .site-header-inner-top-image {
    display: none;
  }
}
.site-header .site-header-inner .site-logo {
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  max-width: 150px;
  text-decoration: none;
}
.site-header .site-header-inner .site-logo .site-logo-main {
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 8px;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 1199.98px) {
  .site-header .site-header-inner .site-logo .site-logo-main {
    font-size: 30px;
    letter-spacing: 5px;
  }
}
@media (max-width: 575.98px) {
  .site-header .site-header-inner .site-logo .site-logo-main {
    font-size: 24px;
    letter-spacing: 4px;
  }
}
.site-header .site-header-inner .site-logo .site-logo-sub {
  align-items: center;
  color: #c8a24a;
  display: flex;
  font-family: Georgia, serif;
  font-size: 15px;
  justify-content: center;
  letter-spacing: 9px;
  line-height: 1;
  margin-top: 9px;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .site-header .site-header-inner .site-logo .site-logo-sub {
    font-size: 12px;
    letter-spacing: 6px;
  }
}
@media (max-width: 1199.98px) {
  .site-header .site-header-inner .site-nav {
    display: none;
  }
}
.site-header .site-header-inner .site-nav ul {
  align-items: center;
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .site-header-inner .site-nav a {
  color: #f7f5f0;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out 0s;
}
.site-header .site-header-inner .site-nav a.site-nav-contact {
  align-items: center;
  background-color: transparent;
  border: 2px solid #c8a24a;
  border-radius: 5px;
  display: inline-flex;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  justify-content: center;
  padding: 0.75rem 1.25rem;
}
.site-header .site-header-inner .site-nav a:hover, .site-header .site-header-inner .site-nav a:focus {
  color: #e0c273;
}
.site-header .site-header-inner .site-nav a:hover.site-nav-contact, .site-header .site-header-inner .site-nav a:focus.site-nav-contact {
  background-color: #c8a24a;
  color: #06152a;
}
.site-header .site-header-inner .site-header-cta {
  border: 1px solid #c8a24a;
  color: #c8a24a;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 17px 24px;
  text-decoration: none;
  text-transform: uppercase;
}
@media (max-width: 1199.98px) {
  .site-header .site-header-inner .site-header-cta {
    display: none;
  }
}
.site-header .site-header-inner .site-header-cta:hover, .site-header .site-header-inner .site-header-cta:focus {
  background: #c8a24a;
  color: #06152a;
}
.site-header .site-header-inner .menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 6px;
  margin-left: auto;
  padding: 0;
}
@media (max-width: 1199.98px) {
  .site-header .site-header-inner .menu-toggle {
    display: inline-flex;
  }
}
.site-header .site-header-inner .menu-toggle span {
  background: #f7f5f0;
  display: block;
  height: 2px;
  transition: all 0.25s ease;
  width: 30px;
}
.site-header .mobile-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  visibility: hidden;
}
@media (min-width: 1200px) {
  .site-header .mobile-menu {
    display: none;
  }
}
.site-header .mobile-menu .mobile-nav {
  border-top: 1px solid rgba(222, 217, 206, 0.18);
  display: flex;
  flex-direction: column;
  padding: 18px 0 28px;
}
.site-header .mobile-menu .mobile-nav a {
  color: #f7f5f0;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 14px 0;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header .mobile-menu .mobile-nav a:hover, .site-header .mobile-menu .mobile-nav a:focus {
  color: #e0c273;
}
.site-header .mobile-menu .mobile-nav .mobile-nav-cta {
  border: 1px solid #c8a24a;
  color: #c8a24a;
  justify-content: center;
  margin-top: 14px;
  padding: 16px 20px;
  text-align: center;
}

.site-footer {
  background: #06152a;
  color: #f7f5f0;
  padding: 80px 0 28px;
}
.site-footer .site-footer-top {
  display: grid;
  gap: 50px;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
}
@media (max-width: 991.98px) {
  .site-footer .site-footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575.98px) {
  .site-footer .site-footer-top {
    gap: 36px;
    grid-template-columns: 1fr;
  }
}
.site-footer .site-footer-top .site-footer-brand .footer-logo {
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  max-width: 150px;
  text-decoration: none;
}
.site-footer .site-footer-top .site-footer-brand .footer-logo .footer-logo-main {
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}
.site-footer .site-footer-top .site-footer-brand .footer-logo .footer-logo-sub {
  color: #c8a24a;
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  line-height: 1;
  margin-top: 8px;
  text-transform: uppercase;
}
.site-footer .site-footer-top .site-footer-brand p {
  color: rgba(247, 245, 240, 0.76);
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
  margin: 24px 0 0;
  max-width: 430px;
}
.site-footer .site-footer-top .site-footer-column h3,
.site-footer .site-footer-top .site-footer-contact h3 {
  color: #c8a24a;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.site-footer .site-footer-top .site-footer-column ul,
.site-footer .site-footer-top .site-footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .site-footer-top .site-footer-column a,
.site-footer .site-footer-top .site-footer-contact a {
  color: rgba(247, 245, 240, 0.82);
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.25s ease;
}
.site-footer .site-footer-top .site-footer-column a:hover, .site-footer .site-footer-top .site-footer-column a:focus,
.site-footer .site-footer-top .site-footer-contact a:hover,
.site-footer .site-footer-top .site-footer-contact a:focus {
  color: #e0c273;
}
.site-footer .site-footer-top .site-footer-column p,
.site-footer .site-footer-top .site-footer-contact p {
  color: rgba(247, 245, 240, 0.76);
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 14px;
}
.site-footer .site-footer-middle {
  align-items: center;
  border-bottom: 1px solid rgba(222, 217, 206, 0.16);
  border-top: 1px solid rgba(222, 217, 206, 0.16);
  display: flex;
  justify-content: space-between;
  margin-top: 58px;
  padding: 22px 0;
}
@media (max-width: 767.98px) {
  .site-footer .site-footer-middle {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}
.site-footer .site-footer-middle p {
  color: rgba(247, 245, 240, 0.72);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 1.2px;
  margin: 0;
  text-transform: uppercase;
}
.site-footer .site-footer-middle .footer-social {
  display: flex;
  gap: 20px;
}
@media (max-width: 575.98px) {
  .site-footer .site-footer-middle .footer-social {
    flex-wrap: wrap;
  }
}
.site-footer .site-footer-middle .footer-social a {
  color: rgba(247, 245, 240, 0.72);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
}
.site-footer .site-footer-middle .footer-social a:hover, .site-footer .site-footer-middle .footer-social a:focus {
  color: #e0c273;
}
.site-footer .site-footer-bottom {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
}
@media (max-width: 991.98px) {
  .site-footer .site-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}
.site-footer .site-footer-bottom p {
  color: rgba(247, 245, 240, 0.58);
  font-family: Arial, sans-serif;
  font-size: 13px;
  margin: 0;
}
.site-footer .site-footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  .site-footer .site-footer-bottom ul {
    justify-content: flex-start;
  }
}
.site-footer .site-footer-bottom a {
  color: rgba(247, 245, 240, 0.58);
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-decoration: none;
}
.site-footer .site-footer-bottom a:hover, .site-footer .site-footer-bottom a:focus {
  color: #e0c273;
}

.hero-banner {
  align-items: center;
  display: flex;
  min-height: calc(100vh - 44px);
  overflow: hidden;
  position: relative;
}
@media (max-width: 767.98px) {
  .hero-banner {
    min-height: calc(100vh - 40px);
  }
}
.hero-banner .container {
  position: relative;
  z-index: 3;
}
.hero-banner .hero-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  max-width: 760px;
  min-height: calc(100vh - 44px);
  padding-bottom: 90px;
  padding-top: 190px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .hero-banner .hero-content {
    min-height: calc(100vh - 40px);
    padding-bottom: 70px;
    padding-top: 150px;
  }
}
@media (max-width: 575.98px) {
  .hero-banner .hero-content {
    padding-bottom: 54px;
    padding-top: 132px;
  }
}
.hero-banner .hero-content .hero-person {
  border: 3px solid #c8a24a;
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  flex: 0 0 170px;
  height: 170px;
  margin-bottom: 34px;
  overflow: hidden;
  width: 170px;
}
@media (max-width: 767.98px) {
  .hero-banner .hero-content .hero-person {
    flex-basis: 140px;
    height: 140px;
    margin-bottom: 28px;
    width: 140px;
  }
}
@media (max-width: 575.98px) {
  .hero-banner .hero-content .hero-person {
    flex-basis: 118px;
    height: 118px;
    margin-bottom: 24px;
    width: 118px;
  }
}
.hero-banner .hero-content .hero-person img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  transform: scale(1.2);
}
.hero-banner .hero-content .hero-copy {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 620px;
}
.hero-banner .hero-content .hero-copy .hero-eyebrow {
  color: #e0c273;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 3px;
  margin: 0 0 22px;
  text-align: center;
  text-shadow: 1px 1px #040404;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .hero-banner .hero-content .hero-copy .hero-eyebrow {
    font-size: 13px;
    letter-spacing: 1px;
  }
}
.hero-banner .hero-content .hero-copy h1 {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 75px;
  font-weight: 400;
  letter-spacing: 8px;
  line-height: 0.95;
  margin: 0 0 22px;
  position: relative;
  text-align: center;
  text-shadow: 1px 1px #040404;
  text-transform: uppercase;
}
@media (max-width: 1199.98px) {
  .hero-banner .hero-content .hero-copy h1 {
    font-size: 72px;
  }
}
@media (max-width: 767.98px) {
  .hero-banner .hero-content .hero-copy h1 {
    font-size: 54px;
    letter-spacing: 7px;
  }
}
@media (max-width: 575.98px) {
  .hero-banner .hero-content .hero-copy h1 {
    font-size: 40px;
    letter-spacing: 5px;
  }
}
.hero-banner .hero-content .hero-copy h1 .relator {
  bottom: 0;
  color: #e0c273;
  display: block;
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: 2px;
  padding-top: 5px;
  right: 7px;
  text-transform: uppercase;
}
.hero-banner .hero-content .hero-copy .hero-subtitle {
  color: #f7f5f0;
  font-family: Arial, sans-serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 4px;
  margin: 0 0 18px;
  text-align: center;
  text-shadow: 1px 1px #040404;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .hero-banner .hero-content .hero-copy .hero-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
  }
}
.hero-banner .hero-content .hero-copy .hero-description {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1.35;
  margin: 0 auto 36px;
  max-width: 560px;
  text-align: center;
  text-shadow: 1px 1px #040404;
}
@media (max-width: 767.98px) {
  .hero-banner .hero-content .hero-copy .hero-description {
    font-size: 22px;
  }
}
@media (max-width: 575.98px) {
  .hero-banner .hero-content .hero-copy .hero-description {
    font-size: 19px;
  }
}
.hero-banner .hero-content .hero-copy .hero-actions {
  display: flex;
  gap: 22px;
}
@media (max-width: 575.98px) {
  .hero-banner .hero-content .hero-copy .hero-actions {
    flex-direction: column;
    gap: 14px;
  }
}
.hero-banner .hero-content .hero-copy .hero-actions .hero-btn {
  align-items: center;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 1.6px;
  min-height: 62px;
  padding: 0 34px;
  text-decoration: none;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .hero-banner .hero-content .hero-copy .hero-actions .hero-btn {
    width: 100%;
  }
}
.hero-banner .hero-content .hero-copy .hero-actions .hero-btn-primary {
  background: #c8a24a;
  color: #06152a;
}
.hero-banner .hero-content .hero-copy .hero-actions .hero-btn-primary:hover, .hero-banner .hero-content .hero-copy .hero-actions .hero-btn-primary:focus {
  background: #e0c273;
}
.hero-banner .hero-content .hero-copy .hero-actions .hero-btn-outline {
  border: 1px solid #c8a24a;
  color: #fff;
}
.hero-banner .hero-content .hero-copy .hero-actions .hero-btn-outline:hover, .hero-banner .hero-content .hero-copy .hero-actions .hero-btn-outline:focus {
  background: #c8a24a;
  color: #06152a;
}
.hero-banner .hero-scroll {
  align-items: center;
  bottom: 26px;
  color: #f7f5f0;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  gap: 10px;
  left: 50%;
  letter-spacing: 2px;
  position: absolute;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
  z-index: 4;
}
@media (max-width: 767.98px) {
  .hero-banner .hero-scroll {
    display: none;
  }
}
.hero-banner .hero-scroll i {
  background: #c8a24a;
  display: block;
  height: 44px;
  position: relative;
  width: 1px;
}
.hero-banner .hero-scroll i::after {
  border-bottom: 1px solid #c8a24a;
  border-right: 1px solid #c8a24a;
  bottom: 0;
  content: "";
  height: 8px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
}

.ai-answer-summary {
  background-color: rgba(247, 245, 240, 0.8);
  padding: 90px 0;
}
@media (max-width: 991px) {
  .ai-answer-summary {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .ai-answer-summary {
    padding: 60px 0;
  }
}
.ai-answer-summary .ai-answer-summary-wrapper {
  margin: 0 auto;
  max-width: 980px;
  text-align: center;
}
.ai-answer-summary .ai-answer-summary-wrapper h2 {
  color: #06152A;
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .ai-answer-summary .ai-answer-summary-wrapper h2 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .ai-answer-summary .ai-answer-summary-wrapper h2 {
    font-size: 30px;
  }
}
.ai-answer-summary .ai-answer-summary-wrapper .summary {
  color: #475467;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.9;
  margin: 0 auto 70px;
  max-width: 820px;
}
@media (max-width: 767px) {
  .ai-answer-summary .ai-answer-summary-wrapper .summary {
    font-size: 17px;
    margin-bottom: 45px;
  }
}
.ai-answer-summary .ai-answer-summary-wrapper .summary-highlights {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .ai-answer-summary .ai-answer-summary-wrapper .summary-highlights {
    grid-template-columns: 1fr;
  }
}
.ai-answer-summary .ai-answer-summary-wrapper .summary-highlights .highlight {
  background: #fff;
  border: 1px solid #DED9CE;
  padding: 40px 34px;
}
@media (max-width: 767px) {
  .ai-answer-summary .ai-answer-summary-wrapper .summary-highlights .highlight {
    padding: 28px 24px;
  }
}
.ai-answer-summary .ai-answer-summary-wrapper .summary-highlights .highlight h3 {
  color: #06152A;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .ai-answer-summary .ai-answer-summary-wrapper .summary-highlights .highlight h3 {
    font-size: 24px;
  }
}

.meet-bill-section {
  background: rgba(247, 245, 240, 0.5);
  padding: 110px 0;
}
@media (max-width: 991.98px) {
  .meet-bill-section {
    padding: 80px 0;
  }
}
.meet-bill-section .meet-bill-wrapper {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}
@media (max-width: 991.98px) {
  .meet-bill-section .meet-bill-wrapper {
    gap: 44px;
    grid-template-columns: 1fr;
  }
}
.meet-bill-section .meet-bill-wrapper .meet-bill-image {
  border: 1px solid rgba(200, 162, 74, 0.55);
  padding: 14px;
  position: relative;
}
.meet-bill-section .meet-bill-wrapper .meet-bill-image::before {
  border: 1px solid rgba(200, 162, 74, 0.35);
  content: "";
  height: calc(100% - 28px);
  left: 28px;
  position: absolute;
  top: 28px;
  width: calc(100% - 28px);
  z-index: 1;
}
.meet-bill-section .meet-bill-wrapper .meet-bill-image img {
  display: block;
  height: 620px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .meet-bill-section .meet-bill-wrapper .meet-bill-image img {
    height: 520px;
  }
}
@media (max-width: 575.98px) {
  .meet-bill-section .meet-bill-wrapper .meet-bill-image img {
    height: 390px;
  }
}
.meet-bill-section .meet-bill-wrapper .meet-bill-content {
  max-width: 720px;
}
.meet-bill-section .meet-bill-wrapper .meet-bill-content .section-eyebrow {
  color: black;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.4px;
  margin: 0 0 18px;
  text-shadow: 1px 1px #fff;
  text-transform: uppercase;
}
.meet-bill-section .meet-bill-wrapper .meet-bill-content h2 {
  color: #06152a;
  font-family: Georgia, serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 28px;
  text-shadow: 1px 1px #fff;
}
@media (max-width: 767.98px) {
  .meet-bill-section .meet-bill-wrapper .meet-bill-content h2 {
    font-size: 42px;
  }
}
@media (max-width: 575.98px) {
  .meet-bill-section .meet-bill-wrapper .meet-bill-content h2 {
    font-size: 34px;
  }
}
.meet-bill-section .meet-bill-wrapper .meet-bill-content p {
  color: #1a2433;
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.75;
  margin: 0 0 20px;
}
.meet-bill-section .meet-bill-wrapper .meet-bill-content .credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.meet-bill-section .meet-bill-wrapper .meet-bill-content .credential-list span {
  border: 1px solid rgba(200, 162, 74, 0.55);
  color: #06152a;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 12px 16px;
  text-transform: uppercase;
}
.meet-bill-section .meet-bill-wrapper .meet-bill-content .brokerage-box {
  align-items: center;
  background: #06152a;
  border: 1px solid rgba(200, 162, 74, 0.45);
  border-radius: 2px;
  display: flex;
  gap: 22px;
  margin-top: 34px;
  padding: 22px;
}
@media (max-width: 575.98px) {
  .meet-bill-section .meet-bill-wrapper .meet-bill-content .brokerage-box {
    align-items: flex-start;
    flex-direction: column;
  }
}
.meet-bill-section .meet-bill-wrapper .meet-bill-content .brokerage-box img {
  background: #000;
  display: block;
  max-width: 260px;
  width: 100%;
}
@media (max-width: 575.98px) {
  .meet-bill-section .meet-bill-wrapper .meet-bill-content .brokerage-box img {
    max-width: 100%;
  }
}
.meet-bill-section .meet-bill-wrapper .meet-bill-content .brokerage-box div strong {
  color: #fff;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.meet-bill-section .meet-bill-wrapper .meet-bill-content .brokerage-box div span {
  color: rgba(247, 245, 240, 0.75);
  display: block;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.meet-bill-section .meet-bill-wrapper .meet-bill-content .meet-bill-actions {
  display: flex;
  gap: 18px;
  margin-top: 38px;
}
@media (max-width: 575.98px) {
  .meet-bill-section .meet-bill-wrapper .meet-bill-content .meet-bill-actions {
    flex-direction: column;
  }
}
.meet-bill-section .meet-bill-wrapper .meet-bill-content .meet-bill-actions .meet-bill-btn {
  align-items: center;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 1.4px;
  min-height: 56px;
  padding: 0 28px;
  text-decoration: none;
  text-transform: uppercase;
}
.meet-bill-section .meet-bill-wrapper .meet-bill-content .meet-bill-actions .meet-bill-btn-primary {
  background: #c8a24a;
  color: #06152a;
}
.meet-bill-section .meet-bill-wrapper .meet-bill-content .meet-bill-actions .meet-bill-btn-primary:hover, .meet-bill-section .meet-bill-wrapper .meet-bill-content .meet-bill-actions .meet-bill-btn-primary:focus {
  background: #e0c273;
}
.meet-bill-section .meet-bill-wrapper .meet-bill-content .meet-bill-actions .meet-bill-btn-outline {
  border: 1px solid #06152a;
  color: #06152a;
}
.meet-bill-section .meet-bill-wrapper .meet-bill-content .meet-bill-actions .meet-bill-btn-outline:hover, .meet-bill-section .meet-bill-wrapper .meet-bill-content .meet-bill-actions .meet-bill-btn-outline:focus {
  background: #06152a;
  color: #fff;
}

.action-tiles-section {
  background: rgba(6, 21, 42, 0.6);
  padding: 100px 0;
}
@media (max-width: 991.98px) {
  .action-tiles-section {
    padding: 80px 0;
  }
}
.action-tiles-section .section-heading {
  margin: 0 auto 54px;
  max-width: 780px;
  text-align: center;
}
.action-tiles-section .section-heading .section-eyebrow {
  color: #c8a24a;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.4px;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.action-tiles-section .section-heading h2 {
  color: #f7f5f0;
  font-family: Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.12;
  margin: 0;
  text-shadow: 1px 1px #040404;
}
@media (max-width: 767.98px) {
  .action-tiles-section .section-heading h2 {
    font-size: 40px;
  }
}
@media (max-width: 575.98px) {
  .action-tiles-section .section-heading h2 {
    font-size: 34px;
  }
}
.action-tiles-section .action-tiles-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991.98px) {
  .action-tiles-section .action-tiles-grid {
    grid-template-columns: 1fr;
  }
}
.action-tiles-section .action-tiles-grid .action-tile {
  background: rgba(247, 245, 240, 0.06);
  border: 1px solid rgba(222, 217, 206, 0.18);
  border-radius: 10px;
  color: #f7f5f0;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 38px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 575.98px) {
  .action-tiles-section .action-tiles-grid .action-tile {
    min-height: auto;
    padding: 30px 24px;
  }
}
.action-tiles-section .action-tiles-grid .action-tile:hover, .action-tiles-section .action-tiles-grid .action-tile:focus {
  background: rgba(247, 245, 240, 0.1);
  border-color: rgba(200, 162, 74, 0.75);
  transform: translateY(-6px);
}
.action-tiles-section .action-tiles-grid .action-tile:hover .action-tile-link, .action-tiles-section .action-tiles-grid .action-tile:focus .action-tile-link {
  color: #e0c273;
}
.action-tiles-section .action-tiles-grid .action-tile .action-tile-number {
  color: #c8a24a;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 40px;
}
.action-tiles-section .action-tiles-grid .action-tile h3 {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 18px;
  text-shadow: 1px 1px #040404;
}
.action-tiles-section .action-tiles-grid .action-tile p {
  color: rgba(247, 245, 240, 0.74);
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}
.action-tiles-section .action-tiles-grid .action-tile .action-tile-link {
  color: #c8a24a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  margin-top: auto;
  padding-top: 34px;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.neighborhood-section {
  background: rgba(6, 21, 42, 0.3);
  padding: 110px 0;
}
@media (max-width: 991.98px) {
  .neighborhood-section {
    padding: 80px 0;
  }
}
.neighborhood-section .section-heading {
  margin: 0 auto 60px;
  max-width: 820px;
  text-align: center;
}
.neighborhood-section .section-heading .section-eyebrow {
  color: #c8a24a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.neighborhood-section .section-heading h2 {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 20px;
}
@media (max-width: 767.98px) {
  .neighborhood-section .section-heading h2 {
    font-size: 42px;
  }
}
@media (max-width: 575.98px) {
  .neighborhood-section .section-heading h2 {
    font-size: 34px;
  }
}
.neighborhood-section .section-heading p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 19px;
  line-height: 1.8;
  margin: 0;
}
.neighborhood-section .neighborhood-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991.98px) {
  .neighborhood-section .neighborhood-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .neighborhood-section .neighborhood-grid {
    grid-template-columns: 1fr;
  }
}
.neighborhood-section .neighborhood-grid .neighborhood-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 36px;
  position: relative;
  text-decoration: none;
  transition: 0.35s;
}
.neighborhood-section .neighborhood-grid .neighborhood-card::before {
  background: linear-gradient(180deg, #c8a24a, #8f6a1d);
  content: "";
  height: 60px;
  left: 0;
  position: absolute;
  top: 0;
  width: 2px;
  transition: 0.35s;
}
.neighborhood-section .neighborhood-grid .neighborhood-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 162, 74, 0.4);
  transform: translateY(-8px);
}
.neighborhood-section .neighborhood-grid .neighborhood-card:hover::before {
  height: 100%;
}
.neighborhood-section .neighborhood-grid .neighborhood-card:hover .arrow {
  transform: translateX(8px);
}
.neighborhood-section .neighborhood-grid .neighborhood-card .card-number {
  color: #c8a24a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 38px;
}
.neighborhood-section .neighborhood-grid .neighborhood-card h3 {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 18px;
}
.neighborhood-section .neighborhood-grid .neighborhood-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
}
.neighborhood-section .neighborhood-grid .neighborhood-card .card-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 36px;
}
.neighborhood-section .neighborhood-grid .neighborhood-card .card-footer span:first-child {
  color: #c8a24a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.neighborhood-section .neighborhood-grid .neighborhood-card .card-footer .arrow {
  color: #c8a24a;
  font-size: 24px;
  transition: 0.3s;
}
.neighborhood-section .neighborhood-grid .neighborhood-card.neighborhood-card-highlight {
  background: #c8a24a;
  border-color: #c8a24a;
}
.neighborhood-section .neighborhood-grid .neighborhood-card.neighborhood-card-highlight::before {
  display: none;
}
.neighborhood-section .neighborhood-grid .neighborhood-card.neighborhood-card-highlight h3,
.neighborhood-section .neighborhood-grid .neighborhood-card.neighborhood-card-highlight p,
.neighborhood-section .neighborhood-grid .neighborhood-card.neighborhood-card-highlight .card-number {
  color: #06152a;
}
.neighborhood-section .neighborhood-grid .neighborhood-card.neighborhood-card-highlight .highlight-link {
  color: #06152a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: auto;
  padding-top: 36px;
  text-transform: uppercase;
}

.featured-guides-section {
  background: rgba(247, 245, 240, 0.2);
  padding: 110px 0;
}
@media (max-width: 991.98px) {
  .featured-guides-section {
    padding: 80px 0;
  }
}
.featured-guides-section .section-heading {
  margin: 0 auto 60px;
  max-width: 820px;
  text-align: center;
}
.featured-guides-section .section-heading .section-eyebrow {
  color: #c8a24a;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.6px;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.featured-guides-section .section-heading h2 {
  color: #06152a;
  font-family: Georgia, serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 22px;
}
@media (max-width: 767.98px) {
  .featured-guides-section .section-heading h2 {
    font-size: 42px;
  }
}
@media (max-width: 575.98px) {
  .featured-guides-section .section-heading h2 {
    font-size: 34px;
  }
}
.featured-guides-section .section-heading p {
  color: #1a2433;
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 720px;
}
.featured-guides-section .featured-guides-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: repeat(2, minmax(260px, auto));
}
@media (max-width: 991.98px) {
  .featured-guides-section .featured-guides-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}
@media (max-width: 575.98px) {
  .featured-guides-section .featured-guides-grid {
    grid-template-columns: 1fr;
  }
}
.featured-guides-section .featured-guides-grid .guide-card {
  background: #fff;
  border: 1px solid #ded9ce;
  color: #06152a;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 34px;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 575.98px) {
  .featured-guides-section .featured-guides-grid .guide-card {
    min-height: auto;
    padding: 28px 24px;
  }
}
.featured-guides-section .featured-guides-grid .guide-card::before {
  background: #c8a24a;
  content: "";
  height: 3px;
  left: 34px;
  position: absolute;
  top: 0;
  transition: width 0.3s ease;
  width: 54px;
}
@media (max-width: 575.98px) {
  .featured-guides-section .featured-guides-grid .guide-card::before {
    left: 24px;
  }
}
.featured-guides-section .featured-guides-grid .guide-card:hover, .featured-guides-section .featured-guides-grid .guide-card:focus {
  border-color: rgba(200, 162, 74, 0.75);
  box-shadow: 0 24px 60px rgba(6, 21, 42, 0.1);
  transform: translateY(-6px);
}
.featured-guides-section .featured-guides-grid .guide-card:hover::before, .featured-guides-section .featured-guides-grid .guide-card:focus::before {
  width: calc(100% - 68px);
}
@media (max-width: 575.98px) {
  .featured-guides-section .featured-guides-grid .guide-card:hover::before, .featured-guides-section .featured-guides-grid .guide-card:focus::before {
    width: calc(100% - 48px);
  }
}
.featured-guides-section .featured-guides-grid .guide-card:hover .guide-link, .featured-guides-section .featured-guides-grid .guide-card:focus .guide-link {
  color: #06152a;
}
.featured-guides-section .featured-guides-grid .guide-card.guide-card-large {
  background: #06152a;
  border-color: #06152a;
  color: #fff;
  grid-row: span 2;
  min-height: 544px;
}
@media (max-width: 991.98px) {
  .featured-guides-section .featured-guides-grid .guide-card.guide-card-large {
    grid-column: span 2;
    grid-row: auto;
    min-height: 360px;
  }
}
@media (max-width: 575.98px) {
  .featured-guides-section .featured-guides-grid .guide-card.guide-card-large {
    grid-column: span 1;
    min-height: auto;
  }
}
.featured-guides-section .featured-guides-grid .guide-card.guide-card-large h3,
.featured-guides-section .featured-guides-grid .guide-card.guide-card-large p {
  color: #fff;
}
.featured-guides-section .featured-guides-grid .guide-card.guide-card-large p {
  color: rgba(247, 245, 240, 0.78);
}
.featured-guides-section .featured-guides-grid .guide-card.guide-card-large .guide-link {
  color: #e0c273;
}
.featured-guides-section .featured-guides-grid .guide-card .guide-category {
  color: #c8a24a;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 36px;
  text-transform: uppercase;
}
.featured-guides-section .featured-guides-grid .guide-card h3 {
  color: #06152a;
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.18;
  margin: 0 0 18px;
}
@media (max-width: 575.98px) {
  .featured-guides-section .featured-guides-grid .guide-card h3 {
    font-size: 28px;
  }
}
.featured-guides-section .featured-guides-grid .guide-card p {
  color: #1a2433;
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}
.featured-guides-section .featured-guides-grid .guide-card .guide-link {
  color: #c8a24a;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  margin-top: auto;
  padding-top: 34px;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.why-bill-section {
  background: rgba(247, 245, 240, 0.4);
  padding: 110px 0;
}
@media (max-width: 991.98px) {
  .why-bill-section {
    padding: 80px 0;
  }
}
.why-bill-section .why-bill-wrapper {
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}
@media (max-width: 991.98px) {
  .why-bill-section .why-bill-wrapper {
    gap: 44px;
    grid-template-columns: 1fr;
  }
}
.why-bill-section .why-bill-wrapper .why-bill-content {
  position: sticky;
  top: 120px;
}
@media (max-width: 991.98px) {
  .why-bill-section .why-bill-wrapper .why-bill-content {
    position: static;
  }
}
.why-bill-section .why-bill-wrapper .why-bill-content .section-eyebrow {
  color: #c8a24a;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.6px;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.why-bill-section .why-bill-wrapper .why-bill-content h2 {
  color: #06152a;
  font-family: Georgia, serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 24px;
}
@media (max-width: 767.98px) {
  .why-bill-section .why-bill-wrapper .why-bill-content h2 {
    font-size: 42px;
  }
}
@media (max-width: 575.98px) {
  .why-bill-section .why-bill-wrapper .why-bill-content h2 {
    font-size: 34px;
  }
}
.why-bill-section .why-bill-wrapper .why-bill-content p {
  color: #1a2433;
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.75;
  margin: 0;
}
.why-bill-section .why-bill-wrapper .why-bill-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 575.98px) {
  .why-bill-section .why-bill-wrapper .why-bill-grid {
    grid-template-columns: 1fr;
  }
}
.why-bill-section .why-bill-wrapper .why-bill-grid .why-bill-card {
  background: #fff;
  border: 1px solid #ded9ce;
  min-height: 300px;
  padding: 34px;
  transition: all 0.3s ease;
}
@media (max-width: 575.98px) {
  .why-bill-section .why-bill-wrapper .why-bill-grid .why-bill-card {
    min-height: auto;
    padding: 28px 24px;
  }
}
.why-bill-section .why-bill-wrapper .why-bill-grid .why-bill-card:hover {
  border-color: rgba(200, 162, 74, 0.75);
  box-shadow: 0 24px 60px rgba(6, 21, 42, 0.1);
  transform: translateY(-6px);
}
.why-bill-section .why-bill-wrapper .why-bill-grid .why-bill-card span {
  color: #c8a24a;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 42px;
}
.why-bill-section .why-bill-wrapper .why-bill-grid .why-bill-card h3 {
  color: #06152a;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.18;
  margin: 0 0 18px;
}
@media (max-width: 575.98px) {
  .why-bill-section .why-bill-wrapper .why-bill-grid .why-bill-card h3 {
    font-size: 26px;
  }
}
.why-bill-section .why-bill-wrapper .why-bill-grid .why-bill-card p {
  color: #1a2433;
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.stats-section {
  background: rgba(6, 21, 42, 0.3);
  padding: 100px 0;
}
@media (max-width: 991.98px) {
  .stats-section {
    padding: 80px 0;
  }
}
.stats-section .stats-wrapper {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}
@media (max-width: 991.98px) {
  .stats-section .stats-wrapper {
    gap: 48px;
    grid-template-columns: 1fr;
  }
}
.stats-section .stats-wrapper .stats-content .section-eyebrow {
  color: #c8a24a;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.6px;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.stats-section .stats-wrapper .stats-content h2 {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 24px;
}
@media (max-width: 767.98px) {
  .stats-section .stats-wrapper .stats-content h2 {
    font-size: 42px;
  }
}
@media (max-width: 575.98px) {
  .stats-section .stats-wrapper .stats-content h2 {
    font-size: 34px;
  }
}
.stats-section .stats-wrapper .stats-content p {
  color: rgba(247, 245, 240, 0.76);
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.75;
  margin: 0;
  max-width: 620px;
}
.stats-section .stats-wrapper .stats-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 575.98px) {
  .stats-section .stats-wrapper .stats-grid {
    grid-template-columns: 1fr;
  }
}
.stats-section .stats-wrapper .stats-grid .stat-card {
  background: rgba(247, 245, 240, 0.06);
  border: 1px solid rgba(222, 217, 206, 0.16);
  min-height: 210px;
  padding: 34px;
  transition: all 0.3s ease;
}
@media (max-width: 575.98px) {
  .stats-section .stats-wrapper .stats-grid .stat-card {
    min-height: auto;
    padding: 28px 24px;
  }
}
.stats-section .stats-wrapper .stats-grid .stat-card:hover {
  background: rgba(247, 245, 240, 0.1);
  border-color: rgba(200, 162, 74, 0.6);
  transform: translateY(-6px);
}
.stats-section .stats-wrapper .stats-grid .stat-card strong {
  color: #c8a24a;
  display: block;
  font-family: Georgia, serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 24px;
}
@media (max-width: 575.98px) {
  .stats-section .stats-wrapper .stats-grid .stat-card strong {
    font-size: 52px;
  }
}
.stats-section .stats-wrapper .stats-grid .stat-card span {
  color: #f7f5f0;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.8px;
  line-height: 1.5;
  text-transform: uppercase;
}

.testimonials-section {
  background: rgba(247, 245, 240, 0.5);
  padding: 110px 0;
}
@media (max-width: 991.98px) {
  .testimonials-section {
    padding: 80px 0;
  }
}
.testimonials-section .section-heading {
  margin: 0 auto 58px;
  max-width: 820px;
  text-align: center;
}
.testimonials-section .section-heading .section-eyebrow {
  color: #c8a24a;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.6px;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.testimonials-section .section-heading h2 {
  color: #06152a;
  font-family: Georgia, serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
@media (max-width: 767.98px) {
  .testimonials-section .section-heading h2 {
    font-size: 42px;
  }
}
@media (max-width: 575.98px) {
  .testimonials-section .section-heading h2 {
    font-size: 34px;
  }
}
.testimonials-section .testimonials-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991.98px) {
  .testimonials-section .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.testimonials-section .testimonials-grid .testimonial-card {
  background: #fff;
  border: 1px solid #ded9ce;
  padding: 38px;
}
@media (max-width: 575.98px) {
  .testimonials-section .testimonials-grid .testimonial-card {
    padding: 30px 24px;
  }
}
.testimonials-section .testimonials-grid .testimonial-card .testimonial-stars {
  color: #c8a24a;
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 28px;
}
.testimonials-section .testimonials-grid .testimonial-card blockquote {
  color: #1a2433;
  font-family: Georgia, serif;
  font-size: 21px;
  line-height: 1.65;
  margin: 0 0 34px;
}
.testimonials-section .testimonials-grid .testimonial-card .testimonial-author {
  border-top: 1px solid #ded9ce;
  padding-top: 22px;
}
.testimonials-section .testimonials-grid .testimonial-card .testimonial-author strong {
  color: #06152a;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.testimonials-section .testimonials-grid .testimonial-card .testimonial-author span {
  color: #6f746f;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 14px;
  margin-top: 7px;
}
.testimonials-section .testimonials-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}
.testimonials-section .testimonials-cta a {
  border: 1px solid #06152a;
  color: #06152a;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  padding: 17px 28px;
  text-decoration: none;
  text-transform: uppercase;
}
.testimonials-section .testimonials-cta a:hover, .testimonials-section .testimonials-cta a:focus {
  background: #06152a;
  color: #fff;
}

.home-faq-section {
  background-color: #06152A;
  padding: 110px 0;
}
@media (max-width: 991px) {
  .home-faq-section {
    padding: 85px 0;
  }
}
@media (max-width: 767px) {
  .home-faq-section {
    padding: 65px 0;
  }
}
.home-faq-section .home-faq-wrapper {
  display: grid;
  gap: 70px;
  grid-template-columns: 0.9fr 1.1fr;
}
@media (max-width: 991px) {
  .home-faq-section .home-faq-wrapper {
    gap: 45px;
    grid-template-columns: 1fr;
  }
}
.home-faq-section .home-faq-wrapper .home-faq-heading .section-eyebrow {
  color: #C8A24A;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.home-faq-section .home-faq-wrapper .home-faq-heading h2 {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .home-faq-section .home-faq-wrapper .home-faq-heading h2 {
    font-size: 42px;
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .home-faq-section .home-faq-wrapper .home-faq-heading h2 {
    font-size: 32px;
  }
}
.home-faq-section .home-faq-wrapper .home-faq-heading p {
  color: rgba(255, 255, 255, 0.72);
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.85;
  margin: 0;
  max-width: 520px;
}
@media (max-width: 767px) {
  .home-faq-section .home-faq-wrapper .home-faq-heading p {
    font-size: 16px;
  }
}
.home-faq-section .home-faq-wrapper .home-faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.home-faq-section .home-faq-wrapper .home-faq-list .home-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.home-faq-section .home-faq-wrapper .home-faq-list .home-faq-item.is-open .home-faq-answer {
  display: block;
}
.home-faq-section .home-faq-wrapper .home-faq-list .home-faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}
.home-faq-section .home-faq-wrapper .home-faq-list .home-faq-item .home-faq-question {
  align-items: center;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  justify-content: space-between;
  line-height: 1.35;
  padding: 30px 0;
  text-align: left;
  width: 100%;
}
@media (max-width: 767px) {
  .home-faq-section .home-faq-wrapper .home-faq-list .home-faq-item .home-faq-question {
    font-size: 21px;
    padding: 24px 0;
  }
}
.home-faq-section .home-faq-wrapper .home-faq-list .home-faq-item .home-faq-question:focus-visible {
  outline: 2px solid #C8A24A;
  outline-offset: 6px;
}
.home-faq-section .home-faq-wrapper .home-faq-list .home-faq-item .home-faq-question span:first-child {
  max-width: calc(100% - 54px);
}
.home-faq-section .home-faq-wrapper .home-faq-list .home-faq-item .home-faq-question .faq-icon {
  border: 1px solid rgba(200, 162, 74, 0.65);
  border-radius: 50%;
  flex: 0 0 34px;
  height: 34px;
  position: relative;
  width: 34px;
}
.home-faq-section .home-faq-wrapper .home-faq-list .home-faq-item .home-faq-question .faq-icon::before, .home-faq-section .home-faq-wrapper .home-faq-list .home-faq-item .home-faq-question .faq-icon::after {
  background-color: #C8A24A;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.home-faq-section .home-faq-wrapper .home-faq-list .home-faq-item .home-faq-question .faq-icon::before {
  height: 1px;
  width: 14px;
}
.home-faq-section .home-faq-wrapper .home-faq-list .home-faq-item .home-faq-question .faq-icon::after {
  height: 14px;
  width: 1px;
}
.home-faq-section .home-faq-wrapper .home-faq-list .home-faq-item .home-faq-answer {
  display: none;
  padding: 0 54px 32px 0;
}
@media (max-width: 767px) {
  .home-faq-section .home-faq-wrapper .home-faq-list .home-faq-item .home-faq-answer {
    padding: 0 0 28px;
  }
}
.home-faq-section .home-faq-wrapper .home-faq-list .home-faq-item .home-faq-answer p {
  color: rgba(255, 255, 255, 0.72);
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.85;
  margin: 0;
}
@media (max-width: 767px) {
  .home-faq-section .home-faq-wrapper .home-faq-list .home-faq-item .home-faq-answer p {
    font-size: 16px;
  }
}
.home-faq-section .home-faq-wrapper .home-faq-list .home-faq-item .home-faq-answer p a {
  color: #C8A24A;
  text-decoration: none;
}
.home-faq-section .home-faq-wrapper .home-faq-list .home-faq-item .home-faq-answer p a:hover {
  text-decoration: underline;
}

.lead-capture-section {
  background: rgba(6, 21, 42, 0.5);
  padding: 110px 0;
}
@media (max-width: 991.98px) {
  .lead-capture-section {
    padding: 80px 0;
  }
}
.lead-capture-section .lead-capture-wrapper {
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}
@media (max-width: 991.98px) {
  .lead-capture-section .lead-capture-wrapper {
    gap: 44px;
    grid-template-columns: 1fr;
  }
}
.lead-capture-section .lead-capture-wrapper .lead-capture-content .section-eyebrow {
  color: #c8a24a;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.6px;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.lead-capture-section .lead-capture-wrapper .lead-capture-content h2 {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 24px;
}
@media (max-width: 767.98px) {
  .lead-capture-section .lead-capture-wrapper .lead-capture-content h2 {
    font-size: 42px;
  }
}
@media (max-width: 575.98px) {
  .lead-capture-section .lead-capture-wrapper .lead-capture-content h2 {
    font-size: 34px;
  }
}
.lead-capture-section .lead-capture-wrapper .lead-capture-content p {
  color: rgba(247, 245, 240, 0.76);
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.75;
  margin: 0;
  max-width: 620px;
}
.lead-capture-section .lead-capture-wrapper .lead-capture-content .lead-capture-options {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 42px;
}
@media (max-width: 575.98px) {
  .lead-capture-section .lead-capture-wrapper .lead-capture-content .lead-capture-options {
    grid-template-columns: 1fr;
  }
}
.lead-capture-section .lead-capture-wrapper .lead-capture-content .lead-capture-options div {
  border: 1px solid rgba(222, 217, 206, 0.18);
  padding: 24px;
}
.lead-capture-section .lead-capture-wrapper .lead-capture-content .lead-capture-options div strong {
  color: #c8a24a;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.lead-capture-section .lead-capture-wrapper .lead-capture-content .lead-capture-options div span {
  color: rgba(247, 245, 240, 0.76);
  display: block;
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.6;
}
.lead-capture-section .lead-capture-wrapper .lead-capture-form {
  background: rgba(247, 245, 240, 0.98);
  border: 1px solid rgba(222, 217, 206, 0.4);
  padding: 42px;
}
@media (max-width: 575.98px) {
  .lead-capture-section .lead-capture-wrapper .lead-capture-form {
    padding: 28px 22px;
  }
}
.lead-capture-section .lead-capture-wrapper .lead-capture-form .lead-capture-form__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.lead-capture-section .lead-capture-wrapper .lead-capture-form .form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 575.98px) {
  .lead-capture-section .lead-capture-wrapper .lead-capture-form .form-row {
    grid-template-columns: 1fr;
  }
}
.lead-capture-section .lead-capture-wrapper .lead-capture-form .form-group {
  margin-bottom: 20px;
}
.lead-capture-section .lead-capture-wrapper .lead-capture-form .form-group label {
  color: #06152a;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin-bottom: 9px;
  text-transform: uppercase;
}
.lead-capture-section .lead-capture-wrapper .lead-capture-form .form-group input,
.lead-capture-section .lead-capture-wrapper .lead-capture-form .form-group select,
.lead-capture-section .lead-capture-wrapper .lead-capture-form .form-group textarea {
  background: #fff;
  border: 1px solid #ded9ce;
  color: #06152a;
  font-family: Arial, sans-serif;
  font-size: 15px;
  outline: none;
  padding: 15px 16px;
  width: 100%;
}
.lead-capture-section .lead-capture-wrapper .lead-capture-form .form-group input:focus,
.lead-capture-section .lead-capture-wrapper .lead-capture-form .form-group select:focus,
.lead-capture-section .lead-capture-wrapper .lead-capture-form .form-group textarea:focus {
  border-color: #c8a24a;
}
.lead-capture-section .lead-capture-wrapper .lead-capture-form .form-group textarea {
  resize: vertical;
}
.lead-capture-section .lead-capture-wrapper .lead-capture-form .form-consent {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  margin: 4px 0 24px;
}
.lead-capture-section .lead-capture-wrapper .lead-capture-form .form-consent input {
  margin-top: 4px;
}
.lead-capture-section .lead-capture-wrapper .lead-capture-form .form-consent span {
  color: #1a2433;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.6;
}
.lead-capture-section .lead-capture-wrapper .lead-capture-form button {
  background: #c8a24a;
  border: 1px solid #c8a24a;
  color: #06152a;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  min-height: 58px;
  padding: 0 30px;
  text-transform: uppercase;
  width: 100%;
}
.lead-capture-section .lead-capture-wrapper .lead-capture-form button:hover, .lead-capture-section .lead-capture-wrapper .lead-capture-form button:focus {
  background: #e0c273;
  border-color: #e0c273;
}

.about-hero-section {
  align-items: center;
  display: flex;
  min-height: 780px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1023.98px) {
  .about-hero-section {
    min-height: 650px;
  }
}
@media (max-width: 767.98px) {
  .about-hero-section {
    min-height: 560px;
  }
}
.about-hero-section .about-hero-image {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}
.about-hero-section .about-hero-image img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  width: 100%;
}
.about-hero-section .about-hero-overlay {
  background: linear-gradient(90deg, rgba(6, 21, 42, 0.82) 0%, rgba(6, 21, 42, 0.56) 42%, rgba(6, 21, 42, 0.18) 100%);
  inset: 0;
  position: absolute;
}
.about-hero-section .container {
  position: relative;
  z-index: 2;
}
.about-hero-section .about-hero-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 650px;
}
.about-hero-section .about-hero-content .section-eyebrow {
  color: #C8A24A;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.about-hero-section .about-hero-content h1 {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 82px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}
@media (max-width: 1023.98px) {
  .about-hero-section .about-hero-content h1 {
    font-size: 66px;
  }
}
@media (max-width: 767.98px) {
  .about-hero-section .about-hero-content h1 {
    font-size: 48px;
  }
}
.about-hero-section .about-hero-content .designation {
  color: #C8A24A;
  font-family: Georgia, serif;
  font-size: 34px;
  font-style: italic;
  letter-spacing: 2px;
  margin-bottom: 34px;
  text-align: center;
}
@media (max-width: 767px) {
  .about-hero-section .about-hero-content .designation {
    font-size: 26px;
  }
}
.about-hero-section .about-hero-content .designation sup {
  font-size: 0.45em;
  top: -0.55em;
}
.about-hero-section .about-hero-content .description {
  color: rgba(255, 255, 255, 0.85);
  font-family: Arial, sans-serif;
  font-size: 21px;
  line-height: 1.8;
  margin: 0;
  max-width: 560px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .about-hero-section .about-hero-content .description {
    font-size: 17px;
  }
}
.about-hero-section .about-hero-content .scroll-indicator {
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  -moz-column-gap: 14px;
       column-gap: 14px;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 80px;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .about-hero-section .about-hero-content .scroll-indicator {
    margin-top: 50px;
  }
}
.about-hero-section .about-hero-content .scroll-indicator span {
  background-color: #C8A24A;
  display: block;
  height: 52px;
  position: relative;
  width: 1px;
}
.about-hero-section .about-hero-content .scroll-indicator span::after {
  background-color: #C8A24A;
  bottom: 0;
  content: "";
  height: 8px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 8px;
}

.about-answer-summary {
  background-color: #F7F5F0;
  padding: 120px 0;
}
@media (max-width: 1199.98px) {
  .about-answer-summary {
    padding: 100px 0;
  }
}
@media (max-width: 1023.98px) {
  .about-answer-summary {
    padding: 80px 0;
  }
}
@media (max-width: 767.98px) {
  .about-answer-summary {
    padding: 64px 0;
  }
}
.about-answer-summary .about-answer-summary-wrapper {
  display: grid;
  gap: 90px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}
@media (max-width: 1199.98px) {
  .about-answer-summary .about-answer-summary-wrapper {
    gap: 60px;
  }
}
@media (max-width: 1023.98px) {
  .about-answer-summary .about-answer-summary-wrapper {
    gap: 46px;
    grid-template-columns: 1fr;
  }
}
.about-answer-summary .about-answer-summary-wrapper .about-answer-summary-heading {
  border-left: 1px solid #C8A24A;
  padding-left: 34px;
}
@media (max-width: 767.98px) {
  .about-answer-summary .about-answer-summary-wrapper .about-answer-summary-heading {
    padding-left: 22px;
  }
}
.about-answer-summary .about-answer-summary-wrapper .about-answer-summary-heading .section-eyebrow {
  color: #C8A24A;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.4;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.about-answer-summary .about-answer-summary-wrapper .about-answer-summary-heading h2 {
  color: #06152A;
  font-family: Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.18;
  margin: 0;
}
@media (max-width: 1199.98px) {
  .about-answer-summary .about-answer-summary-wrapper .about-answer-summary-heading h2 {
    font-size: 46px;
  }
}
@media (max-width: 1023.98px) {
  .about-answer-summary .about-answer-summary-wrapper .about-answer-summary-heading h2 {
    font-size: 42px;
    max-width: 760px;
  }
}
@media (max-width: 767.98px) {
  .about-answer-summary .about-answer-summary-wrapper .about-answer-summary-heading h2 {
    font-size: 33px;
    letter-spacing: -0.4px;
  }
}
.about-answer-summary .about-answer-summary-wrapper .about-answer-summary-heading h2 sup {
  font-size: 0.38em;
  line-height: 0;
  position: relative;
  top: -0.65em;
}
.about-answer-summary .about-answer-summary-wrapper .about-answer-summary-content .summary-lead {
  color: #06152A;
  font-family: Georgia, serif;
  font-size: 25px;
  line-height: 1.65;
  margin: 0 0 24px;
}
@media (max-width: 767px) {
  .about-answer-summary .about-answer-summary-wrapper .about-answer-summary-content .summary-lead {
    font-size: 21px;
    line-height: 1.55;
  }
}
.about-answer-summary .about-answer-summary-wrapper .about-answer-summary-content .summary-lead sup {
  font-size: 0.45em;
  line-height: 0;
  position: relative;
  top: -0.6em;
}
.about-answer-summary .about-answer-summary-wrapper .about-answer-summary-content > p:not(.summary-lead) {
  color: #4C5562;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.9;
  margin: 0;
  max-width: 720px;
}
@media (max-width: 767.98px) {
  .about-answer-summary .about-answer-summary-wrapper .about-answer-summary-content > p:not(.summary-lead) {
    font-size: 16px;
    line-height: 1.8;
  }
}
.about-answer-summary .about-answer-summary-wrapper .about-answer-summary-content .about-answer-summary-details {
  border-top: 1px solid #DED9CE;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .about-answer-summary .about-answer-summary-wrapper .about-answer-summary-content .about-answer-summary-details {
    margin-top: 38px;
  }
}
.about-answer-summary .about-answer-summary-wrapper .about-answer-summary-content .about-answer-summary-details .summary-detail {
  align-items: flex-start;
  border-bottom: 1px solid #DED9CE;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .about-answer-summary .about-answer-summary-wrapper .about-answer-summary-content .about-answer-summary-details .summary-detail {
    gap: 18px;
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 25px 0;
  }
}
.about-answer-summary .about-answer-summary-wrapper .about-answer-summary-content .about-answer-summary-details .summary-detail .summary-detail-number {
  color: #C8A24A;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.5;
  padding-top: 7px;
}
.about-answer-summary .about-answer-summary-wrapper .about-answer-summary-content .about-answer-summary-details .summary-detail .summary-detail-content h3 {
  color: #06152A;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 10px;
}
@media (max-width: 767.98px) {
  .about-answer-summary .about-answer-summary-wrapper .about-answer-summary-content .about-answer-summary-details .summary-detail .summary-detail-content h3 {
    font-size: 22px;
  }
}
.about-answer-summary .about-answer-summary-wrapper .about-answer-summary-content .about-answer-summary-details .summary-detail .summary-detail-content p {
  color: #59616C;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  max-width: 620px;
}

.bill-story-section {
  background-color: #fff;
  overflow: hidden;
  padding: 130px 0;
}
@media (max-width: 1199.98px) {
  .bill-story-section {
    padding: 105px 0;
  }
}
@media (max-width: 991.98px) {
  .bill-story-section {
    padding: 85px 0;
  }
}
@media (max-width: 767.98px) {
  .bill-story-section {
    padding: 66px 0;
  }
}
.bill-story-section .bill-story-wrapper {
  align-items: center;
  display: grid;
  gap: 100px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}
@media (max-width: 1299.98px) {
  .bill-story-section .bill-story-wrapper {
    gap: 70px;
  }
}
@media (max-width: 1023.98px) {
  .bill-story-section .bill-story-wrapper {
    gap: 65px;
    grid-template-columns: 1fr;
  }
}
.bill-story-section .bill-story-wrapper .bill-story-media {
  min-height: 820px;
  position: relative;
}
@media (max-width: 1199.98px) {
  .bill-story-section .bill-story-wrapper .bill-story-media {
    min-height: 720px;
  }
}
@media (max-width: 1023.98px) {
  .bill-story-section .bill-story-wrapper .bill-story-media {
    margin: 0 auto;
    max-width: 760px;
    min-height: 760px;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .bill-story-section .bill-story-wrapper .bill-story-media {
    min-height: auto;
    padding-bottom: 82px;
  }
}
.bill-story-section .bill-story-wrapper .bill-story-media .bill-story-image {
  overflow: hidden;
}
.bill-story-section .bill-story-wrapper .bill-story-media .bill-story-image img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
  width: 100%;
}
.bill-story-section .bill-story-wrapper .bill-story-media .bill-story-image:hover img {
  transform: scale(1.025);
}
.bill-story-section .bill-story-wrapper .bill-story-media .bill-story-image.bill-story-image-primary {
  height: 700px;
  left: 0;
  position: absolute;
  top: 0;
  width: calc(100% - 105px);
}
@media (max-width: 1199.98px) {
  .bill-story-section .bill-story-wrapper .bill-story-media .bill-story-image.bill-story-image-primary {
    height: 620px;
    width: calc(100% - 80px);
  }
}
@media (max-width: 1023.98px) {
  .bill-story-section .bill-story-wrapper .bill-story-media .bill-story-image.bill-story-image-primary {
    height: 650px;
  }
}
@media (max-width: 767.98px) {
  .bill-story-section .bill-story-wrapper .bill-story-media .bill-story-image.bill-story-image-primary {
    height: auto;
    position: relative;
    width: calc(100% - 42px);
  }
}
@media (max-width: 767.98px) {
  .bill-story-section .bill-story-wrapper .bill-story-media .bill-story-image.bill-story-image-primary img {
    aspect-ratio: 4/5;
  }
}
.bill-story-section .bill-story-wrapper .bill-story-media .bill-story-image.bill-story-image-secondary {
  border: 12px solid #fff;
  bottom: 0;
  height: 330px;
  position: absolute;
  right: 0;
  width: 250px;
}
@media (max-width: 1199.98px) {
  .bill-story-section .bill-story-wrapper .bill-story-media .bill-story-image.bill-story-image-secondary {
    border-width: 10px;
    height: 290px;
    width: 215px;
  }
}
@media (max-width: 767.98px) {
  .bill-story-section .bill-story-wrapper .bill-story-media .bill-story-image.bill-story-image-secondary {
    border-width: 7px;
    bottom: 0;
    height: 185px;
    width: 142px;
  }
}
.bill-story-section .bill-story-wrapper .bill-story-media .bill-story-caption {
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  left: 0;
  position: absolute;
}
@media (max-width: 1199.98px) {
  .bill-story-section .bill-story-wrapper .bill-story-media .bill-story-caption {
    bottom: 10px;
  }
}
@media (max-width: 767.98px) {
  .bill-story-section .bill-story-wrapper .bill-story-media .bill-story-caption {
    bottom: 18px;
    max-width: calc(100% - 160px);
  }
}
.bill-story-section .bill-story-wrapper .bill-story-media .bill-story-caption span {
  color: #5C6470;
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 1.8px;
  line-height: 1.5;
  text-transform: uppercase;
}
.bill-story-section .bill-story-wrapper .bill-story-media .bill-story-caption span:first-child {
  color: #C8A24A;
  font-weight: 700;
}
.bill-story-section .bill-story-wrapper .bill-story-content .section-eyebrow {
  color: #C8A24A;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.4;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.bill-story-section .bill-story-wrapper .bill-story-content h2 {
  color: #06152A;
  font-family: Georgia, serif;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: -0.7px;
  line-height: 1.18;
  margin: 0 0 42px;
  max-width: 650px;
}
@media (max-width: 1199.98px) {
  .bill-story-section .bill-story-wrapper .bill-story-content h2 {
    font-size: 44px;
  }
}
@media (max-width: 1023.98px) {
  .bill-story-section .bill-story-wrapper .bill-story-content h2 {
    font-size: 42px;
    max-width: 760px;
  }
}
@media (max-width: 767.98px) {
  .bill-story-section .bill-story-wrapper .bill-story-content h2 {
    font-size: 32px;
    letter-spacing: -0.3px;
    margin-bottom: 30px;
  }
}
.bill-story-section .bill-story-wrapper .bill-story-content .bill-story-copy p {
  color: #555E69;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.9;
  margin: 0 0 24px;
}
@media (max-width: 767.98px) {
  .bill-story-section .bill-story-wrapper .bill-story-content .bill-story-copy p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
}
.bill-story-section .bill-story-wrapper .bill-story-content .bill-story-copy p:last-child {
  margin-bottom: 0;
}
.bill-story-section .bill-story-wrapper .bill-story-content .bill-story-copy p.bill-story-lead {
  color: #172438;
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.65;
  margin-bottom: 28px;
}
@media (max-width: 767.98px) {
  .bill-story-section .bill-story-wrapper .bill-story-content .bill-story-copy p.bill-story-lead {
    font-size: 21px;
    line-height: 1.55;
  }
}
.bill-story-section .bill-story-wrapper .bill-story-content .bill-story-quote {
  border-left: 2px solid #C8A24A;
  margin: 44px 0 0;
  padding: 4px 0 4px 30px;
}
@media (max-width: 767.98px) {
  .bill-story-section .bill-story-wrapper .bill-story-content .bill-story-quote {
    margin-top: 34px;
    padding-left: 22px;
  }
}
.bill-story-section .bill-story-wrapper .bill-story-content .bill-story-quote p {
  color: #06152A;
  font-family: Georgia, serif;
  font-size: 29px;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 1199.98px) {
  .bill-story-section .bill-story-wrapper .bill-story-content .bill-story-quote p {
    font-size: 26px;
  }
}
@media (max-width: 767.98px) {
  .bill-story-section .bill-story-wrapper .bill-story-content .bill-story-quote p {
    font-size: 23px;
  }
}
.bill-story-section .bill-story-wrapper .bill-story-content .bill-story-signature {
  align-items: baseline;
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.bill-story-section .bill-story-wrapper .bill-story-content .bill-story-signature .bill-story-signature-name {
  color: #06152A;
  font-family: Georgia, serif;
  font-size: 21px;
  font-style: italic;
}
.bill-story-section .bill-story-wrapper .bill-story-content .bill-story-signature .bill-story-signature-title {
  color: #C8A24A;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.bill-story-section .bill-story-wrapper .bill-story-content .bill-story-signature .bill-story-signature-title sup {
  font-size: 0.55em;
  line-height: 0;
  position: relative;
  top: -0.5em;
}

.design-philosophy {
  background-color: #06152A;
  color: #FFFFFF;
  overflow: hidden;
  padding: 82px 0 88px;
  position: relative;
}
@media (min-width: 768px) {
  .design-philosophy {
    padding: 110px 0 118px;
  }
}
@media (min-width: 1024px) {
  .design-philosophy {
    padding: 148px 0 150px;
  }
}
.design-philosophy::before {
  border: 1px solid rgba(200, 162, 74, 0.18);
  border-radius: 50%;
  content: "";
  height: 360px;
  pointer-events: none;
  position: absolute;
  right: -230px;
  top: -175px;
  width: 360px;
}
@media (min-width: 768px) {
  .design-philosophy::before {
    height: 560px;
    right: -340px;
    top: -290px;
    width: 560px;
  }
}
@media (min-width: 1024px) {
  .design-philosophy::before {
    height: 760px;
    right: -420px;
    top: -400px;
    width: 760px;
  }
}
.design-philosophy::after {
  background: linear-gradient(90deg, rgba(200, 162, 74, 0) 0%, rgba(200, 162, 74, 0.2) 50%, rgba(200, 162, 74, 0) 100%);
  bottom: 0;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: calc(100% - 40px);
}
@media (min-width: 768px) {
  .design-philosophy::after {
    width: calc(100% - 96px);
  }
}
@media (min-width: 1200px) {
  .design-philosophy::after {
    width: min(1320px, 100% - 128px);
  }
}
.design-philosophy .container {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 20px;
  position: relative;
  width: 100%;
  z-index: 1;
}
@media (min-width: 768px) {
  .design-philosophy .container {
    padding: 0 48px;
  }
}
@media (min-width: 1200px) {
  .design-philosophy .container {
    padding: 0 64px;
  }
}
.design-philosophy .design-philosophy-wrapper {
  margin: 0 auto;
  max-width: 1312px;
}
.design-philosophy .design-philosophy-heading {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 36px;
}
@media (min-width: 768px) {
  .design-philosophy .design-philosophy-heading {
    padding-bottom: 50px;
  }
}
@media (min-width: 1024px) {
  .design-philosophy .design-philosophy-heading {
    align-items: flex-start;
    display: grid;
    gap: 70px;
    grid-template-columns: minmax(170px, 0.35fr) minmax(0, 1.65fr);
    padding-bottom: 68px;
  }
}
.design-philosophy .design-philosophy-heading .section-eyebrow {
  color: #C8A24A;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  margin: 0 0 22px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .design-philosophy .design-philosophy-heading .section-eyebrow {
    font-size: 12px;
    margin-bottom: 28px;
  }
}
@media (min-width: 1024px) {
  .design-philosophy .design-philosophy-heading .section-eyebrow {
    margin: 13px 0 0;
  }
}
.design-philosophy .design-philosophy-heading h2 {
  color: #FFFFFF;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 8vw, 54px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0;
  max-width: 920px;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .design-philosophy .design-philosophy-heading h2 {
    font-size: clamp(52px, 6.5vw, 72px);
  }
}
@media (min-width: 1200px) {
  .design-philosophy .design-philosophy-heading h2 {
    font-size: 78px;
    line-height: 1.04;
  }
}
.design-philosophy .design-philosophy-editorial {
  padding-top: 48px;
}
@media (min-width: 768px) {
  .design-philosophy .design-philosophy-editorial {
    padding-top: 68px;
  }
}
@media (min-width: 1024px) {
  .design-philosophy .design-philosophy-editorial {
    display: grid;
    gap: 90px;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    padding-top: 88px;
  }
}
@media (min-width: 1200px) {
  .design-philosophy .design-philosophy-editorial {
    gap: 132px;
  }
}
.design-philosophy .design-philosophy-statement {
  position: relative;
}
.design-philosophy .design-philosophy-statement .design-philosophy-number {
  color: rgba(200, 162, 74, 0.72);
  display: block;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .design-philosophy .design-philosophy-statement .design-philosophy-number {
    font-size: 11px;
  }
}
@media (min-width: 1024px) {
  .design-philosophy .design-philosophy-statement .design-philosophy-number {
    left: 0;
    margin: 0;
    position: absolute;
    top: 10px;
    writing-mode: vertical-rl;
  }
}
.design-philosophy .design-philosophy-statement .design-philosophy-lead {
  color: #F7F5F0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.45;
  margin: 0;
}
@media (min-width: 768px) {
  .design-philosophy .design-philosophy-statement .design-philosophy-lead {
    font-size: 32px;
    line-height: 1.42;
    max-width: 700px;
  }
}
@media (min-width: 1024px) {
  .design-philosophy .design-philosophy-statement .design-philosophy-lead {
    font-size: 35px;
  }
}
@media (min-width: 1200px) {
  .design-philosophy .design-philosophy-statement .design-philosophy-lead {
    font-size: 39px;
    line-height: 1.4;
  }
}
.design-philosophy .design-philosophy-principles {
  margin-top: 52px;
}
@media (min-width: 768px) {
  .design-philosophy .design-philosophy-principles {
    margin-top: 70px;
  }
}
@media (min-width: 1024px) {
  .design-philosophy .design-philosophy-principles {
    margin-top: 0;
  }
}
.design-philosophy .design-philosophy-principle {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 30px 0 32px;
}
@media (min-width: 768px) {
  .design-philosophy .design-philosophy-principle {
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
    padding: 38px 0 40px;
  }
}
@media (min-width: 1024px) {
  .design-philosophy .design-philosophy-principle {
    display: block;
    padding: 38px 0 42px;
  }
}
@media (min-width: 1200px) {
  .design-philosophy .design-philosophy-principle {
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(210px, 0.8fr) minmax(0, 1.2fr);
  }
}
@media (min-width: 1024px) {
  .design-philosophy .design-philosophy-principle:first-child {
    padding-top: 0;
  }
}
.design-philosophy .design-philosophy-principle .design-philosophy-principle-heading {
  align-items: baseline;
  display: flex;
  gap: 18px;
  margin-bottom: 17px;
}
@media (min-width: 768px) {
  .design-philosophy .design-philosophy-principle .design-philosophy-principle-heading {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .design-philosophy .design-philosophy-principle .design-philosophy-principle-heading {
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .design-philosophy .design-philosophy-principle .design-philosophy-principle-heading {
    margin-bottom: 0;
  }
}
.design-philosophy .design-philosophy-principle .design-philosophy-principle-heading .design-philosophy-principle-number {
  color: #C8A24A;
  flex: 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
  line-height: 1;
}
.design-philosophy .design-philosophy-principle .design-philosophy-principle-heading h3 {
  color: #FFFFFF;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 768px) {
  .design-philosophy .design-philosophy-principle .design-philosophy-principle-heading h3 {
    font-size: 25px;
  }
}
@media (min-width: 1200px) {
  .design-philosophy .design-philosophy-principle .design-philosophy-principle-heading h3 {
    font-size: 27px;
  }
}
.design-philosophy .design-philosophy-principle > p {
  color: rgba(255, 255, 255, 0.67);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  margin: 0;
}
@media (min-width: 768px) {
  .design-philosophy .design-philosophy-principle > p {
    font-size: 16px;
  }
}
.design-philosophy .design-philosophy-footer {
  margin-top: 62px;
  padding-left: 24px;
  position: relative;
}
@media (min-width: 768px) {
  .design-philosophy .design-philosophy-footer {
    align-items: flex-end;
    display: flex;
    gap: 60px;
    justify-content: space-between;
    margin-top: 88px;
    padding-left: 38px;
  }
}
@media (min-width: 1024px) {
  .design-philosophy .design-philosophy-footer {
    margin-left: 25%;
    margin-top: 112px;
  }
}
.design-philosophy .design-philosophy-footer::before {
  background-color: #C8A24A;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 1px;
}
.design-philosophy .design-philosophy-footer .design-philosophy-quote {
  color: #F7F5F0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.5;
  margin: 0;
  max-width: 760px;
}
@media (min-width: 768px) {
  .design-philosophy .design-philosophy-footer .design-philosophy-quote {
    font-size: 29px;
  }
}
@media (min-width: 1024px) {
  .design-philosophy .design-philosophy-footer .design-philosophy-quote {
    font-size: 33px;
    line-height: 1.45;
  }
}
.design-philosophy .design-philosophy-footer .design-philosophy-quote span {
  color: #C8A24A;
}
.design-philosophy .design-philosophy-footer .design-philosophy-signature {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-top: 30px;
  min-width: -moz-max-content;
  min-width: max-content;
}
@media (min-width: 768px) {
  .design-philosophy .design-philosophy-footer .design-philosophy-signature {
    margin-bottom: 7px;
    margin-top: 0;
  }
}
.design-philosophy .design-philosophy-footer .design-philosophy-signature .design-philosophy-signature-line {
  background-color: rgba(200, 162, 74, 0.7);
  height: 1px;
  width: 42px;
}
.design-philosophy .design-philosophy-footer .design-philosophy-signature p {
  color: rgba(255, 255, 255, 0.56);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.55;
  margin: 0;
  text-transform: uppercase;
}
.design-philosophy .design-philosophy-footer .design-philosophy-signature p span {
  color: #FFFFFF;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}
.design-philosophy .design-philosophy-footer .design-philosophy-signature p sup {
  font-size: 6px;
  line-height: 0;
  position: relative;
  top: -0.25em;
}

.luxury-process-section {
  background-color: #fff;
  overflow: hidden;
  padding: 132px 0;
}
@media (max-width: 1199px) {
  .luxury-process-section {
    padding: 108px 0;
  }
}
@media (max-width: 991px) {
  .luxury-process-section {
    padding: 84px 0;
  }
}
@media (max-width: 767px) {
  .luxury-process-section {
    padding: 64px 0;
  }
}
.luxury-process-section .luxury-process-heading {
  margin: 0 auto 78px;
  max-width: 920px;
  text-align: center;
}
@media (max-width: 991px) {
  .luxury-process-section .luxury-process-heading {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .luxury-process-section .luxury-process-heading {
    margin-bottom: 44px;
  }
}
.luxury-process-section .luxury-process-heading .section-eyebrow {
  color: #C8A24A;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.4;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.luxury-process-section .luxury-process-heading h2 {
  color: #06152A;
  font-family: Georgia, serif;
  font-size: 58px;
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin: 0 auto;
  max-width: 850px;
}
@media (max-width: 1199px) {
  .luxury-process-section .luxury-process-heading h2 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .luxury-process-section .luxury-process-heading h2 {
    font-size: 43px;
  }
}
@media (max-width: 767px) {
  .luxury-process-section .luxury-process-heading h2 {
    font-size: 34px;
    letter-spacing: -0.3px;
  }
}
.luxury-process-section .luxury-process-heading .luxury-process-intro {
  color: #59616C;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.85;
  margin: 30px auto 0;
  max-width: 760px;
}
@media (max-width: 767px) {
  .luxury-process-section .luxury-process-heading .luxury-process-intro {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 24px;
  }
}
.luxury-process-section .luxury-process-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 991px) {
  .luxury-process-section .luxury-process-grid {
    grid-template-columns: 1fr;
  }
}
.luxury-process-section .luxury-process-grid .luxury-process-column {
  background-color: #F7F5F0;
  border: 1px solid #DED9CE;
  min-width: 0;
  padding: 58px 54px 28px;
  position: relative;
}
@media (max-width: 1199px) {
  .luxury-process-section .luxury-process-grid .luxury-process-column {
    padding: 48px 38px 24px;
  }
}
@media (max-width: 767px) {
  .luxury-process-section .luxury-process-grid .luxury-process-column {
    padding: 36px 22px 18px;
  }
}
.luxury-process-section .luxury-process-grid .luxury-process-column::before {
  background-color: #C8A24A;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: 0;
  width: 120px;
}
@media (max-width: 767px) {
  .luxury-process-section .luxury-process-grid .luxury-process-column::before {
    width: 82px;
  }
}
.luxury-process-section .luxury-process-grid .luxury-process-column.luxury-process-column-selling {
  background-color: #fff;
}
.luxury-process-section .luxury-process-grid .luxury-process-column.luxury-process-column-selling::before {
  left: auto;
  right: 0;
}
.luxury-process-section .luxury-process-grid .luxury-process-column.luxury-process-column-selling .luxury-process-column-header .luxury-process-column-meta {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .luxury-process-section .luxury-process-grid .luxury-process-column.luxury-process-column-selling .luxury-process-column-header .luxury-process-column-meta {
    justify-content: flex-start;
  }
}
.luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-column-header {
  border-bottom: 1px solid #DED9CE;
  min-height: 250px;
  padding-bottom: 38px;
}
@media (max-width: 1199px) {
  .luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-column-header {
    min-height: 270px;
  }
}
@media (max-width: 991px) {
  .luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-column-header {
    min-height: 0;
  }
}
@media (max-width: 767px) {
  .luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-column-header {
    padding-bottom: 30px;
  }
}
.luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-column-header .luxury-process-column-meta {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-column-header .luxury-process-column-meta .luxury-process-column-number {
  color: #C8A24A;
  font-family: Georgia, serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 767px) {
  .luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-column-header .luxury-process-column-meta .luxury-process-column-number {
    font-size: 36px;
  }
}
.luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-column-header .luxury-process-column-meta .luxury-process-column-label {
  color: #7D6735;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}
.luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-column-header h3 {
  color: #06152A;
  font-family: Georgia, serif;
  font-size: 39px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 1199px) {
  .luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-column-header h3 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-column-header h3 {
    font-size: 29px;
  }
}
.luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-column-header > p {
  color: #646C76;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  margin: 20px 0 0;
  max-width: 520px;
}
@media (max-width: 767px) {
  .luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-column-header > p {
    font-size: 15px;
  }
}
.luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-steps .luxury-process-step {
  align-items: flex-start;
  display: grid;
  gap: 24px;
  grid-template-columns: 42px minmax(0, 1fr);
  padding: 30px 0;
}
@media (max-width: 767px) {
  .luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-steps .luxury-process-step {
    gap: 16px;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 24px 0;
  }
}
.luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-steps .luxury-process-step:not(:last-child) {
  border-bottom: 1px solid #DED9CE;
}
.luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-steps .luxury-process-step .luxury-process-step-number {
  color: #C8A24A;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.4;
  padding-top: 7px;
}
.luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-steps .luxury-process-step .luxury-process-step-content h4 {
  color: #06152A;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-steps .luxury-process-step .luxury-process-step-content h4 {
    font-size: 22px;
  }
}
.luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-steps .luxury-process-step .luxury-process-step-content p {
  color: #59616C;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 767px) {
  .luxury-process-section .luxury-process-grid .luxury-process-column .luxury-process-steps .luxury-process-step .luxury-process-step-content p {
    font-size: 14px;
    line-height: 1.75;
  }
}

.why-bill-section {
  background-color: #F7F5F0;
  overflow: hidden;
  padding: 132px 0;
}
@media (max-width: 1199px) {
  .why-bill-section {
    padding: 108px 0;
  }
}
@media (max-width: 991px) {
  .why-bill-section {
    padding: 84px 0;
  }
}
@media (max-width: 767px) {
  .why-bill-section {
    padding: 64px 0;
  }
}
.why-bill-section .why-bill-heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto 82px;
  max-width: 920px;
}
@media (max-width: 991px) {
  .why-bill-section .why-bill-heading {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .why-bill-section .why-bill-heading {
    margin-bottom: 44px;
  }
}
.why-bill-section .why-bill-heading .section-eyebrow {
  color: #C8A24A;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.4;
  margin: 0 0 22px;
  text-align: center;
  text-transform: uppercase;
}
.why-bill-section .why-bill-heading h2 {
  color: #06152A;
  font-family: Georgia, serif;
  font-size: 58px;
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin: 0;
  max-width: 860px;
  text-align: center;
}
@media (max-width: 1199px) {
  .why-bill-section .why-bill-heading h2 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .why-bill-section .why-bill-heading h2 {
    font-size: 43px;
  }
}
@media (max-width: 767px) {
  .why-bill-section .why-bill-heading h2 {
    font-size: 34px;
    letter-spacing: -0.3px;
  }
}
.why-bill-section .why-bill-heading .why-bill-intro {
  color: #59616C;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.85;
  margin: 30px 0 0;
  max-width: 760px;
  text-align: center;
}
@media (max-width: 767px) {
  .why-bill-section .why-bill-heading .why-bill-intro {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 24px;
  }
}
.why-bill-section .why-bill-layout {
  align-items: start;
  display: grid;
  gap: 96px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}
@media (max-width: 1299px) {
  .why-bill-section .why-bill-layout {
    gap: 70px;
  }
}
@media (max-width: 991px) {
  .why-bill-section .why-bill-layout {
    gap: 60px;
    grid-template-columns: 1fr;
  }
}
.why-bill-section .why-bill-layout .why-bill-feature {
  position: relative;
}
@media (max-width: 991px) {
  .why-bill-section .why-bill-layout .why-bill-feature {
    margin: 0 auto;
    max-width: 760px;
    width: 100%;
  }
}
.why-bill-section .why-bill-layout .why-bill-feature .why-bill-feature-image {
  overflow: hidden;
  position: relative;
}
.why-bill-section .why-bill-layout .why-bill-feature .why-bill-feature-image::after {
  border: 1px solid rgba(200, 162, 74, 0.7);
  content: "";
  inset: 22px;
  pointer-events: none;
  position: absolute;
}
@media (max-width: 767px) {
  .why-bill-section .why-bill-layout .why-bill-feature .why-bill-feature-image::after {
    inset: 14px;
  }
}
.why-bill-section .why-bill-layout .why-bill-feature .why-bill-feature-image img {
  aspect-ratio: 4/5;
  display: block;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
  width: 100%;
}
.why-bill-section .why-bill-layout .why-bill-feature .why-bill-feature-image:hover img {
  transform: scale(1.025);
}
.why-bill-section .why-bill-layout .why-bill-feature .why-bill-feature-caption {
  align-items: flex-start;
  background-color: #06152A;
  bottom: -42px;
  display: grid;
  gap: 22px;
  grid-template-columns: 42px minmax(0, 1fr);
  padding: 30px 34px;
  position: absolute;
  right: -38px;
  width: 72%;
}
@media (max-width: 1299px) {
  .why-bill-section .why-bill-layout .why-bill-feature .why-bill-feature-caption {
    right: -20px;
    width: 78%;
  }
}
@media (max-width: 991px) {
  .why-bill-section .why-bill-layout .why-bill-feature .why-bill-feature-caption {
    bottom: -36px;
    right: 24px;
    width: 66%;
  }
}
@media (max-width: 767px) {
  .why-bill-section .why-bill-layout .why-bill-feature .why-bill-feature-caption {
    bottom: -34px;
    gap: 14px;
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 24px 20px;
    right: 12px;
    width: calc(100% - 36px);
  }
}
.why-bill-section .why-bill-layout .why-bill-feature .why-bill-feature-caption .why-bill-feature-caption-number {
  color: #C8A24A;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.5;
  padding-top: 4px;
}
.why-bill-section .why-bill-layout .why-bill-feature .why-bill-feature-caption p {
  color: rgba(255, 255, 255, 0.82);
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 767.98px) {
  .why-bill-section .why-bill-layout .why-bill-feature .why-bill-feature-caption p {
    font-size: 17px;
  }
}
.why-bill-section .why-bill-layout .why-bill-reasons {
  border-top: 1px solid #DED9CE;
}
@media (max-width: 1023.98px) {
  .why-bill-section .why-bill-layout .why-bill-reasons {
    margin-top: 30px;
  }
}
.why-bill-section .why-bill-layout .why-bill-reasons .why-bill-reason {
  border-bottom: 1px solid #DED9CE;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
  padding: 32px 0;
}
@media (max-width: 1199.98px) {
  .why-bill-section .why-bill-layout .why-bill-reasons .why-bill-reason {
    gap: 22px;
    grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.2fr);
  }
}
@media (max-width: 767.98px) {
  .why-bill-section .why-bill-layout .why-bill-reasons .why-bill-reason {
    gap: 14px;
    grid-template-columns: 1fr;
    padding: 26px 0;
  }
}
.why-bill-section .why-bill-layout .why-bill-reasons .why-bill-reason .why-bill-reason-heading {
  display: grid;
  gap: 16px;
  grid-template-columns: 34px minmax(0, 1fr);
}
@media (max-width: 767.98px) {
  .why-bill-section .why-bill-layout .why-bill-reasons .why-bill-reason .why-bill-reason-heading {
    gap: 12px;
    grid-template-columns: 28px minmax(0, 1fr);
  }
}
.why-bill-section .why-bill-layout .why-bill-reasons .why-bill-reason .why-bill-reason-heading .why-bill-reason-number {
  color: #C8A24A;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.5;
  padding-top: 7px;
}
.why-bill-section .why-bill-layout .why-bill-reasons .why-bill-reason .why-bill-reason-heading h3 {
  color: #06152A;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}
@media (max-width: 1199.98px) {
  .why-bill-section .why-bill-layout .why-bill-reasons .why-bill-reason .why-bill-reason-heading h3 {
    font-size: 23px;
  }
}
@media (max-width: 767.98px) {
  .why-bill-section .why-bill-layout .why-bill-reasons .why-bill-reason .why-bill-reason-heading h3 {
    font-size: 22px;
  }
}
.why-bill-section .why-bill-layout .why-bill-reasons .why-bill-reason > p {
  color: #59616C;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 767.98px) {
  .why-bill-section .why-bill-layout .why-bill-reasons .why-bill-reason > p {
    font-size: 14px;
    line-height: 1.75;
    padding-left: 40px;
  }
}
.why-bill-section .why-bill-statement {
  border-bottom: 1px solid #C8A24A;
  border-top: 1px solid #C8A24A;
  margin: 132px auto 0;
  max-width: 980px;
  padding: 58px 90px 52px;
  position: relative;
  text-align: center;
}
@media (max-width: 1199.98px) {
  .why-bill-section .why-bill-statement {
    margin-top: 110px;
    padding: 52px 70px 46px;
  }
}
@media (max-width: 1023.98px) {
  .why-bill-section .why-bill-statement {
    margin-top: 96px;
  }
}
@media (max-width: 767.98px) {
  .why-bill-section .why-bill-statement {
    margin-top: 82px;
    padding: 44px 18px 38px;
  }
}
.why-bill-section .why-bill-statement .why-bill-statement-mark {
  color: rgba(200, 162, 74, 0.22);
  font-family: Georgia, serif;
  font-size: 120px;
  left: 50%;
  line-height: 1;
  position: absolute;
  top: 8px;
  transform: translateX(-50%);
}
@media (max-width: 767.98px) {
  .why-bill-section .why-bill-statement .why-bill-statement-mark {
    font-size: 90px;
    top: 12px;
  }
}
.why-bill-section .why-bill-statement > p {
  color: #06152A;
  font-family: Georgia, serif;
  font-size: 31px;
  font-style: italic;
  line-height: 1.55;
  margin: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .why-bill-section .why-bill-statement > p {
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  .why-bill-section .why-bill-statement > p {
    font-size: 23px;
    line-height: 1.5;
  }
}
.why-bill-section .why-bill-statement .why-bill-statement-signature {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}
.why-bill-section .why-bill-statement .why-bill-statement-signature span:first-child {
  color: #06152A;
  font-family: Georgia, serif;
  font-size: 19px;
  font-style: italic;
}
.why-bill-section .why-bill-statement .why-bill-statement-signature span:last-child {
  color: #C8A24A;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.why-bill-section .why-bill-statement .why-bill-statement-signature span:last-child sup {
  font-size: 0.55em;
  line-height: 0;
  position: relative;
  top: -0.5em;
}

.about-faq-section {
  background-color: #06152A;
  overflow: hidden;
  padding: 132px 0;
  position: relative;
}
@media (max-width: 1199.98px) {
  .about-faq-section {
    padding: 108px 0;
  }
}
@media (max-width: 1023.98px) {
  .about-faq-section {
    padding: 84px 0;
  }
}
@media (max-width: 767.98px) {
  .about-faq-section {
    padding: 64px 0;
  }
}
.about-faq-section::before {
  border: 1px solid rgba(200, 162, 74, 0.12);
  border-radius: 50%;
  content: "";
  height: 560px;
  left: -360px;
  position: absolute;
  top: -180px;
  width: 560px;
}
@media (max-width: 767.98px) {
  .about-faq-section::before {
    display: none;
  }
}
.about-faq-section::after {
  background: linear-gradient(180deg, rgba(200, 162, 74, 0) 0%, rgba(200, 162, 74, 0.15) 50%, rgba(200, 162, 74, 0) 100%);
  content: "";
  height: 70%;
  position: absolute;
  right: 8%;
  top: 15%;
  width: 1px;
}
@media (max-width: 1023.98px) {
  .about-faq-section::after {
    display: none;
  }
}
.about-faq-section .container {
  position: relative;
  z-index: 2;
}
.about-faq-section .about-faq-wrapper {
  align-items: start;
  display: grid;
  gap: 96px;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
}
@media (max-width: 1299.98px) {
  .about-faq-section .about-faq-wrapper {
    gap: 70px;
  }
}
@media (max-width: 1023.98px) {
  .about-faq-section .about-faq-wrapper {
    gap: 58px;
    grid-template-columns: 1fr;
  }
}
.about-faq-section .about-faq-wrapper .about-faq-heading {
  max-width: 500px;
  position: sticky;
  top: 150px;
}
@media (max-width: 1023.98px) {
  .about-faq-section .about-faq-wrapper .about-faq-heading {
    max-width: 760px;
    position: static;
  }
}
.about-faq-section .about-faq-wrapper .about-faq-heading .section-eyebrow {
  color: #C8A24A;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.4;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.about-faq-section .about-faq-wrapper .about-faq-heading h2 {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 54px;
  font-weight: 400;
  letter-spacing: -0.7px;
  line-height: 1.16;
  margin: 0;
}
@media (max-width: 1199.98px) {
  .about-faq-section .about-faq-wrapper .about-faq-heading h2 {
    font-size: 47px;
  }
}
@media (max-width: 1023.98px) {
  .about-faq-section .about-faq-wrapper .about-faq-heading h2 {
    font-size: 43px;
  }
}
@media (max-width: 767.98px) {
  .about-faq-section .about-faq-wrapper .about-faq-heading h2 {
    font-size: 34px;
    letter-spacing: -0.3px;
  }
}
.about-faq-section .about-faq-wrapper .about-faq-heading > p:not(.section-eyebrow) {
  color: rgba(255, 255, 255, 0.66);
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.85;
  margin: 30px 0 0;
  max-width: 470px;
}
@media (max-width: 767.98px) {
  .about-faq-section .about-faq-wrapper .about-faq-heading > p:not(.section-eyebrow) {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 24px;
  }
}
.about-faq-section .about-faq-wrapper .about-faq-heading .about-faq-link {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  gap: 14px;
  letter-spacing: 2.2px;
  margin-top: 40px;
  padding-bottom: 9px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .about-faq-section .about-faq-wrapper .about-faq-heading .about-faq-link {
    margin-top: 32px;
  }
}
.about-faq-section .about-faq-wrapper .about-faq-heading .about-faq-link::after {
  background-color: #C8A24A;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transition: width 0.3s ease;
  width: 100%;
}
.about-faq-section .about-faq-wrapper .about-faq-heading .about-faq-link:hover::after {
  width: 45%;
}
.about-faq-section .about-faq-wrapper .about-faq-heading .about-faq-link:hover span {
  transform: translateX(4px);
}
.about-faq-section .about-faq-wrapper .about-faq-heading .about-faq-link:focus-visible {
  outline: 2px solid #C8A24A;
  outline-offset: 7px;
}
.about-faq-section .about-faq-wrapper .about-faq-heading .about-faq-link span {
  color: #C8A24A;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
}
.about-faq-section .about-faq-wrapper .about-faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item h3 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
.about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-question {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  gap: 24px;
  justify-content: space-between;
  line-height: 1.4;
  padding: 31px 0;
  text-align: left;
  width: 100%;
}
@media (max-width: 767.98px) {
  .about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-question {
    font-size: 21px;
    gap: 18px;
    padding: 25px 0;
  }
}
.about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-question:hover .about-faq-icon {
  border-color: #C8A24A;
}
.about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-question:focus-visible {
  outline: 2px solid #C8A24A;
  outline-offset: 6px;
}
.about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-question > span:first-child {
  max-width: calc(100% - 60px);
}
@media (max-width: 767.98px) {
  .about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-question > span:first-child {
    max-width: calc(100% - 48px);
  }
}
.about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-question .about-faq-icon {
  border: 1px solid rgba(200, 162, 74, 0.55);
  border-radius: 50%;
  flex: 0 0 38px;
  height: 38px;
  position: relative;
  transition: border-color 0.3s ease;
  width: 38px;
}
@media (max-width: 767.98px) {
  .about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-question .about-faq-icon {
    flex-basis: 32px;
    height: 32px;
    width: 32px;
  }
}
.about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-question .about-faq-icon::before, .about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-question .about-faq-icon::after {
  background-color: #C8A24A;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-question .about-faq-icon::before {
  height: 1px;
  width: 14px;
}
@media (max-width: 767.98px) {
  .about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-question .about-faq-icon::before {
    width: 12px;
  }
}
.about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-question .about-faq-icon::after {
  height: 14px;
  width: 1px;
}
@media (max-width: 767.98px) {
  .about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-question .about-faq-icon::after {
    height: 12px;
  }
}
.about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.4s ease, opacity 0.3s ease;
}
.about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-answer .about-faq-answer-inner {
  overflow: hidden;
}
.about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-answer .about-faq-answer-inner p {
  color: rgba(255, 255, 255, 0.68);
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
  max-width: 760px;
  padding: 0 62px 31px 0;
}
@media (max-width: 767.98px) {
  .about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-answer .about-faq-answer-inner p {
    font-size: 15px;
    line-height: 1.75;
    padding: 0 0 25px;
  }
}
.about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-answer .about-faq-answer-inner p a {
  color: #E0C273;
  text-decoration: underline;
  text-decoration-color: rgba(224, 194, 115, 0.5);
  text-underline-offset: 4px;
}
.about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-answer .about-faq-answer-inner p a:hover {
  text-decoration-color: #E0C273;
}
.about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item .about-faq-answer .about-faq-answer-inner p a:focus-visible {
  outline: 2px solid #C8A24A;
  outline-offset: 4px;
}
.about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item.is-open .about-faq-question .about-faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}
.about-faq-section .about-faq-wrapper .about-faq-list .about-faq-item.is-open .about-faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.about-contact-cta-section {
  background-color: #F7F5F0;
  overflow: hidden;
  padding: 140px 0;
}
@media (max-width: 1199.98px) {
  .about-contact-cta-section {
    padding: 115px 0;
  }
}
@media (max-width: 1023.98px) {
  .about-contact-cta-section {
    padding: 90px 0;
  }
}
@media (max-width: 767.98px) {
  .about-contact-cta-section {
    padding: 68px 0;
  }
}
.about-contact-cta-section .about-contact-cta-wrapper {
  align-items: center;
  background-color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}
@media (max-width: 1023.98px) {
  .about-contact-cta-section .about-contact-cta-wrapper {
    grid-template-columns: 1fr;
  }
}
.about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-image {
  height: 100%;
  overflow: hidden;
}
.about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-image img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
  width: 100%;
}
.about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-image:hover img {
  transform: scale(1.03);
}
.about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content {
  padding: 80px;
}
@media (max-width: 1199.98px) {
  .about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content {
    padding: 60px;
  }
}
@media (max-width: 767.98px) {
  .about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content {
    padding: 40px 24px;
  }
}
.about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content .section-eyebrow {
  color: #C8A24A;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.4;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content h2 {
  color: #06152A;
  font-family: Georgia, serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}
@media (max-width: 1199.98px) {
  .about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content h2 {
    font-size: 46px;
  }
}
@media (max-width: 767.98px) {
  .about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content h2 {
    font-size: 34px;
  }
}
.about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content .about-contact-cta-description {
  color: #5D6672;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.9;
  margin: 34px 0 46px;
}
@media (max-width: 767.98px) {
  .about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content .about-contact-cta-description {
    font-size: 16px;
    margin: 26px 0 36px;
  }
}
.about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content .about-contact-cta-items {
  border-bottom: 1px solid #DED9CE;
  border-top: 1px solid #DED9CE;
}
.about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content .about-contact-cta-items .about-contact-cta-item {
  padding: 26px 0;
}
.about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content .about-contact-cta-items .about-contact-cta-item:not(:last-child) {
  border-bottom: 1px solid #DED9CE;
}
.about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content .about-contact-cta-items .about-contact-cta-item h3 {
  color: #06152A;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0 0 10px;
}
@media (max-width: 767.98px) {
  .about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content .about-contact-cta-items .about-contact-cta-item h3 {
    font-size: 22px;
  }
}
.about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content .about-contact-cta-items .about-contact-cta-item p {
  color: #606873;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
.about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content .about-contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}
@media (max-width: 767.98px) {
  .about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content .about-contact-cta-actions {
    flex-direction: column;
  }
}
.about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content .about-contact-cta-actions a {
  align-items: center;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  height: 58px;
  justify-content: center;
  letter-spacing: 2px;
  padding: 0 34px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
  .about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content .about-contact-cta-actions a {
    width: 100%;
  }
}
.about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content .about-contact-cta-actions a.btn-primary {
  background-color: #06152A;
  border: 1px solid #06152A;
  color: #fff;
}
.about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content .about-contact-cta-actions a.btn-primary:hover {
  background-color: #C8A24A;
  border-color: #C8A24A;
  color: #06152A;
}
.about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content .about-contact-cta-actions a.btn-secondary {
  border: 1px solid #DED9CE;
  color: #06152A;
}
.about-contact-cta-section .about-contact-cta-wrapper .about-contact-cta-content .about-contact-cta-actions a.btn-secondary:hover {
  border-color: #C8A24A;
  color: #C8A24A;
}

.contact-hero {
  align-items: center;
  background-color: #06152A;
  display: flex;
  min-height: calc(100vh - 44px);
  overflow: hidden;
  position: relative;
}
@media (max-width: 1023.98px) {
  .contact-hero {
    min-height: calc(100vh - 40px);
  }
}
.contact-hero__image {
  inset: 0;
  position: absolute;
}
.contact-hero__image img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  width: 100%;
}
.contact-hero__overlay {
  background: linear-gradient(180deg, rgba(6, 21, 42, 0.45) 0%, rgba(6, 21, 42, 0.65) 55%, rgba(6, 21, 42, 0.9) 100%);
  inset: 0;
  position: absolute;
}
.contact-hero .container {
  position: relative;
  width: 100%;
  z-index: 2;
}
.contact-hero__wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 170px 0 120px;
  text-align: center;
}
@media (max-width: 991px) {
  .contact-hero__wrapper {
    min-height: 850px;
    padding: 150px 0 90px;
  }
}
@media (max-width: 767px) {
  .contact-hero__wrapper {
    min-height: 760px;
    padding: 130px 0 70px;
  }
}
.contact-hero__content {
  margin: 0 auto;
  max-width: 760px;
  width: 100%;
}
.contact-hero__eyebrow {
  color: #C8A24A;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.35em;
  margin: 0 0 28px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .contact-hero__eyebrow {
    font-size: 11px;
    margin-bottom: 20px;
  }
}
.contact-hero h1 {
  color: #FFFFFF;
  font-family: Georgia, serif;
  font-size: clamp(56px, 6vw, 92px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0;
}
@media (max-width: 991px) {
  .contact-hero h1 {
    font-size: clamp(48px, 7vw, 72px);
  }
}
@media (max-width: 767px) {
  .contact-hero h1 {
    font-size: 42px;
    line-height: 1.05;
  }
}
@media (max-width: 575px) {
  .contact-hero h1 {
    font-size: 36px;
  }
}
.contact-hero__description {
  color: rgba(255, 255, 255, 0.82);
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1.8;
  margin: 34px auto 0;
  max-width: 650px;
}
@media (max-width: 767px) {
  .contact-hero__description {
    font-size: 17px;
    line-height: 1.7;
    margin-top: 26px;
  }
}
.contact-hero__actions {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 575px) {
  .contact-hero__actions {
    flex-direction: column;
  }
}
.contact-hero__button {
  align-items: center;
  background: #C8A24A;
  border: 1px solid #C8A24A;
  color: #06152A;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  gap: 16px;
  justify-content: center;
  letter-spacing: 0.15em;
  min-height: 58px;
  padding: 0 34px;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.35s;
}
@media (max-width: 575px) {
  .contact-hero__button {
    width: 100%;
  }
}
.contact-hero__button svg {
  transition: 0.35s;
}
.contact-hero__button:hover {
  background: #FFFFFF;
  color: #06152A;
}
.contact-hero__button:hover svg {
  transform: translateX(5px);
}
.contact-hero__phone {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  display: inline-flex;
  font-family: Georgia, serif;
  font-size: 18px;
  justify-content: center;
  min-height: 58px;
  min-width: 220px;
  padding: 0 30px;
  text-decoration: none;
  transition: 0.35s;
  align-items: center;
}
@media (max-width: 575px) {
  .contact-hero__phone {
    width: 100%;
  }
}
.contact-hero__phone:hover {
  border-color: #C8A24A;
  color: #C8A24A;
}

.contact-answer {
  background-color: #F7F5F0;
  border-bottom: 1px solid #DED9CE;
  padding: 110px 0;
}
@media (max-width: 1199px) {
  .contact-answer {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .contact-answer {
    padding: 72px 0;
  }
}
.contact-answer__layout {
  align-items: flex-start;
  display: grid;
  gap: 60px;
  grid-template-columns: 150px minmax(0, 1fr) 250px;
}
@media (max-width: 1199px) {
  .contact-answer__layout {
    gap: 40px;
    grid-template-columns: 120px minmax(0, 1fr) 220px;
  }
}
@media (max-width: 991px) {
  .contact-answer__layout {
    grid-template-columns: 100px minmax(0, 1fr);
  }
}
@media (max-width: 767px) {
  .contact-answer__layout {
    display: block;
  }
}
.contact-answer__label {
  border-top: 1px solid #C8A24A;
  padding-top: 18px;
}
@media (max-width: 767px) {
  .contact-answer__label {
    align-items: center;
    display: flex;
    gap: 16px;
    margin-bottom: 34px;
    max-width: 180px;
    padding-top: 14px;
  }
}
.contact-answer__label p {
  color: #1A2433;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  margin: 10px 0 0;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .contact-answer__label p {
    margin: 0;
  }
}
.contact-answer__label-number {
  color: #C8A24A;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 767px) {
  .contact-answer__label-number {
    font-size: 24px;
  }
}
.contact-answer__content {
  max-width: 760px;
}
.contact-answer__eyebrow {
  color: #8A6D2A;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  margin: 0 0 22px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .contact-answer__eyebrow {
    margin-bottom: 18px;
  }
}
.contact-answer h2 {
  color: #06152A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.3vw, 64px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0;
}
@media (max-width: 767px) {
  .contact-answer h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .contact-answer h2 {
    font-size: 34px;
  }
}
.contact-answer__summary {
  color: #06152A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.55;
  margin: 34px 0 0;
}
@media (max-width: 767px) {
  .contact-answer__summary {
    font-size: 21px;
    margin-top: 28px;
  }
}
.contact-answer__summary a {
  color: #8A6D2A;
  text-decoration-color: rgba(138, 109, 42, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}
.contact-answer__summary a:hover {
  color: #06152A;
  text-decoration-color: #06152A;
}
.contact-answer__summary a:focus-visible {
  outline: 2px solid #C8A24A;
  outline-offset: 4px;
}
.contact-answer__detail {
  color: rgba(26, 36, 51, 0.72);
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  margin: 24px 0 0;
  max-width: 690px;
}
@media (max-width: 767px) {
  .contact-answer__detail {
    font-size: 16px;
    line-height: 1.75;
  }
}
.contact-answer__action {
  align-self: end;
  border-left: 1px solid #DED9CE;
  padding-left: 34px;
}
@media (max-width: 1199px) {
  .contact-answer__action {
    padding-left: 26px;
  }
}
@media (max-width: 991px) {
  .contact-answer__action {
    border-left: 0;
    grid-column: 2;
    padding-left: 0;
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .contact-answer__action {
    margin-top: 38px;
    padding-top: 0;
  }
}
.contact-answer__link {
  align-items: center;
  color: #06152A;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  gap: 20px;
  justify-content: space-between;
  letter-spacing: 0.14em;
  padding: 16px 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
@media (max-width: 991px) {
  .contact-answer__link {
    justify-content: flex-start;
    max-width: 260px;
  }
}
.contact-answer__link::after {
  background-color: #C8A24A;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform-origin: left;
  transition: transform 0.3s ease;
  width: 100%;
}
.contact-answer__link:hover {
  color: #8A6D2A;
}
.contact-answer__link:hover::after {
  transform: scaleX(0.55);
}
.contact-answer__link:hover svg {
  transform: translateX(5px);
}
.contact-answer__link:focus-visible {
  outline: 2px solid #C8A24A;
  outline-offset: 5px;
}
.contact-answer__link svg {
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}
.contact-answer__link {
  position: relative;
}

.connect-options {
  background-color: #FFFFFF;
  padding: 140px 0;
}
@media (max-width: 1199px) {
  .connect-options {
    padding: 110px 0;
  }
}
@media (max-width: 767px) {
  .connect-options {
    padding: 80px 0;
  }
}
.connect-options__header {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  margin-bottom: 76px;
}
@media (max-width: 991px) {
  .connect-options__header {
    gap: 30px;
    grid-template-columns: 1fr;
    margin-bottom: 58px;
  }
}
@media (max-width: 767px) {
  .connect-options__header {
    margin-bottom: 42px;
  }
}
.connect-options__heading {
  max-width: 780px;
}
.connect-options__eyebrow {
  align-items: center;
  color: #8A6D2A;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  gap: 16px;
  letter-spacing: 0.22em;
  line-height: 1.4;
  margin: 0 0 24px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .connect-options__eyebrow {
    margin-bottom: 18px;
  }
}
.connect-options__eyebrow::before {
  background-color: #C8A24A;
  content: "";
  display: block;
  flex: 0 0 42px;
  height: 1px;
  width: 42px;
}
@media (max-width: 575px) {
  .connect-options__eyebrow::before {
    flex-basis: 30px;
    width: 30px;
  }
}
.connect-options h2 {
  color: #06152A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}
@media (max-width: 767px) {
  .connect-options h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .connect-options h2 {
    font-size: 36px;
    text-wrap: wrap;
  }
}
.connect-options__intro {
  border-left: 1px solid #C8A24A;
  color: rgba(26, 36, 51, 0.72);
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .connect-options__intro {
    max-width: 680px;
  }
}
@media (max-width: 767px) {
  .connect-options__intro {
    font-size: 16px;
    line-height: 1.75;
    padding-left: 22px;
  }
}
.connect-options__grid {
  border-left: 1px solid #DED9CE;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 991px) {
  .connect-options__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .connect-options__grid {
    border-left: 0;
  }
}

.connect-option {
  background-color: #FFFFFF;
  border-bottom: 1px solid #DED9CE;
  border-right: 1px solid #DED9CE;
  border-top: 1px solid #DED9CE;
  display: flex;
  flex-direction: column;
  min-height: 490px;
  padding: 38px 38px 34px;
  position: relative;
  transition: background-color 0.4s ease, transform 0.4s ease;
}
@media (max-width: 1199px) {
  .connect-option {
    min-height: 460px;
    padding: 32px 28px 30px;
  }
}
@media (max-width: 991px) {
  .connect-option {
    min-height: auto;
    padding: 38px;
  }
}
@media (max-width: 575px) {
  .connect-option {
    border-left: 1px solid #DED9CE;
    padding: 30px 24px 26px;
  }
}
.connect-option::before {
  background-color: #C8A24A;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: -1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  width: 100%;
}
.connect-option:hover {
  background-color: #F7F5F0;
  transform: translateY(-8px);
}
@media (max-width: 991px) {
  .connect-option:hover {
    transform: none;
  }
}
.connect-option:hover::before {
  transform: scaleX(1);
}
.connect-option:hover .connect-option__icon {
  background-color: #C8A24A;
  border-color: #C8A24A;
  color: #06152A;
}
.connect-option:hover .connect-option__link {
  color: #8A6D2A;
}
.connect-option:hover .connect-option__link svg {
  transform: translateX(5px);
}
.connect-option.connect-option--featured {
  background-color: #06152A;
  border-color: #06152A;
}
.connect-option.connect-option--featured::before {
  transform: scaleX(1);
}
.connect-option.connect-option--featured:hover {
  background-color: #0A1F3C;
}
.connect-option.connect-option--featured .connect-option__number {
  color: rgba(255, 255, 255, 0.45);
}
.connect-option.connect-option--featured .connect-option__icon {
  border-color: rgba(255, 255, 255, 0.22);
  color: #E0C273;
}
.connect-option.connect-option--featured .connect-option__label {
  color: #E0C273;
}
.connect-option.connect-option--featured h3 {
  color: #FFFFFF;
}
.connect-option.connect-option--featured p {
  color: rgba(255, 255, 255, 0.68);
}
.connect-option.connect-option--featured .connect-option__link {
  border-top-color: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}
.connect-option.connect-option--featured .connect-option__link:hover {
  color: #E0C273;
}
.connect-option.connect-option--featured .connect-option__link:focus-visible {
  outline-color: #E0C273;
}
.connect-option__top {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}
@media (max-width: 1199px) {
  .connect-option__top {
    margin-bottom: 56px;
  }
}
@media (max-width: 991px) {
  .connect-option__top {
    margin-bottom: 42px;
  }
}
.connect-option__number {
  color: rgba(26, 36, 51, 0.42);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
}
.connect-option__icon {
  align-items: center;
  border: 1px solid #DED9CE;
  border-radius: 50%;
  color: #8A6D2A;
  display: flex;
  flex: 0 0 62px;
  height: 62px;
  justify-content: center;
  transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
  width: 62px;
}
@media (max-width: 575px) {
  .connect-option__icon {
    flex-basis: 54px;
    height: 54px;
    width: 54px;
  }
}
.connect-option__content {
  margin-bottom: 46px;
}
@media (max-width: 991px) {
  .connect-option__content {
    margin-bottom: 38px;
  }
}
.connect-option__label {
  color: #8A6D2A;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.4;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.connect-option h3 {
  color: #06152A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.16;
  margin: 0;
}
@media (max-width: 1199px) {
  .connect-option h3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .connect-option h3 {
    font-size: 28px;
  }
}
.connect-option p {
  color: rgba(26, 36, 51, 0.68);
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  margin: 22px 0 0;
}
.connect-option__link {
  align-items: center;
  border-top: 1px solid #DED9CE;
  color: #06152A;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  gap: 20px;
  justify-content: space-between;
  letter-spacing: 0.13em;
  margin-top: auto;
  padding-top: 26px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.connect-option__link:hover {
  color: #8A6D2A;
}
.connect-option__link:focus-visible {
  outline: 2px solid #C8A24A;
  outline-offset: 6px;
}
.connect-option__link svg {
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

.contact-form-section {
  background-color: #06152A;
  overflow: hidden;
  padding: 140px 0;
  position: relative;
}
@media (max-width: 1199px) {
  .contact-form-section {
    padding: 110px 0;
  }
}
@media (max-width: 767px) {
  .contact-form-section {
    padding: 80px 0;
  }
}
.contact-form-section::before {
  border: 1px solid rgba(200, 162, 74, 0.09);
  border-radius: 50%;
  content: "";
  height: 620px;
  left: -310px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
}
@media (max-width: 991px) {
  .contact-form-section::before {
    display: none;
  }
}
.contact-form-section__layout {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .contact-form-section__layout {
    grid-template-columns: 1fr;
  }
}
.contact-form-section__introduction {
  background-color: #0A1F3C;
  display: flex;
  padding: 80px 70px;
}
@media (max-width: 1199px) {
  .contact-form-section__introduction {
    padding: 64px 48px;
  }
}
@media (max-width: 991px) {
  .contact-form-section__introduction {
    padding: 64px;
  }
}
@media (max-width: 767px) {
  .contact-form-section__introduction {
    padding: 48px 28px;
  }
}
@media (max-width: 575px) {
  .contact-form-section__introduction {
    padding: 42px 22px;
  }
}
.contact-form-section__introduction-inner {
  display: flex;
  flex-direction: column;
  max-width: 520px;
  width: 100%;
}
@media (max-width: 991px) {
  .contact-form-section__introduction-inner {
    max-width: 680px;
  }
}
.contact-form-section__eyebrow {
  align-items: center;
  color: #E0C273;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  gap: 16px;
  letter-spacing: 0.22em;
  line-height: 1.4;
  margin: 0 0 26px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .contact-form-section__eyebrow {
    margin-bottom: 20px;
  }
}
.contact-form-section__eyebrow::before {
  background-color: #C8A24A;
  content: "";
  display: block;
  flex: 0 0 42px;
  height: 1px;
  width: 42px;
}
@media (max-width: 575px) {
  .contact-form-section__eyebrow::before {
    flex-basis: 30px;
    width: 30px;
  }
}
.contact-form-section h2 {
  color: #FFFFFF;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 4.5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}
@media (max-width: 767px) {
  .contact-form-section h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .contact-form-section h2 {
    font-size: 36px;
    text-wrap: wrap;
  }
}
.contact-form-section__description {
  color: rgba(255, 255, 255, 0.68);
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  margin: 32px 0 0;
  max-width: 470px;
}
@media (max-width: 991px) {
  .contact-form-section__description {
    max-width: 640px;
  }
}
@media (max-width: 767px) {
  .contact-form-section__description {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 26px;
  }
}
.contact-form-section__direct {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 60px;
  padding-top: 28px;
}
@media (max-width: 767px) {
  .contact-form-section__direct {
    margin-top: 44px;
  }
}
.contact-form-section__direct a {
  align-items: center;
  color: #FFFFFF;
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  gap: 20px;
  justify-content: space-between;
  line-height: 1.3;
  margin-top: 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (max-width: 575px) {
  .contact-form-section__direct a {
    font-size: 23px;
  }
}
.contact-form-section__direct a:hover {
  color: #E0C273;
}
.contact-form-section__direct a:hover svg {
  transform: translateX(5px);
}
.contact-form-section__direct a:focus-visible {
  outline: 2px solid #E0C273;
  outline-offset: 6px;
}
.contact-form-section__direct a svg {
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}
.contact-form-section__direct-label {
  color: rgba(255, 255, 255, 0.48);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}
.contact-form-section__privacy-note {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  margin-top: auto;
  padding-top: 70px;
}
@media (max-width: 991px) {
  .contact-form-section__privacy-note {
    margin-top: 0;
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .contact-form-section__privacy-note {
    padding-top: 42px;
  }
}
.contact-form-section__privacy-note p {
  color: rgba(255, 255, 255, 0.48);
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.65;
  margin: 0;
  max-width: 380px;
}
.contact-form-section__privacy-icon {
  color: #C8A24A;
  display: flex;
  flex: 0 0 auto;
  margin-top: 2px;
}
.contact-form-section__form-column {
  background-color: #F7F5F0;
  padding: 76px 76px 70px;
}
@media (max-width: 1199px) {
  .contact-form-section__form-column {
    padding: 62px 48px;
  }
}
@media (max-width: 767px) {
  .contact-form-section__form-column {
    padding: 48px 28px;
  }
}
@media (max-width: 575px) {
  .contact-form-section__form-column {
    padding: 42px 22px;
  }
}

.contact-inquiry-form {
  position: relative;
}
.contact-inquiry-form__honeypot {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}
.contact-inquiry-form__header {
  align-items: center;
  border-bottom: 1px solid #DED9CE;
  display: flex;
  justify-content: space-between;
  margin-bottom: 46px;
  padding-bottom: 20px;
}
@media (max-width: 575px) {
  .contact-inquiry-form__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 38px;
  }
}
.contact-inquiry-form__step {
  color: #06152A;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}
.contact-inquiry-form__required {
  color: rgba(26, 36, 51, 0.5);
  font-family: Arial, sans-serif;
  font-size: 11px;
  line-height: 1.4;
  margin: 0;
}
.contact-inquiry-form__required span {
  color: #8A6D2A;
}
.contact-inquiry-form__grid {
  display: grid;
  gap: 34px 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 575px) {
  .contact-inquiry-form__grid {
    gap: 28px;
    grid-template-columns: 1fr;
  }
}
.contact-inquiry-form__field--full {
  grid-column: 1/-1;
}
.contact-inquiry-form__field label {
  color: #1A2433;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.contact-inquiry-form__field label span {
  color: #8A6D2A;
}
.contact-inquiry-form__field input,
.contact-inquiry-form__field select,
.contact-inquiry-form__field textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #BEB8AC;
  border-radius: 0;
  color: #06152A;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  outline: 0;
  padding: 10px 0 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}
.contact-inquiry-form__field input::-moz-placeholder, .contact-inquiry-form__field select::-moz-placeholder, .contact-inquiry-form__field textarea::-moz-placeholder {
  color: rgba(26, 36, 51, 0.42);
}
.contact-inquiry-form__field input::placeholder,
.contact-inquiry-form__field select::placeholder,
.contact-inquiry-form__field textarea::placeholder {
  color: rgba(26, 36, 51, 0.42);
}
.contact-inquiry-form__field input:hover,
.contact-inquiry-form__field select:hover,
.contact-inquiry-form__field textarea:hover {
  border-color: #8A6D2A;
}
.contact-inquiry-form__field input:focus,
.contact-inquiry-form__field select:focus,
.contact-inquiry-form__field textarea:focus {
  border-color: #C8A24A;
  box-shadow: 0 1px 0 #C8A24A;
}
.contact-inquiry-form__field select {
  cursor: pointer;
  padding-right: 34px;
}
.contact-inquiry-form__field select:invalid {
  color: rgba(26, 36, 51, 0.48);
}
.contact-inquiry-form__field select option {
  background-color: #FFFFFF;
  color: #06152A;
}
.contact-inquiry-form__field textarea {
  min-height: 132px;
  resize: vertical;
}
.contact-inquiry-form__select {
  position: relative;
}
.contact-inquiry-form__select svg {
  color: #8A6D2A;
  pointer-events: none;
  position: absolute;
  right: 2px;
  top: 18px;
}
.contact-inquiry-form__contact-method {
  border: 0;
  border-bottom: 1px solid #DED9CE;
  border-top: 1px solid #DED9CE;
  margin: 44px 0 0;
  padding: 28px 0;
}
.contact-inquiry-form__contact-method legend {
  color: #1A2433;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 0;
  text-transform: uppercase;
}
.contact-inquiry-form__contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  margin-top: 18px;
}
.contact-inquiry-form__radio {
  align-items: center;
  color: #1A2433;
  cursor: pointer;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 14px;
  gap: 10px;
  line-height: 1.4;
  position: relative;
}
.contact-inquiry-form__radio input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}
.contact-inquiry-form__radio input:checked + .contact-inquiry-form__radio-control {
  border-color: #C8A24A;
}
.contact-inquiry-form__radio input:checked + .contact-inquiry-form__radio-control::after {
  opacity: 1;
  transform: scale(1);
}
.contact-inquiry-form__radio input:focus-visible + .contact-inquiry-form__radio-control {
  outline: 2px solid #C8A24A;
  outline-offset: 3px;
}
.contact-inquiry-form__radio-control {
  border: 1px solid #9D978B;
  border-radius: 50%;
  display: block;
  flex: 0 0 18px;
  height: 18px;
  position: relative;
  width: 18px;
}
.contact-inquiry-form__radio-control::after {
  background-color: #C8A24A;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 4px;
  opacity: 0;
  position: absolute;
  top: 4px;
  transform: scale(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: 8px;
}
.contact-inquiry-form__consent {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  gap: 14px;
  margin-top: 30px;
  position: relative;
}
.contact-inquiry-form__consent > input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}
.contact-inquiry-form__consent > input:checked + .contact-inquiry-form__checkbox {
  background-color: #C8A24A;
  border-color: #C8A24A;
  color: #06152A;
}
.contact-inquiry-form__consent > input:checked + .contact-inquiry-form__checkbox svg {
  opacity: 1;
  transform: scale(1);
}
.contact-inquiry-form__consent > input:focus-visible + .contact-inquiry-form__checkbox {
  outline: 2px solid #C8A24A;
  outline-offset: 3px;
}
.contact-inquiry-form__checkbox {
  align-items: center;
  border: 1px solid #9D978B;
  color: #06152A;
  display: flex;
  flex: 0 0 20px;
  height: 20px;
  justify-content: center;
  margin-top: 2px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  width: 20px;
}
.contact-inquiry-form__checkbox svg {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.contact-inquiry-form__consent-text {
  color: rgba(26, 36, 51, 0.62);
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.65;
}
.contact-inquiry-form__consent-text a {
  color: #6F5520;
  text-decoration-color: rgba(111, 85, 32, 0.45);
  text-underline-offset: 3px;
}
.contact-inquiry-form__consent-text a:hover {
  color: #06152A;
  text-decoration-color: #06152A;
}
.contact-inquiry-form__consent-text a:focus-visible {
  outline: 2px solid #C8A24A;
  outline-offset: 3px;
}
.contact-inquiry-form__footer {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 38px;
}
@media (max-width: 767px) {
  .contact-inquiry-form__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
.contact-inquiry-form__footer p {
  color: rgba(26, 36, 51, 0.46);
  font-family: Arial, sans-serif;
  font-size: 11px;
  line-height: 1.5;
  margin: 0;
}
.contact-inquiry-form__submit {
  align-items: center;
  background-color: #06152A;
  border: 1px solid #06152A;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  gap: 34px;
  justify-content: space-between;
  letter-spacing: 0.13em;
  min-height: 62px;
  padding: 16px 26px;
  text-transform: uppercase;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
@media (max-width: 767px) {
  .contact-inquiry-form__submit {
    width: 100%;
  }
}
.contact-inquiry-form__submit:hover {
  background-color: #C8A24A;
  border-color: #C8A24A;
  color: #06152A;
}
.contact-inquiry-form__submit:hover svg {
  transform: translateX(5px);
}
.contact-inquiry-form__submit:focus-visible {
  outline: 2px solid #C8A24A;
  outline-offset: 4px;
}
.contact-inquiry-form__submit svg {
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

.office-information {
  background-color: #F7F5F0;
  overflow: hidden;
  padding: 140px 0;
  position: relative;
}
@media (max-width: 1199px) {
  .office-information {
    padding: 110px 0;
  }
}
@media (max-width: 767px) {
  .office-information {
    padding: 80px 0;
  }
}
.office-information::before {
  color: rgba(6, 21, 42, 0.035);
  content: "ANCHORAGE";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 190px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  position: absolute;
  right: -30px;
  top: 32px;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .office-information::before {
    font-size: 145px;
  }
}
@media (max-width: 991px) {
  .office-information::before {
    display: none;
  }
}
.office-information__layout {
  align-items: center;
  display: grid;
  gap: 110px;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .office-information__layout {
    gap: 70px;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  }
}
@media (max-width: 991px) {
  .office-information__layout {
    gap: 70px;
    grid-template-columns: 1fr;
  }
}
.office-information__content {
  max-width: 640px;
}
@media (max-width: 991px) {
  .office-information__content {
    max-width: 760px;
  }
}
.office-information__eyebrow {
  align-items: center;
  color: #8A6D2A;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  gap: 16px;
  letter-spacing: 0.22em;
  line-height: 1.4;
  margin: 0 0 26px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .office-information__eyebrow {
    margin-bottom: 20px;
  }
}
.office-information__eyebrow::before {
  background-color: #C8A24A;
  content: "";
  display: block;
  flex: 0 0 42px;
  height: 1px;
  width: 42px;
}
@media (max-width: 575px) {
  .office-information__eyebrow::before {
    flex-basis: 30px;
    width: 30px;
  }
}
.office-information h2 {
  color: #06152A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}
@media (max-width: 767px) {
  .office-information h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .office-information h2 {
    font-size: 36px;
    text-wrap: wrap;
  }
}
.office-information__description {
  color: rgba(26, 36, 51, 0.7);
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  margin: 30px 0 0;
  max-width: 570px;
}
@media (max-width: 767px) {
  .office-information__description {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 26px;
  }
}
.office-information__details {
  border-top: 1px solid #DED9CE;
  margin-top: 52px;
}
@media (max-width: 767px) {
  .office-information__details {
    margin-top: 42px;
  }
}
.office-information__detail {
  align-items: flex-start;
  border-bottom: 1px solid #DED9CE;
  display: grid;
  gap: 24px;
  grid-template-columns: 38px minmax(0, 1fr);
  padding: 26px 0;
}
@media (max-width: 575px) {
  .office-information__detail {
    gap: 16px;
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 22px 0;
  }
}
.office-information__detail address,
.office-information__detail > div > p:not(.office-information__detail-label),
.office-information__detail a {
  color: #06152A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-style: normal;
  line-height: 1.55;
  margin: 0;
  text-decoration: none;
}
@media (max-width: 575px) {
  .office-information__detail address,
  .office-information__detail > div > p:not(.office-information__detail-label),
  .office-information__detail a {
    font-size: 18px;
  }
}
.office-information__detail a {
  display: inline-block;
  text-decoration-color: rgba(138, 109, 42, 0.4);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}
.office-information__detail a:hover {
  color: #8A6D2A;
  text-decoration: underline;
  text-decoration-color: #8A6D2A;
}
.office-information__detail a:focus-visible {
  outline: 2px solid #C8A24A;
  outline-offset: 5px;
}
.office-information__detail-number {
  color: #C8A24A;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  padding-top: 5px;
}
.office-information__detail-label {
  color: rgba(26, 36, 51, 0.5);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  margin: 0 0 9px;
  text-transform: uppercase;
}
.office-information__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 34px;
  margin-top: 42px;
}
@media (max-width: 575px) {
  .office-information__actions {
    align-items: stretch;
    flex-direction: column;
  }
}
.office-information__primary-link {
  align-items: center;
  background-color: #06152A;
  border: 1px solid #06152A;
  color: #FFFFFF;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  gap: 34px;
  justify-content: space-between;
  letter-spacing: 0.14em;
  min-height: 60px;
  padding: 16px 26px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
@media (max-width: 575px) {
  .office-information__primary-link {
    width: 100%;
  }
}
.office-information__primary-link:hover {
  background-color: #C8A24A;
  border-color: #C8A24A;
  color: #06152A;
}
.office-information__primary-link:hover svg {
  transform: translateX(5px);
}
.office-information__primary-link:focus-visible {
  outline: 2px solid #C8A24A;
  outline-offset: 4px;
}
.office-information__primary-link svg {
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}
.office-information__secondary-link {
  color: #06152A;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  padding: 12px 0;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .office-information__secondary-link {
    text-align: center;
  }
}
.office-information__secondary-link::after {
  background-color: #C8A24A;
  bottom: 4px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform-origin: left;
  transition: transform 0.3s ease;
  width: 100%;
}
.office-information__secondary-link:hover {
  color: #8A6D2A;
}
.office-information__secondary-link:hover::after {
  transform: scaleX(0.55);
}
.office-information__secondary-link:focus-visible {
  outline: 2px solid #C8A24A;
  outline-offset: 4px;
}
.office-information__visual {
  min-height: 710px;
  position: relative;
}
@media (max-width: 1199px) {
  .office-information__visual {
    min-height: 650px;
  }
}
@media (max-width: 991px) {
  .office-information__visual {
    min-height: 680px;
    max-width: 760px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .office-information__visual {
    min-height: auto;
  }
}
.office-information__image {
  height: 640px;
  margin-left: auto;
  overflow: hidden;
  position: relative;
  width: 84%;
}
@media (max-width: 1199px) {
  .office-information__image {
    height: 590px;
    width: 88%;
  }
}
@media (max-width: 991px) {
  .office-information__image {
    height: 620px;
    width: 85%;
  }
}
@media (max-width: 767px) {
  .office-information__image {
    height: 520px;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .office-information__image {
    height: 420px;
  }
}
.office-information__image::after {
  background: linear-gradient(180deg, rgba(6, 21, 42, 0) 46%, rgba(6, 21, 42, 0.34) 100%);
  content: "";
  inset: 0;
  position: absolute;
}
.office-information__image img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.office-information__location-card {
  align-items: flex-start;
  background-color: #06152A;
  bottom: 0;
  color: #FFFFFF;
  display: flex;
  gap: 20px;
  left: 0;
  max-width: 350px;
  padding: 34px 38px;
  position: absolute;
  width: 100%;
  z-index: 2;
}
@media (max-width: 767px) {
  .office-information__location-card {
    margin: -70px 20px 0;
    max-width: calc(100% - 40px);
    padding: 28px;
    position: relative;
  }
}
@media (max-width: 575px) {
  .office-information__location-card {
    margin-left: 14px;
    margin-right: 14px;
    max-width: calc(100% - 28px);
    padding: 24px 22px;
  }
}
.office-information__location-card p {
  color: #E0C273;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.office-information__location-card span:not(.office-information__location-icon) {
  color: rgba(255, 255, 255, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.55;
}
.office-information__location-icon {
  color: #C8A24A;
  display: flex;
  flex: 0 0 auto;
  margin-top: 2px;
}
.office-information__accent {
  align-items: flex-end;
  border-left: 1px solid #C8A24A;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 18px;
  position: absolute;
  right: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .office-information__accent {
    display: none;
  }
}
.office-information__accent span {
  color: #06152A;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}
.office-information__accent span:last-child {
  color: #8A6D2A;
}

.service-areas {
  background-color: #FFFFFF;
  padding: 140px 0;
}
@media (max-width: 1199px) {
  .service-areas {
    padding: 110px 0;
  }
}
@media (max-width: 767px) {
  .service-areas {
    padding: 80px 0;
  }
}
.service-areas__header {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  margin-bottom: 74px;
}
@media (max-width: 991px) {
  .service-areas__header {
    gap: 32px;
    grid-template-columns: 1fr;
    margin-bottom: 56px;
  }
}
@media (max-width: 767px) {
  .service-areas__header {
    margin-bottom: 42px;
  }
}
.service-areas__heading {
  max-width: 790px;
}
.service-areas__eyebrow {
  align-items: center;
  color: #8A6D2A;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  gap: 16px;
  letter-spacing: 0.22em;
  line-height: 1.4;
  margin: 0 0 24px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .service-areas__eyebrow {
    margin-bottom: 18px;
  }
}
.service-areas__eyebrow::before {
  background-color: #C8A24A;
  content: "";
  display: block;
  flex: 0 0 42px;
  height: 1px;
  width: 42px;
}
@media (max-width: 575px) {
  .service-areas__eyebrow::before {
    flex-basis: 30px;
    width: 30px;
  }
}
.service-areas h2 {
  color: #06152A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}
@media (max-width: 767px) {
  .service-areas h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .service-areas h2 {
    font-size: 36px;
    text-wrap: wrap;
  }
}
.service-areas__introduction {
  border-left: 1px solid #C8A24A;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .service-areas__introduction {
    padding-left: 22px;
  }
}
.service-areas__introduction p {
  color: rgba(26, 36, 51, 0.7);
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 767px) {
  .service-areas__introduction p {
    font-size: 16px;
    line-height: 1.75;
  }
}
.service-areas__introduction a {
  align-items: center;
  color: #06152A;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  gap: 18px;
  letter-spacing: 0.13em;
  margin-top: 28px;
  padding-bottom: 8px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}
.service-areas__introduction a::after {
  background-color: #C8A24A;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform-origin: left;
  transition: transform 0.3s ease;
  width: 100%;
}
.service-areas__introduction a:hover {
  color: #8A6D2A;
}
.service-areas__introduction a:hover::after {
  transform: scaleX(0.55);
}
.service-areas__introduction a:hover svg {
  transform: translateX(5px);
}
.service-areas__introduction a:focus-visible {
  outline: 2px solid #C8A24A;
  outline-offset: 5px;
}
.service-areas__introduction a svg {
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}
.service-areas__grid {
  display: grid;
  gap: 18px;
  grid-auto-rows: 320px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
@media (max-width: 1199px) {
  .service-areas__grid {
    grid-auto-rows: 300px;
  }
}
@media (max-width: 991px) {
  .service-areas__grid {
    grid-auto-rows: 330px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .service-areas__grid {
    grid-auto-rows: 360px;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .service-areas__grid {
    grid-auto-rows: 320px;
    gap: 14px;
  }
}
.service-areas__footer {
  align-items: center;
  border-bottom: 1px solid #DED9CE;
  display: flex;
  justify-content: space-between;
  margin-top: 46px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .service-areas__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 34px;
  }
}
.service-areas__footer p {
  color: rgba(26, 36, 51, 0.56);
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}
.service-areas__footer a {
  align-items: center;
  color: #06152A;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  gap: 18px;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.service-areas__footer a:hover {
  color: #8A6D2A;
}
.service-areas__footer a:hover svg {
  transform: translateX(5px);
}
.service-areas__footer a:focus-visible {
  outline: 2px solid #C8A24A;
  outline-offset: 5px;
}
.service-areas__footer a svg {
  transition: transform 0.3s ease;
}

.service-area {
  grid-column: span 4;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
@media (max-width: 991px) {
  .service-area {
    grid-column: auto;
  }
}
.service-area--large {
  grid-column: span 8;
  grid-row: span 2;
}
@media (max-width: 991px) {
  .service-area--large {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 767px) {
  .service-area--large {
    grid-column: auto;
  }
}
.service-area--wide {
  grid-column: span 8;
}
@media (max-width: 991px) {
  .service-area--wide {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .service-area--wide {
    grid-column: auto;
  }
}
.service-area::after {
  border: 1px solid rgba(255, 255, 255, 0.3);
  content: "";
  inset: 14px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: scale(0.98);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 3;
}
.service-area:hover::after {
  opacity: 1;
  transform: scale(1);
}
.service-area:hover .service-area__image img {
  transform: scale(1.06);
}
.service-area:hover .service-area__overlay {
  background: linear-gradient(180deg, rgba(6, 21, 42, 0.18) 0%, rgba(6, 21, 42, 0.82) 100%);
}
.service-area:hover .service-area__arrow {
  background-color: #C8A24A;
  border-color: #C8A24A;
  color: #06152A;
  transform: translateX(4px);
}
.service-area:focus-visible {
  outline: 3px solid #C8A24A;
  outline-offset: 4px;
}
.service-area__image {
  inset: 0;
  overflow: hidden;
  position: absolute;
}
.service-area__image img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
}
.service-area__overlay {
  background: linear-gradient(180deg, rgba(6, 21, 42, 0.16) 0%, rgba(6, 21, 42, 0.72) 100%);
  inset: 0;
  position: absolute;
  transition: background 0.4s ease;
  z-index: 1;
}
.service-area__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 30px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  .service-area__content {
    padding: 26px;
  }
}
@media (max-width: 575px) {
  .service-area__content {
    padding: 22px;
  }
}
.service-area__top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.service-area__number, .service-area__type {
  color: rgba(255, 255, 255, 0.7);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.service-area__type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 5px;
}
.service-area__bottom {
  align-items: flex-end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
.service-area__bottom p {
  color: #E0C273;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.service-area__bottom h3 {
  color: #FFFFFF;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0;
  max-width: 430px;
}
@media (max-width: 1199px) {
  .service-area__bottom h3 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .service-area__bottom h3 {
    font-size: 26px;
  }
}
.service-area--large .service-area__bottom h3 {
  font-size: 46px;
  max-width: 560px;
}
@media (max-width: 1199px) {
  .service-area--large .service-area__bottom h3 {
    font-size: 38px;
  }
}
@media (max-width: 991px) {
  .service-area--large .service-area__bottom h3 {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  .service-area--large .service-area__bottom h3 {
    font-size: 29px;
  }
}
.service-area__arrow {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  flex: 0 0 52px;
  height: 52px;
  justify-content: center;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  width: 52px;
}
@media (max-width: 575px) {
  .service-area__arrow {
    flex-basis: 46px;
    height: 46px;
    width: 46px;
  }
}

.contact-faq {
  background-color: #F7F5F0;
  padding: 140px 0;
}
@media (max-width: 1199px) {
  .contact-faq {
    padding: 110px 0;
  }
}
@media (max-width: 767px) {
  .contact-faq {
    padding: 80px 0;
  }
}
.contact-faq__layout {
  align-items: start;
  display: grid;
  gap: 110px;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
}
@media (max-width: 1199px) {
  .contact-faq__layout {
    gap: 70px;
  }
}
@media (max-width: 991px) {
  .contact-faq__layout {
    gap: 58px;
    grid-template-columns: 1fr;
  }
}
.contact-faq__introduction {
  position: sticky;
  top: 140px;
}
@media (max-width: 991px) {
  .contact-faq__introduction {
    max-width: 720px;
    position: static;
  }
}
.contact-faq__eyebrow {
  align-items: center;
  color: #8A6D2A;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  gap: 16px;
  letter-spacing: 0.22em;
  line-height: 1.4;
  margin: 0 0 24px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .contact-faq__eyebrow {
    margin-bottom: 18px;
  }
}
.contact-faq__eyebrow::before {
  background-color: #C8A24A;
  content: "";
  display: block;
  flex: 0 0 42px;
  height: 1px;
  width: 42px;
}
@media (max-width: 575px) {
  .contact-faq__eyebrow::before {
    flex-basis: 30px;
    width: 30px;
  }
}
.contact-faq h2 {
  color: #06152A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}
@media (max-width: 767px) {
  .contact-faq h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .contact-faq h2 {
    font-size: 36px;
    text-wrap: wrap;
  }
}
.contact-faq__description {
  color: rgba(26, 36, 51, 0.7);
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  margin: 30px 0 0;
  max-width: 480px;
}
@media (max-width: 767px) {
  .contact-faq__description {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 26px;
  }
}
.contact-faq__contact {
  border-left: 1px solid #C8A24A;
  margin-top: 52px;
  padding-left: 26px;
}
@media (max-width: 767px) {
  .contact-faq__contact {
    margin-top: 38px;
    padding-left: 20px;
  }
}
.contact-faq__contact p {
  color: rgba(26, 36, 51, 0.52);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.4;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.contact-faq__contact a {
  align-items: center;
  color: #06152A;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  gap: 18px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-faq__contact a:hover {
  color: #8A6D2A;
}
.contact-faq__contact a:hover svg {
  transform: translateX(5px);
}
.contact-faq__contact a:focus-visible {
  outline: 2px solid #C8A24A;
  outline-offset: 5px;
}
.contact-faq__contact a svg {
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}
.contact-faq__list {
  border-top: 1px solid #BEB8AC;
}
.contact-faq__item {
  border-bottom: 1px solid #BEB8AC;
}
.contact-faq__item h3 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
.contact-faq__item:has(.contact-faq__question[aria-expanded=true]) .contact-faq__question-number {
  color: #8A6D2A;
}
.contact-faq__item:has(.contact-faq__question[aria-expanded=true]) .contact-faq__question-text {
  color: #8A6D2A;
}
.contact-faq__item:has(.contact-faq__question[aria-expanded=true]) .contact-faq__toggle {
  background-color: #06152A;
  border-color: #06152A;
  color: #FFFFFF;
}
.contact-faq__item:has(.contact-faq__question[aria-expanded=true]) .contact-faq__toggle span:last-child {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}
.contact-faq__question {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: #06152A;
  cursor: pointer;
  display: grid;
  gap: 24px;
  grid-template-columns: 42px minmax(0, 1fr) 48px;
  padding: 34px 0;
  text-align: left;
  width: 100%;
}
@media (max-width: 767px) {
  .contact-faq__question {
    gap: 16px;
    grid-template-columns: 30px minmax(0, 1fr) 42px;
    padding: 28px 0;
  }
}
@media (max-width: 575px) {
  .contact-faq__question {
    align-items: start;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) 40px;
  }
}
.contact-faq__question:hover .contact-faq__question-text {
  color: #8A6D2A;
}
.contact-faq__question:hover .contact-faq__toggle {
  border-color: #C8A24A;
}
.contact-faq__question:focus-visible {
  outline: 2px solid #C8A24A;
  outline-offset: 5px;
}
.contact-faq__question-number {
  color: rgba(26, 36, 51, 0.42);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  transition: color 0.3s ease;
}
@media (max-width: 575px) {
  .contact-faq__question-number {
    display: none;
  }
}
.contact-faq__question-text {
  color: #06152A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.3;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .contact-faq__question-text {
    font-size: 23px;
  }
}
@media (max-width: 575px) {
  .contact-faq__question-text {
    font-size: 21px;
    padding-top: 6px;
  }
}
.contact-faq__toggle {
  border: 1px solid #BEB8AC;
  border-radius: 50%;
  color: #06152A;
  display: block;
  height: 48px;
  position: relative;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  width: 48px;
}
@media (max-width: 767px) {
  .contact-faq__toggle {
    height: 42px;
    width: 42px;
  }
}
@media (max-width: 575px) {
  .contact-faq__toggle {
    height: 40px;
    width: 40px;
  }
}
.contact-faq__toggle span {
  background-color: currentColor;
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
  width: 14px;
}
.contact-faq__toggle span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}
.contact-faq__answer {
  overflow: hidden;
}
.contact-faq__answer[hidden] {
  display: none;
}
.contact-faq__answer-inner {
  padding: 0 72px 34px 66px;
}
@media (max-width: 767px) {
  .contact-faq__answer-inner {
    padding: 0 58px 28px 46px;
  }
}
@media (max-width: 575px) {
  .contact-faq__answer-inner {
    padding: 0 0 26px;
  }
}
.contact-faq__answer-inner p {
  color: rgba(26, 36, 51, 0.7);
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  max-width: 700px;
}
@media (max-width: 575px) {
  .contact-faq__answer-inner p {
    font-size: 15px;
    line-height: 1.75;
  }
}
.contact-faq__answer-inner a {
  color: #6F5520;
  text-decoration-color: rgba(111, 85, 32, 0.4);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.contact-faq__answer-inner a:hover {
  color: #06152A;
  text-decoration-color: #06152A;
}
.contact-faq__answer-inner a:focus-visible {
  outline: 2px solid #C8A24A;
  outline-offset: 3px;
}

.legal-hero {
  --legal-hero-header-offset:0px;
  align-items: center;
  background-color: #06152A;
  display: flex;
  isolation: isolate;
  min-height: 620px;
  overflow: hidden;
  padding: calc(130px + var(--legal-hero-header-offset)) 0 100px;
  position: relative;
}
@media (max-width: 991px) {
  .legal-hero {
    min-height: 570px;
    padding: calc(120px + var(--legal-hero-header-offset)) 0 90px;
  }
}
@media (max-width: 767px) {
  .legal-hero {
    min-height: 540px;
    padding: calc(110px + var(--legal-hero-header-offset)) 0 80px;
  }
}
@media (max-width: 479px) {
  .legal-hero {
    min-height: 500px;
    padding: calc(105px + var(--legal-hero-header-offset)) 0 70px;
  }
}
.legal-hero__background {
  inset: 0;
  position: absolute;
  z-index: -3;
}
.legal-hero__background img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
.legal-hero__overlay {
  background: linear-gradient(180deg, rgba(6, 21, 42, 0.78) 0%, rgba(6, 21, 42, 0.62) 45%, rgba(6, 21, 42, 0.9) 100%), linear-gradient(90deg, rgba(6, 21, 42, 0.7) 0%, rgba(6, 21, 42, 0.18) 50%, rgba(6, 21, 42, 0.7) 100%);
  inset: 0;
  position: absolute;
  z-index: -2;
}
.legal-hero__overlay::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 30%);
  content: "";
  inset: 0;
  position: absolute;
}
.legal-hero__content {
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
}
@media (max-width: 767px) {
  .legal-hero__content {
    max-width: 100%;
  }
}
.legal-hero__breadcrumb {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .legal-hero__breadcrumb {
    margin-bottom: 34px;
  }
}
@media (max-width: 767px) {
  .legal-hero__breadcrumb {
    margin-bottom: 28px;
  }
}
.legal-hero__breadcrumb ol {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.legal-hero__breadcrumb li {
  color: rgba(255, 255, 255, 0.65);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .legal-hero__breadcrumb li {
    font-size: 10px;
  }
}
.legal-hero__breadcrumb li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: 0.3s ease;
}
.legal-hero__breadcrumb li a:hover {
  color: #E0C273;
}
.legal-hero__eyebrow {
  align-items: center;
  color: #E0C273;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  gap: 14px;
  justify-content: center;
  letter-spacing: 0.22em;
  line-height: 1.5;
  margin: 0 0 22px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .legal-hero__eyebrow {
    font-size: 10px;
    gap: 10px;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
  }
}
.legal-hero__eyebrow::before, .legal-hero__eyebrow::after {
  background: #C8A24A;
  content: "";
  height: 1px;
  width: 40px;
}
@media (max-width: 767px) {
  .legal-hero__eyebrow::before, .legal-hero__eyebrow::after {
    width: 24px;
  }
}
.legal-hero h1 {
  color: #FFFFFF;
  font-family: Georgia, serif;
  font-size: 92px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}
@media (max-width: 1199px) {
  .legal-hero h1 {
    font-size: 76px;
  }
}
@media (max-width: 991px) {
  .legal-hero h1 {
    font-size: 64px;
  }
}
@media (max-width: 767px) {
  .legal-hero h1 {
    font-size: 52px;
  }
}
@media (max-width: 479px) {
  .legal-hero h1 {
    font-size: 42px;
  }
}
.legal-hero__intro {
  color: rgba(255, 255, 255, 0.82);
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.8;
  margin: 30px auto 0;
  max-width: 720px;
}
@media (max-width: 991px) {
  .legal-hero__intro {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .legal-hero__intro {
    font-size: 16px;
    line-height: 1.7;
    margin-top: 24px;
  }
}
@media (max-width: 479px) {
  .legal-hero__intro {
    font-size: 15px;
  }
}
.legal-hero__updated {
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.12em;
  line-height: 1.5;
  margin-top: 30px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .legal-hero__updated {
    flex-direction: column;
    gap: 4px;
    margin-top: 24px;
  }
}
.legal-hero__updated span {
  align-items: center;
  display: flex;
  gap: 10px;
}
.legal-hero__updated span::after {
  background: #C8A24A;
  border-radius: 50%;
  content: "";
  height: 3px;
  width: 3px;
}
@media (max-width: 767px) {
  .legal-hero__updated span::after {
    display: none;
  }
}
.legal-hero__updated time {
  color: #FFFFFF;
}
.legal-hero__scroll {
  align-items: center;
  bottom: 32px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  gap: 8px;
  left: 50%;
  letter-spacing: 0.18em;
  position: absolute;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .legal-hero__scroll {
    bottom: 20px;
  }
  .legal-hero__scroll span {
    display: none;
  }
}
.legal-hero__scroll:hover {
  color: #E0C273;
}
.legal-hero__scroll svg {
  animation: legalHeroArrow 1.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .legal-hero__scroll svg {
    animation: none;
  }
}

@keyframes legalHeroArrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
.legal-content {
  background-color: #F7F5F0;
  padding: 140px 0;
}
@media (max-width: 1199px) {
  .legal-content {
    padding: 110px 0;
  }
}
@media (max-width: 767px) {
  .legal-content {
    padding: 80px 0;
  }
}
.legal-content-wrapper {
  align-items: flex-start;
  display: grid;
  gap: 90px;
  grid-template-columns: 280px minmax(0, 820px);
  justify-content: center;
}
@media (max-width: 1199px) {
  .legal-content-wrapper {
    gap: 60px;
    grid-template-columns: 240px minmax(0, 760px);
  }
}
@media (max-width: 991px) {
  .legal-content-wrapper {
    display: block;
  }
}
.legal-content .legal-navigation {
  position: sticky;
  top: 150px;
}
@media (max-width: 1023.98px) {
  .legal-content .legal-navigation {
    margin-bottom: 64px;
    position: static;
  }
}
@media (max-width: 767px) {
  .legal-content .legal-navigation {
    margin-bottom: 48px;
  }
}
.legal-content .legal-navigation-inner {
  border-left: 1px solid #DED9CE;
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .legal-content .legal-navigation-inner {
    padding-left: 24px;
  }
}
@media (max-width: 1023.98px) {
  .legal-content .legal-navigation-inner {
    background-color: #FFFFFF;
    border: 1px solid #DED9CE;
    padding: 28px 30px;
  }
}
@media (max-width: 767px) {
  .legal-content .legal-navigation-inner {
    padding: 24px;
  }
}
@media (max-width: 479px) {
  .legal-content .legal-navigation-inner {
    padding: 22px 20px;
  }
}
.legal-content .legal-navigation-title {
  color: #C8A24A;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.legal-content .legal-navigation nav ol {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023.98px) {
  .legal-content .legal-navigation nav ol {
    -moz-column-gap: 32px;
         column-gap: 32px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 14px;
  }
}
@media (max-width: 600px) {
  .legal-content .legal-navigation nav ol {
    display: flex;
  }
}
.legal-content .legal-navigation nav li {
  margin: 0;
}
.legal-content .legal-navigation nav a {
  color: #536071;
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}
.legal-content .legal-navigation nav a:hover {
  color: #0A1F3C;
  transform: translateX(3px);
}
.legal-content .legal-navigation nav a:focus-visible {
  border-radius: 2px;
  outline: 2px solid #C8A24A;
  outline-offset: 4px;
}
.legal-content .legal-article {
  min-width: 0;
}
.legal-content .legal-introduction {
  border-bottom: 1px solid #DED9CE;
  padding-bottom: 72px;
  scroll-margin-top: 130px;
}
@media (max-width: 767px) {
  .legal-content .legal-introduction {
    padding-bottom: 52px;
    scroll-margin-top: 100px;
  }
}
.legal-content .legal-introduction h2 {
  color: #06152A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 28px;
}
@media (max-width: 767px) {
  .legal-content .legal-introduction h2 {
    font-size: 38px;
  }
}
@media (max-width: 479px) {
  .legal-content .legal-introduction h2 {
    font-size: 34px;
  }
}
.legal-content .legal-introduction p {
  color: #536071;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.85;
  margin: 0;
}
@media (max-width: 767px) {
  .legal-content .legal-introduction p {
    font-size: 16px;
    line-height: 1.75;
  }
}
.legal-content .legal-introduction p + p {
  margin-top: 22px;
}
.legal-content .legal-introduction .legal-eyebrow {
  color: #C8A24A;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.5;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.legal-content .legal-introduction .legal-lead {
  color: #1A2433;
  font-size: 21px;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .legal-content .legal-introduction .legal-lead {
    font-size: 18px;
    line-height: 1.65;
  }
}
.legal-content .legal-section {
  border-bottom: 1px solid #DED9CE;
  display: grid;
  gap: 30px;
  grid-template-columns: 52px minmax(0, 1fr);
  padding: 72px 0;
  scroll-margin-top: 130px;
}
@media (max-width: 767px) {
  .legal-content .legal-section {
    gap: 18px;
    grid-template-columns: 1fr;
    padding: 52px 0;
    scroll-margin-top: 100px;
  }
}
.legal-content .legal-section:last-of-type {
  border-bottom: 0;
}
.legal-content .legal-section-number {
  color: #C8A24A;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .legal-content .legal-section-number {
    padding-top: 0;
  }
}
.legal-content .legal-section-body {
  min-width: 0;
}
.legal-content .legal-section-body h2 {
  color: #06152A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 26px;
}
@media (max-width: 767px) {
  .legal-content .legal-section-body h2 {
    font-size: 30px;
    margin-bottom: 22px;
  }
}
@media (max-width: 479px) {
  .legal-content .legal-section-body h2 {
    font-size: 28px;
  }
}
.legal-content .legal-section-body h3 {
  color: #1A2433;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
  margin: 38px 0 14px;
}
@media (max-width: 767px) {
  .legal-content .legal-section-body h3 {
    font-size: 20px;
    margin-top: 32px;
  }
}
.legal-content .legal-section-body p {
  color: #536071;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
}
@media (max-width: 767px) {
  .legal-content .legal-section-body p {
    font-size: 15px;
    line-height: 1.8;
  }
}
.legal-content .legal-section-body p + p {
  margin-top: 20px;
}
.legal-content .legal-section-body ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 22px 0;
  padding: 0;
}
.legal-content .legal-section-body ul li {
  color: #536071;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  padding-left: 25px;
  position: relative;
}
@media (max-width: 767px) {
  .legal-content .legal-section-body ul li {
    font-size: 15px;
  }
}
.legal-content .legal-section-body ul li::before {
  background-color: #C8A24A;
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 2px;
  position: absolute;
  top: 11px;
  width: 5px;
}
.legal-content .legal-section-body ul li strong {
  color: #1A2433;
}
.legal-content .legal-section-body a {
  color: #0A1F3C;
  text-decoration-color: #C8A24A;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.25s ease;
}
.legal-content .legal-section-body a:hover {
  color: #9A772A;
}
.legal-content .legal-section-body a:focus-visible {
  border-radius: 2px;
  outline: 2px solid #C8A24A;
  outline-offset: 3px;
}
.legal-content .legal-section-body .legal-contact-card {
  background-color: #FFFFFF;
  border: 1px solid #DED9CE;
  font-style: normal;
  margin-top: 30px;
  padding: 34px 36px;
  position: relative;
}
@media (max-width: 767px) {
  .legal-content .legal-section-body .legal-contact-card {
    padding: 28px;
  }
}
@media (max-width: 479px) {
  .legal-content .legal-section-body .legal-contact-card {
    padding: 24px 22px;
  }
}
.legal-content .legal-section-body .legal-contact-card::before {
  background-color: #C8A24A;
  content: "";
  height: 100%;
  left: -1px;
  position: absolute;
  top: 0;
  width: 3px;
}
.legal-content .legal-section-body .legal-contact-card p {
  margin: 0;
}
.legal-content .legal-section-body .legal-contact-card p + p {
  margin-top: 9px;
}
.legal-content .legal-section-body .legal-contact-card a {
  font-weight: 700;
}
.legal-content .legal-section-body .legal-contact-card .legal-contact-name {
  color: #06152A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.4;
}
.legal-content .legal-section--contact {
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .legal-content .legal-section--contact {
    padding-bottom: 30px;
  }
}
.legal-content .legal-notice {
  align-items: flex-start;
  background-color: #0A1F3C;
  display: flex;
  gap: 16px;
  margin-top: 50px;
  padding: 26px 28px;
}
@media (max-width: 767px) {
  .legal-content .legal-notice {
    margin-top: 36px;
    padding: 22px;
  }
}
.legal-content .legal-notice-icon {
  color: #E0C273;
  display: flex;
  flex: 0 0 22px;
  margin-top: 2px;
}
.legal-content .legal-notice p {
  color: rgba(255, 255, 255, 0.76);
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.sitemap-content {
  background-color: #F7F5F0;
  padding: 140px 0;
}
@media (max-width: 1199px) {
  .sitemap-content {
    padding: 110px 0;
  }
}
@media (max-width: 767px) {
  .sitemap-content {
    padding: 80px 0;
  }
}
.sitemap-content-wrapper {
  margin: 0 auto;
  max-width: 1180px;
}
.sitemap-content-intro {
  margin: 0 auto 80px;
  max-width: 760px;
  text-align: center;
}
@media (max-width: 1023.98px) {
  .sitemap-content-intro {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .sitemap-content-intro {
    margin-bottom: 48px;
  }
}
.sitemap-content-intro .section-eyebrow {
  align-items: center;
  color: #C8A24A;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  gap: 14px;
  justify-content: center;
  letter-spacing: 0.2em;
  line-height: 1.5;
  margin: 0 0 20px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .sitemap-content-intro .section-eyebrow {
    font-size: 10px;
    gap: 10px;
    letter-spacing: 0.17em;
    margin-bottom: 16px;
  }
}
.sitemap-content-intro .section-eyebrow::before, .sitemap-content-intro .section-eyebrow::after {
  background-color: #C8A24A;
  content: "";
  height: 1px;
  width: 36px;
}
@media (max-width: 767px) {
  .sitemap-content-intro .section-eyebrow::before, .sitemap-content-intro .section-eyebrow::after {
    width: 24px;
  }
}
.sitemap-content-intro h2 {
  color: #06152A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0;
}
@media (max-width: 1199px) {
  .sitemap-content-intro h2 {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .sitemap-content-intro h2 {
    font-size: 38px;
  }
}
@media (max-width: 479px) {
  .sitemap-content-intro h2 {
    font-size: 34px;
  }
}
.sitemap-content-intro p {
  color: #536071;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  margin: 24px auto 0;
  max-width: 680px;
}
@media (max-width: 767px) {
  .sitemap-content-intro p {
    font-size: 15px;
    line-height: 1.75;
    margin-top: 20px;
  }
}
.sitemap-content-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 991px) {
  .sitemap-content-grid {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .sitemap-content-grid {
    grid-template-columns: 1fr;
  }
}
.sitemap-content-group {
  background-color: #FFFFFF;
  border: 1px solid #DED9CE;
  padding: 42px 42px 38px;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
@media (max-width: 1199px) {
  .sitemap-content-group {
    padding: 36px 34px 32px;
  }
}
@media (max-width: 767px) {
  .sitemap-content-group {
    padding: 30px 26px 26px;
  }
}
@media (max-width: 479px) {
  .sitemap-content-group {
    padding: 26px 22px 22px;
  }
}
.sitemap-content-group::before {
  background-color: #C8A24A;
  content: "";
  height: 3px;
  left: -1px;
  position: absolute;
  top: -1px;
  width: 72px;
}
@media (max-width: 767px) {
  .sitemap-content-group::before {
    width: 56px;
  }
}
.sitemap-content-group:hover {
  border-color: #C8A24A;
  box-shadow: 0 20px 48px rgba(6, 21, 42, 0.08);
  transform: translateY(-4px);
}
@media (max-width: 767px) {
  .sitemap-content-group:hover {
    transform: none;
  }
}
.sitemap-content-group h3 {
  color: #06152A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 28px;
  padding-bottom: 22px;
  position: relative;
}
@media (max-width: 767px) {
  .sitemap-content-group h3 {
    font-size: 25px;
    margin-bottom: 22px;
    padding-bottom: 18px;
  }
}
.sitemap-content-group h3::after {
  background-color: #DED9CE;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
.sitemap-content-group ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sitemap-content-group li {
  border-bottom: 1px solid rgba(222, 217, 206, 0.75);
  margin: 0;
}
.sitemap-content-group li:last-child {
  border-bottom: 0;
}
.sitemap-content-group a {
  align-items: center;
  color: #344154;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  gap: 18px;
  justify-content: space-between;
  line-height: 1.5;
  min-height: 52px;
  padding: 12px 0;
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
@media (max-width: 767px) {
  .sitemap-content-group a {
    font-size: 14px;
    min-height: 48px;
    padding: 11px 0;
  }
}
.sitemap-content-group a span {
  display: block;
  min-width: 0;
}
.sitemap-content-group a svg {
  color: #C8A24A;
  flex: 0 0 18px;
  transition: transform 0.25s ease;
}
.sitemap-content-group a:hover {
  color: #0A1F3C;
  padding-left: 5px;
}
.sitemap-content-group a:hover svg {
  transform: translateX(4px);
}
.sitemap-content-group a:focus-visible {
  border-radius: 2px;
  outline: 2px solid #C8A24A;
  outline-offset: 3px;
}
.sitemap-content-empty {
  background-color: #FFFFFF;
  border: 1px solid #DED9CE;
  grid-column: 1/-1;
  padding: 42px;
  text-align: center;
}
@media (max-width: 767px) {
  .sitemap-content-empty {
    padding: 32px 24px;
  }
}
.sitemap-content-empty p {
  color: #536071;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 767px) {
  .sitemap-content-empty p {
    font-size: 15px;
  }
}
.sitemap-content-footer {
  align-items: center;
  background-color: #06152A;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-top: 72px;
  overflow: hidden;
  padding: 42px 46px;
  position: relative;
}
@media (max-width: 1023.98px) {
  .sitemap-content-footer {
    margin-top: 60px;
    padding: 38px;
  }
}
@media (max-width: 767px) {
  .sitemap-content-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
    margin-top: 48px;
    padding: 32px 26px;
  }
}
@media (max-width: 479px) {
  .sitemap-content-footer {
    padding: 28px 22px;
  }
}
.sitemap-content-footer::after {
  border: 1px solid rgba(200, 162, 74, 0.25);
  border-radius: 50%;
  content: "";
  height: 220px;
  position: absolute;
  right: -90px;
  top: -110px;
  width: 220px;
}
@media (max-width: 767px) {
  .sitemap-content-footer::after {
    height: 170px;
    right: -80px;
    top: -80px;
    width: 170px;
  }
}
.sitemap-content-footer-content {
  max-width: 650px;
  position: relative;
  z-index: 1;
}
.sitemap-content-footer-content h3 {
  color: #FFFFFF;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
}
@media (max-width: 767px) {
  .sitemap-content-footer-content h3 {
    font-size: 26px;
  }
}
.sitemap-content-footer-content p {
  color: rgba(255, 255, 255, 0.72);
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  margin: 14px 0 0;
}
@media (max-width: 767px) {
  .sitemap-content-footer-content p {
    font-size: 14px;
  }
}
.sitemap-content-footer-button {
  align-items: center;
  background-color: #C8A24A;
  border: 1px solid #C8A24A;
  color: #06152A;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  gap: 12px;
  justify-content: center;
  letter-spacing: 0.14em;
  line-height: 1.4;
  min-height: 52px;
  padding: 15px 24px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  z-index: 1;
}
@media (max-width: 479px) {
  .sitemap-content-footer-button {
    width: 100%;
  }
}
.sitemap-content-footer-button svg {
  transition: transform 0.25s ease;
}
.sitemap-content-footer-button:hover {
  background-color: #E0C273;
  border-color: #E0C273;
}
.sitemap-content-footer-button:hover svg {
  transform: translateX(4px);
}
.sitemap-content-footer-button:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 4px;
}

.reviews-hero {
  align-items: center;
  background-color: #06152a;
  display: flex;
  justify-content: center;
  min-height: 800px;
  overflow: hidden;
  padding: 200px 0 120px;
  position: relative;
}
@media (max-width: 1199.98px) {
  .reviews-hero {
    min-height: 720px;
    padding: 180px 0 110px;
  }
}
@media (max-width: 767.98px) {
  .reviews-hero {
    min-height: 640px;
    padding: 135px 0 95px;
  }
}
.reviews-hero__media {
  inset: 0;
  position: absolute;
  z-index: 0;
}
.reviews-hero__media img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
@media (max-width: 767.98px) {
  .reviews-hero__media img {
    -o-object-position: 62% center;
       object-position: 62% center;
  }
}
.reviews-hero__overlay {
  background: linear-gradient(180deg, rgba(6, 21, 42, 0.76) 0%, rgba(6, 21, 42, 0.48) 42%, rgba(6, 21, 42, 0.82) 100%), linear-gradient(90deg, rgba(6, 21, 42, 0.3) 0%, rgba(6, 21, 42, 0.08) 50%, rgba(6, 21, 42, 0.36) 100%);
  inset: 0;
  position: absolute;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .reviews-hero__overlay {
    background: linear-gradient(180deg, rgba(6, 21, 42, 0.82) 0%, rgba(6, 21, 42, 0.56) 42%, rgba(6, 21, 42, 0.88) 100%), linear-gradient(90deg, rgba(6, 21, 42, 0.36) 0%, rgba(6, 21, 42, 0.12) 50%, rgba(6, 21, 42, 0.42) 100%);
  }
}
.reviews-hero .container {
  position: relative;
  z-index: 2;
}
.reviews-hero__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1180px;
  text-align: center;
}
@media (max-width: 1199.98px) {
  .reviews-hero__content {
    max-width: 980px;
  }
}
@media (max-width: 767.98px) {
  .reviews-hero__content {
    max-width: 100%;
  }
}
.reviews-hero__content h1 {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
}
@media (max-width: 1199.98px) {
  .reviews-hero__content h1 {
    font-size: 80px;
  }
}
@media (max-width: 767.98px) {
  .reviews-hero__content h1 {
    font-size: 52px;
    letter-spacing: -0.035em;
    line-height: 1.04;
  }
}
@media (max-width: 479.98px) {
  .reviews-hero__content h1 {
    font-size: 44px;
  }
}
.reviews-hero__eyebrow {
  color: #e0c273;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.26em;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .reviews-hero__eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
  }
}
.reviews-hero__eyebrow-line {
  background-color: #c8a24a;
  display: block;
  height: 1px;
  margin: 22px 0 52px;
  width: 62px;
}
@media (max-width: 1199.98px) {
  .reviews-hero__eyebrow-line {
    margin-bottom: 42px;
  }
}
@media (max-width: 767.98px) {
  .reviews-hero__eyebrow-line {
    margin: 18px 0 34px;
    width: 48px;
  }
}
.reviews-hero__divider {
  align-items: center;
  color: #c8a24a;
  display: flex;
  justify-content: center;
  margin: 34px 0 30px;
  width: min(100%, 300px);
}
@media (max-width: 767.98px) {
  .reviews-hero__divider {
    margin: 28px 0 24px;
    max-width: 230px;
  }
}
.reviews-hero__divider span {
  background-color: currentColor;
  display: block;
  flex: 1;
  height: 1px;
}
.reviews-hero__divider svg {
  flex: 0 0 auto;
  margin: 0 12px;
}
@media (max-width: 767.98px) {
  .reviews-hero__divider svg {
    height: 24px;
    margin: 0 10px;
    width: 24px;
  }
}
.reviews-hero__description {
  color: rgba(255, 255, 255, 0.9);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  max-width: 720px;
  text-wrap: balance;
}
@media (max-width: 1199.98px) {
  .reviews-hero__description {
    font-size: 18px;
    max-width: 650px;
  }
}
@media (max-width: 767.98px) {
  .reviews-hero__description {
    font-size: 15px;
    line-height: 1.65;
    max-width: 320px;
  }
}
.reviews-hero__scroll {
  bottom: 38px;
  color: #c8a24a;
  display: inline-flex;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: color 0.25s ease, transform 0.25s ease;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .reviews-hero__scroll {
    bottom: 24px;
  }
}
.reviews-hero__scroll:hover {
  color: #e0c273;
  transform: translate(-50%, 4px);
}
.reviews-hero__scroll:focus-visible {
  border-radius: 2px;
  outline: 2px solid #ffffff;
  outline-offset: 8px;
}
.reviews-hero__scroll svg {
  display: block;
}
@media (max-width: 767.98px) {
  .reviews-hero__scroll svg {
    height: 20px;
    width: 34px;
  }
}

.reviews-answer-summary {
  background-color: #f7f5f0;
  padding: 120px 0;
}
@media (max-width: 1199.98px) {
  .reviews-answer-summary {
    padding: 100px 0;
  }
}
@media (max-width: 767.98px) {
  .reviews-answer-summary {
    padding: 72px 0;
  }
}
.reviews-answer-summary__wrapper {
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}
@media (max-width: 1199.98px) {
  .reviews-answer-summary__wrapper {
    gap: 56px;
  }
}
@media (max-width: 991.98px) {
  .reviews-answer-summary__wrapper {
    gap: 48px;
    grid-template-columns: 1fr;
  }
}
.reviews-answer-summary__heading {
  border-top: 1px solid #c8a24a;
  padding-top: 28px;
}
@media (max-width: 767.98px) {
  .reviews-answer-summary__heading {
    padding-top: 22px;
  }
}
.reviews-answer-summary__heading h2 {
  color: #06152a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
  max-width: 520px;
  text-wrap: balance;
}
@media (max-width: 1199.98px) {
  .reviews-answer-summary__heading h2 {
    font-size: 46px;
  }
}
@media (max-width: 767.98px) {
  .reviews-answer-summary__heading h2 {
    font-size: 38px;
    line-height: 1.12;
  }
}
@media (max-width: 479.98px) {
  .reviews-answer-summary__heading h2 {
    font-size: 34px;
  }
}
.reviews-answer-summary__eyebrow {
  color: #9b7a2f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  margin: 0 0 24px;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .reviews-answer-summary__eyebrow {
    font-size: 11px;
    margin-bottom: 18px;
  }
}
.reviews-answer-summary__content {
  border-top: 1px solid #ded9ce;
  padding-top: 28px;
}
@media (max-width: 767.98px) {
  .reviews-answer-summary__content {
    padding-top: 22px;
  }
}
.reviews-answer-summary__content > p {
  color: #4a5360;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 22px;
}
@media (max-width: 767.98px) {
  .reviews-answer-summary__content > p {
    font-size: 16px;
    line-height: 1.7;
  }
}
.reviews-answer-summary__content > p:last-of-type {
  margin-bottom: 0;
}
.reviews-answer-summary__lead {
  color: #1a2433 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 27px !important;
  line-height: 1.45 !important;
  margin-bottom: 24px !important;
}
@media (max-width: 767.98px) {
  .reviews-answer-summary__lead {
    font-size: 23px !important;
    line-height: 1.5 !important;
  }
}
.reviews-answer-summary__details {
  border-top: 1px solid #ded9ce;
  display: grid;
  gap: 0;
  margin-top: 46px;
}
@media (max-width: 767.98px) {
  .reviews-answer-summary__details {
    margin-top: 36px;
  }
}
.reviews-answer-summary__detail {
  align-items: flex-start;
  border-bottom: 1px solid #ded9ce;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  padding: 28px 0;
}
@media (max-width: 767.98px) {
  .reviews-answer-summary__detail {
    gap: 18px;
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 24px 0;
  }
}
.reviews-answer-summary__detail h3 {
  color: #06152a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 8px;
}
@media (max-width: 767.98px) {
  .reviews-answer-summary__detail h3 {
    font-size: 20px;
  }
}
.reviews-answer-summary__detail p {
  color: #5c6470;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 767.98px) {
  .reviews-answer-summary__detail p {
    font-size: 14px;
  }
}
.reviews-answer-summary__number {
  color: #c8a24a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  padding-top: 5px;
}

.featured-review {
  background-color: #ffffff;
  overflow: hidden;
  padding: 140px 0;
}
@media (max-width: 1199.98px) {
  .featured-review {
    padding: 110px 0;
  }
}
@media (max-width: 991.98px) {
  .featured-review {
    padding: 90px 0;
  }
}
@media (max-width: 767.98px) {
  .featured-review {
    padding: 72px 0;
  }
}
.featured-review__wrapper {
  align-items: center;
  display: grid;
  gap: 110px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}
@media (max-width: 1399.98px) {
  .featured-review__wrapper {
    gap: 80px;
  }
}
@media (max-width: 1199.98px) {
  .featured-review__wrapper {
    gap: 60px;
  }
}
@media (max-width: 991.98px) {
  .featured-review__wrapper {
    gap: 56px;
    grid-template-columns: 1fr;
  }
}
.featured-review__media {
  min-height: 680px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1199.98px) {
  .featured-review__media {
    min-height: 600px;
  }
}
@media (max-width: 991.98px) {
  .featured-review__media {
    aspect-ratio: 16/10;
    min-height: 0;
  }
}
@media (max-width: 575.98px) {
  .featured-review__media {
    aspect-ratio: 4/5;
  }
}
.featured-review__media::after {
  background: linear-gradient(180deg, rgba(6, 21, 42, 0) 55%, rgba(6, 21, 42, 0.52) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
.featured-review__media img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  transition: transform 0.8s ease;
  width: 100%;
}
@media (max-width: 575.98px) {
  .featured-review__media img {
    -o-object-position: center;
       object-position: center;
  }
}
.featured-review__media:hover img {
  transform: scale(1.025);
}
.featured-review__media-label {
  bottom: 30px;
  left: 30px;
  position: absolute;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .featured-review__media-label {
    bottom: 22px;
    left: 22px;
  }
}
.featured-review__media-label span {
  align-items: center;
  color: #ffffff;
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  gap: 12px;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}
.featured-review__media-label span::before {
  background-color: #c8a24a;
  content: "";
  display: block;
  height: 1px;
  width: 38px;
}
.featured-review__content {
  padding: 30px 0;
  position: relative;
}
@media (max-width: 991.98px) {
  .featured-review__content {
    padding: 0;
  }
}
.featured-review__heading {
  border-top: 1px solid #c8a24a;
  padding-top: 26px;
}
@media (max-width: 767.98px) {
  .featured-review__heading {
    padding-top: 22px;
  }
}
.featured-review__heading h2 {
  color: #06152a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
  max-width: 660px;
  text-wrap: balance;
}
@media (max-width: 1399.98px) {
  .featured-review__heading h2 {
    font-size: 46px;
  }
}
@media (max-width: 1199.98px) {
  .featured-review__heading h2 {
    font-size: 42px;
  }
}
@media (max-width: 767.98px) {
  .featured-review__heading h2 {
    font-size: 36px;
    line-height: 1.14;
  }
}
@media (max-width: 479.98px) {
  .featured-review__heading h2 {
    font-size: 32px;
  }
}
.featured-review__eyebrow {
  color: #9b7a2f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  margin: 0 0 22px;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .featured-review__eyebrow {
    font-size: 11px;
    margin-bottom: 18px;
  }
}
.featured-review__quote-mark {
  color: #c8a24a;
  margin: 52px 0 24px;
}
@media (max-width: 1199.98px) {
  .featured-review__quote-mark {
    margin-top: 42px;
  }
}
@media (max-width: 767.98px) {
  .featured-review__quote-mark {
    margin: 36px 0 20px;
  }
}
.featured-review__quote-mark svg {
  display: block;
}
@media (max-width: 767.98px) {
  .featured-review__quote-mark svg {
    height: auto;
    width: 46px;
  }
}
.featured-review__quote {
  margin: 0;
}
.featured-review__quote p {
  color: #1a2433;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 1399.98px) {
  .featured-review__quote p {
    font-size: 26px;
  }
}
@media (max-width: 1199.98px) {
  .featured-review__quote p {
    font-size: 24px;
  }
}
@media (max-width: 767.98px) {
  .featured-review__quote p {
    font-size: 21px;
    line-height: 1.5;
  }
}
.featured-review__client {
  align-items: flex-start;
  display: flex;
  gap: 20px;
  margin-top: 42px;
}
@media (max-width: 767.98px) {
  .featured-review__client {
    gap: 16px;
    margin-top: 34px;
  }
}
.featured-review__client-line {
  background-color: #c8a24a;
  flex: 0 0 44px;
  height: 1px;
  margin-top: 10px;
}
@media (max-width: 767.98px) {
  .featured-review__client-line {
    flex-basis: 32px;
  }
}
.featured-review__client-information {
  min-width: 0;
}
.featured-review__client-name {
  color: #06152a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin: 0 0 7px;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .featured-review__client-name {
    font-size: 13px;
  }
}
.featured-review__client-meta {
  align-items: center;
  color: #68717d;
  display: flex;
  flex-wrap: wrap;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  gap: 9px;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 575.98px) {
  .featured-review__client-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}
.featured-review__client-meta span {
  background-color: #c8a24a;
  border-radius: 50%;
  display: block;
  height: 3px;
  width: 3px;
}
@media (max-width: 575.98px) {
  .featured-review__client-meta span {
    display: none;
  }
}
.featured-review__disclaimer {
  border-top: 1px solid #ded9ce;
  color: #7a818b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.6;
  margin: 42px 0 0;
  padding-top: 18px;
}
@media (max-width: 767.98px) {
  .featured-review__disclaimer {
    margin-top: 34px;
  }
}

.reviews-grid {
  background: #fdfcf9;
  padding: 140px 0;
}
@media (max-width: 1199.98px) {
  .reviews-grid {
    padding: 110px 0;
  }
}
@media (max-width: 767.98px) {
  .reviews-grid {
    padding: 72px 0;
  }
}
.reviews-grid__intro {
  margin: 0 auto 90px;
  max-width: 760px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .reviews-grid__intro {
    margin-bottom: 60px;
  }
}
.reviews-grid__intro h2 {
  color: #06152a;
  font-family: Georgia, serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.08;
  margin: 18px 0 26px;
}
@media (max-width: 991.98px) {
  .reviews-grid__intro h2 {
    font-size: 46px;
  }
}
@media (max-width: 767.98px) {
  .reviews-grid__intro h2 {
    font-size: 36px;
  }
}
.reviews-grid__intro p:last-child {
  color: #5b6470;
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 767.98px) {
  .reviews-grid__intro p:last-child {
    font-size: 16px;
  }
}
.reviews-grid__eyebrow {
  color: #c8a24a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin: 0;
  text-transform: uppercase;
}
.reviews-grid__items {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 991.98px) {
  .reviews-grid__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .reviews-grid__items {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.reviews-card {
  background-color: #ffffff;
  border: 1px solid #ded9ce;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 44px 40px 38px;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
@media (max-width: 1199.98px) {
  .reviews-card {
    padding: 38px 32px 34px;
  }
}
@media (max-width: 767.98px) {
  .reviews-card {
    padding: 32px 26px 28px;
  }
}
.reviews-card::before {
  background-color: #c8a24a;
  content: "";
  height: 2px;
  left: -1px;
  position: absolute;
  top: -1px;
  transition: width 0.3s ease;
  width: 0;
}
.reviews-card:hover {
  border-color: rgba(200, 162, 74, 0.7);
  box-shadow: 0 22px 50px rgba(6, 21, 42, 0.08);
  transform: translateY(-5px);
}
@media (max-width: 767.98px) {
  .reviews-card:hover {
    transform: none;
  }
}
.reviews-card:hover::before {
  width: calc(100% + 2px);
}
.reviews-card__quote-icon {
  color: #c8a24a;
  display: flex;
  margin-bottom: 28px;
}
@media (max-width: 767.98px) {
  .reviews-card__quote-icon {
    margin-bottom: 22px;
  }
}
.reviews-card__quote-icon svg {
  display: block;
  height: auto;
  width: 36px;
}
@media (max-width: 767.98px) {
  .reviews-card__quote-icon svg {
    width: 32px;
  }
}
.reviews-card__quote {
  border: 0;
  color: #1a2433;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  margin: 0 0 38px;
  padding: 0;
}
@media (max-width: 1199.98px) {
  .reviews-card__quote {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .reviews-card__quote {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 32px;
  }
}
.reviews-card__footer {
  border-top: 1px solid #e7e2d9;
  margin-top: auto;
  padding-top: 24px;
}
@media (max-width: 767.98px) {
  .reviews-card__footer {
    padding-top: 20px;
  }
}
.reviews-card__name {
  color: #06152a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin: 0 0 9px;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .reviews-card__name {
    font-size: 13px;
  }
}
.reviews-card__meta {
  align-items: center;
  color: #6f7782;
  display: flex;
  flex-wrap: wrap;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  gap: 9px;
  line-height: 1.5;
}
@media (max-width: 479.98px) {
  .reviews-card__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}
.reviews-card__meta span {
  display: inline-block;
}
.reviews-card__meta i {
  background-color: #c8a24a;
  border-radius: 50%;
  display: block;
  flex: 0 0 4px;
  height: 4px;
  width: 4px;
}
@media (max-width: 479.98px) {
  .reviews-card__meta i {
    display: none;
  }
}

.reviews-transparency {
  background-color: #06152a;
  padding: 120px 0;
}
@media (max-width: 1199.98px) {
  .reviews-transparency {
    padding: 100px 0;
  }
}
@media (max-width: 767.98px) {
  .reviews-transparency {
    padding: 72px 0;
  }
}
.reviews-transparency__wrapper {
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}
@media (max-width: 991.98px) {
  .reviews-transparency__wrapper {
    gap: 48px;
    grid-template-columns: 1fr;
  }
}
.reviews-transparency__left h2 {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
@media (max-width: 1199.98px) {
  .reviews-transparency__left h2 {
    font-size: 44px;
  }
}
@media (max-width: 767.98px) {
  .reviews-transparency__left h2 {
    font-size: 34px;
  }
}
.reviews-transparency__eyebrow {
  color: #c8a24a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.reviews-transparency__right {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.reviews-transparency__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  padding: 34px 0;
}
@media (max-width: 767.98px) {
  .reviews-transparency__item {
    gap: 12px;
    grid-template-columns: 1fr;
    padding: 26px 0;
  }
}
.reviews-transparency__item h3 {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}
@media (max-width: 767.98px) {
  .reviews-transparency__item h3 {
    font-size: 21px;
  }
}
.reviews-transparency__item p {
  color: rgba(255, 255, 255, 0.78);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 767.98px) {
  .reviews-transparency__item p {
    font-size: 15px;
  }
}

.reviews-cta {
  align-items: center;
  background-color: #06152a;
  display: flex;
  justify-content: center;
  min-height: 720px;
  overflow: hidden;
  padding: 140px 0;
  position: relative;
}
@media (max-width: 1199.98px) {
  .reviews-cta {
    min-height: 640px;
    padding: 110px 0;
  }
}
@media (max-width: 767.98px) {
  .reviews-cta {
    min-height: 580px;
    padding: 88px 0;
  }
}
.reviews-cta__media {
  inset: 0;
  position: absolute;
  z-index: 0;
}
.reviews-cta__media img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
  width: 100%;
}
@media (max-width: 767.98px) {
  .reviews-cta__media img {
    -o-object-position: 62% center;
       object-position: 62% center;
  }
}
.reviews-cta__overlay {
  background: linear-gradient(90deg, rgba(6, 21, 42, 0.94) 0%, rgba(6, 21, 42, 0.84) 42%, rgba(6, 21, 42, 0.5) 72%, rgba(6, 21, 42, 0.35) 100%), linear-gradient(180deg, rgba(6, 21, 42, 0.18) 0%, rgba(6, 21, 42, 0.42) 100%);
  inset: 0;
  position: absolute;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .reviews-cta__overlay {
    background: linear-gradient(180deg, rgba(6, 21, 42, 0.82) 0%, rgba(6, 21, 42, 0.9) 100%);
  }
}
.reviews-cta .container {
  position: relative;
  z-index: 2;
}
.reviews-cta__content {
  max-width: 760px;
}
@media (max-width: 991.98px) {
  .reviews-cta__content {
    max-width: 680px;
  }
}
@media (max-width: 767.98px) {
  .reviews-cta__content {
    max-width: 100%;
    text-align: center;
  }
}
.reviews-cta__eyebrow {
  align-items: center;
  color: #e0c273;
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  gap: 16px;
  letter-spacing: 0.22em;
  line-height: 1.4;
  margin: 0 0 28px;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .reviews-cta__eyebrow {
    font-size: 11px;
    justify-content: center;
    margin-bottom: 22px;
  }
}
.reviews-cta__eyebrow::before {
  background-color: #c8a24a;
  content: "";
  display: block;
  height: 1px;
  width: 54px;
}
@media (max-width: 767.98px) {
  .reviews-cta__eyebrow::before {
    width: 38px;
  }
}
.reviews-cta h2 {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 66px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 0;
  max-width: 720px;
  text-wrap: balance;
}
@media (max-width: 1199.98px) {
  .reviews-cta h2 {
    font-size: 56px;
  }
}
@media (max-width: 767.98px) {
  .reviews-cta h2 {
    font-size: 42px;
    line-height: 1.1;
    margin: 0 auto;
    max-width: 560px;
  }
}
@media (max-width: 479.98px) {
  .reviews-cta h2 {
    font-size: 36px;
  }
}
.reviews-cta__description {
  color: rgba(255, 255, 255, 0.82);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.75;
  margin: 30px 0 0;
  max-width: 650px;
}
@media (max-width: 767.98px) {
  .reviews-cta__description {
    font-size: 16px;
    line-height: 1.7;
    margin: 24px auto 0;
    max-width: 560px;
  }
}
.reviews-cta__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}
@media (max-width: 767.98px) {
  .reviews-cta__actions {
    justify-content: center;
    margin-top: 34px;
  }
}
@media (max-width: 479.98px) {
  .reviews-cta__actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }
}
.reviews-cta__button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  gap: 14px;
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 56px;
  padding: 15px 26px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
@media (max-width: 479.98px) {
  .reviews-cta__button {
    width: 100%;
  }
}
.reviews-cta__button:hover {
  transform: translateY(-2px);
}
.reviews-cta__button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}
.reviews-cta__button svg {
  display: block;
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}
.reviews-cta__button:hover svg {
  transform: translateX(3px);
}
.reviews-cta__button--primary {
  background-color: #c8a24a;
  border-color: #c8a24a;
  color: #06152a;
}
.reviews-cta__button--primary:hover {
  background-color: #e0c273;
  border-color: #e0c273;
  color: #06152a;
}
.reviews-cta__button--secondary {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.52);
  color: #ffffff;
}
.reviews-cta__button--secondary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #06152a;
}

.reviews-faq {
  background-color: #f7f5f0;
  padding: 140px 0;
}
@media (max-width: 1199.98px) {
  .reviews-faq {
    padding: 110px 0;
  }
}
@media (max-width: 767.98px) {
  .reviews-faq {
    padding: 72px 0;
  }
}
.reviews-faq__wrapper {
  display: grid;
  gap: 110px;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}
@media (max-width: 1399.98px) {
  .reviews-faq__wrapper {
    gap: 80px;
  }
}
@media (max-width: 991.98px) {
  .reviews-faq__wrapper {
    gap: 56px;
    grid-template-columns: 1fr;
  }
}
.reviews-faq__intro {
  align-self: start;
  position: sticky;
  top: 130px;
}
@media (max-width: 991.98px) {
  .reviews-faq__intro {
    position: static;
  }
}
.reviews-faq__intro h2 {
  color: #06152a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
  max-width: 520px;
  text-wrap: balance;
}
@media (max-width: 1199.98px) {
  .reviews-faq__intro h2 {
    font-size: 46px;
  }
}
@media (max-width: 767.98px) {
  .reviews-faq__intro h2 {
    font-size: 36px;
    line-height: 1.12;
  }
}
@media (max-width: 479.98px) {
  .reviews-faq__intro h2 {
    font-size: 32px;
  }
}
.reviews-faq__intro > p:last-child {
  color: #5f6874;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  margin: 28px 0 0;
  max-width: 460px;
}
@media (max-width: 767.98px) {
  .reviews-faq__intro > p:last-child {
    font-size: 16px;
    margin-top: 22px;
  }
}
.reviews-faq__eyebrow {
  color: #9b7a2f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  margin: 0 0 24px;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .reviews-faq__eyebrow {
    font-size: 11px;
    margin-bottom: 18px;
  }
}
.reviews-faq__list {
  border-top: 1px solid #c9c2b6;
}
.reviews-faq__item {
  border-bottom: 1px solid #c9c2b6;
}
.reviews-faq__item[open] .reviews-faq__question {
  color: #9b7a2f;
}
.reviews-faq__item[open] .reviews-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.reviews-faq__item[open] .reviews-faq__answer {
  animation: reviews-faq-reveal 0.3s ease both;
}
.reviews-faq__question {
  align-items: center;
  color: #06152a;
  cursor: pointer;
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
  gap: 30px;
  justify-content: space-between;
  line-height: 1.35;
  list-style: none;
  padding: 34px 0;
  transition: color 0.25s ease;
}
@media (max-width: 767.98px) {
  .reviews-faq__question {
    font-size: 21px;
    gap: 20px;
    padding: 26px 0;
  }
}
.reviews-faq__question::-webkit-details-marker {
  display: none;
}
.reviews-faq__question::marker {
  display: none;
}
.reviews-faq__question:hover {
  color: #9b7a2f;
}
.reviews-faq__question:focus-visible {
  outline: 2px solid #c8a24a;
  outline-offset: 8px;
}
.reviews-faq__question > span:first-child {
  max-width: 760px;
}
.reviews-faq__icon {
  border: 1px solid rgba(6, 21, 42, 0.35);
  border-radius: 50%;
  display: block;
  flex: 0 0 38px;
  height: 38px;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
  width: 38px;
}
@media (max-width: 767.98px) {
  .reviews-faq__icon {
    flex-basis: 34px;
    height: 34px;
    width: 34px;
  }
}
.reviews-faq__icon::before, .reviews-faq__icon::after {
  background-color: currentColor;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.reviews-faq__icon::before {
  height: 1px;
  transform: translate(-50%, -50%);
  width: 14px;
}
.reviews-faq__icon::after {
  height: 14px;
  transform: translate(-50%, -50%);
  width: 1px;
}
.reviews-faq__answer {
  max-width: 760px;
  padding: 0 72px 34px 0;
}
@media (max-width: 767.98px) {
  .reviews-faq__answer {
    padding: 0 0 26px;
  }
}
.reviews-faq__answer p {
  color: #58616d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 767.98px) {
  .reviews-faq__answer p {
    font-size: 15px;
    line-height: 1.75;
  }
}
.reviews-faq__answer a {
  color: #8f6f29;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.25s ease;
}
.reviews-faq__answer a:hover {
  color: #06152a;
}
.reviews-faq__answer a:focus-visible {
  outline: 2px solid #c8a24a;
  outline-offset: 3px;
}

@keyframes reviews-faq-reveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}