/* ============================================================
   V-V Metals — SEO scoped helpers (do not alter layout system)
   ============================================================ */

.seo-breadcrumb {
  padding: 18px 0 0;
  font-size: 13px;
  color: var(--text-mid);
}
.seo-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
}
.seo-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: var(--text-dim);
}
.seo-breadcrumb a {
  color: var(--orange);
  text-decoration: none;
}
.seo-breadcrumb a:hover { text-decoration: underline; }
.seo-breadcrumb [aria-current="page"] { color: var(--text-hi); }

.page-hero .seo-breadcrumb {
  margin-bottom: 12px;
}
.page-hero .seo-breadcrumb,
.page-hero .seo-breadcrumb a,
.page-hero .seo-breadcrumb [aria-current="page"] {
  color: var(--text-mid);
}
.page-hero .seo-breadcrumb a { color: var(--orange); }

.answer-lead {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-hi);
  font-weight: 600;
  margin-top: 18px;
  max-width: 58ch;
}
.page-body--dark .answer-lead,
.seo-section--dark .answer-lead {
  color: var(--text-hi);
}

.content-list {
  margin-top: 18px;
  padding-left: 1.15em;
  max-width: 58ch;
}
.content-list li {
  margin-top: 8px;
  color: var(--ink-mid);
  line-height: 1.6;
}
.seo-section--dark .content-list li { color: var(--text-mid); }

.seo-section {
  background: var(--bg-light);
  padding-block: clamp(56px, 6vw, 88px);
}
.seo-section--dark {
  background: var(--bg-services);
}
.seo-section .section-title { color: var(--ink-hi); }
.seo-section--dark .section-title { color: var(--text-hi); }
.seo-section .section-text { color: var(--ink-mid); max-width: 62ch; }
.seo-section--dark .section-text { color: var(--text-mid); }

.content-faq {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  max-width: 760px;
}
.content-faq-item {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line-light);
  padding: 18px 20px;
}
.seo-section--dark .content-faq-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-card);
}
.content-faq-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-hi);
  margin-bottom: 8px;
}
.seo-section--dark .content-faq-item h3 { color: var(--text-hi); }
.content-faq-item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-mid);
}
.seo-section--dark .content-faq-item p { color: var(--text-mid); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.related-card {
  display: block;
  background: var(--card-cream);
  border: 1px solid var(--line-light);
  padding: 22px 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.seo-section--dark .related-card {
  background: var(--card-dark);
  border-color: var(--line-card);
}
.related-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.related-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-hi);
  margin-bottom: 8px;
}
.seo-section--dark .related-card__title { color: var(--text-hi); }
.related-card__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mid);
}
.seo-section--dark .related-card__text { color: var(--text-mid); }

.site-footer .footer__line a,
.site-footer .footer__seo-links a {
  color: inherit;
}
.footer__seo-links {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
}
.footer__seo-links a {
  color: var(--text-mid);
}
.footer__seo-links a:hover { color: var(--orange); }

.footer__credit {
  margin-top: 8px;
  font-size: 12px;
  color: #6f6a63;
}
.footer__credit a {
  color: #a39c94;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__credit a:hover {
  color: var(--orange, #b05a2c);
}

.seo-map {
  margin-top: 28px;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #1a1a1a;
}
.contact address {
  font-style: normal;
}

@media (max-width: 900px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .related-grid { grid-template-columns: 1fr; }
}
