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

html { scroll-behavior: smooth; }
body {
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 1.85;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

p {
  font-size: 16px;
  line-height: 1.85;
}

/* INTRO HEADER */
.services-header {
  padding: 8rem 6% 4rem; /* Clear the fixed navigation bar */
  background: var(--soft-nude);
}
.header-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--warm-white);
  border-radius: 30px;
  padding: 4.5rem 3.5rem;
  box-shadow: 10px 10px 40px var(--shadow-color),
              -10px -10px 40px rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.6);
}
.section-tag {
  display: inline-block;
  background: var(--light-blush); color: var(--accent-rose);
  padding: 0.35rem 0.9rem; border-radius: 100px;
  font-size: 14px; font-weight: 500; margin-bottom: 1.5rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--charcoal);
}
h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1; color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.intro-text {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--charcoal); font-weight: 300;
  margin-bottom: 0rem;
}

/* QUICK MENU */
.quick-menu {
  background: var(--warm-white);
  padding: 1.5rem 6%;
  border-bottom: 1px solid var(--dusty-pink);
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem;
}
.quick-menu a {
  background: var(--warm-white);
  border: 1px solid var(--dusty-pink);
  padding: 0.5rem 1.2rem; border-radius: 100px;
  font-size: 15px; color: var(--charcoal); text-decoration: none;
  transition: all 0.2s;
  box-shadow: 2px 2px 5px var(--shadow-color);
}
.quick-menu a:hover {
  border-color: var(--accent-rose);
  background: var(--soft-nude);
  color: var(--charcoal);
}

/* SERVICE DETAIL SECTIONS */
.service-section {
  padding: 5rem 6%;
  border-bottom: 1px solid var(--dusty-pink);
  display: grid;
  grid-template-columns: minmax(100px, 1fr) minmax(auto, 1000px) minmax(100px, 1fr);
  align-items: center;
}
.service-section:nth-child(even) {
  background: var(--soft-nude);
}
.service-section:nth-child(odd) {
  background: var(--warm-white);
}
.section-inner {
  grid-row: 1;
  grid-column: 2;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.service-detail-image-wrap {
  grid-row: 1;
  width: 100%;
  max-width: 250px;
  aspect-ratio: 1;
  align-self: center;
}
.detail-box {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 8px 8px 25px var(--shadow-color),
              -8px -8px 25px rgba(255,255,255,0.7);
}

/* Odd sections: Image in left pane, content centered */
.service-section:nth-child(odd) .service-detail-image-wrap {
  grid-column: 1;
  justify-self: end;
  margin-right: 3rem;
  align-self: center;
}
.service-section:nth-child(odd) .section-inner {
  grid-column: 2;
}

/* Even sections: Content centered, Image in right pane */
.service-section:nth-child(even) .section-inner {
  grid-column: 2;
}
.service-section:nth-child(even) .service-detail-image-wrap {
  grid-column: 3;
  justify-self: start;
  margin-left: 3rem;
  align-self: center;
}

.section-left h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.section-left p {
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.accent-quote {
  font-family: 'DM Serif Display', serif;
  font-style: italic; font-size: 1.15rem; color: var(--accent-rose);
  border-left: 3px solid var(--accent-rose); padding-left: 1.2rem;
  line-height: 1.6; margin: 1.8rem 0;
}
.workshops-coming {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2.5rem;
  background: var(--warm-white);
  border: 1.5px dashed var(--accent-rose);
  border-radius: 16px;
  width: 100%;
}
.coming-soon-label {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent-rose);
  white-space: nowrap;
}
.coming-soon-text {
  font-size: 0.88rem;
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.6;
  text-align: left;
  max-width: 320px;
  margin: 0;
}
.detail-box h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem; color: var(--charcoal); margin-bottom: 1.2rem;
}
.detail-list {
  display: flex; flex-direction: column; gap: 0.8rem;
  list-style: none;
}
.detail-item {
  display: flex; align-items: start; gap: 0.8rem;
  font-size: 15px; color: var(--charcoal); line-height: 1.6;
}
.detail-item::before {
  content: '–'; font-size: 0.9rem; color: var(--accent-rose); font-weight: bold; flex-shrink: 0;
}

.service-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* UNSURE BANNER */
.unsure-banner {
  padding: 5rem 6%;
  background: var(--blush);
}
.unsure-inner {
  max-width: 700px;
  margin: 0 auto;
  background: var(--warm-white);
  border-radius: 30px;
  padding: 4.5rem 3.5rem;
  box-shadow: 10px 10px 40px var(--shadow-color),
              -10px -10px 40px rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.6);
}
.unsure-banner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--charcoal);
}
.unsure-inner p {
  font-size: 16px; line-height: 1.7;
  color: var(--charcoal); margin-bottom: 2rem;
  font-weight: 300;
}
.unsure-banner .btn-filled {
  display: inline-block;
  background: var(--accent-rose);
  color: var(--warm-white);
  padding: 0.95rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 4px 4px 15px rgba(242, 200, 204, 0.4);
  border: none;
  cursor: pointer;
}
.unsure-banner .btn-filled:hover {
  background: var(--accent-rose-dark);
  transform: translateY(-2px);
  box-shadow: 4px 6px 20px rgba(242, 200, 204, 0.5);
}

@media (max-width: 1200px) {
  .service-section {
    grid-template-columns: 1fr;
    padding: 5rem 6%;
  }
  .service-section:nth-child(odd) .service-detail-image-wrap,
  .service-section:nth-child(even) .service-detail-image-wrap {
    grid-row: auto;
    grid-column: 1;
    justify-self: center;
    margin: 0 auto 2rem;
    max-width: 220px;
  }
  .service-section:nth-child(odd) .section-inner,
  .service-section:nth-child(even) .section-inner {
    grid-row: auto;
    grid-column: 1;
  }
}

@media (max-width: 900px) {
  .section-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .quick-menu { gap: 0.6rem; }
}

@media (max-width: 768px) {
  .services-header {
    padding: 7.5rem 4% 2rem;
  }
  .header-content {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
  }
  .service-section {
    padding: 3.5rem 4%;
  }
  .section-inner {
    gap: 2rem;
  }
  .detail-box {
    padding: 1.8rem 1.2rem;
  }
  .workshops-coming {
    flex-direction: column;
    padding: 1.5rem;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .coming-soon-label {
    white-space: normal;
  }
  .unsure-banner {
    padding: 3.5rem 4%;
  }
  .unsure-inner {
    padding: 2.5rem 1.25rem;
    border-radius: 20px;
  }
}
