/* ─────────────────────────────────────────
   PAGE HERO — matches about-style.css
───────────────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 100%,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
}

.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: var(--silver);
  margin-top: 0.75rem;
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────
   SERVICE BLOCKS
───────────────────────────────────────── */
.service-block {
  padding: 5rem 2.5rem;
  border-bottom: 1px solid var(--grey-200);
}

.service-block:nth-child(even) {
  background: var(--off-white);
}

.service-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Alternate layout — visual on right for even blocks */
.service-block:nth-child(even) .service-inner {
  direction: rtl;
}

.service-block:nth-child(even) .service-inner > * {
  direction: ltr;
}

.service-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
}

.service-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.service-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.service-features {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.service-features li {
  padding: 0.4rem 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--grey-100);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: "✦ ";
  color: var(--gold);
  font-size: 0.7rem;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 768px) {
  .service-block {
    padding: 3rem 1.5rem;
  }

  .service-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* reset the rtl trick on mobile */
  .service-block:nth-child(even) .service-inner {
    direction: ltr;
  }

  .service-visual {
    aspect-ratio: 16/9;
    font-size: 3.5rem;
  }
}
