.services-page {
  background: #f7f2ea;
  color: #20352f;
}

.services-kicker {
  display: inline-block;
  margin-bottom: 20px;
  color: #b08a47;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.services-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 180px 0 110px;
  background:
    linear-gradient(90deg, rgba(22, 35, 31, 0.72), rgba(22, 35, 31, 0.34)),
    url("https://images.unsplash.com/photo-1559757148-5c350d0d3c56?auto=format&fit=crop&w=1800&q=80")
      center/cover no-repeat;
  color: #ffffff;
}

.services-hero-content {
  max-width: 900px;
}

.services-hero h1 {
  margin: 0 0 26px;
  max-width: 920px;
  color: #ffffff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 7vw, 108px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.services-hero p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  line-height: 1.75;
}

.services-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.services-primary-btn,
.services-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 32px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.services-primary-btn {
  background: #3f6a61;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(38, 64, 59, 0.26);
}

.services-primary-btn:hover {
  background: #34584f;
  color: #ffffff;
  transform: translateY(-2px);
}

.services-secondary-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #2c4a44;
}

.services-secondary-btn:hover {
  background: #ffffff;
  color: #20352f;
}

.services-intro {
  padding: 110px 0;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.services-intro-copy h2,
.services-section-head h2,
.services-process-title h2,
.services-symptoms-head h2,
.services-cta-box h2 {
  margin: 0;
  color: #20352f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.services-intro-copy p {
  margin: 26px 0 0;
  max-width: 700px;
  color: #68736f;
  font-size: 20px;
  line-height: 1.85;
}

.services-highlight-box {
  padding: 38px;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 24px 56px rgba(31, 36, 52, 0.08);
  border: 1px solid rgba(44, 74, 68, 0.08);
}

.services-highlight-box h3 {
  margin: 0 0 24px;
  color: #2c4a44;
  font-size: 28px;
  line-height: 1.25;
}

.services-highlight-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-highlight-box li {
  position: relative;
  padding: 13px 0 13px 26px;
  color: #68736f;
  font-size: 17px;
  border-bottom: 1px solid rgba(44, 74, 68, 0.08);
}

.services-highlight-box li:last-child {
  border-bottom: none;
}

.services-highlight-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e0c9a2;
}

.services-cards-section {
  padding: 120px 0;
  background: #ffffff;
}

.services-section-head {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-feature-card {
  overflow: hidden;
  border-radius: 34px;
  background: #f7f2ea;
  box-shadow: 0 24px 54px rgba(31, 36, 52, 0.08);
  border: 1px solid rgba(44, 74, 68, 0.08);
  transition: all 0.32s ease;
}

.service-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(31, 36, 52, 0.12);
}

.service-card-image {
  height: 310px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.92);
  transition: transform 0.5s ease;
}

.service-feature-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-content {
  padding: 34px;
}

.service-card-content span {
  display: block;
  margin-bottom: 18px;
  color: #b08a47;
  font-size: 14px;
  font-weight: 700;
}

.service-card-content h3 {
  margin: 0 0 18px;
  color: #20352f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  line-height: 1;
  font-weight: 500;
}

.service-card-content p {
  margin: 0 0 26px;
  color: #68736f;
  font-size: 17px;
  line-height: 1.75;
}

.service-card-content a {
  display: inline-flex;
  align-items: center;
  color: #2c4a44;
  text-decoration: none;
  font-weight: 700;
}

.service-card-content a::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.25s ease;
}

.service-card-content a:hover::after {
  transform: translateX(5px);
}

.services-process-section {
  padding: 120px 0;
  background: #2c4a44;
  color: #ffffff;
}

.services-process-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.services-process-title h2 {
  color: #ffffff;
}

.services-process-list {
  display: grid;
  gap: 16px;
}

.process-item {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(224, 201, 162, 0.18);
  overflow: hidden;
}

.process-toggle {
  width: 100%;
  border: none;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 28px;
  cursor: pointer;
  text-align: left;
  font-size: 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.process-toggle span {
  color: #e0c9a2;
  font-family: inherit;
}

.process-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.process-content p {
  margin: 0;
  padding: 0 28px 28px 68px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.process-item.is-active .process-content {
  max-height: 200px;
}

.services-symptoms-section {
  padding: 120px 0;
  background: #f7f2ea;
}

.services-symptoms-head {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.services-symptoms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.services-symptoms-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #2c4a44;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 14px 30px rgba(31, 36, 52, 0.05);
  border: 1px solid rgba(44, 74, 68, 0.08);
}

.services-cta-section {
  padding: 0 0 120px;
  background: #f7f2ea;
}

.services-cta-box {
  padding: 80px;
  border-radius: 42px;
  text-align: center;
  background:
    linear-gradient(rgba(44, 74, 68, 0.82), rgba(44, 74, 68, 0.82)),
    url("https://images.unsplash.com/photo-1505751172876-fa1923c5c528?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  color: #ffffff;
}

.services-cta-box h2 {
  color: #ffffff;
}

.services-cta-box p {
  margin: 22px auto 34px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .services-card-grid,
  .services-symptoms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-intro-grid,
  .services-process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .services-hero {
    min-height: auto;
    padding: 150px 0 80px;
  }

  .services-hero h1 {
    font-size: 48px;
  }

  .services-hero p,
  .services-intro-copy p {
    font-size: 17px;
  }

  .services-intro,
  .services-cards-section,
  .services-process-section,
  .services-symptoms-section {
    padding: 80px 0;
  }

  .services-card-grid,
  .services-symptoms-grid {
    grid-template-columns: 1fr;
  }

  .service-card-image {
    height: 260px;
  }

  .services-cta-box {
    padding: 48px 24px;
    border-radius: 28px;
  }

  .process-content p {
    padding-left: 28px;
  }
}

.process-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.process-item.is-active .process-content {
  max-height: 200px; /* adjust if content larger */
}
