/* =========================================================
   Evia Bid Consultancy stylesheet
   Implements the four-colour brand palette: Ink, Paper, Iris,
   Mercury, plus the Slate working text colour. No tints, no
   shades, no gradients, no shadows, except --color-error which
   is reserved for true error states only.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette (four colours) */
  --ink: #0E1D2A;
  --paper: #F6F4EE;
  --paper-card: #EFEAE8;
  --iris: #8B7FB8;
  --mercury: #9DA3AB;

  /* Working text colour (not brand) */
  --slate: #4A535D;

  /* Functional, scoped to true error states only */
  --color-error: #C9302C;

  /* Type: families (Erode from Fontshare, used sitewide except in the logo lockup) */
  --font-display: 'Erode', Georgia, 'Times New Roman', serif;
  --font-body: 'Erode', Georgia, 'Times New Roman', serif;

  /* Type: sizes */
  --size-hero: clamp(48px, 6vw, 84px);
  --size-h2: clamp(36px, 4vw, 56px);
  --size-h3: 28px;
  --size-card-title: 20px;
  --size-body-large: 19px;
  --size-body: 17px;
  --size-body-small: 15px;
  --size-eyebrow: 12px;
  --size-button: 16px;
  --size-stat-number: clamp(56px, 5vw, 72px);

  /* Type: line heights */
  --leading-display: 1.05;
  --leading-heading: 1.15;
  --leading-sub-heading: 1.25;
  --leading-body: 1.7;
  --leading-tight: 1.0;

  /* Type: tracking */
  --tracking-display: -0.02em;
  --tracking-heading: -0.01em;
  --tracking-sub-heading: -0.005em;
  --tracking-caps: 0.1em;
  --tracking-label: 0.02em;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
  --space-10: 100px;
  --space-11: 120px;

  /* Radius */
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;

  /* Layout */
  --max-width-content: 1200px;
  --max-width-hero: 1320px;
  --max-width-prose: 720px;
  --pad-x-mobile: 24px;
  --pad-x-tablet: 48px;
  --pad-x-desktop: 64px;

  /* Motion */
  --transition-base: 200ms ease;
  --transition-arrow: 200ms cubic-bezier(0.2, 0.7, 0.2, 1);

  /* Z-index scale */
  --z-nav: 100;
  --z-mobile-menu: 200;
  --z-modal: 300;

  /* Cursor parallax (set by scripts.js, default 0) */
  --cursor-x: 0;
  --cursor-y: 0;
  --backdrop-shift: 40px;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-base: 0ms;
    --transition-arrow: 0ms;
  }
}

/* ---------- Reset and base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background: var(--paper-card);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate);
  font-size: var(--size-body);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  position: relative;
  background-color: var(--paper);
  isolation: isolate;
}

main,
.page-wrapper {
  background: transparent;
}

body::before {
  content: "";
  position: fixed;
  inset: calc((var(--backdrop-shift, 40px) + 4rem) * -1);
  z-index: -1;
  background-image: url("background-aurora.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: url(#marble) saturate(0.8) brightness(1.04);
  pointer-events: none;
  transform: translate3d(
    calc(var(--cursor-x) * var(--backdrop-shift) * -1),
    calc(var(--cursor-y) * var(--backdrop-shift) * -1),
    0
  );
  transition: transform 380ms cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: transform;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.10;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
  background-repeat: repeat;
  mix-blend-mode: overlay;
}

.cloud-layer {
  position: fixed;
  inset: calc((var(--backdrop-shift, 40px) + 4rem) * -1);
  pointer-events: none;
  z-index: -2;
  filter: url(#cloud);
  background: var(--paper);
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    transform: translate3d(0, 0, 0) !important;
    transition: none !important;
  }
}

@media (pointer: coarse) {
  body::before {
    transform: translate3d(0, 0, 0) !important;
  }
}

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

button {
  font: inherit;
  cursor: pointer;
}

a {
  color: var(--ink);
  text-decoration: none;
  transition: color var(--transition-base);
}
a:hover { color: var(--iris); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--iris);
  outline-offset: 2px;
  border-radius: var(--radius-md);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- Skip-to-main link ---------- */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus-visible {
  position: fixed;
  width: auto;
  height: auto;
  padding: var(--space-2) var(--space-4);
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  top: 0;
  left: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: var(--z-modal);
}
/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 var(--space-4);
}

h1 {
  font-size: var(--size-hero);
  font-weight: 500;
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

h2 {
  font-size: var(--size-h2);
  font-weight: 500;
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-heading);
  font-variation-settings: 'opsz' 96, 'SOFT' 30;
}

h3 {
  font-size: var(--size-h3);
  font-weight: 500;
  line-height: var(--leading-sub-heading);
  letter-spacing: var(--tracking-sub-heading);
  font-variation-settings: 'opsz' 48, 'SOFT' 20;
}

h4 {
  font-size: var(--size-card-title);
  font-weight: 600;
  line-height: 1.3;
  font-family: var(--font-body);
}

p {
  margin: 0 0 var(--space-4);
}

.lead {
  font-size: var(--size-body-large);
  line-height: 1.65;
  color: var(--slate);
}

strong { color: var(--ink); font-weight: 600; }

/* Mono numeral utility — wrap stat figures, prices, percentages, evidence numbers */
.numeral,
.numeral * {
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', 'Menlo', monospace;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  letter-spacing: -0.01em;
}

/* Hero live tender count: animated digit cards inline with headline */
.tender-count {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  vertical-align: baseline;
}
.tender-digit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-card);
  color: var(--ink);
  border: 1px solid rgba(120, 100, 200, 0.25);
  border-radius: 6px;
  padding: 0.05em 0.18em;
  min-width: 0.55em;
  font-size: 0.85em;
  font-weight: 700;
  font-feature-settings: "tnum";
}
.tender-comma {
  display: inline;
  color: var(--ink);
  font-weight: inherit;
  margin: 0 1px;
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 var(--pad-x-mobile);
}

.container-hero {
  max-width: var(--max-width-hero);
}

.container-prose {
  max-width: var(--max-width-prose);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--pad-x-tablet); }
}
@media (min-width: 1024px) {
  .container { padding: 0 var(--pad-x-desktop); }
}

section {
  padding: var(--space-8) 0;
}
@media (min-width: 768px) {
  section {
    padding: var(--space-10) 0;
  }
}

.section-tint { background: transparent; }
.section-bg { background: transparent; }

.section-head {
  max-width: var(--max-width-prose);
  margin: 0 0 var(--space-7);
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head .lead { color: var(--slate); }

.center { text-align: center; }

/* ---------- Logo lockup ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo__img {
  display: block;
  width: auto;
  height: 9.5rem;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
}

@media (max-width: 767px) {
  .logo__img { height: 7rem; }
}

.logo:focus-visible {
  outline: 2px solid var(--iris);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ---------- Hero accent (italic + curved underline) ---------- */
.accent-underline {
  position: relative;
  display: inline-block;
  color: var(--ink);
  font-style: italic;
  font-weight: 500;
}
.accent-underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'%3E%3Cpath d='M2 9 Q 50 2, 100 7 T 198 8' stroke='%239DA3AB' stroke-width='3.5' stroke-linecap='round' fill='none' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

/* ---------- Body link ---------- */
.body-link {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--mercury);
  transition: border-color var(--transition-base);
  padding: 0 2px;
}
.body-link:hover {
  border-bottom-color: var(--ink);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--size-button);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: var(--leading-tight);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--iris);
  color: var(--paper);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
}
.btn-primary:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:active {
  background: var(--ink);
  color: var(--paper);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 14px 24px;
  border: 1px solid var(--mercury);
  border-radius: var(--radius-md);
}
.btn-secondary:hover {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-on-dark {
  background: var(--paper);
  color: var(--ink);
}
.btn-on-dark:hover {
  background: var(--paper);
  color: var(--ink);
}

/* Inline text link with arrow */
.text-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  color: var(--ink);
  font-weight: 600;
  font-size: var(--size-button);
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
}
.text-link .arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform var(--transition-arrow);
}
.text-link:hover .arrow {
  transform: translateX(4px);
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background-color: #EFEAE8;
  border-bottom: 1px solid var(--mercury);
  padding: 2px 0;
  min-height: unset;
  height: auto;
}
.nav-inner {
  padding: 0 var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-6);
}
.nav-links a:not(.btn) {
  font-family: var(--font-body);
  font-size: var(--size-button);
  font-weight: 500;
  color: var(--ink);
  line-height: var(--leading-tight);
  transition: color var(--transition-base);
}
.nav-links a:not(.btn):hover { color: var(--iris); }
.nav-links a[aria-current="page"]:not(.btn) { color: var(--iris); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-hamburger {
  display: inline-flex;
  border: none;
  background: transparent;
  padding: var(--space-3);
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) {
  .nav-hamburger { display: none; }
}

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--paper);
  padding: var(--space-9) var(--pad-x-mobile) var(--space-7);
  display: none;
  flex-direction: column;
  gap: var(--space-5);
  z-index: var(--z-mobile-menu);
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a:not(.btn) {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  padding: var(--space-3) 0;
}
.nav-mobile a[aria-current="page"]:not(.btn) { color: var(--iris); }
.nav-mobile .btn {
  align-self: flex-start;
  margin-top: var(--space-5);
}

/* ---------- Hero (replicated from evia-hero-preview (1).html) ---------- */
.hero {
  background: transparent;
  padding-block: 6.5rem 3.5rem;
  hanging-punctuation: first last;
}
@media (max-width: 48rem) {
  .hero {
    padding-block: 4.5rem 2rem;
  }
}

.hero-container {
  width: min(100% - 2rem, 720px);
  margin-inline: auto;
}
@media (max-width: 48rem) {
  .hero-container {
    width: min(100% - 1.5rem, 720px);
  }
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.75rem, 2.1rem + 3.4vw, 4.5rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  text-wrap: balance;
  margin: 0;
}

.hero__subhead {
  max-width: 480px;
  margin-block: 1.5rem 2rem;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--slate);
  text-wrap: pretty;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3125rem;
  padding: 0.6875rem 1.125rem;
  border: 1px solid var(--iris);
  border-radius: 6px;
  background: var(--iris);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.005em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base),
    transform 160ms cubic-bezier(.2,.6,.2,1);
}
.button:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.button:active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  transform: translateY(1px);
}
.button:focus { outline: none; }
.button:focus-visible {
  outline: 2px solid var(--iris);
  outline-offset: 3px;
}

.hero-inner {
  background: transparent;
  padding: var(--space-9) 0 var(--space-3);
}
@media (min-width: 768px) {
  .hero-inner { padding: var(--space-11) 0 var(--space-3); }
}
.hero-inner h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-variation-settings: 'opsz' 96, 'SOFT' 40;
}

/* Illustrations sit directly on the canvas, no panel, no shadow */
.illustration,
.illustration-wrapper,
.illustration-frame {
  background: transparent !important;
  border: none;
  padding: 0;
}
.illustration img,
.illustration-frame img {
  background: transparent !important;
  padding: 0;
}
.illustration img,
.illustration-frame img {
  display: block;
  max-width: 100%;
  height: auto;
}

.hero-sub {
  color: var(--slate);
  font-size: var(--size-body-large);
  line-height: 1.65;
  max-width: 56ch;
}

/* ---------- Sectors ticker (industries list, masks the backdrop) ---------- */
.sectors-ticker {
  background: var(--paper-card);
  border-top: 1px solid var(--mercury);
  border-bottom: 1px solid var(--mercury);
  padding: var(--space-6) 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.ticker-track:hover {
  animation-play-state: paused;
}
.ticker-track > span {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 var(--space-4);
}
.ticker-track .bullet {
  color: var(--mercury);
  font-size: 24px;
  vertical-align: middle;
  padding: 0 var(--space-2);
  line-height: 1;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}

/* ---------- Stats band ---------- */
.stats-band {
  background: transparent;
  padding: var(--space-8) 0;
}
@media (min-width: 768px) {
  .stats-band { padding: var(--space-10) 0; }
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}
@media (min-width: 1024px) {
  .stats-grid {
    gap: var(--space-8);
  }
}
.stat-number {
  font-family: var(--font-display);
  font-size: var(--size-stat-number);
  font-weight: 500;
  font-variation-settings: 'opsz' 96, 'SOFT' 40;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-display);
  color: var(--ink);
  margin-bottom: var(--space-3);
}
.stat-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: var(--tracking-label);
  color: var(--ink);
  margin: 0;
}

/* ---------- Two column section pattern ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
}
@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}
.two-col.reverse > :first-child { order: 2; }
.two-col.reverse > :last-child { order: 1; }
@media (max-width: 767px) {
  .two-col.reverse > :first-child,
  .two-col.reverse > :last-child { order: initial; }
}

.illustration {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.illustration-sm {
  max-width: 360px;
}

/* How it works: 55/45 split with a vertical illustration */
@media (min-width: 768px) {
  #how-it-works .two-col {
    grid-template-columns: 1.2fr 1fr;
  }
  #how-it-works .illustration {
    max-width: 500px;
    margin-left: auto;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  #how-it-works .illustration {
    max-width: 360px;
  }
}
.illustration--vertical img {
  max-width: 100%;
  height: auto;
  max-height: 80vh;
}

/* ---------- Steps (How it works) ---------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  align-items: start;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #ECE9EC;
  border: 1.5px solid var(--mercury);
  color: var(--mercury);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  border-radius: var(--radius-pill);
  font-variation-settings: 'opsz' 48, 'SOFT' 30;
}
.step-body h3 { margin-bottom: var(--space-2); }
.step-body p { margin: 0; color: var(--slate); }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 768px) {
  .card-grid { gap: var(--space-6); }
  .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: #ECE9EC;
  border: 1.5px solid var(--mercury);
  border-radius: 28px;
  padding: var(--space-6);
  transition: border-color var(--transition-base);
}
.card.on-tint { background: var(--paper-card); }
.card-grid a.card { display: block; color: inherit; }
.card:hover {
  border-color: var(--ink);
}

.card-illustration {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: var(--space-5);
}
.card-title {
  font-family: var(--font-body);
  font-size: var(--size-card-title);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 var(--space-4);
}
.card p {
  margin: 0;
  color: var(--slate);
}
.card-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--mercury);
  letter-spacing: var(--tracking-caps);
  margin-bottom: var(--space-3);
}

/* ---------- Pill groups (portals/frameworks) ---------- */
/* ---------- Services page — process stages ---------- */
.services-stages {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.service-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--mercury);
}

.service-stage:last-of-type {
  border-bottom: none;
}

@media (min-width: 760px) {
  .service-stage--with-figure {
    grid-template-columns: 1fr 220px;
    gap: var(--space-5);
    align-items: start;
  }
}

.service-stage h3 {
  margin-top: 0;
  margin-bottom: var(--space-2);
}

.service-stage p {
  max-width: 60ch;
  margin-top: 0;
}

.service-stage-figure {
  display: block;
  width: 100%;
  height: auto;
  max-width: 220px;
  justify-self: end;
  margin-top: 0;
}

@media (max-width: 760px) {
  .service-stage--with-figure {
    grid-template-columns: 1fr;
  }
  .service-stage-figure {
    max-width: 160px;
    justify-self: center;
    margin: var(--space-2) auto;
  }
}

/* ---------- Final CTA banner ---------- */
.cta-banner {
  background: transparent;
  color: var(--ink);
  text-align: center;
  padding: var(--space-7) 0;
}
@media (min-width: 768px) {
  .cta-banner { padding: var(--space-9) 0; }
}
.cta-banner h2 {
  color: var(--ink);
  margin-bottom: var(--space-4);
}
.cta-banner p {
  color: var(--slate);
  font-size: var(--size-body-large);
  max-width: 56ch;
  margin: 0 auto var(--space-6);
}

/* ---------- Team page ---------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}
.team-card {
  background: var(--paper-card);
  border: 2px solid var(--mercury);
  border-radius: 28px;
  padding: var(--space-7) var(--space-6);
  text-align: center;
  transition: border-color var(--transition-base);
}
.team-card.on-tint { background: var(--paper-card); }
.team-card:hover {
  border-color: var(--ink);
}
.team-photo {
  width: 160px;
  height: 160px;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  margin: 0 auto var(--space-5);
  border: 1px solid var(--mercury);
}
.team-card h3 { margin-bottom: var(--space-1); }
.team-role {
  font-family: var(--font-body);
  font-size: var(--size-body-small);
  font-weight: 600;
  color: var(--mercury);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}
.team-bio {
  text-align: left;
  color: var(--slate);
  margin-bottom: var(--space-5);
}
.team-card .btn { width: 100%; justify-content: center; }
.dogs-card { max-width: 640px; margin: 0 auto; }

/* Team contact row: phone button + LinkedIn icon inline */
.team-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}
.team-contact-row .btn { width: auto; }
.team-contact-extra {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.team-contact-sep {
  color: var(--slate);
  line-height: 1;
}
.team-linkedin {
  display: inline-flex;
  align-items: center;
  color: var(--iris);
  line-height: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}
.team-linkedin:hover,
.team-linkedin:focus-visible {
  color: var(--iris);
  transform: scale(1.1);
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: start;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: var(--space-8); }
}
.contact-info h2 { margin-bottom: var(--space-5); }
.contact-detail { margin-bottom: var(--space-5); }
.contact-detail strong {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mercury);
  margin-bottom: var(--space-2);
}
.contact-detail a,
.contact-detail span {
  display: block;
  color: var(--slate);
  font-size: var(--size-body);
}
.contact-detail a:hover { color: var(--iris); }

.contact-form-wrapper {
  background: var(--paper-card);
  border: 2px solid var(--mercury);
  border-radius: 28px;
  padding: var(--space-6);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .contact-form-wrapper { padding: var(--space-7); }
}
.contact-form-wrapper h2 { margin-bottom: var(--space-5); }

.hidden-honeypot {
  position: absolute;
  left: -9999px;
}

/* Contact form (rebuild) — labels above fields, 1.5px Mercury borders, Iris focus ring */
.honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.field label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.005em;
}
.field__optional {
  color: var(--mercury);
  font-weight: 400;
  margin-left: 0.25em;
}
.field label span[aria-hidden="true"]:first-of-type {
  color: var(--iris);
  margin-left: 0.15em;
}
.field input,
.field textarea {
  font: 400 1rem/1.5 var(--font-body);
  padding: 0.75rem 0.875rem;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--mercury);
  border-radius: 6px;
  min-height: 44px;
  width: 100%;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.field textarea {
  min-height: 8rem;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--mercury);
  opacity: 1;
}
.field input:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--iris);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--iris), transparent 70%);
}

/* ---------- Privacy / prose ---------- */
.prose {
  max-width: var(--max-width-prose);
  margin: 0 auto;
}
.prose h2 {
  font-size: var(--size-h3);
  font-variation-settings: 'opsz' 48, 'SOFT' 20;
  margin-top: var(--space-7);
  margin-bottom: var(--space-4);
}
.prose h2:first-of-type { margin-top: 0; }
.prose p,
.prose li {
  color: var(--slate);
  font-size: var(--size-body);
  line-height: var(--leading-body);
}
.prose ul {
  padding-left: var(--space-5);
  margin: 0 0 var(--space-4);
}
.prose li { margin-bottom: var(--space-2); }
.prose-meta {
  color: var(--mercury);
  font-size: var(--size-body-small);
  margin-bottom: var(--space-7);
}

/* Privacy policy reading column (masks the backdrop for clean prose contrast) */
.privacy-content {
  max-width: var(--max-width-prose);
  margin: 0 auto;
  background: var(--paper);
  border: 1.5px solid var(--mercury);
  border-radius: 16px;
  padding: var(--space-7) var(--space-6);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .privacy-content {
    padding: var(--space-8) var(--space-7);
  }
}

/* ---------- Thank-you and 404 ---------- */
.centered-page {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-9) 0;
}
.centered-page img {
  max-width: 360px;
  margin: 0 auto var(--space-6);
}
.centered-page h1 {
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: var(--space-5);
  font-variation-settings: 'opsz' 96, 'SOFT' 40;
}
.centered-page .lead { margin-bottom: var(--space-7); }
.centered-page .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* ---------- Footer (masks the backdrop) ---------- */
/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--paper-card);
  border-top: 1px solid var(--mercury);
  padding: 5px var(--space-5) 3px;
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--ink);
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: var(--space-5);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}

.footer-tagline {
  font-size: 0.8125rem;
  color: #4A535D;
  margin: 0;
  max-width: 28ch;
  line-height: 1.45;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

.footer-nav-list a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 160ms ease;
}

.footer-nav-list a:hover,
.footer-nav-list a:focus-visible {
  color: var(--iris);
}

.footer-contact-line {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ink);
  line-height: 1.5;
}

.footer-contact-line a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-contact-line a:hover,
.footer-contact-line a:focus-visible {
  color: var(--iris);
}

.footer-bottom {
  max-width: 1100px;
  margin: 4px auto 0;
  padding-top: 3px;
  border-top: 1px solid var(--mercury);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.75rem;
  color: #4A535D;
  margin: 0;
}

.footer-legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: var(--space-4);
}

.footer-legal-links a {
  font-size: 0.75rem;
  color: #4A535D;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: var(--iris);
}

@media (max-width: 720px) {
  .site-footer {
    padding: var(--space-5) var(--space-4) var(--space-3);
    margin-top: var(--space-5);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
}

/* ---------- FAQ page ---------- */
.faq-intro {
  padding: var(--space-8) 0 var(--space-6);
}
.faq-intro h1 {
  margin-block: 0.5rem 1rem;
}
.faq-content {
  padding-block: var(--space-6) var(--space-9);
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--mercury);
}

.faq-item {
  border-bottom: 1px solid var(--mercury);
}

.faq-item__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 120ms ease;
}
.faq-item__summary::-webkit-details-marker {
  display: none;
}
.faq-item__summary::marker {
  display: none;
  content: "";
}
.faq-item__summary:hover .faq-item__question {
  color: var(--iris);
}

.faq-item__question {
  flex: 1;
  transition: color 120ms ease;
}

/* Disclosure marker — single ::after pseudo-element, content swap on [open] */
.faq-item__summary::before {
  content: none;
  display: none;
}
.faq-item__summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.4em;
  line-height: 1;
  color: var(--ink);
  transition: color 120ms ease;
}
.faq-item[open] .faq-item__summary::after {
  content: "\2212"; /* Unicode minus sign — visually balanced with "+" */
}

.faq-item__answer {
  padding: 0 0 1.5rem;
  max-width: 65ch;
}
.faq-item__answer p {
  color: var(--slate);
  line-height: 1.55;
  margin: 0 0 0.75em;
}
.faq-item__answer p:last-child {
  margin-bottom: 0;
}

.faq-item__summary:focus-visible {
  outline: 2px solid var(--iris);
  outline-offset: 4px;
  border-radius: 2px;
}

.faq-cta {
  margin-top: var(--space-9);
  text-align: center;
}

/* Counter CLS fix: reserve space so digit changes do not shift surrounding text */
.tender-count {
  display: inline-block;
  min-width: 4.5ch;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.tender-digit {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}


/* Footer social link (LinkedIn) - added by apply-linkedin-updates.ps1 */
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  text-decoration: none;
  color: inherit;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.footer-social:hover,
.footer-social:focus-visible {
  opacity: 1;
  text-decoration: underline;
}

.footer-social__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.footer-social__label {
  font-family: inherit;
}

/* ===== Cookie consent banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--paper-card);
    border: 1px solid var(--mercury);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(14, 29, 42, 0.12);
    padding: 1.25rem 1.5rem;
    z-index: 9999;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-banner__text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--ink);
}

.cookie-banner__link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__link:hover {
    opacity: 0.7;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-banner__btn {
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: opacity 0.15s ease, background-color 0.15s ease;
    min-width: 100px;
}

.cookie-banner__btn--decline {
    background: transparent;
    border-color: var(--mercury);
    color: var(--ink);
}

.cookie-banner__btn--decline:hover {
    background: rgba(14, 29, 42, 0.05);
}

.cookie-banner__btn--accept {
    background: var(--ink);
    color: var(--paper-card);
    border-color: var(--ink);
}

.cookie-banner__btn--accept:hover {
    opacity: 0.85;
}

@media (min-width: 640px) {
    .cookie-banner__inner {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }
    .cookie-banner__text {
        flex: 1;
    }
}

/* ============================================================
   CASE STUDIES
   ============================================================ */

/* ---- Index page ---- */
.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: var(--max-width-content);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .case-studies-grid:has(> :nth-child(2)) {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-studies-grid:has(> :nth-child(4)) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-card {
  display: block;
  background: var(--paper-card);
  border: 1.5px solid var(--mercury);
  border-radius: 28px;
  padding: var(--space-7) var(--space-6);
  color: inherit;
  text-decoration: none;
  transition: border-color var(--transition-base);
}
.case-card:hover,
.case-card:focus-visible {
  border-color: var(--ink);
  color: inherit;
}
.case-card .case-eyebrow { margin-bottom: var(--space-3); }
.case-card h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: var(--tracking-heading);
  font-variation-settings: 'opsz' 96, 'SOFT' 30;
  color: var(--ink);
  margin: 0 0 var(--space-4);
  max-width: 36ch;
}
.case-card__excerpt {
  color: var(--slate);
  margin: 0 0 var(--space-5);
  max-width: 60ch;
}
.case-card__meta {
  display: block;
  font-size: var(--size-body-small);
  color: var(--mercury);
  margin-bottom: var(--space-4);
}
.case-card__cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--size-button);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.case-card:hover .case-card__cta,
.case-card:focus-visible .case-card__cta {
  color: var(--iris);
}

.case-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--size-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--mercury);
}

/* ---- Case study page: hero ---- */
.case-hero {
  padding: var(--space-8) 0 var(--space-6);
}
@media (min-width: 768px) {
  .case-hero { padding: var(--space-10) 0 var(--space-7); }
}
.case-hero__inner {
  max-width: var(--max-width-prose);
  margin: 0 auto;
}
.case-hero h1 {
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: var(--space-3) 0 var(--space-5);
  text-wrap: balance;
}
.case-hero__sub {
  font-size: var(--size-body-large);
  line-height: 1.55;
  color: var(--slate);
  max-width: 56ch;
  margin: 0;
}

.case-info-strip {
  margin: var(--space-5) 0 0;
  font-family: var(--font-body);
  font-size: var(--size-body-small);
  line-height: 1.6;
  color: var(--mercury);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35em var(--space-3);
}
.case-info-strip__sep {
  color: var(--mercury);
  opacity: 0.7;
}

/* ---- Case study page: body two-column with sticky rail ---- */
.case-body {
  padding: var(--space-7) 0 var(--space-9);
}
.case-body__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}
@media (min-width: 1024px) {
  .case-body__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.42fr);
    gap: var(--space-8);
    align-items: start;
  }
}

.case-main > section { padding: var(--space-6) 0; }
.case-main > section:first-child { padding-top: 0; }
.case-main h2 {
  font-size: clamp(28px, 2.6vw, 40px);
  margin-bottom: var(--space-4);
}
.case-main p,
.case-main li { color: var(--slate); }
.case-main ol {
  padding-left: var(--space-5);
  margin: 0 0 var(--space-4);
}
.case-main ol li {
  margin-bottom: var(--space-3);
  padding-left: var(--space-2);
}
.case-approach__intro {
  font-style: italic;
  color: var(--slate);
  margin: 0 0 var(--space-6);
  max-width: 60ch;
}

/* Step cards (stacked) */
.case-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.case-step {
  background: var(--paper-card);
  border: 1.5px solid var(--mercury);
  border-radius: 16px;
  padding: var(--space-5) var(--space-6);
}
.case-step__head {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.case-step__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--mercury);
  letter-spacing: var(--tracking-caps);
  flex: 0 0 auto;
}
.case-step__title {
  font-family: var(--font-body);
  font-size: var(--size-card-title);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.case-step p {
  margin: 0;
  color: var(--slate);
}

/* Stats row */
.case-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  text-align: center;
}
@media (min-width: 768px) {
  .case-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
  }
}
.case-stat__number {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-display);
  color: var(--ink);
  font-variation-settings: 'opsz' 96, 'SOFT' 40;
  margin: 0 0 var(--space-2);
}
.case-stat__label {
  font-family: var(--font-body);
  font-size: var(--size-body-small);
  color: var(--slate);
  margin: 0;
  line-height: 1.4;
}

/* Pull-quote */
.case-quote {
  margin: 0;
  padding: var(--space-6);
  background: var(--paper-card);
  border: 1.5px solid var(--mercury);
  border-radius: 16px;
  border-left: 4px solid var(--iris);
}
.case-quote p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  font-weight: 400;
  font-style: normal;
  color: var(--ink);
  margin: 0 0 var(--space-4);
  font-variation-settings: 'opsz' 72, 'SOFT' 30;
  text-wrap: pretty;
}
.case-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: var(--size-body-small);
  font-weight: 600;
  color: var(--mercury);
  letter-spacing: var(--tracking-label);
}

/* Sticky right rail */
.case-rail {
  display: none;
}
@media (min-width: 1024px) {
  .case-rail {
    display: block;
    position: sticky;
    top: calc(9.5rem + var(--space-5));
    padding: var(--space-5) 0;
  }
}
.case-rail__label {
  font-family: var(--font-body);
  font-size: var(--size-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--mercury);
  margin: 0 0 var(--space-4);
}
.case-rail__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  border-left: 1px solid var(--mercury);
}
.case-rail__list a {
  display: block;
  padding: var(--space-2) var(--space-4);
  margin-left: -1px;
  font-family: var(--font-body);
  font-size: var(--size-body-small);
  color: var(--slate);
  border-left: 2px solid transparent;
  transition: color var(--transition-base), border-color var(--transition-base);
}
.case-rail__list a:hover {
  color: var(--ink);
}
.case-rail__list a.is-active {
  color: var(--ink);
  font-weight: 600;
  border-left-color: var(--iris);
}

/* Bottom CTA strip */
.case-cta-strip {
  text-align: center;
  padding: var(--space-9) 0;
  border-top: 1px solid var(--mercury);
}
.case-cta-strip h3 {
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 500;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 96, 'SOFT' 30;
  margin: 0 0 var(--space-3);
  color: var(--ink);
}
.case-cta-strip p {
  color: var(--slate);
  font-size: var(--size-body-large);
  margin: 0 auto var(--space-6);
  max-width: 50ch;
}

/* Supporting panel on the index page (CTA below the single card) */
.case-index-cta {
  text-align: center;
  padding: var(--space-9) 0 0;
}
.case-index-cta h2 {
  font-size: clamp(28px, 2.6vw, 40px);
  margin-bottom: var(--space-3);
}
.case-index-cta p {
  color: var(--slate);
  font-size: var(--size-body-large);
  max-width: 56ch;
  margin: 0 auto var(--space-6);
}