.blog-footer-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.blog-also {
  font-size: 0.82rem;
  color: var(--stone);
}
.blog-also a {
  color: var(--terracotta);
  font-weight: 500;
  transition: opacity 0.25s ease;
}
.blog-also a:hover { opacity: 0.75; }

/* FOOTER LINKS */
.footer-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.footer-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
}
.footer-policy {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  transition: color 0.25s ease;
}
.footer-policy:hover { color: rgba(255,255,255,0.6); }

/* BLOG ARCHIVE */
.blog-archive {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
}
.blog-archive-header {
  max-width: 100%;
  margin-bottom: 3rem;
}
.blog-archive-header .section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.blog-archive-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
}
.blog-archive-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-light);
}
.blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 960px) {
  .blog-archive-grid { grid-template-columns: 1fr; }
}

/* ABOUT — single column, full width, no orphan space */
.about-grid--single {
  grid-template-columns: 1fr !important;
  max-width: 100% !important;
}
.about-grid--single .about-text p {
  font-size: 1.1rem;
  line-height: 1.85;
}

/* SECTION INTRO — full width, no artificial max-width cap */
.section-intro {
  font-size: 1.05rem;
  max-width: 100%;
  margin-bottom: 3rem;
  color: var(--text-light);
}

/* SERVICE CARD ENHANCEMENTS */
.service-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}
.service-list li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 0.35rem 0 0.35rem 1.1rem;
  position: relative;
  line-height: 1.5;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-size: 0.8rem;
}
.service-proof {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--stone);
  margin-top: 0.75rem;
  margin-bottom: 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--bg-alt);
}
.service-cta {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--terracotta);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.25s ease;
}
.service-cta:hover { opacity: 0.7; }

/* CONTACT INFORMAL LINE */
.contact-informal {
  font-size: 1rem;
  color: var(--stone);
  font-style: italic;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
