/* Objective Metriks — draft site styles */
:root {
  --ink: #0B1F33;
  --ink-soft: #16324A;
  --navy: #1A3A52;
  --accent: #2A7A7B;
  --accent-hover: #236667;
  --accent-soft: #E8F4F4;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --gray-100: #F0F2F5;
  --gray-200: #E2E6EB;
  --gray-300: #C8CED6;
  --gray-500: #6B7785;
  --gray-600: #4A5563;
  --gray-700: #334155;
  --text: #1E293B;
  --text-muted: #5A6775;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 1px 3px rgba(11, 31, 51, 0.06), 0 4px 16px rgba(11, 31, 51, 0.04);
  --shadow-md: 0 4px 24px rgba(11, 31, 51, 0.08);
  --max: 1120px;
  --header-h: 72px;
  --top-band-h: 36px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + var(--top-band-h) + 28px); }

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--top-band-h);
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.15s var(--ease); }
a:hover { color: var(--accent-hover); }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.container-narrow { width: min(100% - 2.5rem, 720px); margin-inline: auto; }

/* —— Top accent band —— */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--top-band-h);
  background: var(--ink);
  pointer-events: none;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: var(--top-band-h);
  z-index: 900;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  color: var(--ink);
  flex-shrink: 0;
}
.logo:hover { color: var(--ink); }
.logo-name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.logo-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.01em;
  display: none;
}
@media (min-width: 1100px) {
  .logo-tag { display: block; }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
.nav-desktop a {
  color: var(--gray-700);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-desktop a:hover { color: var(--ink); background: var(--gray-100); }
.nav-desktop a.active { color: var(--ink); font-weight: 600; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-toggle:hover { background: var(--gray-100); }
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.25rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--gray-700);
  font-weight: 500;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
}
.nav-mobile a:hover { background: var(--gray-100); color: var(--ink); }
.nav-mobile a.active { color: var(--ink); font-weight: 600; background: var(--gray-100); }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--white); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--gray-300);
}
.btn-secondary:hover { border-color: var(--ink); color: var(--ink); background: var(--off-white); }
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: transparent;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.btn-ghost:hover { color: var(--accent-hover); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-header {
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}

/* —— Typography —— */
.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 4.5vw, 2.875rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.85rem; }
h3 { font-size: 1.1875rem; margin-bottom: 0.5rem; letter-spacing: -0.015em; }
h4 { font-size: 1.0625rem; margin-bottom: 0.35rem; }
.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 42rem;
}
.lead-lg {
  font-size: 1.1875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 40rem;
}
p + p { margin-top: 1rem; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-center .lead, .text-center .lead-lg { margin-inline: auto; }

/* —— Sections —— */
.section { padding: 4.5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 5.5rem 0; }
.section-alt { background: var(--off-white); }
.section-ink {
  background: var(--ink);
  color: var(--white);
}
.section-ink h2, .section-ink h3 { color: var(--white); }
.section-ink .lead, .section-ink p { color: rgba(255,255,255,0.82); }
.section-ink .eyebrow { color: #7DC8C9; }
.section-header { margin-bottom: 2.5rem; max-width: 40rem; }
.section-header.centered {
  text-align: center;
  margin-inline: auto;
  max-width: 42rem;
}

/* —— Hero —— */
.hero {
  padding: 4.5rem 0 4rem;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}
.hero-compact { padding: 3.5rem 0 3rem; }
.hero .lead-lg { margin-bottom: 2rem; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* —— Cards —— */
.card-grid {
  display: grid;
  gap: 1.25rem;
}
.card-grid-3 { grid-template-columns: 1fr; }
.card-grid-2 { grid-template-columns: 1fr; }
.card-grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .card-grid-6 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
a.card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: inherit;
}
.card-quiet {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  height: 100%;
}
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); font-size: 0.975rem; flex-grow: 1; }
.card-link {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}
a.card:hover .card-link { color: var(--accent-hover); }

.secondary-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 2rem 0 1rem;
}

/* —— Value props —— */
.value-grid {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 700px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 2.5rem; }
}
.value-item h3 {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}
.value-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.value-item p { color: var(--text-muted); font-size: 0.975rem; padding-left: calc(28px + 0.65rem); }

/* —— Steps —— */
.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.step {
  position: relative;
  padding-top: 0.25rem;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: 0.4rem; }
.step p { color: var(--text-muted); font-size: 0.975rem; }

.steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
}
.steps-vertical .step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.steps-vertical .step:last-child { border-bottom: none; }
.steps-vertical .step::before {
  margin-bottom: 0;
  grid-row: 1 / span 2;
}
.steps-vertical .step h3 { margin-bottom: 0.35rem; }
.steps-vertical .step p { padding: 0; }

/* —— Problem strip —— */
.problem-strip {
  padding: 3.5rem 0;
  background: var(--ink);
  color: var(--white);
}
.problem-strip h2 { color: var(--white); margin-bottom: 1rem; }
.problem-strip p { color: rgba(255,255,255,0.8); max-width: 40rem; font-size: 1.0625rem; }

/* —— Jump links —— */
.jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.jump-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.4rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.jump-nav a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

/* —— Service detail —— */
.service-block {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--gray-200);
  scroll-margin-top: calc(var(--header-h) + var(--top-band-h) + 28px);
}
.service-block:last-of-type { border-bottom: none; }
.service-block .lead { margin-bottom: 1.25rem; color: var(--ink-soft); font-weight: 500; }
.service-block ul {
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.service-block li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-muted);
  font-size: 0.975rem;
}
.service-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.outputs {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.outputs strong { color: var(--ink); font-weight: 600; }
.service-cta { margin-top: 1.5rem; }

/* —— Team —— */
.partner-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.partner-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  text-align: center;
  line-height: 1.3;
  padding: 0.5rem;
}
.partner-card .title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.partner-card .focus {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}
.partner-card .bio {
  color: var(--text-muted);
  font-size: 0.975rem;
  margin-bottom: 1.25rem;
}
.partner-links {
  font-size: 0.875rem;
  color: var(--gray-500);
}
.placeholder {
  color: var(--gray-500);
  font-style: normal;
  background: var(--gray-100);
  padding: 0.1em 0.35em;
  border-radius: 3px;
  font-size: 0.95em;
}

/* —— Lists —— */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 42rem;
}
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text-muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.snapshot-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 48rem;
}
.snapshot-list li {
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.975rem;
  font-style: italic;
  border-left: 3px solid var(--accent);
}

.topic-list {
  display: grid;
  gap: 0.65rem;
  max-width: 36rem;
}
.topic-list li {
  padding: 0.85rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.975rem;
}

.how-we-work-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .how-we-work-grid { grid-template-columns: repeat(2, 1fr); }
}
.how-item {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}
.how-item h3 { margin-bottom: 0.5rem; }
.how-item p { color: var(--text-muted); font-size: 0.975rem; }

/* —— CTA band —— */
.cta-band {
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 0.75rem; }
.cta-band .lead { margin-bottom: 1.75rem; margin-inline: auto; }
.cta-band .hero-ctas { justify-content: center; }

/* —— Contact —— */
.contact-layout {
  display: grid;
  gap: 3rem;
}
@media (min-width: 860px) {
  .contact-layout { grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
}
.contact-info h3 { margin-bottom: 0.35rem; }
.contact-info dl { margin-top: 1.5rem; }
.contact-info dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
  margin-top: 1.15rem;
}
.contact-info dd {
  color: var(--ink);
  font-weight: 500;
  margin-top: 0.2rem;
}
.draft-note {
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  background: #FFF8E7;
  border: 1px solid #F0D78C;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: #6B5A20;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.form-group .req { color: var(--accent); }
.form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 560px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-privacy {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 1rem;
}
.form-privacy a { color: var(--accent); }

/* —— Privacy / simple page —— */
.prose { max-width: 40rem; }
.prose p { color: var(--text-muted); margin-bottom: 1.15rem; }
.prose h2 { margin-top: 2rem; }

/* —— 404 —— */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 4rem 0;
}
.page-404 h1 { margin-bottom: 1rem; }
.page-404 .lead { margin-bottom: 2rem; margin-inline: auto; }

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 2rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
}
.footer-brand .logo-name { color: var(--white); font-size: 1.125rem; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.65; max-width: 22rem; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}
.footer-seo {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  max-width: 48rem;
  margin-top: 1.5rem;
  line-height: 1.5;
}

/* —— Insights stub —— */
.stub-box {
  padding: 2rem;
  background: var(--off-white);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius);
  text-align: center;
  max-width: 32rem;
  margin: 2rem auto 0;
}
.stub-box p { color: var(--text-muted); font-size: 0.975rem; }

/* —— Utility —— */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Body offset for fixed draft banner */

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}


/* Secondary button on dark/ink sections */
.btn-secondary-on-ink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  background: transparent;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.btn-secondary-on-ink:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.draft-note {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted, #5a6a7a);
}


/* Extra clearance for sticky chrome when scrolling to headings */
.service-block,
.service-block h2,
main h1,
main h2 {
  scroll-margin-top: calc(var(--header-h) + var(--top-band-h) + 28px);
}


/* Key points strip — scannable at a glance */
.key-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}
.key-point {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.what-we-do-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
  margin-top: 1.5rem;
  max-width: 40rem;
}
@media (min-width: 720px) {
  .what-we-do-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.what-we-do-list li {
  position: relative;
  padding-left: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.975rem;
}
.what-we-do-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}
.card.card-tight p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.value-item p.one-liner {
  font-size: 0.95rem;
  color: var(--text-muted);
}

a.key-point { text-decoration: none; transition: background 0.15s ease, color 0.15s ease; }
a.key-point:hover { background: var(--accent); color: var(--white); }

.hero-email {
  margin-top: 1rem;
  font-size: 1.0625rem;
  font-weight: 600;
}
.hero-email a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-email a:hover { color: var(--accent); }


/* Contact — email + next steps */
.contact-email {
  margin-top: 1.75rem;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.contact-email a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 0.1rem;
  transition: color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.contact-email a:hover {
  color: var(--accent);
  border-color: var(--accent-hover);
}
.hero-compact .contact-email {
  margin-bottom: 0;
}
