.btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  user-select: none;
}
.btn:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}
.btn:disabled, .btn[aria-disabled=true], .btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--primary {
  background-color: #000000;
  color: #ffffff;
  border: 2px solid #000000;
}
.btn--primary:hover, .btn--primary:focus {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background-color: #000000;
  border-color: #000000;
}

.btn--secondary {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
}
.btn--secondary:hover, .btn--secondary:focus {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn--secondary:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn--outline {
  background-color: transparent;
  color: #000000;
  border: 2px solid #cccccc;
}
.btn--outline:hover, .btn--outline:focus {
  border-color: #000000;
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.btn--outline:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn--ghost {
  background-color: transparent;
  color: #000000;
  border: 2px solid transparent;
}
.btn--ghost:hover, .btn--ghost:focus {
  background-color: #f5f5f5;
  transform: translateY(-2px);
}
.btn--ghost:active {
  transform: translateY(0);
}

.btn--light {
  background-color: #e3b08c;
  color: #2c3e36;
  border: none;
  border-radius: 59px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn--light:hover, .btn--light:focus {
  background-color: #2c3e36;
  color: #e3b08c;
  transform: none;
  box-shadow: none;
}
.btn--light:active {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn--light-arrow {
  background-color: #e3b08c;
  color: #2c3e36;
  border: none;
  border-radius: 59px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  gap: 10px;
}
.btn--light-arrow::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M9.75 18.75C14.7206 18.75 18.75 14.7206 18.75 9.75C18.75 4.77944 14.7206 0.75 9.75 0.75C4.77944 0.75 0.75 4.77944 0.75 9.75C0.75 14.7206 4.77944 18.75 9.75 18.75Z' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.75 12.75L13.75 9.75M13.75 9.75L10.75 6.75M13.75 9.75L5.75 9.75' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn--light-arrow::after {
  width: 18px;
  height: 18px;
  margin-left: 0;
  filter: none;
  transition: filter 0.2s ease-in-out;
}
.btn--light-arrow:hover, .btn--light-arrow:focus {
  background-color: #2c3e36;
  color: #e3b08c;
  transform: none;
  box-shadow: none;
}
.btn--light-arrow:hover::after, .btn--light-arrow:focus::after {
  filter: brightness(0) saturate(100%) invert(85%) sepia(15%) saturate(1000%) hue-rotate(340deg) brightness(110%);
}
.btn--light-arrow:active {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn--dark {
  background-color: #e3b08c;
  color: #2c3e36;
  border: none;
  border-radius: 59px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn--dark:hover, .btn--dark:focus {
  background-color: #eae0cf;
  color: #2c3e36;
  transform: none;
  box-shadow: none;
}
.btn--dark:active {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn--dark-arrow {
  background-color: #e3b08c;
  color: #2c3e36;
  border: none;
  border-radius: 59px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  gap: 10px;
}
.btn--dark-arrow::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M9.75 18.75C14.7206 18.75 18.75 14.7206 18.75 9.75C18.75 4.77944 14.7206 0.75 9.75 0.75C4.77944 0.75 0.75 4.77944 0.75 9.75C0.75 14.7206 4.77944 18.75 9.75 18.75Z' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.75 12.75L13.75 9.75M13.75 9.75L10.75 6.75M13.75 9.75L5.75 9.75' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn--dark-arrow::after {
  width: 18px;
  height: 18px;
  margin-left: 0;
  filter: none;
  transition: filter 0.2s ease-in-out;
}
.btn--dark-arrow:hover, .btn--dark-arrow:focus {
  background-color: #eae0cf;
  color: #2c3e36;
  transform: none;
  box-shadow: none;
}
.btn--dark-arrow:hover::after, .btn--dark-arrow:focus::after {
  filter: none;
}
.btn--dark-arrow:active {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn--beige {
  background-color: #eae0cf;
  color: #2c3e36;
  border: none;
  border-radius: 59px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn--beige:hover, .btn--beige:focus {
  background-color: #e3b08c;
  color: #2c3e36;
  transform: none;
  box-shadow: none;
}
.btn--beige:active {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn--small {
  padding: 8px 24px;
  font-size: 14px;
}

.btn--large {
  padding: 24px 40px;
  font-size: 18px;
}

.btn--full {
  width: 100%;
}

.btn--icon {
  gap: 8px;
}
.btn--icon svg,
.btn--icon .icon {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}

.btn--arrow::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M9.75 18.75C14.7206 18.75 18.75 14.7206 18.75 9.75C18.75 4.77944 14.7206 0.75 9.75 0.75C4.77944 0.75 0.75 4.77944 0.75 9.75C0.75 14.7206 4.77944 18.75 9.75 18.75Z' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.75 12.75L13.75 9.75M13.75 9.75L10.75 6.75M13.75 9.75L5.75 9.75' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn--arrow::after {
  margin-left: 8px;
}
.btn--arrow:hover::after, .btn--arrow:focus::after {
  transform: translateX(4px);
}
.btn--arrow.btn--dark::after, .btn--dark .btn--arrow::after {
  filter: brightness(0) invert(1);
}

.btn-group {
  display: inline-flex;
  gap: 8px;
}
.btn-group .btn {
  margin: 0;
}

.home-hero {
  position: relative;
  width: 100%;
  background: linear-gradient(270deg, rgba(234, 224, 207, 0) 40.56%, rgba(247, 244, 237, 0.63) 53.79%, #FFF 83.93%), lightgray 0px -5.341px/149.583% 221.034% no-repeat;
  overflow: hidden;
}
@media (max-width: 768px) {
  .home-hero {
    background: linear-gradient(180deg, rgba(234, 224, 207, 0) 29.17%, rgba(247, 244, 237, 0.63) 44.94%, #FFF 80.86%), lightgray -274px 0px/243.222% 93.799% no-repeat;
  }
}
.home-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 650px;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .home-hero__background {
    height: 100%;
  }
}
.home-hero__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.home-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: absolute;
  left: 0;
  display: block;
}
.home-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(234, 224, 207, 0) 40.556%, rgba(247, 244, 237, 0.63) 53.791%, #ffffff 83.934%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .home-hero__gradient {
    background: linear-gradient(to bottom, rgba(234, 224, 207, 0) 0%, rgba(247, 244, 237, 0.63) 50%, #ffffff 100%);
  }
}
.home-hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 0 0;
  min-height: 650px;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .home-hero__content {
    padding: 320px 0 0;
    min-height: unset;
  }
}
.home-hero__left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 594px;
}
@media (max-width: 768px) {
  .home-hero__left {
    padding-left: 20px;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 320px) {
  .home-hero__left {
    padding-left: 24px;
  }
}
.home-hero__headline {
  font-size: 55px;
  font-weight: 700;
  color: #2c3e36;
  line-height: 65px;
  margin: 0 0 35px 0;
  font-family: "Gotham", sans-serif;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .home-hero__headline {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 20px;
  }
}
@media (max-width: 320px) {
  .home-hero__headline {
    font-size: 35px;
    line-height: 42px;
    margin-bottom: 16px;
  }
}
.home-hero__keywords {
  font-size: 24px;
  font-weight: 700;
  color: #736258;
  line-height: 28px;
  margin: 0 0 54px 0;
  text-transform: uppercase;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .home-hero__keywords {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 320px) {
  .home-hero__keywords {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
.home-hero__cta-button {
  max-width: fit-content;
  position: relative;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .home-hero__cta-button {
    margin-bottom: 55px !important;
  }
}
.home-hero__footer {
  background-color: #736258;
  padding: 36px 0;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .home-hero__footer {
    padding: 24px 0;
  }
}
@media (max-width: 320px) {
  .home-hero__footer {
    padding: 16px 0;
  }
}
.home-hero__footer-text {
  color: #f5f0e8;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .home-hero__footer-text {
    font-size: 22px;
  }
}
@media (max-width: 320px) {
  .home-hero__footer-text {
    font-size: 18px;
  }
}