/* ============================================================
   BushmanQC — site.css
   Consolidated stylesheet (concatenated from /css/* sources)
   Order: base, nav, hero, trust, services, how-it-works, about, cta, footer
   ============================================================ */


/* ===== css/base.css ===== */
/* ============================================
   BASE — Reset, Variables, Typography, Buttons
   Purple palette matching BushmanQC logo
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors — Purple palette matching logo */
  --purple:        #6B5B95;
  --purple-dark:   #5A4D80;
  --purple-deep:   #4A3F6B;
  --purple-light:  #F0EDF5;
  --purple-mid:    #D8D0E8;
  --bg:            #fdfcfa;
  --ink:           #1d1d22;
  --ink-muted:     #55556d;
  --ink-subtle:    #8a8aa3;
  --white:         #ffffff;
  --border:        #e5e5e9;
  --border-dark:   #d1d1db;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container:   1140px;
  --section-pad: clamp(80px, 10vw, 120px);
  --radius:      12px;
  --radius-lg:   20px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(29, 29, 34, 0.07), 0 1px 2px rgba(29, 29, 34, 0.05);
  --shadow-md:  0 4px 16px rgba(29, 29, 34, 0.10), 0 2px 6px rgba(29, 29, 34, 0.06);
  --shadow-lg:  0 16px 48px rgba(29, 29, 34, 0.14), 0 4px 12px rgba(29, 29, 34, 0.08);

  /* Transitions */
  --transition:      0.22s ease;
  --transition-slow: 0.4s ease;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Skip to main content (accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 20px;
  background: var(--purple);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ----------------------------------------
   Layout helpers
   ---------------------------------------- */
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-left:  clamp(20px, 5vw, 60px);
  padding-right: clamp(20px, 5vw, 60px);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}

.section-intro {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ----------------------------------------
   Buttons
   ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 6px;
  padding: 11px 24px;
  line-height: 1.3;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--purple-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(107, 91, 149, 0.32);
  outline: none;
}

.btn-white {
  background: var(--white);
  color: var(--purple);
  font-weight: 600;
}
.btn-white:hover,
.btn-white:focus-visible {
  background: var(--purple-light);
  transform: translateY(-1px);
  outline: none;
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--purple);
  color: var(--white);
  outline: none;
}

.btn-lg {
  padding: 15px 34px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
}

/* ----------------------------------------
   Scroll-reveal animations
   ---------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.services-grid .fade-in:nth-child(1),
.steps .fade-in:nth-child(1) { transition-delay: 0s; }

.services-grid .fade-in:nth-child(2),
.steps .fade-in:nth-child(2) { transition-delay: 0.08s; }

.services-grid .fade-in:nth-child(3),
.steps .fade-in:nth-child(3) { transition-delay: 0.16s; }

.services-grid .fade-in:nth-child(4),
.steps .fade-in:nth-child(4) { transition-delay: 0.24s; }

.services-grid .fade-in:nth-child(5) { transition-delay: 0.32s; }
.services-grid .fade-in:nth-child(6) { transition-delay: 0.40s; }

.steps-7 .fade-in:nth-child(5) { transition-delay: 0.32s; }
.steps-7 .fade-in:nth-child(6) { transition-delay: 0.40s; }
.steps-7 .fade-in:nth-child(7) { transition-delay: 0.48s; }

.mission-grid .fade-in:nth-child(1) { transition-delay: 0s; }
.mission-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.mission-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ----------------------------------------
   Text helpers
   ---------------------------------------- */
.text-purple { color: var(--purple); }

/* Active nav link */
.nav-links a.active {
  color: var(--purple);
}
.nav-links a.active::after {
  width: 100%;
}

/* ----------------------------------------
   Page hero (subpages)
   ---------------------------------------- */
.page-hero {
  background: var(--purple-light);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.7), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(107, 91, 149, 0.18), transparent 55%);
  padding: clamp(64px, 8vw, 100px) 0 clamp(56px, 7vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}

/* ----------------------------------------
   Section footer
   ---------------------------------------- */
.section-footer {
  text-align: center;
  margin-top: clamp(40px, 5vw, 56px);
}

/* ----------------------------------------
   Footer social icons
   ---------------------------------------- */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* ===== css/nav.css ===== */
/* ============================================
   NAV — Matching original BushmanQC site
   Top announcement bar + contact bar + purple nav
   ============================================ */

/* ---- Announcement bar ---- */
.announcement-bar {
  background: var(--purple);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}

.announcement-bar p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.announcement-bar .ann-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.announcement-bar .btn-ann {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background var(--transition);
}

.announcement-bar .btn-ann:hover {
  background: rgba(255, 255, 255, 0.28);
}

.announcement-bar .btn-ann svg {
  width: 14px;
  height: 14px;
}

.ann-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 4px;
  font-size: 1.125rem;
  line-height: 1;
  transition: color var(--transition);
}

.ann-close:hover {
  color: var(--white);
}

/* ---- Contact bar ---- */
.contact-bar {
  background: var(--purple-deep);
  padding: 8px 0;
}

.contact-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.contact-bar a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.contact-bar a:hover {
  color: var(--white);
}

.contact-bar svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ---- Main nav ---- */
.site-nav {
  background: var(--purple);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.site-nav.scrolled {
  box-shadow: 0 4px 20px rgba(74, 63, 107, 0.35);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 72px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}

.nav-logo img,
.nav-logo-img {
  height: 46px;
  width: auto;
  max-width: 160px;
  display: block !important;
  flex-shrink: 0;
  object-fit: contain;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  transition: color var(--transition), background var(--transition);
  border-radius: 4px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-links a::after {
  display: none;
}

/* CTA in nav */
.nav-cta {
  margin-left: 8px;
  background: rgba(255, 255, 255, 0.18) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 24px !important;
  font-weight: 600 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  box-shadow: none;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.28) !important;
  color: var(--white) !important;
  transform: none;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background: var(--purple-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  padding: 16px clamp(20px, 5vw, 60px) 24px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
  z-index: 999;
}

.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--transition);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile a:hover {
  color: var(--white);
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: block; }

  .announcement-bar {
    font-size: 0.8125rem;
    padding: 8px 40px 8px 16px;
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (max-width: 700px) {
  .contact-bar {
    display: none;
  }
}

/* ===== css/hero.css ===== */
/* ============================================
   HERO — Two-column with photo
   ============================================ */

.hero {
  padding-top: 0; /* sticky nav — no offset needed */
  background: var(--purple-light);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

/* ---- Text side ---- */
.hero-text {
  max-width: 520px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Photo side ---- */
.hero-photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
  max-width: 400px;
  width: 100%;
}

.hero-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-photo-wrap img.img-hidden {
  opacity: 0;
}

.photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 14px 18px;
}

.photo-badge-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--ink);
  line-height: 1.2;
}

.photo-badge-role {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin-top: 2px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-photo {
    order: -1;
    justify-content: center;
  }

  .hero-photo-wrap {
    max-width: 320px;
  }
}

/* ===== css/trust.css ===== */
/* ============================================
   TRUST STRIP — Compliance badges
   ============================================ */

.trust-strip {
  background: var(--purple);
  background-image:
    radial-gradient(circle at 0% 50%, rgba(255, 255, 255, 0.06), transparent 50%),
    radial-gradient(circle at 100% 50%, rgba(0, 0, 0, 0.12), transparent 50%);
  padding: 22px 0;
}

.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition);
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.trust-dot {
  display: none;
}

@media (max-width: 600px) {
  .trust-inner { gap: 8px; }
  .trust-badge { font-size: 0.6875rem; padding: 6px 12px; }
}

/* ===== css/services.css ===== */
/* ============================================
   SERVICES — 6-card grid
   ============================================ */

.services {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--purple-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.service-card:hover .card-icon {
  background: var(--purple);
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 8px 20px rgba(107, 91, 149, 0.32);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--purple);
  flex-shrink: 0;
  transition: stroke var(--transition);
}

.service-card:hover .card-icon svg {
  stroke: var(--white);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

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

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card {
    padding: 28px 24px;
  }
}

/* ============================================
   SERVICES DETAIL — Full-width service blocks
   (services.html)
   ============================================ */

.services-detailed {
  padding-top: clamp(48px, 6vw, 72px);
}

.service-detail {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:first-child {
  padding-top: 0;
}

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

.service-detail-icon {
  width: 56px;
  height: 56px;
  background: var(--purple-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-detail-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--purple);
}

.service-detail-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-detail-content p {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 640px;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

@media (max-width: 768px) {
  .service-detail {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 36px 0;
  }

  .service-features {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MISSION SECTION (about.html)
   ============================================ */

.mission {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mission-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mission-icon {
  width: 52px;
  height: 52px;
  background: var(--purple-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.mission-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--purple);
}

.mission-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 12px;
}

.mission-card p {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ============================================
   CONTACT SECTION (contact.html)
   ============================================ */

.contact-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: var(--ink);
  margin-bottom: 36px;
}

.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-method:first-of-type {
  padding-top: 0;
}

.contact-method:last-of-type {
  border-bottom: none;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--purple-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--purple);
  fill: none;
}

.contact-icon svg[fill="currentColor"] {
  fill: var(--purple);
  stroke: none;
  width: 18px;
  height: 18px;
}

.contact-method h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  margin-bottom: 4px;
}

.contact-method a {
  font-size: 1.0625rem;
  color: var(--purple);
  font-weight: 500;
  transition: color var(--transition);
}

.contact-method a:hover {
  color: var(--purple-dark);
}

.contact-cta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.contact-cta p {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.contact-calendly {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 700px;
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-calendly {
    min-height: 600px;
  }
}

/* ============================================
   ABOUT PAGE — Photo inside card
   ============================================ */

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  margin: -8px -4px 24px;
}

.about-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 7-step grid on services page */
.steps-7 {
  grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 500px) {
  .steps-7 {
    grid-template-columns: 1fr;
  }
}

/* ===== css/how-it-works.css ===== */
/* ============================================
   HOW IT WORKS — Numbered steps
   ============================================ */

.how-it-works {
  padding: var(--section-pad) 0;
  background: var(--purple-light);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  counter-reset: step-count;
}

.step {
  flex: 0 1 calc(25% - 21px);
  min-width: 200px;
}

/* .step base is above in flex child */

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* Connecting line between steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(50% + 34px);
  width: calc(100% - 68px);
  height: 2px;
  background: var(--purple-mid);
}

@media (max-width: 900px) {
  .step {
    flex: 0 1 calc(50% - 14px);
  }

  .step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 500px) {
  .step {
    flex: 0 1 100%;
    max-width: 360px;
  }
}

/* ===== css/about.css ===== */
/* ============================================
   ABOUT — Two-column: text + stats card
   ============================================ */

.about {
  padding: var(--section-pad) 0;
  background: var(--purple-light);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}

.about-text .section-eyebrow {
  text-align: left;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
}

.about-text p {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 520px;
}

.about-text p:last-of-type {
  margin-bottom: 36px;
}

/* ---- Right: Stats card ---- */
.about-card {
  background: var(--purple);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.about-stat:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  line-height: 1.4;
}

.about-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.about-contact a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition), text-decoration-color var(--transition);
  text-decoration: underline;
  text-decoration-color: transparent;
}
.about-contact a:hover {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .about-card {
    padding: 32px 28px;
  }
}

@media (max-width: 480px) {
  .about-card { padding: 28px 22px; }
  .stat-number { font-size: 2.25rem; }
}

/* ===== css/cta.css ===== */
/* ============================================
   CTA — Split call-to-action
   ============================================ */

.cta-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Left — Text */
.cta-text {
  padding: clamp(40px, 5vw, 60px);
  background: var(--white);
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}

.cta-text p {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 420px;
}

.cta-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.cta-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

.cta-checklist li svg {
  width: 18px;
  height: 18px;
  stroke: var(--purple);
  flex-shrink: 0;
}

/* Right — Dark card */
.cta-card {
  padding: clamp(40px, 5vw, 60px);
  background: var(--purple-deep);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.cta-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .cta-inner {
    grid-template-columns: 1fr;
  }
}

/* ===== css/footer.css ===== */
/* ============================================
   FOOTER — 3-column layout: brand, site nav, contact
   ============================================ */

.site-footer {
  background: var(--purple);
  background-image:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.08), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(0, 0, 0, 0.18), transparent 55%);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(64px, 9vw, 96px) 0 0;
  margin-top: clamp(40px, 6vw, 80px);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  padding-bottom: 56px;
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
}

/* Column headings */
.footer-nav h3,
.footer-contact h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 18px;
}

/* Site nav column */
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--white);
  padding-left: 4px;
  outline: none;
}

/* Contact column */
.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.footer-contact-item a:hover,
.footer-contact-item a:focus-visible {
  color: var(--white);
  outline: none;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 11px 22px;
  background: var(--white);
  color: var(--purple);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  align-self: flex-start;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.footer-cta:hover,
.footer-cta:focus-visible {
  background: var(--purple-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  outline: none;
}

/* Social */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: translateY(-1px);
  outline: none;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 22px 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--transition);
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--white);
  outline: none;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.3);
  user-select: none;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--white);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer-divider {
    display: none;
  }
}

/* ========== HOMEPAGE: VQMS EXPLAINER ========== */
.explainer {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.explainer-content {
  max-width: 760px;
  margin: 0 auto;
}
.explainer-content p {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}
.explainer-content p strong {
  color: var(--ink);
}
.explainer-content a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.explainer-content a:hover,
.explainer-content a:focus-visible {
  color: var(--purple-dark);
}

/* ========== HOMEPAGE: COMPLIANCE GRID ========== */
.compliance {
  padding: var(--section-pad) 0;
  background: var(--purple-light);
}
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.compliance-grid .mission-card {
  background: var(--white);
}
@media (max-width: 900px) {
  .compliance-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== FAQ PAGE ========== */
.faq-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(107, 91, 149, 0.18);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-item:hover {
  border-color: rgba(107, 91, 149, 0.4);
  box-shadow: 0 4px 18px rgba(29, 29, 34, 0.06);
}
.faq-item[open] {
  border-color: var(--purple);
  box-shadow: 0 6px 24px rgba(29, 29, 34, 0.08);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 26px;
  position: relative;
  user-select: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary h2 {
  display: inline;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.4;
}
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
  transform: translateY(-75%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  transform: translateY(-25%) rotate(-135deg);
}
.faq-answer {
  padding: 0 26px 24px;
}
.faq-answer p {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin: 0 0 12px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-answer a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-answer a:hover,
.faq-answer a:focus-visible {
  color: var(--purple-dark);
}
.faq-answer strong {
  color: var(--ink);
}

/* ========== SERVICES: INLINE FAQ ========== */
.services-faq {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.services-faq .faq-list {
  max-width: 820px;
}

/* ========== RESOURCES HUB ========== */
.resources-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.resource-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(107, 91, 149, 0.18);
  border-radius: 14px;
  padding: 30px 28px;
  text-decoration: none;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.resource-card:hover,
.resource-card:focus-visible {
  border-color: var(--purple);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.resource-card .resource-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}
.resource-card h2,
.resource-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 12px;
}
.resource-card p {
  color: var(--ink-muted);
  font-size: 0.9688rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.resource-card .resource-more {
  margin-top: auto;
  font-weight: 600;
  color: var(--purple);
}
@media (max-width: 900px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== ARTICLE PAGES ========== */
.article-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.article-body {
  max-width: 760px;
  margin: 0 auto;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  color: var(--ink-subtle);
  font-size: 0.9063rem;
  margin-bottom: 36px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.article-meta strong {
  color: var(--ink-muted);
  font-weight: 600;
}
.article-body p,
.article-body li {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  line-height: 1.8;
}
.article-body p {
  margin-bottom: 18px;
}
.article-body strong {
  color: var(--ink);
}
.article-body a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.article-body a:hover,
.article-body a:focus-visible {
  color: var(--purple-dark);
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin: 44px 0 16px;
}
.article-body h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--ink);
  margin: 30px 0 10px;
}
.article-body ul,
.article-body ol {
  margin: 0 0 20px 22px;
}
.article-body li {
  margin-bottom: 10px;
}
.article-body li::marker {
  color: var(--purple);
  font-weight: 700;
}
.article-table-wrap {
  overflow-x: auto;
  margin: 8px 0 24px;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9688rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.article-body th,
.article-body td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-muted);
  vertical-align: top;
  line-height: 1.6;
}
.article-body th {
  background: var(--purple-light);
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}
.article-body tr:last-child td {
  border-bottom: none;
}
.article-callout {
  background: var(--purple-light);
  border-left: 4px solid var(--purple);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
  margin: 28px 0;
}
.article-callout p {
  margin-bottom: 0;
}
.article-cta {
  background: var(--white);
  border: 1px solid rgba(107, 91, 149, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 34px 32px;
  margin-top: 48px;
  text-align: center;
}
.article-cta h2 {
  margin-top: 0;
}
.article-cta .btn {
  margin-top: 8px;
}

/* ========== 404 PAGE ========== */
.notfound-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
  text-align: center;
}
.notfound-code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--purple-mid);
  line-height: 1;
  margin-bottom: 8px;
}
.notfound-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

/* ========== BLOG BATCH 2 — ADDITIVE ONLY (article apparatus + hub grouping) ==========
   Every selector below is new. No existing selector is modified.
   Palette and radii come from the existing :root tokens. */

/* --- Article date line ------------------------------------------------ */
.article-reviewed { color: var(--ink-subtle); }
.article-meta time { font-variant-numeric: tabular-nums; }

/* --- Inline numbered citation markers --------------------------------- */
.cite {
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 0;
  vertical-align: super;
  margin-left: 1px;
  white-space: nowrap;
}
.article-body .cite a {
  color: var(--purple);
  font-weight: 700;
  text-decoration: none;
  padding: 0 2px;
}
.article-body .cite a:hover,
.article-body .cite a:focus-visible {
  color: var(--purple-dark);
  text-decoration: underline;
}

/* --- Sources list ----------------------------------------------------- */
.article-sources {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.article-body .article-sources h2 {
  font-size: 1.25rem;
  margin: 0 0 16px;
}
.article-body .article-sources ol {
  margin: 0 0 0 22px;
}
.article-body .article-sources li {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-subtle);
  margin-bottom: 12px;
  padding: 4px 8px;
  margin-left: -8px;
  border-radius: 6px;
}
.article-body .article-sources li:target {
  background: var(--purple-light);
}
.article-body .article-sources a {
  font-weight: 600;
  text-decoration-thickness: 1px;
}
.article-body .article-sources-note {
  font-size: 0.875rem;
  color: var(--ink-subtle);
  margin: 14px 0 0;
}

/* --- Author bio box --------------------------------------------------- */
.author-bio {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(107, 91, 149, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px 30px;
  margin-top: 40px;
}
.author-bio-photo {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--purple-light);
}
.author-bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.author-bio-body {
  flex: 1 1 auto;
  min-width: 0;
}
.article-body .author-bio-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 0 0 6px;
}
.article-body .author-bio-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin: 0 0 2px;
}
.article-body .author-bio-name a {
  color: var(--ink);
  text-decoration: none;
}
.article-body .author-bio-name a:hover,
.article-body .author-bio-name a:focus-visible {
  color: var(--purple);
  text-decoration: underline;
}
.article-body .author-bio-role {
  font-size: 0.9063rem;
  color: var(--ink-subtle);
  margin: 0 0 12px;
}
.article-body .author-bio-text {
  font-size: 0.9688rem;
  line-height: 1.75;
  margin: 0 0 14px;
}
.author-bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.article-body .author-bio-tags li {
  margin: 0;
}
.author-bio-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--purple-dark);
  background: var(--purple-light);
  border-radius: 999px;
  padding: 4px 12px;
  line-height: 1.5;
}
.article-body .author-bio-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.9063rem;
  margin: 0;
}
.article-body .author-bio-links a {
  font-weight: 600;
}
@media (max-width: 600px) {
  .author-bio {
    flex-direction: column;
    gap: 18px;
    padding: 24px 22px;
  }
  .author-bio-photo {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
  }
}

/* --- Blog hub: topic groups + card meta -------------------------------- */
.resource-group + .resource-group {
  margin-top: 56px;
}
.resource-group-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.resource-group-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}
.resource-group-note {
  font-size: 0.9375rem;
  color: var(--ink-subtle);
  margin: 0;
}
.resource-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--ink-subtle);
}
.resource-card-meta .resource-card-author {
  font-weight: 600;
  color: var(--ink-muted);
}
.resource-card-sep {
  color: var(--border-dark);
}

/* --- Blog hub: feed link ----------------------------------------------- */
.resources-feed {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--ink-subtle);
}
.resources-feed a {
  color: var(--purple);
  font-weight: 600;
}
