.svc-hero {
  position: relative;
  min-height: 75vh;
  background-image: url('services-hero-bg.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(210, 195, 170, 0.22);
  z-index: 0;
}

.svc-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 2rem 5rem;
  max-width: 680px;
  margin: 0 auto;
}

.svc-hero-badge {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 2.5rem;
}

.svc-hero-intro {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 300;
  font-style: normal;
  color: #4a4234;
  line-height: 1.36;
  margin: 0;
}

.svc-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.svc-hero-wave svg {
  display: block;
  width: 100%;
  height: 90px;
}

/* SERVICES GRID SECTION */
.svc-grid-section {
  background-color: hsl(45, 22%, 86%);
  padding: 5rem 4rem 6rem;
}

.svc-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.svc-category-group--centered {
  grid-column: 2;
}

.svc-category-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 300;
  color: #4a4234;
  margin: 0 0 0.75rem 0;
  line-height: 1.36;
}

.svc-accordion-item {
  border-top: 1px solid rgba(90, 75, 55, 0.25);
}

.svc-accordion-item:last-child {
  border-bottom: 1px solid rgba(90, 75, 55, 0.25);
}

.svc-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 0.5rem;
}

.svc-sub-title {
  font-family: 'Alegreya', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  color: hsl(23, 32%, 40%);
  text-align: left;
  line-height: 1.5;
}

.svc-icon {
  font-size: 0.85rem;
  color: hsl(23, 32%, 40%);
  flex-shrink: 0;
}

.svc-accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.open .svc-accordion-body {
  max-height: 1500px;
  padding: 0.5rem 0 1rem;
}

.svc-accordion-body p,
.svc-accordion-body li {
  font-family: 'Alegreya', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  color: hsl(23, 32%, 40%);
  line-height: 1.7;
  margin: 0 0 0.75rem;
}

.svc-accordion-body ul {
  padding-left: 1.2rem;
  margin: 0 0 0.75rem;
}

.svc-accordion-body li {
  margin-bottom: 0.4rem;
}

.svc-link {
  color: hsl(23, 32%, 40%);
  text-decoration: underline;
  font-size: 0.95rem;
}

.svc-link:hover {
  color: #4a4234;
}

/* DR. TYLER SECTION */
.svc-dr-section {
  position: relative;
  background-color: hsl(44, 14%, 32%);
  overflow: hidden;
}

.svc-dr-pattern {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  background-image: url('kairos-pattern-new.webp');
  background-repeat: repeat;
  background-size: 800px auto;
  background-position: center;
  mix-blend-mode: screen;
  opacity: 0.22;
  pointer-events: none;
}

.svc-dr-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 4rem;
}

.svc-dr-text {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.svc-dr-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 300;
  color: #f0ebe3;
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

.svc-dr-btn {
  display: inline-block;
  background: hsl(45, 22%, 86%);
  color: #3b3526;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  transition: background 0.25s ease, color 0.25s ease;
}

.svc-dr-btn:hover {
  background: hsl(45, 22%, 76%);
  color: #3b3526;
}

.svc-dr-photo-wrap {
  flex: 0 0 auto;
}

.svc-dr-photo {
  width: 320px;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* PLANT BANNER SECTION */
.svc-plant-banner {
  position: relative;
  background-image: url('plant-background.webp');
  background-size: cover;
  background-position: center 30%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-plant-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(60, 58, 45, 0.42);
}

.svc-plant-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  padding: 3rem 2rem;
}

.svc-plant-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 300;
  color: #f5f0eb;
  line-height: 1.3;
  margin: 0;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.18);
}

.svc-plant-btn {
  display: inline-block;
  background: #f0ebe3cc;
  color: #3b3526;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  transition: background 0.25s ease, color 0.25s ease;
  backdrop-filter: blur(2px);
}

.svc-plant-btn:hover {
  background: #f5f0eb;
  color: #2e2a1e;
}

/* WHAT TO EXPECT SECTION */
.svc-expect-section {
  background-color: #f0ebe3;
  padding: 5rem 4rem 6rem;
}

.svc-expect-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.svc-expect-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.41rem;
  font-weight: 300;
  color: hsl(23, 32%, 40%);
  text-align: center;
  margin: 0 0 3.5rem 0;
  letter-spacing: 0.01em;
}

.svc-expect-heading em {
  font-style: italic;
  font-weight: 300;
}

.svc-expect-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.svc-expect-subhead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.675rem;
  font-weight: 400;
  font-style: normal;
  color: #5c4a32;
  line-height: 1.36;
  margin: 0 0 1.5rem 0;
}

.svc-expect-subhead--underline {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #5c4a32;
  padding-bottom: 6px;
}

.svc-expect-subhead--pill {
  display: inline-block;
  border: 1.5px solid #5c4a32;
  border-radius: 50px;
  padding: 0.3rem 1.2rem;
  text-decoration: none;
}

.svc-expect-body {
  font-family: 'Alegreya', Georgia, serif;
  font-size: 0.97rem;
  font-weight: 400;
  color: #4a3f30;
  line-height: 1.85;
  margin: 0 0 1.2rem 0;
}

.svc-expect-btn {
  display: inline-block;
  margin-top: 1.5rem;
  background: #4a4234;
  color: #f0ebe3;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  transition: background 0.25s ease, color 0.25s ease;
}

.svc-expect-btn:hover {
  background: #2e2a1e;
  color: #f5f0eb;
}

.svc-expect-btn--mobile {
  display: none;
}

@media (max-width: 900px) {
  .svc-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-category-group--centered {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .svc-dr-pattern {
    display: none;
  }

  .svc-categories-grid {
    grid-template-columns: 1fr;
  }

  .svc-grid-section {
    padding: 3rem 1.5rem 4rem;
  }

  .svc-dr-inner {
    flex-direction: column;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .svc-dr-text {
    flex: none;
    align-items: center;
  }

  .svc-dr-photo {
    width: 260px;
    height: 340px;
  }

  .svc-expect-section {
    padding: 3rem 1.5rem 4rem;
  }

  .svc-expect-cols {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .svc-expect-col--right {
    order: -1;
  }

  .svc-expect-col--left {
    order: 1;
  }

  .svc-expect-col--right .svc-expect-btn {
    display: none;
  }

  .svc-expect-btn--mobile {
    display: inline-block;
  }

  .svc-expect-heading {
    font-size: 2rem;
  }

  .svc-hero-badge {
    width: 150px;
    height: 150px;
  }

  .svc-hero-intro {
    font-size: 1.2rem;
  }
}
