.page-hero-split {
  padding: 150px 0 64px;
  background: var(--cream);
}

.page-hero-split-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 78px);
}

.page-hero-split .page-hero-copy {
  padding: 34px 0;
}

.page-hero-split .page-hero-copy > p:last-child {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.22rem;
}

.page-hero-split-figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 24px;
  background: var(--green-soft);
  box-shadow: var(--shadow);
}

.page-hero-split-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  background-image: none;
  transform: none;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  object-position: center 42%;
}

.page-hero-media {
  background: var(--green-dark);
}

/* The original gold remains on dark photographic and CTA backgrounds. A
   deeper gold is used for small uppercase labels on light backgrounds so the
   text meets WCAG contrast guidance without changing the visual identity. */
.section .eyebrow,
.page-hero-split .eyebrow {
  color: #80601e;
}

.page-hero.has-image .eyebrow,
.cta-band .eyebrow {
  color: var(--gold);
}

.footer-brand img {
  height: auto;
}

.breadcrumbs {
  margin-bottom: 20px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .035em;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li + li::before {
  content: "/";
  opacity: .55;
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.page-hero.has-image .breadcrumbs {
  color: rgba(255,255,255,.85);
}

.page-hero-split .breadcrumbs {
  color: var(--muted);
}

.local-coverage {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.local-coverage h2 {
  max-width: 620px;
}

.service-card h2 {
  margin: 8px 0 9px;
  font-size: 1.55rem;
  letter-spacing: 0;
}

.seo-faq h2,
.seo-related > h2 {
  max-width: 850px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  padding: 19px 34px 19px 0;
  color: var(--green-dark);
  font-weight: 850;
  position: relative;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 17px;
  font-size: 1.35rem;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 34px 20px 0;
  color: var(--muted);
}

.related-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.related-link-grid a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.related-link-grid a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.related-link-grid strong {
  color: var(--green-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.related-link-grid span {
  color: var(--muted);
}

.related-hub-link {
  margin-top: 24px;
}

.section,
.cta-band {
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}

.hero,
.page-hero {
  content-visibility: visible;
}

@media (max-width: 760px) {
  .page-hero-split {
    padding: 118px 0 52px;
  }

  .page-hero-split-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-hero-split .page-hero-copy {
    padding: 18px 0 0;
  }

  .page-hero-split-figure {
    border-radius: 18px;
  }

  .local-coverage,
  .related-link-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .breadcrumbs {
    margin-bottom: 16px;
  }

  .related-link-grid a {
    min-height: 0;
  }
}
