/* =========================================================
   AiEOU — Brand tokens
   Colours sampled directly from the AiEOU brand-identity PDF
   ========================================================= */
:root {
  --teal-deep:  #1a5e69;
  --teal-mid:   #2a8999;
  --teal-light: #4db8c8;
  --slate:      #3d4f57;
  --gold:       #c8a86e;
  --gold-dark:  #b0864a;

  --ink:        #23272a;   /* matches logo background exactly */
  --ink-soft:   #2d3236;
  --cream:      #fdfbf6;
  --cream-alt:  #f5f1e8;
  --paper:      #ffffff;

  --text-body:  #3a3f42;
  --text-muted: #6b7276;
  --text-on-ink: #dfe4e6;
  --text-on-ink-muted: #9aa3a8;

  --border: #e7e1d4;
  --border-on-ink: rgba(255,255,255,0.12);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-md: 0 12px 28px -12px rgba(35,39,42,0.18);
  --shadow-lg: 0 24px 48px -18px rgba(35,39,42,0.28);

  --wrap: 1160px;
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; color: var(--ink); }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; font-size: 1rem; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--teal-deep); color: #fff; padding: 12px 18px;
  z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-large { padding: 15px 30px; font-size: 1.02rem; }
.btn-small { padding: 10px 20px; font-size: 0.92rem; }

.btn-primary {
  background: var(--teal-mid);
  color: #fff;
}
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--text-on-ink);
  border-color: var(--border-on-ink);
}
.btn-ghost:hover { border-color: var(--teal-light); color: var(--teal-light); }

/* Same ghost/outline treatment, but for use on light (cream) backgrounds —
   .btn-ghost's light text/border is only legible on dark sections. */
.btn-outline {
  background: transparent;
  color: var(--teal-deep);
  border-color: var(--teal-deep);
}
.btn-outline:hover { background: var(--teal-deep); color: #fff; }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(35,39,42,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-on-ink);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark { border-radius: 6px; }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
.brand-word em { color: var(--teal-light); font-style: normal; }

.brand-header .brand-word { font-size: 1.7rem; }

.nav-collapse {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.site-nav {
  display: flex;
  gap: 30px;
}
.site-nav a {
  color: var(--text-on-ink-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color .15s ease;
}
.site-nav a:hover { color: #fff; }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  background:
    radial-gradient(ellipse at 20% -10%, rgba(77,184,200,0.16), transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(200,168,110,0.10), transparent 50%),
    var(--ink);
  padding: 108px 0 92px;
  text-align: center;
}
.hero-inner { max-width: 820px; }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 20px;
}
.eyebrow-dark { color: var(--teal-mid); }

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.12;
  color: #fff;
  margin-bottom: 26px;
}
.hero h1 .accent-italic { font-style: italic; color: var(--teal-light); }

.hero-lede {
  font-size: 1.15rem;
  color: var(--text-on-ink);
  max-width: 430px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* =========================================================
   Sections (generic)
   ========================================================= */
.section { padding: 96px 0; }
.section-alt { background: var(--cream-alt); }

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  max-width: 640px;
  margin-bottom: 18px;
}
.section-lede {
  font-size: 1.06rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 52px;
}

.grid { display: grid; gap: 26px; }

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

/* =========================================================
   What we believe
   ========================================================= */
.belief-grid { grid-template-columns: repeat(3, 1fr); }
.belief-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-light); }
.belief-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.belief-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.belief-card p:last-child { color: var(--text-muted); font-size: 0.95rem; }

.framework-strip {
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.framework-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 26px;
  text-align: center;
}
.framework-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  counter-reset: framework;
}
.framework-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.framework-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-dark);
  flex-shrink: 0;
  line-height: 1.4;
}
.framework-list h4 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.framework-list p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =========================================================
   Services
   ========================================================= */
.services-grid { grid-template-columns: repeat(3, 1fr); }

/* Case study tiles — sit as the first row of .services-grid */
.case-study-tile { display: flex; flex-direction: column; }
.case-study-still {
  margin: -32px -32px 20px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, rgba(42,137,153,0.12), rgba(200,168,110,0.12));
  color: var(--teal-deep);
}
.case-study-still svg { width: 40px; height: 40px; opacity: 0.55; }
.case-study-tile .case-tag { margin-bottom: 12px; }
.case-study-desc { color: var(--text-muted); font-size: 0.97rem; line-height: 1.5; }

.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-light); }
.card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(42,137,153,0.12), rgba(200,168,110,0.12));
  color: var(--teal-deep);
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.97rem; }

.service-card-cta {
  background: var(--ink);
  border-color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card-cta h3 { color: #fff; margin-bottom: 10px; }
.service-card-cta p { color: var(--text-on-ink-muted); margin-bottom: 22px; }
.service-card-cta:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* =========================================================
   Process
   ========================================================= */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.process-step {
  border-top: 3px solid var(--teal-mid);
  padding-top: 22px;
}
.process-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.process-step p { color: var(--text-muted); font-size: 0.96rem; }

/* =========================================================
   Our people
   ========================================================= */
.people-grid { grid-template-columns: repeat(3, 1fr); }
.people-grid.two-paths { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
.people-card { text-align: center; }
.people-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-light); }
.people-avatar {
  width: 68px; height: 68px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(42,137,153,0.12), rgba(200,168,110,0.12));
  color: var(--teal-deep);
}
.people-avatar svg { width: 34px; height: 34px; }
.people-name {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.people-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.people-bio { color: var(--text-muted); font-size: 0.95rem; }

/* =========================================================
   Case studies
   ========================================================= */
.case-grid { grid-template-columns: repeat(3, 1fr); }
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-light); }
.case-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: rgba(42,137,153,0.10);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.case-card h3 { font-size: 1.2rem; margin-bottom: 18px; line-height: 1.35; }
.case-details dt {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 16px;
}
.case-details dt:first-child { margin-top: 0; }
.case-details dd {
  margin: 6px 0 0;
  font-size: 0.93rem;
  color: var(--text-muted);
}
.case-details strong { color: var(--ink); }

.case-note {
  margin-top: 36px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Assessment template page — expanded criteria breakdown */
.template-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}
.template-criterion {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.template-criterion .belief-num { font-size: 2rem; flex-shrink: 0; }
.template-criterion-body { flex: 1; min-width: 0; }
.template-criterion h3 { font-size: 1.2rem; margin-bottom: 8px; }
.template-criterion-why {
  color: var(--text-muted);
  font-size: 0.93rem;
  font-style: italic;
  margin-bottom: 16px;
}
.template-checklist { display: flex; flex-direction: column; gap: 10px; }
.template-checklist li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  color: var(--text-body);
}
.template-checklist li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* =========================================================
   Podcast
   ========================================================= */
.podcast-mechanic {
  margin-bottom: 56px;
}
.podcast-teasers .episode-status {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.inline-cta {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.campaign-box {
  margin-top: 48px;
  padding: 36px 40px;
  border: 1.5px solid rgba(200,168,110,0.4);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(200,168,110,0.08), rgba(42,137,153,0.05));
  text-align: center;
}
.campaign-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.campaign-box h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.campaign-box p {
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 auto 22px;
}

.campaign-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 48px;
}
.campaign-grid .campaign-box { margin-top: 0; }

/* =========================================================
   Approved suppliers
   ========================================================= */
.supplier-criteria { grid-template-columns: repeat(2, 1fr); margin-bottom: 40px; }
.disclosure-box {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 32px 36px;
}
.disclosure-box h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.disclosure-box p {
  color: var(--text-on-ink);
  font-size: 0.95rem;
  max-width: 70ch;
}

.supplier-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
/* All three CTAs here get the same solid/reverse treatment, regardless of
   which .btn-* variant they otherwise carry. No true green in the brand
   palette, so this uses --teal-deep, the closest token to it. */
.supplier-ctas .btn {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: #fff;
}
.supplier-ctas .btn:hover {
  background: transparent;
  color: var(--teal-deep);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 24px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 28px 16px 0;
  font-weight: 600;
  color: var(--ink);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 1.3rem;
  color: var(--teal-mid);
  font-weight: 700;
  transition: transform .18s ease;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p {
  color: var(--text-muted);
  font-size: 0.96rem;
  padding-bottom: 20px;
  max-width: 62ch;
}

/* =========================================================
   Policy / legal pages
   ========================================================= */
.policy-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 28px;
}
.policy-notice {
  background: rgba(200, 90, 60, 0.08);
  border: 1.5px solid rgba(200, 90, 60, 0.3);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 44px;
}
.policy-notice p {
  color: var(--ink);
  font-size: 0.95rem;
  max-width: 68ch;
}
.policy-notice strong { color: #b1453a; }

.policy-content {
  max-width: 72ch;
}
.policy-content h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 14px;
}
.policy-content h2:first-of-type { margin-top: 0; }
.policy-content h3 {
  font-size: 1.05rem;
  margin-top: 26px;
  margin-bottom: 10px;
  color: var(--ink);
}
.policy-content p {
  color: var(--text-body);
  margin-bottom: 14px;
}
.policy-content ul {
  margin: 0 0 14px;
  padding-left: 22px;
  list-style: disc;
}
.policy-content li {
  color: var(--text-body);
  margin-bottom: 8px;
}
.policy-content a { color: var(--teal-deep); text-decoration: underline; text-underline-offset: 2px; }
.policy-content strong { color: var(--ink); }

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-deep), var(--slate));
  padding: 80px 0;
}
.cta-banner-inner { max-width: 700px; text-align: center; margin: 0 auto; }
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 34px; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   Contact
   ========================================================= */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
/* Direct contact (email / phone) — always shown alongside the form */
.direct-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.direct-contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.direct-contact-link:hover {
  border-color: var(--teal-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.direct-contact-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(42,137,153,0.10);
  color: var(--teal-deep);
}
.direct-contact-icon svg { width: 20px; height: 20px; }
.direct-contact-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.direct-contact-value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-points { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.contact-points li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  color: var(--text-body);
}
.contact-points li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.text-link { color: var(--teal-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.form-row label span { color: var(--gold-dark); margin-left: 3px; }
.form-row input, .form-row textarea, .form-row select {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text-body);
  transition: border-color .15s ease, box-shadow .15s ease;
  resize: vertical;
  font-family: inherit;
  font-size: 1rem;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(42,137,153,0.15);
}
.form-row input:invalid[data-touched="true"],
.form-row textarea:invalid[data-touched="true"] {
  border-color: #c66;
}
.field-error {
  font-size: 0.82rem;
  color: #b1453a;
  min-height: 1em;
  display: block;
}

.hp-field { position: absolute; left: -9999px; top: -9999px; }

.form-submit { width: 100%; margin-top: 4px; }
.form-submit[disabled] { opacity: 0.7; cursor: default; }

.form-privacy {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.form-status {
  margin-top: 16px;
  font-size: 0.92rem;
  min-height: 1.2em;
}
.form-status.is-success { color: var(--teal-deep); font-weight: 600; }
.form-status.is-error { color: #b1453a; font-weight: 600; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--ink);
  padding: 56px 0 34px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.brand-footer { justify-content: center; }
.footer-tagline { color: var(--text-on-ink-muted); font-style: italic; font-family: var(--font-display); }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; margin: 10px 0; }
.footer-nav a { color: var(--text-on-ink-muted); font-size: 0.92rem; }
.footer-nav a:hover { color: var(--teal-light); }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-on-ink-muted);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
  transition: color .15s ease;
}
.footer-social:hover { color: var(--teal-light); }
.footer-meta { color: var(--text-on-ink-muted); font-size: 0.85rem; }
.footer-meta .text-link { color: var(--teal-light); }
.footer-legal {
  margin-top: 10px;
  color: var(--text-on-ink-muted);
  font-size: 0.78rem;
  opacity: 0.85;
}
.footer-legal a { color: var(--text-on-ink-muted); }
.footer-legal a:hover { color: var(--teal-light); }

/* Supplier vetting-path badges */
.badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.badge-podcast { background: rgba(42,137,153,0.12); color: var(--teal-deep); }
.badge-direct { background: rgba(200,168,110,0.16); color: var(--gold-dark); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .services-grid, .case-grid, .people-grid, .belief-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 860px) {
  .nav-collapse { display: none; }
  .nav-toggle { display: flex; }

  .site-header.is-open .nav-collapse {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: var(--ink);
    padding: 20px 24px 26px;
    gap: 20px;
    border-bottom: 1px solid var(--border-on-ink);
  }
  .site-header.is-open .site-nav {
    flex-direction: column;
    gap: 16px;
  }

  .hero { padding: 76px 0 64px; }
  .section { padding: 68px 0; }

  .services-grid, .case-grid, .people-grid, .belief-grid, .process-list, .two-paths, .campaign-grid { grid-template-columns: 1fr; }
  .framework-list { grid-template-columns: 1fr; }
  .contact-form { padding: 26px; }
  .template-criterion { flex-direction: column; gap: 12px; }
}
