/* ── SERVICES PAGE ──────────────────────────────────────────── */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(420px, 52vh, 600px);
  overflow: hidden;
}

/* Background image layer — swap placeholder for real <img class="hero-bg-img"> */
.hero-bg-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #E8D8CE 0%, #C9A899 40%, #9C7B6E 100%);
  z-index: 0;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}

/* Dark-to-transparent overlay for text legibility */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(20, 12, 6, 0.62) 0%,
    rgba(20, 12, 6, 0.35) 55%,
    rgba(20, 12, 6, 0.08) 100%
  );
}

/* Text content sits on top */
.hero-text {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 96px 80px 80px;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose-lt); margin-bottom: 20px;
}
.hero-heading {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300; line-height: 1.08;
  margin-bottom: 24px;
  color: #fff;
}
.hero-heading em { font-style: italic; color: var(--rose-lt); }
.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  max-width: 400px; margin-bottom: 44px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Outline button adapted for dark hero background */
.hero-btn-outline {
  border-color: rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.9);
}
.hero-btn-outline:hover {
  border-color: var(--rose-lt);
  color: var(--rose-lt);
}

/* Bottom separator bar — a thin rose line */
.hero-divider-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  height: 4px;
  background: linear-gradient(90deg, var(--rose) 0%, var(--rose-lt) 60%, transparent 100%);
}

/* ── SERVICES SECTION ───────────────────────────────────────── */
#services-list {
  border-top: 1px solid var(--sand);
  background: var(--warm);
}

#services-list .section-label,
#services-list .section-title,
#services-list .section-sub,
#services-list .services-cta {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: var(--cream);
  padding: 40px 36px;
  border-radius: 20px;
  border: 1px solid rgba(212, 196, 176, 0.5);
  box-shadow: 0 2px 12px rgba(44, 32, 24, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 48px rgba(44, 32, 24, 0.13),
              0 4px 16px rgba(201, 137, 122, 0.12);
  border-color: var(--rose-lt);
}

.service-icon {
  width: 48px; height: 48px;
  background: var(--warm);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 22px;
  transition: background 0.25s, transform 0.25s;
}

.service-card:hover .service-icon {
  background: var(--rose-lt);
  transform: scale(1.1);
}

.service-name {
  font-family: var(--ff-serif);
  font-size: 1.35rem; font-weight: 400;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.85rem; color: var(--taupe);
  margin-bottom: 20px; line-height: 1.75;
  flex: 1;
}

.service-price {
  font-family: var(--ff-serif);
  font-size: 1.1rem; color: var(--rose);
  font-style: italic;
}

.service-duration {
  font-size: 0.73rem; color: var(--sand);
  margin-top: 4px; letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-cta { margin-top: 52px; text-align: center; }

@media (max-width: 900px) {
  .hero-text { padding: 60px 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero-text { padding: 48px 24px; }
  .services-grid { grid-template-columns: 1fr; }
}
