* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1 {
  font-size: 80px;
}

h2 {
  font-size: 64px;
}

h3 {
  font-size: 48px;
}

h4 {
  font-size: 32px;
}

p {
  margin: 0;
}

body {
  margin: 0;
}
body.admin-bar main {
  padding-top: 57px;
}
@media (max-width: 1200px) {
  body.admin-bar main {
    padding-top: 47px;
  }
}

main {
  padding-top: 90px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  main {
    padding-top: 80px;
  }
}
@media (max-width: 768px) {
  main {
    padding-top: 80px;
  }
}

.container {
  width: 90vw;
  max-width: 1728px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }
}

.site-header {
  background-color: #fffcf2;
  border-bottom: 1px solid #909296;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 90px;
  width: 100%;
  transition: transform 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
@media (max-width: 1200px) {
  .site-header {
    height: 80px;
    padding: 0;
  }
}
.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-wrapper {
  position: relative;
  width: 100%;
  max-width: 1728px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .header-wrapper {
    max-width: 100%;
    padding: 0 5vw;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .header-wrapper {
    padding: 0 16px;
  }
}

.logo-container {
  flex-shrink: 0;
  height: 48px;
  width: auto;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .logo-container {
    position: static;
  }
}
.logo-container .logo-link {
  display: block;
  height: 100%;
  width: auto;
}
.logo-container .logo-img {
  height: 100%;
  width: auto;
  display: block;
}

.main-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 1200px) {
  .main-nav {
    display: none;
  }
}

.nav-item {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: #252422;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .nav-item {
    padding: 12px 16px;
    font-size: 22px;
  }
}
.nav-item:hover {
  background-color: #ffffff;
  border-color: #e8e8e8;
}
.nav-item.active {
  background-color: #252422;
  color: #fffcf2;
}

.btn-primary-header {
  background-color: #953a2c;
  color: #fffcf2;
  padding: 12px 41px;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px !important;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
}
@media (max-width: 1200px) {
  .btn-primary-header {
    display: none !important;
  }
}
.btn-primary-header:hover {
  background-color: #7a2f24;
}

.burger-menu {
  display: none;
  width: 42px;
  height: 42px;
  background: #ffffff;
  border: 2px solid #252422;
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
@media (max-width: 1200px) {
  .burger-menu {
    display: block;
  }
}
@media (max-width: 768px) {
  .burger-menu {
    right: 16px;
  }
}
.burger-menu span {
  position: absolute;
  left: 19.51%;
  right: 17.07%;
  height: 2px;
  background: #252422;
  border-radius: 4px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.burger-menu span:nth-child(1) {
  top: 10.9998px;
}
.burger-menu span:nth-child(2) {
  top: 20.0004px;
}
.burger-menu span:nth-child(3) {
  top: 29.001px;
}
.burger-menu.active {
  visibility: visible;
  border-color: #252422;
}
.burger-menu.active span {
  left: 50%;
  right: auto;
  width: 20px;
  margin-left: -10px;
}
.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
  margin-top: -1px;
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
  margin-top: -1px;
}

.mobile-menu-overlay {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: -1;
  display: flex;
  flex-direction: column;
  padding: 16px;
  overflow-y: auto;
  transition: transform 0.3s ease-in-out;
  visibility: hidden;
}
@media (max-width: 768px) {
  .mobile-menu-overlay {
    top: 80px;
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
  }
}
.mobile-menu-overlay.active {
  visibility: visible;
}

.mobile-logo-container {
  height: 48px;
  width: 34px;
}
.mobile-logo-container .mobile-logo-link {
  display: block;
  height: 100%;
  width: 100%;
}
.mobile-logo-container .mobile-logo-img {
  width: 100%;
  height: 100%;
  display: block;
}

.mobile-close-btn {
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.mobile-close-btn svg {
  width: 100%;
  height: 100%;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  justify-content: flex-start;
}
.mobile-nav .mobile-nav-item {
  display: block;
  background-color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 500;
  color: #252422;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  line-height: 1.5;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
.mobile-nav .mobile-nav-item:hover {
  background-color: #c0bfbf;
}
.mobile-nav .mobile-nav-item.active {
  background-color: #252422;
  color: #fffcf2;
}
.mobile-nav .btn-primary-mobile {
  margin-top: auto;
}

.btn {
  display: inline-block;
  padding: 12px 41px;
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background-color: #953a2c;
  color: #fffcf2;
  border: 1px solid #953a2c;
}
.btn-primary:hover:not(:disabled) {
  background-color: rgb(109.6269430052, 42.6735751295, 32.3730569948);
  border-color: rgb(109.6269430052, 42.6735751295, 32.3730569948);
}

.btn-secondary {
  background-color: transparent;
  color: #252422;
  border: 1px solid #252422;
}
.btn-secondary:hover:not(:disabled) {
  background-color: #252422;
  color: #fffcf2;
}

.btn-tertiary {
  background-color: #fffcf2;
  color: #252422;
  border: 1px solid #252422;
}
.btn-tertiary:hover:not(:disabled) {
  background-color: #252422;
  color: #fffcf2;
}

.btn-white {
  background-color: #ffffff;
  color: #252422;
  border: 1px solid #ffffff;
}
.btn-white:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn-white-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.btn-white-outline:hover:not(:disabled) {
  background-color: #ffffff;
  color: #252422;
}

.btn-sm {
  padding: 8px 41px;
  font-size: 20px;
}

.btn-md {
  padding: 12px 32px;
  font-size: 20px;
}

.btn-lg {
  padding: 16px 42px;
  font-size: 28px;
}
@media (max-width: 768px) {
  .btn-lg {
    padding: 12px 32px;
    font-size: 20px;
  }
}

.btn-full {
  width: 100%;
}

.btn-spectral {
  font-family: "Spectral", serif;
  font-weight: 400;
}

.btn-cormorant {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.btn-primary-mobile {
  width: 100%;
  background-color: #953a2c;
  color: #fffcf2;
  padding: 12px 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
  display: inline-block;
  border: 1px solid #953a2c;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.btn-primary-mobile:hover {
  background-color: rgb(109.6269430052, 42.6735751295, 32.3730569948);
  border-color: rgb(109.6269430052, 42.6735751295, 32.3730569948);
}

.btn-footer {
  background-color: transparent;
  color: #fffcf2;
  border: 1px solid #fffcf2;
  padding: 12px 41px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.btn-footer:hover {
  background-color: #fffcf2;
  color: #252422;
}
@media (max-width: 1200px) {
  .btn-footer {
    width: 100%;
    text-align: center;
  }
}

/*
Standard button:
<a href="#" class="btn btn-primary">Click Me</a>

Large primary button:
<a href="#" class="btn btn-primary btn-lg">Get Started</a>

Secondary button with Spectral font:
<a href="#" class="btn btn-secondary btn-spectral">Learn More</a>

Medium button (hero/CTA style):
<a href="#" class="btn btn-primary btn-md btn-spectral">Contact Us</a>

Full width mobile button:
<a href="#" class="btn btn-primary btn-full">Submit</a>
*/
.btn {
  display: inline-block;
  padding: 12px 41px;
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background-color: #953a2c;
  color: #fffcf2;
  border: 1px solid #953a2c;
}
.btn-primary:hover:not(:disabled) {
  background-color: rgb(109.6269430052, 42.6735751295, 32.3730569948);
  border-color: rgb(109.6269430052, 42.6735751295, 32.3730569948);
}

.btn-secondary {
  background-color: transparent;
  color: #252422;
  border: 1px solid #252422;
}
.btn-secondary:hover:not(:disabled) {
  background-color: #252422;
  color: #fffcf2;
}

.btn-tertiary {
  background-color: #fffcf2;
  color: #252422;
  border: 1px solid #252422;
}
.btn-tertiary:hover:not(:disabled) {
  background-color: #252422;
  color: #fffcf2;
}

.btn-white {
  background-color: #ffffff;
  color: #252422;
  border: 1px solid #ffffff;
}
.btn-white:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn-white-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.btn-white-outline:hover:not(:disabled) {
  background-color: #ffffff;
  color: #252422;
}

.btn-sm {
  padding: 8px 41px;
  font-size: 20px;
}

.btn-md {
  padding: 12px 32px;
  font-size: 20px;
}

.btn-lg {
  padding: 16px 42px;
  font-size: 28px;
}
@media (max-width: 768px) {
  .btn-lg {
    padding: 12px 32px;
    font-size: 20px;
  }
}

.btn-full {
  width: 100%;
}

.btn-spectral {
  font-family: "Spectral", serif;
  font-weight: 400;
}

.btn-cormorant {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.btn-primary-mobile {
  width: 100%;
  background-color: #953a2c;
  color: #fffcf2;
  padding: 12px 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
  display: inline-block;
  border: 1px solid #953a2c;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.btn-primary-mobile:hover {
  background-color: rgb(109.6269430052, 42.6735751295, 32.3730569948);
  border-color: rgb(109.6269430052, 42.6735751295, 32.3730569948);
}

.btn-footer {
  background-color: transparent;
  color: #fffcf2;
  border: 1px solid #fffcf2;
  padding: 12px 41px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.btn-footer:hover {
  background-color: #fffcf2;
  color: #252422;
}
@media (max-width: 1200px) {
  .btn-footer {
    width: 100%;
    text-align: center;
  }
}

/*
Standard button:
<a href="#" class="btn btn-primary">Click Me</a>

Large primary button:
<a href="#" class="btn btn-primary btn-lg">Get Started</a>

Secondary button with Spectral font:
<a href="#" class="btn btn-secondary btn-spectral">Learn More</a>

Medium button (hero/CTA style):
<a href="#" class="btn btn-primary btn-md btn-spectral">Contact Us</a>

Full width mobile button:
<a href="#" class="btn btn-primary btn-full">Submit</a>
*/
.site-footer {
  background-color: #252422;
  padding: 120px 0;
  color: #fffcf2;
}
.site-footer .footer-content {
  display: flex;
  gap: 40px;
  flex-direction: column;
  gap: 80px;
}
@media (min-width: 1201px) {
  .site-footer .footer-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.site-footer .footer-main {
  display: flex;
  flex-direction: column;
  gap: 105px;
  flex: 1 1 auto;
  width: 100%;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .site-footer .footer-main {
    flex: 1 1 auto;
    gap: 68px;
  }
}
.site-footer .footer-cta {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .site-footer .footer-cta {
    gap: 48px;
    align-items: stretch;
  }
}
.site-footer .footer-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.4;
  color: #fffcf2;
  margin: 0;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .site-footer .footer-title {
    font-size: 48px;
  }
}
.site-footer .footer-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: #fffcf2;
  max-width: 717px;
  margin: 0;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .site-footer .footer-text {
    font-size: 21px;
    max-width: 100%;
  }
}
.site-footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  color: #fffcf2;
}
.site-footer .footer-nav a {
  color: #fffcf2;
  text-decoration: none;
  transition: 0.3s ease;
}
.site-footer .footer-nav a:hover {
  opacity: 0.8;
}
.site-footer .footer-logo {
  flex: 1 1 auto;
  width: 100%;
  height: 793px;
  align-self: flex-start;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .site-footer .footer-logo {
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 779.48/1095.05;
    margin-top: 48px;
  }
}
.site-footer .footer-logo .footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .site-footer {
    padding: 80px 16px;
    padding-bottom: 79px;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 80px 16px;
    padding-bottom: 79px;
  }
  .site-footer .footer-content {
    flex-direction: column;
    gap: 80px;
  }
  .site-footer .footer-main {
    flex: 1 1 auto;
    gap: 68px;
  }
  .site-footer .footer-title {
    font-size: 48px;
  }
  .site-footer .footer-text {
    font-size: 21px;
    max-width: 100%;
  }
  .site-footer .footer-logo {
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 779.48/1095.05;
    margin-top: 48px;
  }
}

.testimonials-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
.testimonials-section .testimonials-content {
  display: flex;
  gap: 68px;
  align-items: flex-start;
}
.testimonials-section .testimonials-header {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
@media (min-width: 1201px) {
  .testimonials-section .testimonials-header {
    position: sticky;
    top: 173px;
    align-self: flex-start;
  }
}
.testimonials-section .testimonials-header .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 4vw + 1rem, 80px);
  font-weight: 700;
  line-height: 1.4;
  color: #252422;
  text-align: left;
}
.testimonials-section .testimonials-header .section-description {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 1.5vw + 0.5rem, 32px);
  color: #252422;
  margin-bottom: 0;
}
.testimonials-section .testimonials-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.testimonials-section .testimonial-card {
  background-color: #ffffff;
  border: 1px solid #cfd1d4;
  border-radius: 24px;
  padding: 48px;
}
.testimonials-section .testimonial-card .testimonial-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 1.2vw + 0.3rem, 21px);
  font-weight: 400;
  line-height: 1.4;
  color: #252422;
  margin-bottom: 32px;
}
.testimonials-section .testimonial-card .testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.testimonials-section .testimonial-card .testimonial-author {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 1.2vw + 0.3rem, 21px);
  font-weight: 600;
  line-height: 1.4;
  color: #000929;
}
.testimonials-section .testimonial-card .testimonial-rating {
  display: flex;
  gap: 4px;
}
.testimonials-section .testimonial-card .testimonial-rating .star {
  color: #f7b606;
  font-size: 24px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .testimonials-section {
    padding: 80px 0;
  }
  .testimonials-section .testimonials-content {
    flex-direction: column;
    gap: 48px;
  }
  .testimonials-section .testimonials-header {
    flex: 1;
    align-items: center;
    text-align: center;
  }
  .testimonials-section .testimonials-header br {
    display: none;
  }
  .testimonials-section .testimonials-header .section-title {
    text-align: center;
  }
  .testimonials-section .testimonials-header .section-description {
    max-width: 75%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .testimonials-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .testimonials-section .testimonials-content {
    flex-direction: column;
    gap: 32px;
  }
  .testimonials-section .testimonials-header {
    align-items: flex-start;
    text-align: left;
  }
  .testimonials-section .testimonials-header .section-title {
    text-align: left;
  }
  .testimonials-section .testimonial-card {
    padding: 32px 24px;
  }
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #252422;
  background-color: #fffcf2;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

.container-wide {
  width: 85vw;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 768px) {
  .container-wide {
    width: 100%;
    padding: 0 16px;
  }
}

.buy-hero {
  background-color: #fffcf2;
  padding: 57px 0 0;
}
.buy-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.buy-hero .hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 4vw + 1rem, 84px);
  font-weight: 700;
  line-height: 1.4;
  color: #252422;
  margin-bottom: 53px;
  max-width: 900px;
}
.buy-hero .hero-title .hero-title-accent {
  color: #953a2c;
}
.buy-hero .hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 1.5vw + 0.5rem, 32px);
  font-weight: 500;
  line-height: 1.5;
  color: #000929;
  max-width: 800px;
  margin-bottom: 64px;
}
.buy-hero .hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .buy-hero .hero-buttons {
    flex-direction: column;
  }
}
.buy-hero .hero-carousel {
  width: 100%;
  padding-bottom: 148px;
  overflow: hidden;
}
.buy-hero .hero-carousel .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.buy-hero .hero-carousel .embla__container {
  display: flex;
  gap: 24px;
  animation: scroll-marquee 30s linear infinite;
  width: max-content;
}
.buy-hero .hero-carousel .embla__container:hover {
  animation-play-state: paused;
}
.buy-hero .hero-carousel .hero-image {
  flex: 0 0 auto;
  min-width: 0;
  width: 320px;
  height: 246px;
  border-radius: 8px;
  overflow: hidden;
}
.buy-hero .hero-carousel .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .buy-hero {
    padding: 40px 0 0;
  }
  .buy-hero .hero-carousel {
    padding-bottom: 80px;
  }
  .buy-hero .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 80px auto;
  }
  .buy-hero .hero-buttons .btn {
    width: 100%;
  }
}
.steps-accordion-section {
  background-color: #fffcf2;
  padding: 148px 0 64px;
}
.steps-accordion-section .container {
  max-width: 960px;
  margin: 0 auto;
}
.steps-accordion-section .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 4vw + 1rem, 80px);
  font-weight: 700;
  line-height: 1.25;
  color: #252422;
  text-align: center;
  margin-bottom: 94px;
}
.steps-accordion-section .section-title .accent {
  color: #953a2c;
}
.steps-accordion-section .section-title .accent.italic {
  font-style: italic;
}
.steps-accordion-section .process-steps {
  display: flex;
  flex-direction: column;
  gap: 29px;
  margin-bottom: 64px;
}
.steps-accordion-section .process-step {
  border-radius: 16px;
  border: 1px solid #c0bfbf;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.steps-accordion-section .process-step.active, .steps-accordion-section .process-step:hover {
  background-color: #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.steps-accordion-section .process-step .step-header {
  display: flex;
  gap: 53px;
  align-items: center;
  padding: 48px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.steps-accordion-section .process-step .step-header:focus {
  outline: none;
}
.steps-accordion-section .process-step .step-header:focus-visible {
  outline: 2px solid #953a2c;
  outline-offset: -2px;
}
.steps-accordion-section .process-step .step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #252422;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #f7b606;
  line-height: 1.5;
}
.steps-accordion-section .process-step .step-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 2vw + 0.5rem, 40px);
  font-weight: 700;
  line-height: 1.25;
  color: #252422;
  margin: 0;
}
.steps-accordion-section .process-step .step-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height;
}
.steps-accordion-section .process-step .step-description {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 1.5vw + 0.3rem, 28px);
  font-weight: 400;
  color: #4a4948;
  line-height: 1.25;
  padding: 0 48px 48px 161px;
  margin: 0;
}
.steps-accordion-section .process-cta {
  text-align: center;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .steps-accordion-section {
    padding: 80px 0 48px;
  }
  .steps-accordion-section .process-step .step-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
  }
  .steps-accordion-section .process-step .step-description {
    padding: 0 32px 32px 32px;
  }
}
@media (max-width: 768px) {
  .steps-accordion-section {
    padding: 60px 0 40px;
  }
  .steps-accordion-section .process-step .step-header {
    padding: 24px;
    gap: 16px;
  }
  .steps-accordion-section .process-step .step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .steps-accordion-section .process-step .step-description {
    padding: 0 24px 24px 24px;
  }
}

.guided-section {
  background-color: #fffcf2;
  padding: 80px 0;
  overflow: hidden;
}
.guided-section .container {
  overflow: visible;
}
.guided-section .guided-header {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 80px;
}
.guided-section .guided-header .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 4vw + 1rem, 80px);
  font-weight: 700;
  line-height: 1.4;
  color: #252422;
  flex: 1;
}
.guided-section .guided-header .section-description {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(18px, 1.2vw + 0.3rem, 24px);
  font-weight: 400;
  line-height: 1.75;
  color: #000929;
  flex: 1;
}
@media (min-width: 1201px) {
  .guided-section .guided-header .section-description {
    padding-bottom: 24px;
  }
}
.guided-section .features-carousel {
  margin-bottom: 32px;
  width: calc(100vw - (100vw - (14 * 80px + (14 - 1) * 24px)) / 2);
  margin-left: 0;
}
.guided-section .features-carousel .embla__viewport {
  overflow: visible;
}
.guided-section .features-carousel .embla__container {
  display: flex;
  gap: 24px;
  touch-action: pan-y pinch-zoom;
  padding-right: 40px;
}
.guided-section .features-carousel .embla__container::after {
  content: "";
  flex-shrink: 0;
  width: 40px;
  height: 1px;
}
.guided-section .features-carousel .carousel-spacer {
  flex: 0 0 40px;
  min-width: 0;
  visibility: hidden;
  pointer-events: none;
}
.guided-section .features-carousel .feature-card {
  flex: 0 0 calc(7 * 80px + (7 - 1) * 24px);
  min-width: 0;
  background-color: #252422;
  border-radius: 8px;
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-end;
  min-height: 315px;
}
.guided-section .features-carousel .feature-card .feature-number {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: #f7b606;
  line-height: 1;
  white-space: nowrap;
}
.guided-section .features-carousel .feature-card .feature-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  color: #fffcf2;
}
.guided-section .features-carousel .feature-card .feature-description {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #fffcf2;
}
.guided-section .guided-navigation {
  display: flex;
  gap: 32px;
  justify-content: flex-start;
}
.guided-section .guided-navigation .nav-arrow {
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #252422;
  transition: 0.3s ease;
}
.guided-section .guided-navigation .nav-arrow:hover {
  opacity: 0.7;
}
.guided-section .guided-navigation .nav-arrow img {
  width: 100%;
  height: auto;
}
.guided-section .guided-navigation .nav-arrow.nav-arrow-left {
  transform: rotate(180deg);
}
.guided-section .guided-navigation .nav-arrow.nav-arrow-right {
  transform: none;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .guided-section {
    padding: 60px 0;
  }
  .guided-section .guided-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 60px;
  }
  .guided-section .guided-header .section-title {
    flex: 1;
  }
  .guided-section .guided-header .section-description {
    flex: 1;
  }
  .guided-section .feature-card {
    flex: 0 0 90%;
    min-height: 280px;
    padding: 48px 32px;
  }
  .guided-section .feature-card .feature-number {
    font-size: 64px;
  }
  .guided-section .feature-card .feature-title {
    font-size: 32px;
  }
  .guided-section .feature-card .feature-description {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .guided-section {
    padding: 40px 0;
  }
  .guided-section .guided-header {
    margin-bottom: 40px;
    flex-direction: column;
  }
  .guided-section .features-carousel {
    width: 100%;
  }
  .guided-section .features-carousel .embla__container {
    gap: 16px;
    padding-right: 16px;
  }
  .guided-section .features-carousel .feature-card {
    flex: 0 0 85%;
    min-height: auto;
    padding: 32px 24px;
    gap: 12px;
  }
  .guided-section .features-carousel .feature-card .feature-number {
    font-size: 40px;
  }
  .guided-section .features-carousel .feature-card .feature-title {
    font-size: 20px;
    line-height: 1.3;
  }
  .guided-section .features-carousel .feature-card .feature-description {
    font-size: 15px;
    line-height: 1.5;
  }
  .guided-section .guided-navigation {
    gap: 24px;
  }
  .guided-section .guided-navigation .nav-arrow {
    width: 40px;
    height: 40px;
  }
}

.explore-homes-section {
  background-color: #fbfbfe;
  padding: 4em 0;
}
.explore-homes-section .container {
  width: 100%;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .explore-homes-section .container {
    padding: 0 16px;
  }
}
.explore-homes-section .explore-header {
  text-align: center;
  margin-bottom: 114px;
}
.explore-homes-section .explore-header .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 84px;
  font-weight: 700;
  line-height: 1.5;
  color: #000929;
  margin-bottom: 74px;
}
.explore-homes-section .explore-header .section-description {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: #252422;
  max-width: calc(8 * 80px + (8 - 1) * 24px);
  margin: 0 auto;
}
.explore-homes-section .properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .explore-homes-section .properties-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .explore-homes-section .properties-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.explore-homes-section .property-card {
  background-color: #ffffff;
  border: 1.875px solid #f0effb;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.explore-homes-section .property-card .property-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.explore-homes-section .property-card .property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.explore-homes-section .property-card .property-info {
  padding: 31px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.explore-homes-section .property-card .property-price {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #252422;
  line-height: 1.5;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}
.explore-homes-section .property-card .property-price .price-period {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.5;
  margin-left: 2.5px;
}
.explore-homes-section .property-card .property-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000929;
  line-height: 1.5;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.explore-homes-section .property-card .property-address {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000929;
  opacity: 0.6;
  line-height: 1.5;
  margin-bottom: 16px;
}
.explore-homes-section .property-card .property-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.explore-homes-section .property-card .feature-item {
  display: flex;
  gap: 8px;
  align-items: center;
}
.explore-homes-section .property-card .feature-item img {
  width: 20px;
  height: 20px;
}
.explore-homes-section .property-card .feature-item span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000929;
  opacity: 0.7;
  line-height: 1.4;
}
.explore-homes-section .explore-cta {
  text-align: center;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .explore-homes-section {
    padding: 80px 0;
  }
  .explore-homes-section .explore-header {
    margin-bottom: 60px;
  }
  .explore-homes-section .explore-header .section-title {
    font-size: 48px;
    margin-bottom: 40px;
  }
  .explore-homes-section .explore-header .section-description {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .explore-homes-section {
    padding: 60px 0;
  }
  .explore-homes-section .explore-header {
    margin-bottom: 40px;
  }
  .explore-homes-section .explore-header .section-title {
    font-size: 36px;
    margin-bottom: 24px;
  }
  .explore-homes-section .explore-header .section-description {
    font-size: 18px;
  }
  .explore-homes-section .property-card {
    height: auto;
  }
  .explore-homes-section .property-card .property-info {
    padding: 24px;
  }
}

.cta-section {
  background-color: #f7b606;
  padding: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-section .cta-background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.cta-section .cta-background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.cta-section .container {
  position: relative;
  z-index: 1;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .cta-section .container {
    padding: 0 16px;
  }
}
.cta-section .cta-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 148px 0;
}
.cta-section .cta-content {
  background-color: #fffcf2;
  border-radius: 16px;
  padding: 48px 80px;
  text-align: center;
  max-width: 800px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.cta-section .cta-content .cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.4;
  color: #000929;
  margin-bottom: 32px;
}
.cta-section .cta-content .cta-description {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: #000929;
  margin-bottom: 48px;
}
.cta-section .cta-content .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 1201px) {
  .cta-section .cta-content .cta-buttons {
    flex-direction: row;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .cta-section {
    padding: 80px 0;
  }
  .cta-section .cta-content-wrapper {
    min-height: auto;
    padding: 80px 0;
  }
  .cta-section .cta-content {
    padding: 80px 60px;
  }
  .cta-section .cta-content .cta-title {
    font-size: 48px;
    margin-bottom: 32px;
  }
  .cta-section .cta-content .cta-description {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .cta-section .cta-content .cta-buttons {
    flex-direction: column;
  }
  .cta-section .cta-content .cta-buttons .btn {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 0;
  }
  .cta-section .cta-content-wrapper {
    padding: 60px 0;
  }
  .cta-section .cta-content {
    padding: 60px 32px;
  }
  .cta-section .cta-content .cta-title {
    font-size: 36px;
    margin-bottom: 24px;
  }
  .cta-section .cta-content .cta-description {
    font-size: 18px;
    margin-bottom: 24px;
  }
}
