.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;
}

.cta {
  position: relative;
  width: 100%;
  margin-bottom: 97px;
}
@media (max-width: 768px) {
  .cta {
    padding: 40px 20px;
    margin-bottom: 60px;
  }
}
.cta__outer {
  position: relative;
  background-color: #2c3e36;
  border-radius: 50px;
  padding: 37px 43px;
  width: 100%;
  max-width: 1236px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cta__outer {
    border-radius: 40px;
    padding: 30px 25px;
  }
}
@media (max-width: 320px) {
  .cta__outer {
    border-radius: 30px;
    padding: 25px 20px;
  }
}
.cta__inner {
  border: 2px solid #e3b08c;
  border-radius: 40px;
  width: 100%;
  min-height: 475px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}
@media (max-width: 768px) {
  .cta__inner {
    border-radius: 30px;
    min-height: 400px;
    padding: 80px 20px;
  }
}
.cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  text-align: center;
  max-width: 747px;
  width: 100%;
}
@media (max-width: 768px) {
  .cta__content {
    gap: 35px;
  }
}
.cta__headline {
  font-size: 45px;
  font-weight: 700;
  color: #e3b08c;
  line-height: 55px;
  margin: 0;
  font-family: "Gotham", sans-serif;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .cta__headline {
    font-size: 32px;
    line-height: 40px;
  }
}
.cta__subtext {
  font-size: 24px;
  font-weight: 500;
  color: #eae0cf;
  line-height: 28px;
  margin: 0;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .cta__subtext {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 320px) {
  .cta__subtext {
    font-size: 18px;
    line-height: 22px;
  }
}
.cta__buttons {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .cta__buttons {
    margin-top: 15px;
  }
}
.cta__button {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cta__button--secondary {
    width: auto !important;
  }
}
@media (max-width: 768px) {
  .cta__button {
    width: 100%;
    justify-content: center;
  }
}