/* =========================================================
   SERVICES — editorial menu, bone + ink + oxblood.
   Roman numerals replace emoji icons.
   ========================================================= */

.services-section {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--ds-bone, #f4f0e8);
}

.services-section .container { max-width: 1240px; padding: 0 24px; }

.services-section .section-sub,
.services-section .section-title { text-align: center; }

.services-section .section-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ds-oxblood, #8d2f2a);
  font-weight: 500;
}

.services-section .section-title {
  margin: 6px 0 18px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.3rem, 4.8vw, 3.8rem);
  line-height: 1.05;
  color: var(--ds-ink, #1a1614);
  letter-spacing: -0.012em;
}
.services-section .section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ds-ink, #1a1614);
  background: none;
  -webkit-background-clip: initial;
          background-clip: initial;
}
.services-section .section-divider {
  width: 64px;
  height: 1px;
  background: var(--ds-ink, #1a1614);
  margin: 14px auto 56px;
}

/* Editorial 2-col grid */
.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 38px);
  counter-reset: serviceCounter;
  margin-top: 0;
}

@media (min-width: 1080px) {
  .services-section .services-grid {
    column-gap: clamp(28px, 4vw, 64px);
    row-gap: clamp(28px, 4vw, 56px);
  }
}

@media (max-width: 700px) {
  .services-section .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.services-section .service-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(26,22,20,0.12);
  border-top: 2px solid var(--ds-oxblood, #8d2f2a);
  border-radius: 0;
  padding: clamp(34px, 4vw, 54px) clamp(28px, 3.5vw, 48px) clamp(28px, 3.5vw, 42px);
  box-shadow: none;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.5s ease;
  counter-increment: serviceCounter;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  isolation: isolate;
}

/* Roman numeral counter */
.services-section .service-card::after {
  content: counter(serviceCounter, upper-roman);
  position: absolute;
  top: clamp(20px, 2.4vw, 28px);
  right: clamp(22px, 2.4vw, 30px);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  letter-spacing: 0.06em;
  color: var(--ds-oxblood, #8d2f2a);
  z-index: 2;
}

.services-section .service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(26,22,20,0.32);
}

/* Hide emoji icon — replace with thin oxblood rule */
.services-section .service-card .service-icon {
  width: 36px;
  height: 1px;
  margin-bottom: 6px;
  padding: 0;
  background: var(--ds-oxblood, #8d2f2a);
  font-size: 0;
  color: transparent;
  border-radius: 0;
  display: block;
  overflow: hidden;
}
.services-section .service-card .service-icon * { display: none; }

/* Title */
.services-section .service-card h3 {
  margin: 4px 0 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.1;
  color: var(--ds-ink, #1a1614);
  letter-spacing: -0.005em;
}

.services-section .service-card .service-desc {
  margin: 4px 0 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ds-ink-muted, #4a4641);
  max-width: 50ch;
}

/* Price */
.services-section .service-card .service-price {
  margin: 6px 0 18px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1;
  color: var(--ds-ink, #1a1614);
  letter-spacing: 0.005em;
}
.services-section .service-card .service-price small {
  display: inline-block;
  margin-left: 6px;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ds-oxblood, #8d2f2a);
  vertical-align: 0.65em;
}

/* CTA — text-link with oxblood underline */
.services-section .service-card .btn {
  align-self: flex-start;
  position: relative;
  padding: 12px 0 4px;
  border: none;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ds-ink, #1a1614);
  text-decoration: none;
  border-radius: 0;
  border-bottom: 1px solid var(--ds-ink, #1a1614);
  transition: color 0.4s ease, border-color 0.4s ease, padding-right 0.4s ease;
}
.services-section .service-card .btn::after {
  content: " →";
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.services-section .service-card .btn:hover {
  color: var(--ds-oxblood, #8d2f2a);
  border-color: var(--ds-oxblood, #8d2f2a);
  padding-right: 8px;
}
.services-section .service-card .btn:hover::after {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .services-section .service-card,
  .services-section .service-card .btn,
  .services-section .service-card .btn::after {
    transition: none !important;
  }
}
