/* Hero section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to right, #F8FAFC 0%, rgba(248, 250, 252, 0.95) 70%, transparent);
}

.hero__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.45;
}

.dark .hero__background img {
  opacity: 0.35;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(248, 250, 252, 0.75) 0%, rgba(248, 250, 252, 0.6) 85%, transparent);
}

.dark .hero__overlay {
  background: linear-gradient(to right, rgba(5, 18, 16, 0.92) 0%, rgba(5, 18, 16, 0.85) 70%, rgba(5, 18, 16, 0.5) 100%);
}

.hero__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1rem;
}
@media (min-width: 640px) {
  .hero__inner {
    padding: 5rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero__inner {
    padding: 5rem 2rem;
  }
}

.hero__content {
  max-width: 48rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  background-color: #ECFDF5;
  color: #0A2F2B;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
  border: 1px solid rgba(226, 199, 153, 0.3);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.dark .hero__badge {
  background-color: #0A2F2B;
  color: #E2C799;
}

.hero__title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: #0A2F2B;
}
.dark .hero__title {
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}
@media (min-width: 640px) {
  .hero__title {
    font-size: 3.75rem;
  }
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 4.5rem;
  }
}

.hero__subtitle {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: #E2C799;
}
.dark .hero__subtitle {
  color: #E2C799;
  font-family: "Playfair Display", Georgia, serif;
}

.hero__description {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  line-height: 1.625;
  color: #475569;
}
.dark .hero__description {
  color: #CBD5E1;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero__cta {
    flex-direction: row;
  }
}
.hero__cta-primary {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(226, 199, 153, 0.2), 0 8px 10px -6px rgba(226, 199, 153, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -12px rgba(226, 199, 153, 0.25);
}

.hero__cta-secondary {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 1rem;
  border: 2px solid rgba(10, 47, 43, 0.2);
  transition: all 0.2s ease;
}
.hero__cta-secondary:hover {
  background-color: #ECFDF5;
  border-color: rgba(10, 47, 43, 0.3);
}

.dark .hero__cta-secondary:hover {
  background-color: rgba(10, 47, 43, 0.4);
  border-color: rgba(226, 199, 153, 0.4);
}

.hero__badge-icon {
  font-size: 0.875rem;
}
/*# sourceMappingURL=hero.css.map */
