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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background-color: #fbfbfa;
  color: color-mix(in srgb, color-mix(in srgb, #1e3d2f 75%, #000000 25%) 60%, color-mix(in srgb, #5c2518 25%, #000000 75%) 40%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section {
  padding: 5rem 0;
}
@media (max-width: 48rem) {
  .section {
    padding: 2.5rem 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 0.125rem solid transparent;
  cursor: pointer;
  transition: all 300ms ease;
  line-height: 1.2;
}
.btn--primary {
  background-color: #1e3d2f;
  color: #ffffff;
  border-color: #1e3d2f;
}
.btn--primary:hover {
  background-color: color-mix(in srgb, #1e3d2f 75%, #000000 25%);
  border-color: color-mix(in srgb, #1e3d2f 75%, #000000 25%);
}
.btn--secondary {
  background-color: transparent;
  color: #1e3d2f;
  border-color: #1e3d2f;
}
.btn--secondary:hover {
  background-color: #1e3d2f;
  color: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-family: "Merriweather", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #1e3d2f;
}
@media (max-width: 48rem) {
  .section-title {
    font-size: 2.25rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.5rem 0;
  background: #ffffff;
  box-shadow: 0 0.125rem 1.875rem rgba(30, 61, 47, 0.08);
  transition: background 0.2s ease-in-out;
}
.has-hero-slider .header {
  background: transparent;
  box-shadow: none;
}
.has-hero-slider .header.scrolled {
  background: #ffffff;
  box-shadow: 0 0.125rem 1.875rem rgba(30, 61, 47, 0.08);
}

.has-hero-slider .header:not(.scrolled) .nav__logo--light {
  display: block;
}
.has-hero-slider .header:not(.scrolled) .nav__logo--dark {
  display: none;
}
.has-hero-slider .header:not(.scrolled) .nav__links a,
.has-hero-slider .header:not(.scrolled) .nav__hamburger {
  color: #ffffff;
}
.has-hero-slider .header:not(.scrolled) .nav__cta {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.has-hero-slider .header:not(.scrolled) .nav__cta:hover {
  background-color: #ffffff;
  color: #1e3d2f;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1rem;
  gap: 1rem;
}
.nav__brand a {
  display: flex;
  align-items: center;
}
.nav__logo {
  height: 2.5rem;
  width: auto;
  display: block;
}
.nav__logo--light {
  display: none;
}
.nav__logo--dark {
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in srgb, color-mix(in srgb, #1e3d2f 75%, #000000 25%) 60%, color-mix(in srgb, #5c2518 25%, #000000 75%) 40%);
  position: relative;
  transition: color 0.3s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 0.125rem;
  background-color: #1e3d2f;
  transition: width 0.3s ease;
}
.nav__links a.active {
  color: #1e3d2f;
}
.nav__links a.active::after {
  width: 100%;
}
.nav__links a:hover {
  color: #1e3d2f;
}
.nav__links a:hover::after {
  width: 100%;
}
.nav__cta {
  flex-shrink: 0;
}
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: #1e3d2f;
}
.nav__hamburger svg {
  display: block;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: #fbfbfa;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay--open {
  display: flex;
  opacity: 1;
}
.nav-overlay__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: #1e3d2f;
}
.nav-overlay__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.nav-overlay__links a {
  font-family: "Merriweather", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: #1e3d2f;
  transition: color 0.3s ease;
}
.nav-overlay__links a:hover {
  color: #5c2518;
}
.nav-overlay__cta {
  margin-top: 1rem;
}

@media (max-width: 48rem) {
  .nav__links, .nav__cta {
    display: none;
  }
  .nav__hamburger {
    display: block;
  }
}
.footer {
  background-color: #1e3d2f;
  color: #ffffff;
  padding: 5rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 48rem) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__logo {
  width: 5rem;
  height: auto;
}
.footer__site-name {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0.85;
}
.footer__heading {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer__links a {
  font-size: 0.875rem;
  opacity: 0.85;
  transition: opacity 300ms ease;
}
.footer__links a:hover {
  opacity: 1;
}
.footer__contact {
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.85;
}
.footer__hours {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.7;
}
.footer__nav {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer__nav a {
  font-size: 0.875rem;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.footer__nav a:hover {
  opacity: 1;
}
.footer__bottom {
  margin-top: 2.5rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.15);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.75rem;
  opacity: 0.7;
}
.footer__bottom a {
  opacity: 0.85;
  transition: opacity 300ms ease;
}
.footer__bottom a:hover {
  opacity: 1;
}
.footer__bottom-links {
  display: flex;
  gap: 1rem;
}
@media (max-width: 48rem) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
.footer__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.footer__badge img {
  max-width: 10rem;
  height: auto;
}
.footer__badge span {
  font-size: 0.75rem;
  opacity: 0.7;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 32rem;
  overflow: hidden;
  background-color: color-mix(in srgb, #1e3d2f 75%, #000000 25%);
}
.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}
.hero-slider__slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}
.hero-slider__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(30, 61, 47, 0.3);
  pointer-events: none;
}
.hero-slider__slide--active {
  opacity: 1;
  z-index: 3;
}
.hero-slider__slide--incoming {
  z-index: 4;
}
.hero-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slider__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1rem;
}
.hero-slider__content {
  max-width: 48rem;
  text-align: center;
  color: #ffffff;
}
.hero-slider__title {
  font-family: "Merriweather", Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  transition: opacity 0.4s ease;
}
.hero-slider__text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  transition: opacity 0.4s ease;
}
.hero-slider__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-slider__actions .btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.hero-slider__actions .btn--secondary:hover {
  background-color: #ffffff;
  color: #1e3d2f;
}
.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0, 0, 0, 0.25);
  border: none;
  color: #ffffff;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  backdrop-filter: blur(0.125rem);
  padding: 0;
}
.hero-slider__arrow:hover {
  background: rgba(0, 0, 0, 0.5);
}
.hero-slider__arrow--prev {
  left: 1rem;
}
.hero-slider__arrow--next {
  right: 1rem;
}
@media (max-width: 48rem) {
  .hero-slider__arrow {
    display: none;
  }
}
.hero-slider__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: rgba(255, 255, 255, 0.12);
  border: 0.0625rem solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  cursor: pointer;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  backdrop-filter: blur(0.125rem);
  animation: hero-scroll-hint 2.4s ease-in-out infinite;
  transition: background 0.2s ease;
}
.hero-slider__scroll svg {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}
.hero-slider__scroll:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}
@keyframes hero-scroll-hint {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateX(-50%) translateY(0.5rem);
    opacity: 1;
  }
}

@media (max-width: 48rem) {
  .hero-slider {
    height: 70vh;
    min-height: 20rem;
  }
  .hero-slider__title {
    font-size: 3rem;
  }
  .hero-slider__text {
    font-size: 0.875rem;
  }
}
.hero {
  padding: 5rem 0;
  text-align: center;
}
.hero__icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.hero__title {
  font-family: "Merriweather", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e3d2f;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.hero__text {
  font-size: 1rem;
  max-width: 48rem;
  margin: 0 auto 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, color-mix(in srgb, #1e3d2f 75%, #000000 25%) 60%, color-mix(in srgb, #5c2518 25%, #000000 75%) 40%);
}
.hero__highlight {
  background-color: color-mix(in srgb, #1e3d2f 60%, #ffffff 40%);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  max-width: 48rem;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}
.hero__cta {
  margin-top: 1rem;
}

.barf-saulen {
  padding: 5rem 0;
  background-color: rgba(30, 61, 47, 0.03);
}
.barf-saulen__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 48rem) {
  .barf-saulen__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
@media (max-width: 30rem) {
  .barf-saulen__grid {
    grid-template-columns: 1fr;
  }
}
.barf-saulen__item {
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: #ffffff;
  border-radius: 1.5rem;
  border: 0.0625rem solid rgba(30, 61, 47, 0.08);
  border-radius: 1.25rem;
  transition: all 300ms ease;
}
.barf-saulen__item:hover {
  border-color: rgba(30, 61, 47, 0.2);
  box-shadow: 0 0.25rem 1.25rem rgba(30, 61, 47, 0.06);
  transform: translateY(-0.25rem);
}
.barf-saulen__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3d2f;
}
.barf-saulen__title {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3d2f;
  margin-bottom: 0.25rem;
}
.barf-saulen__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: color-mix(in srgb, color-mix(in srgb, #1e3d2f 75%, #000000 25%) 60%, color-mix(in srgb, #5c2518 25%, #000000 75%) 40%);
}

.shop-preview {
  padding: 5rem 0;
}
.shop-preview__content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.shop-preview__text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.shop-preview__cta {
  margin-top: 1rem;
}

@media (max-width: 48rem) {
  .hero__title {
    font-size: 1.75rem;
  }
  .hero__text {
    font-size: 0.875rem;
  }
  .hero__highlight {
    padding: 1rem;
    font-size: 0.875rem;
  }
}
.pricing {
  padding: 5rem 0;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.pricing__card {
  background-color: #ffffff;
  border: 1px solid rgba(30, 61, 47, 0.08);
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 300ms ease;
}
.pricing__card:hover {
  border-color: rgba(30, 61, 47, 0.2);
  box-shadow: 0 4px 20px rgba(30, 61, 47, 0.06);
}
.pricing__card--featured {
  border-color: #1e3d2f;
  border-width: 2px;
  position: relative;
}
.pricing__card--featured::before {
  content: "Empfohlen";
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1e3d2f;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing__name {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3d2f;
  margin-bottom: 0.25rem;
}
.pricing__price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #5c2518;
  margin-bottom: 0.5rem;
}
.pricing__price small {
  font-size: 0.875rem;
  font-weight: 400;
  color: color-mix(in srgb, color-mix(in srgb, #1e3d2f 75%, #000000 25%) 60%, color-mix(in srgb, #5c2518 25%, #000000 75%) 40%);
}
.pricing__desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: color-mix(in srgb, color-mix(in srgb, #1e3d2f 75%, #000000 25%) 60%, color-mix(in srgb, #5c2518 25%, #000000 75%) 40%);
  flex: 1;
}

.steps {
  counter-reset: step-counter;
  padding: 5rem 0;
  background-color: rgba(30, 61, 47, 0.03);
}
.steps__list {
  display: grid;
  gap: 1.5rem;
  max-width: 48rem;
  margin: 1.5rem auto 0;
}
.steps__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.steps__number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #1e3d2f;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Merriweather", Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
}
.steps__content {
  padding-top: 0.25rem;
}
.steps__title {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1e3d2f;
  margin-bottom: 0.25rem;
}
.steps__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: color-mix(in srgb, color-mix(in srgb, #1e3d2f 75%, #000000 25%) 60%, color-mix(in srgb, #5c2518 25%, #000000 75%) 40%);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.tags__item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: rgba(30, 61, 47, 0.06);
  color: #1e3d2f;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.375rem 0.875rem;
  border-radius: 2rem;
  border: 1px solid rgba(30, 61, 47, 0.12);
}

.notice {
  max-width: 48rem;
  margin: 2.5rem auto 0;
  padding: 1rem 1.5rem;
  background-color: rgba(92, 37, 24, 0.06);
  border-left: 4px solid #5c2518;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: color-mix(in srgb, color-mix(in srgb, #1e3d2f 75%, #000000 25%) 60%, color-mix(in srgb, #5c2518 25%, #000000 75%) 40%);
}
.notice strong {
  color: #5c2518;
}

.contact {
  padding: 5rem 0;
}
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 2.5rem;
}
@media (max-width: 48rem) {
  .contact__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.contact__intro {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.contact__text {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, color-mix(in srgb, #1e3d2f 75%, #000000 25%) 60%, color-mix(in srgb, #5c2518 25%, #000000 75%) 40%);
}
.contact__info {
  background-color: #ffffff;
  border: 1px solid rgba(30, 61, 47, 0.08);
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__info-heading {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3d2f;
}
.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: color-mix(in srgb, color-mix(in srgb, #1e3d2f 75%, #000000 25%) 60%, color-mix(in srgb, #5c2518 25%, #000000 75%) 40%);
}
.contact__info-item svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.form {
  max-width: 36rem;
}
.form__group {
  margin-bottom: 1rem;
}
.form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e3d2f;
  margin-bottom: 0.25rem;
}
.form__input, .form__textarea {
  width: 100%;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(30, 61, 47, 0.15);
  border-radius: 0.5rem;
  background-color: #ffffff;
  color: color-mix(in srgb, color-mix(in srgb, #1e3d2f 75%, #000000 25%) 60%, color-mix(in srgb, #5c2518 25%, #000000 75%) 40%);
  transition: border-color 300ms ease;
  outline: none;
}
.form__input::placeholder, .form__textarea::placeholder {
  color: color-mix(in srgb, color-mix(in srgb, color-mix(in srgb, #1e3d2f 75%, #000000 25%) 60%, color-mix(in srgb, #5c2518 25%, #000000 75%) 40%), transparent 60%);
}
.form__input:focus, .form__textarea:focus {
  border-color: #1e3d2f;
  box-shadow: 0 0 0 3px rgba(30, 61, 47, 0.1);
}
.form__textarea {
  min-height: 8rem;
  resize: vertical;
}
.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.form__checkbox input[type=checkbox] {
  margin-top: 0.25rem;
  width: 1.125rem;
  height: 1.125rem;
  accent-color: #1e3d2f;
  flex-shrink: 0;
}
.form__checkbox label {
  font-size: 0.875rem;
  line-height: 1.5;
  color: color-mix(in srgb, color-mix(in srgb, #1e3d2f 75%, #000000 25%) 60%, color-mix(in srgb, #5c2518 25%, #000000 75%) 40%);
}

.contact-alt {
  margin-top: 2.5rem;
  text-align: center;
}
.contact-alt__item {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.contact-alt__item a {
  color: #1e3d2f;
  font-weight: 500;
  transition: color 300ms ease;
}
.contact-alt__item a:hover {
  color: #5c2518;
}

.map-placeholder {
  margin-top: 5rem;
}
.map-placeholder__container {
  position: relative;
  width: 100%;
  min-height: 24rem;
  border-radius: 1.5rem;
  overflow: hidden;
  background-color: color-mix(in srgb, #1e3d2f 75%, #000000 25%);
}
.map-placeholder__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem;
  text-align: center;
  z-index: 2;
  background-color: color-mix(in srgb, #1e3d2f 75%, #000000 25%);
  color: #ffffff;
  transition: opacity 300ms ease;
}
.map-placeholder__overlay--hidden {
  opacity: 0;
  pointer-events: none;
}
.map-placeholder__icon {
  width: 3rem;
  height: 3rem;
  color: #ffffff;
  opacity: 0.8;
}
.map-placeholder__text {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 28rem;
  opacity: 0.9;
}
.map-placeholder__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  border: 2px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: all 300ms ease;
}
.map-placeholder__btn:hover {
  background-color: #ffffff;
  color: color-mix(in srgb, #1e3d2f 75%, #000000 25%);
}
.map-placeholder__map {
  width: 100%;
  height: 24rem;
  position: relative;
  z-index: 1;
}

.partners {
  padding: 5rem 0;
}
.partners__intro {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.partners__text {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, color-mix(in srgb, #1e3d2f 75%, #000000 25%) 60%, color-mix(in srgb, #5c2518 25%, #000000 75%) 40%);
}
.partners__highlight {
  font-size: 1rem;
  font-weight: 600;
  color: #1e3d2f;
  margin-top: 1rem;
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.partners__card {
  background-color: #ffffff;
  border: 1px solid rgba(30, 61, 47, 0.08);
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 300ms ease;
}
.partners__card:hover {
  border-color: rgba(30, 61, 47, 0.2);
  box-shadow: 0 4px 20px rgba(30, 61, 47, 0.06);
  transform: translateY(-0.25rem);
}
.partners__name {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3d2f;
  margin-bottom: 0.25rem;
}
.partners__tag {
  display: inline-flex;
  background-color: rgba(92, 37, 24, 0.08);
  color: #5c2518;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 2rem;
  margin-bottom: 0.5rem;
  align-self: flex-start;
}
.partners__snippet {
  font-size: 0.875rem;
  line-height: 1.6;
  color: color-mix(in srgb, color-mix(in srgb, #1e3d2f 75%, #000000 25%) 60%, color-mix(in srgb, #5c2518 25%, #000000 75%) 40%);
  flex: 1;
  margin-bottom: 1rem;
}
.partners__link {
  color: #1e3d2f;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 300ms ease;
}
.partners__link:hover {
  color: #5c2518;
}
.partners__link svg {
  transition: transform 300ms ease;
}
.partners__link:hover svg {
  transform: translateX(0.25rem);
}
.partners__cta {
  margin-top: 2.5rem;
  text-align: center;
  padding: 2.5rem 1rem;
  background-color: rgba(30, 61, 47, 0.03);
  border-radius: 1.5rem;
}
.partners__cta-title {
  font-family: "Merriweather", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e3d2f;
  margin-bottom: 0.5rem;
}
.partners__cta-text {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, color-mix(in srgb, #1e3d2f 75%, #000000 25%) 60%, color-mix(in srgb, #5c2518 25%, #000000 75%) 40%);
  max-width: 36rem;
  margin: 0 auto 1rem;
}

.about {
  padding: 5rem 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1.5rem;
}
@media (max-width: 48rem) {
  .about__grid {
    grid-template-columns: 1fr;
  }
}
.about__content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: color-mix(in srgb, color-mix(in srgb, #1e3d2f 75%, #000000 25%) 60%, color-mix(in srgb, #5c2518 25%, #000000 75%) 40%);
}
.about__trigger {
  background-color: rgba(30, 61, 47, 0.04);
  border-left: 4px solid #1e3d2f;
  padding: 1rem 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin-top: 1.5rem;
}
.about__trigger p {
  font-size: 1rem;
  margin-bottom: 0;
  font-style: italic;
}
.about__quals {
  background-color: #ffffff;
  border: 1px solid rgba(30, 61, 47, 0.08);
  border-radius: 1.5rem;
  padding: 1.5rem;
}
.about__qual-title {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3d2f;
  margin-bottom: 1rem;
}
.about__badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(30, 61, 47, 0.1);
  border-radius: 1rem;
}
.about__badge svg {
  flex-shrink: 0;
}
.about__badge-text h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e3d2f;
  margin-bottom: 0.125rem;
}
.about__badge-text p {
  font-size: 0.75rem;
  color: color-mix(in srgb, color-mix(in srgb, #1e3d2f 75%, #000000 25%) 60%, color-mix(in srgb, #5c2518 25%, #000000 75%) 40%);
  margin-bottom: 0;
}

.welcome {
  background-color: #fbfbfa;
  padding: 5rem 0;
}
.welcome__content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.welcome__title {
  font-family: "Merriweather", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1e3d2f;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.welcome__body {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, color-mix(in srgb, #1e3d2f 75%, #000000 25%) 60%, color-mix(in srgb, #5c2518 25%, #000000 75%) 40%);
  margin-bottom: 1rem;
}
.welcome__highlight {
  background-color: color-mix(in srgb, #1e3d2f 60%, #ffffff 40%);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}
.welcome__closing {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: #1e3d2f;
}
.welcome__cta {
  margin-top: 1rem;
}

@media (max-width: 48rem) {
  .welcome {
    padding: 2.5rem 0;
  }
  .welcome__title {
    font-size: 2.25rem;
  }
  .welcome__body, .welcome__highlight {
    font-size: 0.875rem;
  }
  .welcome__closing {
    font-size: 1rem;
  }
  .welcome__highlight {
    padding: 0.5rem 1rem;
  }
}
.reviews {
  padding: 5rem 0;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 48rem) {
  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.reviews__card {
  background-color: #ffffff;
  border: 0.0625rem solid rgba(30, 61, 47, 0.08);
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 300ms ease;
}
.reviews__card:hover {
  border-color: rgba(30, 61, 47, 0.2);
  box-shadow: 0 4px 20px rgba(30, 61, 47, 0.06);
  transform: translateY(-0.25rem);
}
.reviews__stars {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
}
.reviews__text {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, color-mix(in srgb, #1e3d2f 75%, #000000 25%) 60%, color-mix(in srgb, #5c2518 25%, #000000 75%) 40%);
  flex: 1;
}
.reviews__author {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e3d2f;
}
.reviews__action {
  margin-top: 2.5rem;
  text-align: center;
}

/*# sourceMappingURL=main.css.map */
