:root {
  --primary: hsl(68, 22%, 37%);
  --secondary: hsl(96, 22%, 16%);
  --accent: hsl(44, 28%, 48%);
  --surface: #f4f4f1;
}

body{
  font-family: 'Merriweather', serif;
  background-color: var(--surface);
  color: #222;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Lato', sans-serif;
}
.navbar{
  background-color: #ffffff;
  border-bottom: 1px solid #e0ded8;
}
.navbar-brand{
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: var(--secondary) !important;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-nav .nav-link{
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: var(--secondary) !important;
  padding: 8px 16px !important;
}
.navbar-nav .nav-link:hover{
  color: var(--primary) !important;
}
.navbar-toggler{
  border-color: var(--primary) !important;
}

footer {
    background-color: hsl(96, 22%, 16%);
    color: #f4f4f1;
    font-family: 'Merriweather', serif;
    padding: 48px 0 24px;
    border-radius: 0;
  }
  footer h5 {
    font-family: 'Lato', sans-serif;
    color: #f4f4f1;
    margin-bottom: 16px;
    font-weight: 700;
  }
  footer p, footer li, footer a {
    color: #e4e3dc;
    font-size: 0.95rem;
  }
  footer a {
    text-decoration: none;
  }
  footer a:hover {
    color: hsl(44, 28%, 48%);
    text-decoration: underline;
  }
  footer ul {
    list-style: none;
    padding-left: 0;
  }
  footer ul li {
    margin-bottom: 8px;
  }
  .footer-divider {
    border-color: rgba(244,244,241,0.15);
    margin: 32px 0 16px;
  }
  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: hsl(68, 22%, 37%);
    color: #f4f4f1;
    margin-right: 10px;
    border-radius: 0;
    transition: background-color 0.2s ease;
  }
  .social-icons a:hover {
    background-color: hsl(44, 28%, 48%);
    color: #fff;
  }
  .copyright-line {
    font-size: 0.85rem;
    color: #cfcec6;
  }

  #consentBar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f4f4f1;
    border-top: 3px solid hsl(68, 22%, 37%);
    z-index: 1050;
    padding: 16px 0;
    max-height: 60vh;
    overflow-y: auto;
    font-family: 'Merriweather', serif;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
  }
  #consentBar h6 {
    font-family: 'Lato', sans-serif;
    color: hsl(96, 22%, 16%);
    font-weight: 700;
    margin-bottom: 6px;
  }
  #consentBar p, #consentBar li {
    color: #333;
    font-size: 0.85rem;
    margin-bottom: 6px;
  }
  #consentBar ul {
    padding-left: 18px;
    margin-bottom: 10px;
  }
  .cookie-btn {
    font-family: 'Lato', sans-serif;
    border-radius: 0;
    padding: 8px 18px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid hsl(68, 22%, 37%);
    transition: all 0.2s ease;
    width: 100%;
  }
  .btn-accept-all {
    background-color: hsl(68, 22%, 37%);
    color: #fff;
  }
  .btn-accept-all:hover {
    background-color: hsl(96, 22%, 16%);
    border-color: hsl(96, 22%, 16%);
    color: #fff;
  }
  .btn-reject {
    background-color: transparent;
    color: hsl(96, 22%, 16%);
  }
  .btn-reject:hover {
    background-color: hsl(44, 28%, 48%);
    border-color: hsl(44, 28%, 48%);
    color: #fff;
  }
  .btn-manage {
    color: hsl(96, 22%, 16%);
    font-size: 0.85rem;
    text-decoration: underline;
  }
  .btn-manage:hover {
    color: hsl(44, 28%, 48%);
  }

#contact-content {
  background-color: #f7f6f3;
  padding: 52px 0;
  font-family: 'Merriweather', serif;
  color: #222;
}
#contact-content h1,
#contact-content h2,
#contact-content h3 {
  font-family: 'Lato', sans-serif;
  color: hsl(96, 22%, 16%);
}
#contact-content .lead-text {
  color: #333;
  max-width: 700px;
}
#contact-content .card {
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  background-color: #fff;
}
#contact-content .info-card {
  padding: 32px;
}
#contact-content .info-item {
  margin-bottom: 22px;
}
#contact-content .info-item strong {
  display: block;
  font-family: 'Lato', sans-serif;
  color: hsl(68, 22%, 37%);
  margin-bottom: 4px;
}
#contact-content .info-item a {
  color: hsl(96, 22%, 16%);
  text-decoration: none;
  word-break: break-word;
}
#contact-content .info-item a:hover {
  color: hsl(44, 28%, 48%);
  text-decoration: underline;
}
#contact-content .map-link {
  display: inline-block;
  margin-top: 6px;
  color: hsl(44, 28%, 48%);
  font-weight: 700;
  text-decoration: underline;
}
#contact-content .map-link:hover {
  color: hsl(68, 22%, 37%);
}
#contact-content .form-card {
  padding: 32px;
}
#contact-content .form-label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(96, 22%, 16%);
}
#contact-content .form-control {
  border-radius: 0;
  border: 1px solid #ccc;
  padding: 10px 12px;
}
#contact-content .form-control:focus {
  border-color: hsl(68, 22%, 37%);
  box-shadow: 0 0 0 0.2rem rgba(122, 128, 79, 0.2);
}
#contact-content .btn-submit {
  background-color: hsl(68, 22%, 37%);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 12px 28px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.3px;
}
#contact-content .btn-submit:hover {
  background-color: hsl(96, 22%, 16%);
  color: #fff;
}
#contact-content .hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#contact-content .hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 0.95rem;
}
#contact-content .hours-list li:last-child {
  border-bottom: none;
}
#contact-content .cta-banner {
  background-color: hsl(96, 22%, 16%);
  color: #f7f6f3;
  padding: 28px 32px;
  margin-top: 48px;
}
#contact-content .cta-banner h3 {
  color: #f7f6f3;
}
#contact-content .cta-banner a.btn {
  background-color: hsl(44, 28%, 48%);
  color: #fff;
  border-radius: 0;
  padding: 10px 24px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-decoration: none;
}
#contact-content .cta-banner a.btn:hover {
  background-color: hsl(68, 22%, 37%);
}

.thankyou-section {
    background: linear-gradient(135deg, hsl(96, 22%, 16%) 0%, hsl(68, 22%, 37%) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    font-family: 'Merriweather', serif;
  }

  .thankyou-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 3rem 2rem;
    max-width: 640px;
    width: 100%;
    text-align: center;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.3);
  }

  .thankyou-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    background: hsl(68, 22%, 37%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px hsla(44, 28%, 48%, 0.25);
    animation: pop-in 0.5s ease-out;
  }

  .thankyou-icon-wrapper svg {
    width: 52px;
    height: 52px;
    stroke: #ffffff;
  }

  @keyframes pop-in {
    0% {
      transform: scale(0.5);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  .thankyou-heading {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: hsl(96, 22%, 16%);
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }

  .thankyou-text {
    color: hsl(96, 22%, 16%);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.9rem;
  }

  .thankyou-text.accent-text {
    color: hsl(44, 28%, 48%);
    font-weight: 700;
  }

  .thankyou-divider {
    width: 60px;
    height: 4px;
    background: hsl(44, 28%, 48%);
    border-radius: 2px;
    margin: 1.5rem auto;
  }

  .btn-thankyou {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    background-color: hsl(68, 22%, 37%);
    border: 2px solid hsl(68, 22%, 37%);
    color: #ffffff;
    padding: 0.75rem 2.25rem;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
  }

  .btn-thankyou:hover,
  .btn-thankyou:focus {
    background-color: hsl(44, 28%, 48%);
    border-color: hsl(44, 28%, 48%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem hsla(44, 28%, 48%, 0.4);
  }

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 2.25rem 1.25rem;
    }

    .thankyou-heading {
      font-size: 1.5rem;
    }

    .thankyou-icon-wrapper {
      width: 80px;
      height: 80px;
    }

    .thankyou-icon-wrapper svg {
      width: 42px;
      height: 42px;
    }
  }

#services-page {
  background: #f7f6f3;
  font-family: 'Merriweather', serif;
  color: #222;
  padding: 56px 0;
}
#services-page h1, #services-page h2, #services-page h3 {
  font-family: 'Lato', sans-serif;
}
#services-page .page-header {
  margin-bottom: 48px;
}
#services-page .page-header h1 {
  color: hsl(96, 22%, 16%);
  font-weight: 700;
}
#services-page .page-header p {
  color: #333;
  max-width: 800px;
}
#services-page .intro-stats {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 48px;
}
#services-page .intro-stats .stat-item {
  text-align: center;
  padding: 8px 0;
}
#services-page .intro-stats .stat-number {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: hsl(44, 28%, 48%);
  display: block;
}
#services-page .intro-stats .stat-label {
  font-size: 0.9rem;
  color: #444;
}
#services-page .service-list {
  border-top: 1px solid #ddd;
}
#services-page .service-item {
  border-bottom: 1px solid #ddd;
  padding: 24px 16px;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
#services-page .service-item:hover {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
#services-page .service-icon {
  font-size: 1.8rem;
  color: hsl(68, 22%, 37%);
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border: 1px solid hsl(68, 22%, 37%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: #f4f4f1;
}
#services-page .service-item:hover .service-icon {
  background: hsl(68, 22%, 37%);
  color: #fff;
}
#services-page .service-title {
  color: hsl(96, 22%, 16%);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
#services-page .service-price {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(44, 28%, 48%);
  white-space: nowrap;
  font-size: 1.05rem;
}
#services-page .service-desc {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}
#services-page .details-table-wrap {
  margin-top: 56px;
}
#services-page .details-table-wrap h2 {
  color: hsl(96, 22%, 16%);
  margin-bottom: 16px;
}
#services-page table {
  background: #fff;
  border: 1px solid #ddd;
}
#services-page table th {
  background: hsl(96, 22%, 16%);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}
#services-page table td {
  font-size: 0.9rem;
  color: #333;
  vertical-align: middle;
}
#services-page .cta-box {
  margin-top: 56px;
  background: hsl(68, 22%, 37%);
  color: #fff;
  padding: 40px 32px;
  text-align: center;
}
#services-page .cta-box h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}
#services-page .cta-box p {
  color: #f0efe9;
  margin-bottom: 20px;
}
#services-page .cta-box .btn {
  background: hsl(44, 28%, 48%);
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
}
#services-page .cta-box .btn:hover {
  background: #fff;
  color: hsl(68, 22%, 37%);
}
@media (max-width: 767px) {
  #services-page .service-item {
    padding: 20px 8px;
  }
}

.hero-section {
  background-color: #f4f4f1;
  padding: 52px 0;
}
.hero-section h1 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(96, 22%, 16%);
}
.hero-section h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: hsl(68, 22%, 37%);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.hero-section p.hero-desc {
  font-family: 'Merriweather', serif;
  color: #333;
  font-size: 1.05rem;
  max-width: 700px;
}
.hero-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.8rem;
}
.hero-list li {
  font-family: 'Merriweather', serif;
  color: #222;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.hero-list li i {
  color: hsl(44, 28%, 48%);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}
.hero-cta-btn {
  background-color: hsl(68, 22%, 37%);
  color: #fff;
  border: 2px solid hsl(68, 22%, 37%);
  border-radius: 0;
  padding: 0.75rem 2rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.hero-cta-btn:hover {
  background-color: hsl(96, 22%, 16%);
  border-color: hsl(96, 22%, 16%);
  color: #fff;
}
.hero-image-wrap {
  margin-top: 2rem;
}
.hero-image-wrap img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #ddd;
}
@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }
  .hero-section h2 {
    font-size: 1.1rem;
  }
}

#strengths {
  background-color: #f7f6f3;
  padding: 52px 0;
  font-family: 'Merriweather', serif;
}
#strengths h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(96, 22%, 16%);
  font-weight: 700;
}
#strengths .lead-text {
  color: #444;
  max-width: 700px;
}
#strengths .strength-card {
  background-color: #ffffff;
  border: 1px solid #ddd9cf;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  padding: 28px 22px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#strengths .strength-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  border-color: hsl(44, 28%, 48%);
}
#strengths .icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(68, 22%, 37%);
  color: #ffffff;
  border-radius: 0;
  margin-bottom: 18px;
  font-size: 1.5rem;
}
#strengths .strength-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.15rem;
  color: hsl(96, 22%, 16%);
  font-weight: 700;
  margin-bottom: 10px;
}
#strengths .strength-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

#testimonials {
  background: #f4f4f1;
  padding: 52px 0;
  font-family: 'Merriweather', serif;
}
#testimonials h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(96, 22%, 16%);
  font-weight: 700;
}
#testimonials .lead-text {
  color: #333;
  max-width: 700px;
}
#testimonials .review-card {
  background: #fff;
  border: 1px solid #ddd8ce;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#testimonials .review-card.accent-card {
  background: hsl(68, 22%, 37%);
  color: #fff;
  border: none;
}
#testimonials .review-card.accent-card .review-name, #testimonials .review-card.accent-card .review-location, #testimonials .review-card.accent-card .review-text {
  color: #fff;
}
#testimonials .review-card.dark-card {
  background: hsl(96, 22%, 16%);
  color: #fff;
  border: none;
}
#testimonials .review-card.dark-card .review-name, #testimonials .review-card.dark-card .review-location, #testimonials .review-card.dark-card .review-text {
  color: #f7f6f3;
}
#testimonials .review-name {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(96, 22%, 16%);
  margin-bottom: 0;
}
#testimonials .review-location {
  font-size: 0.85rem;
  color: #6b6b63;
  margin-bottom: 10px;
}
#testimonials .review-card.accent-card .review-location {
  color: #eee;
}
#testimonials .review-text {
  color: #333;
  font-size: 0.98rem;
  line-height: 1.55;
  flex-grow: 1;
}
#testimonials .stars {
  color: hsl(44, 28%, 48%);
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
#testimonials .review-card.accent-card .stars, #testimonials .review-card.dark-card .stars {
  color: hsl(44, 28%, 60%);
}
#testimonials .review-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: hsl(68, 22%, 37%);
  border: 1px solid hsl(68, 22%, 37%);
  padding: 2px 8px;
  margin-bottom: 12px;
}
#testimonials .review-card.accent-card .review-tag, #testimonials .review-card.dark-card .review-tag {
  color: #fff;
  border-color: #fff;
}
#testimonials .summary-strip {
  background: #fff;
  border: 1px solid #ddd8ce;
  padding: 20px 24px;
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
#testimonials .summary-item {
  text-align: center;
  flex: 1 1 140px;
}
#testimonials .summary-number {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: hsl(68, 22%, 37%);
  display: block;
}
#testimonials .summary-label {
  font-size: 0.82rem;
  color: #555;
}
@media (max-width: 767px) {
  #testimonials .review-card { margin-bottom: 4px; }
}

#questions {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Merriweather', serif;
}
#questions h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(96, 22%, 16%);
  font-weight: 700;
}
#questions .lead-text {
  color: #333;
  max-width: 700px;
}
#questions .accordion-item {
  border: 1px solid #ddd9cf;
  border-radius: 0;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  background-color: #fff;
}
#questions .accordion-button {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(96, 22%, 16%);
  background-color: #fff;
  border-radius: 0;
  box-shadow: none;
}
#questions .accordion-button:not(.collapsed) {
  background-color: hsl(68, 22%, 37%);
  color: #fff;
}
#questions .accordion-button:focus {
  box-shadow: none;
  border-color: hsl(44, 28%, 48%);
}
#questions .accordion-button::after {
  filter: none;
}
#questions .accordion-body {
  color: #333;
  line-height: 1.7;
  background-color: #fff;
}
#questions .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

#story {
  background: #f7f6f3;
  padding: 52px 0;
  font-family: 'Merriweather', serif;
  color: #222;
}
#story h2, #story h3 {
  font-family: 'Lato', sans-serif;
}
#story .section-title {
  color: hsl(96, 22%, 16%);
  font-weight: 700;
  margin-bottom: 18px;
}
#story .lead-text {
  color: #333;
  font-size: 1.02rem;
  line-height: 1.75;
}
#story img.studio-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
#story .values-list {
  list-style: none;
  padding-left: 0;
}
#story .values-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid #e2e0da;
}
#story .values-list li:last-child {
  border-bottom: none;
}
#story .values-list li::before {
  content: "\2013";
  position: absolute;
  left: 0;
  color: hsl(44, 28%, 48%);
  font-weight: 700;
}
#story .team-card {
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  border-radius: 0;
  padding: 22px;
  height: 100%;
}
#story .team-card h4 {
  color: hsl(96, 22%, 16%);
  font-size: 1.1rem;
  margin-bottom: 2px;
}
#story .team-card .role {
  color: hsl(44, 28%, 48%);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
#story .team-card p.desc {
  color: #444;
  font-size: 0.94rem;
  margin-bottom: 0;
}
#story .stats-strip {
  background: hsl(68, 22%, 37%);
  color: #fff;
  padding: 20px;
  margin-top: 40px;
}
#story .stats-strip .stat-num {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
}
#story .stats-strip .stat-label {
  color: #f0efe8;
  font-size: 0.85rem;
}

#in-numbers {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Merriweather', serif;
}
#in-numbers h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(96, 22%, 16%);
  font-weight: 700;
}
#in-numbers .lead-text {
  color: #333;
  max-width: 700px;
}
#in-numbers .stat-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 28px 20px;
  height: 100%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
#in-numbers .stat-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}
#in-numbers .stat-icon {
  font-size: 2rem;
  color: hsl(44, 28%, 48%);
  margin-bottom: 12px;
  display: inline-block;
  animation: popIn 0.6s ease;
}
#in-numbers .stat-number {
  font-family: 'Lato', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: hsl(68, 22%, 37%);
  display: block;
  line-height: 1;
  animation: countUp 1s ease;
}
#in-numbers .stat-label {
  color: hsl(96, 22%, 16%);
  font-weight: 700;
  margin-top: 8px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
}
#in-numbers .stat-context {
  color: #555;
  font-size: 0.9rem;
  margin-top: 4px;
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.services-section {
  background-color: #f7f6f3;
  padding: 56px 0;
  font-family: 'Merriweather', serif;
}
.services-section .section-title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(96, 22%, 16%);
  margin-bottom: 12px;
}
.services-section .section-sub {
  color: #444;
  max-width: 700px;
  margin: 0 auto 40px auto;
}
.service-list {
  border-top: 1px solid #ddd;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 12px;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.service-item:hover {
  background-color: #fff;
  transform: translateX(4px);
}
.service-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border: 1px solid hsl(68, 22%, 37%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(68, 22%, 37%);
  font-size: 1.5rem;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.service-item:hover .service-icon {
  background-color: hsl(68, 22%, 37%);
  color: #fff;
}
.service-body h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: hsl(96, 22%, 16%);
  margin-bottom: 6px;
}
.service-body p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 8px;
}
.service-price {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(44, 28%, 48%);
  font-size: 1rem;
}
@media (max-width: 767px) {
  .service-item {
    padding: 18px 6px;
  }
}

#newsletter {
  background-color: hsl(96, 22%, 16%);
  padding: 52px 0;
  font-family: 'Merriweather', serif;
}
#newsletter h2 {
  font-family: 'Lato', sans-serif;
  color: #f7f6f3;
  font-weight: 700;
  margin-bottom: 16px;
}
#newsletter p.newsletter-desc {
  color: #e2e2dc;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
#newsletter .newsletter-card {
  background-color: #f7f6f3;
  border: 1px solid #d8d7d0;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  padding: 32px;
}
#newsletter .form-control {
  border-radius: 0;
  border: 1px solid #b8b7ae;
  font-family: 'Merriweather', serif;
  color: #222;
  padding: 12px 14px;
}
#newsletter .form-control:focus {
  border-color: hsl(44, 28%, 48%);
  box-shadow: 0 0 0 0.2rem rgba(179, 154, 90, 0.25);
}
#newsletter .btn-subscribe {
  background-color: hsl(44, 28%, 48%);
  border: 1px solid hsl(44, 28%, 48%);
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  border-radius: 0;
  padding: 12px 28px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
#newsletter .btn-subscribe:hover {
  background-color: hsl(68, 22%, 37%);
  border-color: hsl(68, 22%, 37%);
  color: #ffffff;
}
#newsletter .newsletter-note {
  color: #5a5a52;
  font-size: 0.875rem;
  margin-top: 14px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #newsletter .newsletter-card {
    padding: 22px;
  }
}

#get-in-touch {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Merriweather', serif;
  color: #222;
}
#get-in-touch h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(96, 22%, 16%);
  font-weight: 700;
}
#get-in-touch .lead-text {
  color: #333;
  font-size: 1.05rem;
  margin-bottom: 32px;
}
#get-in-touch .contact-card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  padding: 32px;
  height: 100%;
}
#get-in-touch .contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
#get-in-touch .contact-info-list li {
  margin-bottom: 18px;
  padding-left: 0;
  color: #333;
}
#get-in-touch .contact-info-list strong {
  display: block;
  font-family: 'Lato', sans-serif;
  color: hsl(68, 22%, 37%);
  font-weight: 700;
  margin-bottom: 4px;
}
#get-in-touch .contact-info-list a {
  color: hsl(96, 22%, 16%);
  text-decoration: none;
  word-break: break-word;
}
#get-in-touch .contact-info-list a:hover {
  color: hsl(44, 28%, 48%);
  text-decoration: underline;
}
#get-in-touch .find-us-line {
  font-size: 0.95rem;
  color: #444;
  margin-top: -8px;
  margin-bottom: 18px;
}
#get-in-touch .find-us-line a {
  color: hsl(68, 22%, 37%);
  font-weight: 700;
  text-decoration: underline;
}
#get-in-touch .hours-box {
  border-top: 1px solid #e0e0dd;
  padding-top: 16px;
  color: #333;
  font-size: 0.95rem;
}
#get-in-touch .form-card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  padding: 32px;
}
#get-in-touch .form-label {
  font-family: 'Lato', sans-serif;
  color: hsl(96, 22%, 16%);
  font-weight: 700;
  font-size: 0.92rem;
}
#get-in-touch .form-control {
  border-radius: 0;
  border: 1px solid #ccc;
  padding: 10px 12px;
  font-family: 'Merriweather', serif;
}
#get-in-touch .form-control:focus {
  border-color: hsl(68, 22%, 37%);
  box-shadow: 0 0 0 0.2rem rgba(126, 122, 68, 0.2);
}
#get-in-touch .btn-submit {
  background-color: hsl(68, 22%, 37%);
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 12px 32px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.3px;
}
#get-in-touch .btn-submit:hover {
  background-color: hsl(44, 28%, 48%);
  color: #ffffff;
}
#get-in-touch .reply-note {
  font-size: 0.88rem;
  color: #555;
  margin-top: 14px;
}

#notice {
  background-color: #f7f6f3;
  font-family: 'Merriweather', serif;
  padding: 48px 0;
}
#notice h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(96, 22%, 16%);
  font-weight: 700;
}
#notice .disclaimer-card {
  background-color: #ffffff;
  border: 1px solid #dedad0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-radius: 0;
  padding: 32px;
}
#notice .icon-wrap {
  width: 56px;
  height: 56px;
  background-color: hsl(44, 28%, 48%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#notice .icon-wrap i {
  color: #ffffff;
  font-size: 1.6rem;
}
#notice p {
  color: #333333;
  line-height: 1.75;
  margin-bottom: 0;
}
