/* SEO / location / service landing pages — extends styles.css */

.seo-main {
  padding-top: calc(var(--header-h, 72px) + 1.5rem);
  min-height: 60vh;
}

.seo-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
}

.seo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-3);
  margin-bottom: 1.25rem;
  list-style: none;
  padding: 0;
}

.seo-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--text-3);
  opacity: 0.6;
}

.seo-breadcrumb a {
  color: var(--text-2);
  text-decoration: none;
}

.seo-breadcrumb a:hover { color: var(--gold); }
.seo-breadcrumb [aria-current="page"] { color: var(--text-1); }

.seo-hero .eyebrow { margin-bottom: 0.85rem; }

.seo-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  font-weight: 550;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-1);
  max-width: 18ch;
  margin-bottom: 1rem;
}

.seo-hero .lede {
  max-width: 42em;
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.seo-body {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.seo-prose {
  max-width: 46em;
}

.seo-prose p {
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1.1rem;
  font-size: 1rem;
}

.seo-prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 550;
  color: var(--text-1);
  margin: 2.25rem 0 0.85rem;
  letter-spacing: -0.015em;
}

.seo-prose h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-1);
  margin: 1.5rem 0 0.5rem;
}

.seo-prose ul {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: var(--text-2);
}

.seo-prose li {
  margin-bottom: 0.45rem;
  line-height: 1.6;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.seo-card {
  display: block;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-1, transparent);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.seo-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.seo-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-1);
  margin: 0 0 0.4rem;
}

.seo-card p {
  font-size: 0.88rem;
  color: var(--text-3);
  line-height: 1.55;
  margin: 0;
}

.seo-faq {
  margin-top: 2.5rem;
  max-width: 46em;
}

.seo-faq h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin-bottom: 1rem;
  color: var(--text-1);
}

.seo-faq details {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.65rem;
  background: var(--surface-1, transparent);
}

.seo-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-1);
  list-style: none;
}

.seo-faq summary::-webkit-details-marker { display: none; }

.seo-faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 400;
}

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

.seo-faq details p {
  margin: 0.75rem 0 0.15rem;
  color: var(--text-2);
  line-height: 1.65;
  font-size: 0.95rem;
}

.seo-cta-band {
  margin: 2.5rem 0 0;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201, 165, 83, 0.08), transparent 60%);
  max-width: 46em;
}

.seo-cta-band h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--text-1);
}

.seo-cta-band p {
  color: var(--text-2);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.seo-nap {
  margin: 1.5rem 0;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 46em;
}

.seo-nap h3 {
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
  color: var(--text-1);
}

.seo-nap address {
  font-style: normal;
  color: var(--text-2);
  line-height: 1.65;
  font-size: 0.92rem;
}

.seo-nap a { color: var(--gold); }

.seo-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.seo-main .site-header + .seo-hero,
.seo-page .seo-hero {
  /* ensure spacing under fixed header */
}

body.seo-page .section-progress { display: none; }
