@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
:root {
  --main-accent-color: #6B8C7A;
  --sand: #F7F4EF;
  --border: #E2DDD7;
  --warm-gray: #6B6B6B;
  --charcoal: #2A2A2A;
  --sage-light: #EAF0EC;
  --sage-dark: #3E5448;
}

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

body {
  font-family: "DM Sans", sans-serif;
}

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

.button-filled {
  font-weight: 600;
  padding: 0.5rem 1rem;
  background-color: var(--main-accent-color);
  border-radius: 6px;
}
.button-filled:hover {
  opacity: 0.8;
}

.badge-text {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--main-accent-color);
  background: var(--sage-light);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: "Cormorant Garamond";
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.description {
  line-height: 1.72;
  color: var(--warm-gray);
  margin-bottom: 2rem;
}

.header {
  display: flex;
  position: sticky;
  top: 0rem;
  left: 0rem;
  background-color: white;
  z-index: 999;
  padding: 1rem 1rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2);
}
.header .right {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}
.header .logo {
  height: 1.5rem;
}
.header .phone-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}
.header .phone-btn:hover {
  background-color: rgba(128, 128, 128, 0.128);
}
.header svg {
  width: 1rem;
}
.header .button-filled {
  color: white;
  padding: 0.6rem 1rem;
}

.call-cta-fixed {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  z-index: 999;
  width: calc(100% - 2rem);
  transform: translateX(-50%);
  background-color: var(--main-accent-color);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  border-radius: 0.25rem;
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
}
.call-cta-fixed img {
  height: 1.5rem;
  fill: white;
}

.hero-section {
  position: relative;
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.hero-section img {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, rgba(62, 84, 72, 0.5) 0%, rgba(20, 20, 20, 0.7) 100% 100%);
}
.hero-section .hero-desktop-content .hero-text {
  z-index: 2;
}
.hero-section .hero-text {
  z-index: 2;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  color: white;
  text-align: center;
  max-width: 90%;
}
.hero-section .hero-text .badge-text {
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: rgba(255, 255, 255, 0.7);
}
.hero-section .hero-text .section-title {
  color: white;
  font-size: 3rem;
  margin-bottom: 2rem;
}
.hero-section .hero-text .description {
  color: rgba(255, 255, 255, 0.718);
}
.hero-section .hero-text .button-filled {
  font-size: 1rem;
  background-color: white;
  padding: 1rem 2rem;
}

.services-section {
  padding: 4rem 2rem;
  background-color: var(--sand);
  display: none;
}
.services-section .headline-div {
  margin-bottom: 3.5rem;
}
.services-section .headline-div p {
  color: var(--main-accent-color);
}
.services-section .services-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.services-section .services-container .service-card {
  width: 100%;
  background-color: white;
  border: 1px solid var(--border);
  border-radius: 1rem;
}
.services-section .services-container .service-card .service-card-img {
  width: 100%;
}
.services-section .services-container .service-card .service-card-img img {
  max-height: 245px;
  border-radius: 1rem 1rem 0rem 0rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-section .services-container .service-card .card-text {
  padding: 1.75rem;
}
.services-section .services-container .service-card .card-text .card-title {
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.services-section .services-container .service-card .card-text .card-description {
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--warm-gray);
}
.services-section .services-container .service-card .card-text .card-link {
  font-weight: 600;
  color: var(--main-accent-color);
  font-size: 0.85rem;
}

.booking-section {
  padding: 1rem 1rem;
  background-color: var(--sage-light);
}
.booking-section .headline-div {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.booking-section .headline-div h2 {
  margin-bottom: 1.25rem;
  text-align: center;
}
.booking-section .headline-div .description {
  text-align: center;
}

.reviews-section {
  background-color: var(--sage-light);
  padding: 2rem 1rem 4rem 1rem;
}
.reviews-section .headline-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.reviews-section .headline-div .stars {
  display: flex;
  margin-top: 1rem;
}
.reviews-section .headline-div .star {
  width: 1rem;
  fill: #F4A623;
}
.reviews-section .reviews-container-desktop {
  display: none;
}
.reviews-section .reviews-container {
  display: grid;
  width: 100%;
  max-width: 100vw;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.reviews-section .reviews-column {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.reviews-section .reviews-column img {
  width: 100%;
}

.faq-section {
  background-color: var(--sand);
  padding: 4rem 2rem;
}
.faq-section .headline-div .description {
  text-align: start;
  margin-top: 1rem;
}
.faq-section .headline-div a {
  display: flex;
  gap: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
}
.faq-section .headline-div a svg {
  width: 1rem;
  fill: white;
}
.faq-section .questions-container .divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
  margin: 2rem 0rem;
}
.faq-section .questions-container .question-item .question {
  font-family: "Cormorant Garamond";
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.faq-section .questions-container .question-item .description {
  margin-bottom: 0rem;
}

footer {
  background-color: var(--charcoal);
  color: var(--warm-gray);
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
footer .footer-top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer .footer-top .description {
  font-size: 0.9rem;
  opacity: 0.7;
}
footer .footer-top .contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--warm-gray);
}
footer .footer-top .contact a {
  color: var(--warm-gray);
  font-weight: 500;
}
footer .footer-top .contact p {
  font-weight: 600;
}
footer .divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
}
footer .footer-bottom {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Small tablets */
@media (min-width: 640px) {
  .reviews-section {
    padding: 4rem 10%;
  }
}
/* Tablets */
/* Laptops */
@media (min-width: 1024px) {
  .header {
    padding: 1rem 10%;
  }
  .header .logo {
    height: 2rem;
  }
  .call-cta-fixed {
    display: none;
  }
  .hero-section {
    padding: 4rem 10%;
  }
  .hero-section .hero-text {
    max-width: 45ch;
  }
  .hero-section .hero-text .section-title {
    font-size: 4rem;
  }
  .hero-section .hero-desktop-content {
    width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    align-items: center;
  }
  .booking-section .headline-div {
    padding-bottom: 0rem;
  }
  .booking-section .headline-div .description {
    margin-bottom: 0rem;
  }
  .reviews-section .reviews-container-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    max-width: 100vw;
    gap: 1rem;
  }
  .reviews-section .reviews-container-desktop .reviews-column {
    margin-top: 1rem;
    gap: 1rem;
  }
  .reviews-section .reviews-container {
    display: none;
  }
  .faq-section {
    padding: 4rem 10%;
    display: flex;
    justify-content: space-between;
    gap: 5rem;
  }
  .faq-section .headline-div {
    margin-top: 2rem;
  }
  .faq-section .headline-div .description {
    max-width: 30ch;
  }
  .faq-section .description {
    max-width: 55ch;
  }
  footer {
    padding: 4rem 10%;
  }
  footer .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
  footer .footer-top .description {
    max-width: 40ch;
  }
  footer .footer-bottom {
    display: flex;
    justify-content: space-between;
  }
}
/* Large desktops *//*# sourceMappingURL=style.css.map */