/* ============================================================
   SERVICES OVERVIEW PAGE
   ============================================================ */

/* ----------------------------------------------------------
   BANNER
---------------------------------------------------------- */
.services-banner {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-top: 100px;
  padding-bottom: clamp(64px, 9vw, 96px);
  padding-inline: var(--pad-x);
  overflow: hidden;
}

.services-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.services-banner__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 27, 68, 0.78) 0%,
    rgba(8, 27, 68, 0.44) 55%,
    rgba(8, 27, 68, 0.24) 100%
  );
  z-index: 1;
}

.services-banner__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.services-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: oklch(0.88 0.12 82);
  margin-bottom: 1.25rem;
}

.services-banner__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background-color: oklch(0.85 0.14 78);
  box-shadow: 0 0 12px oklch(0.85 0.14 78);
  flex-shrink: 0;
}

.services-banner__headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.75rem);
  font-weight: 400;
  line-height: 1.04;
  color: #fff;
  max-width: 820px;
  margin-bottom: 1.5rem;
}

.services-banner__gold {
  font-style: italic;
  font-weight: 300;
  color: oklch(0.88 0.12 82);
}

.services-banner__sub {
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin-bottom: 2.25rem;
}

.services-banner__cta-btn {
  gap: 8px;
  padding: 15px 33px 15px 22px;
}

/* ----------------------------------------------------------
   SERVICE GRID
---------------------------------------------------------- */
.services-grid-section {
  padding-block: clamp(5rem, 9vw, 6rem);
  padding-inline: var(--pad-x);
  background-color: #fffdfa;
}

.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(8, 27, 68, 0.12);
  border-color: oklch(0.78 0.06 78);
}

.service-card__img-wrap {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.service-card__img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  transition: transform 0.7s var(--ease);
}

.service-card:hover .service-card__img {
  transform: scale(1.05);
}

.service-card__img-overlay {
  display: none;
}

.service-card__body {
  padding: 2rem 2rem 1.75rem;
}

.service-card__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--royal-blue);
}

.service-card__desc {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(44, 44, 44, 0.55);
  margin-top: 0.75rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.25rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--royal-blue);
  transition: gap 0.2s var(--ease);
}

.service-card:hover .service-card__link {
  gap: 10px;
}

.service-card__link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   CTA BAND
---------------------------------------------------------- */
.services-cta {
  position: relative;
  padding-block: clamp(5rem, 9vw, 6rem);
  padding-inline: var(--pad-x);
  background: linear-gradient(to bottom, oklch(0.32 0.13 264), oklch(0.22 0.1 264));
  overflow: hidden;
  text-align: center;
}

.services-cta__glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(0.84 0.13 78 / 0.35), transparent 70%);
  pointer-events: none;
}

.services-cta__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.services-cta__headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
}

.services-cta__gold {
  font-style: italic;
  font-weight: 300;
  color: oklch(0.88 0.12 82);
}

.services-cta__sub {
  font-family: var(--sans);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.services-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.services-cta__btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(to right, oklch(0.84 0.13 78), oklch(0.72 0.14 75));
  color: var(--midnight-blue);
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.services-cta__btn-gold:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.services-cta__btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  transition: background-color 0.2s var(--ease);
}

.services-cta__btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.services-cta__btn-outline svg {
  width: 16px;
  height: 16px;
}

/* ----------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card__body {
    padding: 1.25rem 1.25rem 1.1rem;
  }
}
