
body {
  font-family: 'EB Garamond', serif;
  background: #fdfcf9;
  color: #2d2b28;
  margin: 0;
  padding-left: 1rem;
  padding-right: 1rem;
	box-sizing: border-box;
  overflow-x: hidden;
  text-align: center;
}
h1, h2, h3 {
  font-weight: bold;
}
.nav-container {
  padding: 1.5em 1em;
}
.button {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  background: #bfa87a;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  max-width: 250px;
  width: 100%;
  text-align:center;
}
.states, .headline, .services, .testimonials, .contact {
  margin: 3em auto;
  max-width: 800px;
}
a.button {
  display: inline-block;
  max-width: 250px;          /* Prevents it from stretching too wide */
  width: 100%;               /* Makes it responsive in narrow containers */
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background-color: #bfa87a; /* or whatever you want */
  color: white;
  border-radius: 6px;
  box-sizing: border-box;
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
}

.carou.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-link {
  text-decoration: none;
  color: inherit;
}
.card {
  width: 280px;
  height: 250px; /* fixed height for uniformity */
  margin: 1rem;
  padding: 1.5rem;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* ensures centering regardless of text height */
  text-align: center;
}

.card:hover {
  border: 2px solid #b1976b; /* Louis Vuitton-inspired gold */
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
}
sel blockquote {
  display: none;
}
.carousel blockquote.active {
  display: block;
  font-style: italic;
}
.dots span {
  height: 10px;
  width: 10px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 3px;
}
.dots span.active {
  background: #2d2b28;
}
form {
  display: flex;
  flex-direction: column;
  margin: 10px;
}
form input, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}
form button {
  background: #bfa87a;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
}
footer {
  margin-top: 4em;
  font-size: 0.9em;
  color: #666;
}

.testimonial-carousel-container {
  max-width: 700px;
  width: 100%;
  margin: 2rem auto 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  text-align: center;
}

.carousel {
  position: relative;
  height: 100px; /* adjust if needed */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* All blockquotes hidden & removed from layout */
.carousel blockquote {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease;
  font-style: italic;
  max-width: 700px;
  width: 100%;
  padding: 0 1rem;
  margin: 0;
  box-sizing: border-box;
}

/* Active one is visible, in layout flow */
.carousel blockquote.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.4rem;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
}

.dot.active {
  background-color: #000;
}
/* Mobile and smaller screens */
@media (max-width: 900px) {
  body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

  .nav-container {
    padding: 1.5em 1em;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
    text-align: center;
  }

  h3 {
    font-size: 1.2rem;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    margin: 0.5rem 0;
  }

  .testimonial-carousel-container,
  .carousel {
    padding: 0 1em;
    max-width: 100%;
    min-height: 140px; /* ensure testimonial block height */
  }

  .carousel blockquote {
    font-size: 1rem;
    padding: 1em 0.5em;
    max-width: 95%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel blockquote.active {
    display: flex;
    position: relative;
    opacity: 1;
  }

  .dots {
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
  }

  form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  form input,
  form textarea {
    font-size: 1rem;
    width: 100%;
  }

  .button,
  form button {
    font-size: 1rem;
    padding: 10px 16px;
    width: 100%;
  }

  footer p {
    font-size: 0.9rem;
    text-align: center;
  }
}
