
/* =====================================================================
   ECONOMIC SYSTEMS — FINAL HOMEPAGE VISUAL SYSTEM
   Contemporary professional-services design: editorial typography,
   generous whitespace, softly rounded modules, restrained red accents,
   and deep-plum institutional contrast.
   ===================================================================== */

:root {
  --red: #c8102e;
  --red-dark: #a70d27;
  --red-soft: #f8edf0;
  --red-soft-2: #fcf6f7;
  --ink: #151515;
  --text: #34363a;
  --muted: #6a6d72;
  --line: #e8e6e5;
  --paper: #ffffff;
  --soft: #f6f5f3;
  --soft-warm: #faf8f7;
  --plum: #24151c;
  --plum-2: #38212b;
  --plum-3: #4a2935;
  --white: #ffffff;

  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Source Serif 4', Georgia, serif;

  --max: 1320px;
  --header-h: 82px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 8px 26px rgba(20, 18, 19, .055);
  --shadow-md: 0 18px 48px rgba(20, 18, 19, .085);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: transparent; color: inherit; cursor: pointer; }
ul, ol { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--sans);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.07;
}
a:focus-visible, button:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }

/* LAYOUT + TYPE */
.container { width: min(100% - 64px, var(--max)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.section-soft { background: var(--soft-warm); }
.section-cta-final { padding: 100px 0 120px; }

h1 { font-size: clamp(3.05rem, 5.15vw, 5.25rem); }
h2 { font-size: clamp(2.25rem, 3.55vw, 3.85rem); }
h3 { font-size: clamp(1.28rem, 1.65vw, 1.72rem); }

.eyebrow {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: none;
  color: var(--red);
}
.eyebrow-light { color: var(--white); }
.accent-text { color: var(--red); }

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, .72fr);
  gap: 78px;
  align-items: end;
  margin-bottom: 52px;
}
.section-intro h2 { max-width: 800px; }
.section-context {
  max-width: 590px;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.3vw, 1.23rem);
  line-height: 1.67;
  color: #4c4d51;
}

/* BUTTONS + LINKS */
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: .91rem;
  font-weight: 650;
  line-height: 1;
  transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn-lg { min-height: 55px; padding: 16px 25px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--red); border-color: var(--red); color: var(--white); box-shadow: 0 8px 24px rgba(200,16,46,.12); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(200,16,46,.18); }
.btn-secondary { background: var(--white); border-color: #d8d6d5; color: var(--ink); }
.btn-secondary:hover { border-color: #b8b5b3; background: #fbfaf9; transform: translateY(-1px); }
.btn-white { background: var(--white); border-color: var(--white); color: var(--ink); }
.btn-white:hover { background: #f5f3f2; border-color: #f5f3f2; }
.btn-ghost-white { color: var(--white); border-color: rgba(255,255,255,.42); }
.btn-ghost-white:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.72); }
.btn .arrow { transition: transform .18s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.text-link, .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: .9rem;
  font-weight: 650;
  color: var(--ink);
}
.text-link:hover, .card-link:hover { color: var(--red); }
.text-link span, .card-link span { transition: transform .18s var(--ease); }
.text-link:hover span, .card-link:hover span { transform: translateX(3px); }
.text-link-light, .card-link-light { color: var(--white); }
.text-link-light:hover, .card-link-light:hover { color: var(--white); opacity: .84; }

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled { background: rgba(255,255,255,.985); box-shadow: 0 6px 28px rgba(20,18,19,.065); }
.header-inner {
  width: min(100% - 64px, var(--max));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-logo { display: flex; align-items: center; flex: 0 0 auto; }
.logo-img { height: 35px; width: auto; }
.header-nav { display: flex; align-items: center; margin-left: 22px; gap: 3px; flex: 1; }
.nav-item { position: relative; }
.nav-link, .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: .86rem;
  font-weight: 550;
  color: #303136;
  transition: color .15s ease, background .15s ease;
}
.nav-link:hover, .nav-trigger:hover, .nav-item.open .nav-trigger { color: var(--red); background: var(--red-soft-2); }
.nav-trigger svg { transition: transform .15s ease; }
.nav-item.open .nav-trigger svg { transform: rotate(180deg); }
.header-actions { margin-left: auto; display: flex; align-items: center; flex: 0 0 auto; }
.header-actions .btn { min-height: 44px; padding-inline: 17px; border-radius: 10px; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 350px;
  padding: 18px;
  border: 1px solid #ebe8e7;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(25,20,22,.13);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .16s var(--ease), transform .16s var(--ease), visibility .16s;
}
.nav-dropdown-wide { width: 455px; }
.nav-item.open .nav-dropdown, .nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.nav-dropdown-label {
  padding: 7px 9px 11px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--red);
}
.nav-dropdown a { display: block; padding: 11px 12px; border-radius: 11px; transition: background .15s ease; }
.nav-dropdown a:hover { background: var(--soft-warm); }
.nav-dropdown strong { display: block; font-size: .88rem; line-height: 1.35; color: var(--ink); font-weight: 600; }
.nav-dropdown span { display: block; margin-top: 4px; color: var(--muted); font-size: .76rem; line-height: 1.45; }
.nav-dropdown a:hover strong { color: var(--red); }

.mobile-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  border-radius: 10px;
}
.mobile-toggle span { width: 20px; height: 1.5px; background: var(--ink); transition: all .15s ease; }
.mobile-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 999;
  padding: 28px 26px 40px;
  overflow-y: auto;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: .18s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-group { margin-bottom: 26px; }
.mobile-heading { margin-bottom: 6px; font-family: var(--serif); font-size: 1rem; font-style: italic; color: var(--red); }
.mobile-link { display: block; margin: 3px 0; padding: 11px 12px; border-radius: 10px; color: var(--ink); font-size: .96rem; font-weight: 550; }
.mobile-link:hover { background: var(--soft-warm); }
.mobile-nav .btn { margin-top: 22px; }

/* HERO */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 104px) 0 0;
  overflow: hidden;
  background: var(--white);
}
.hero-aura {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 10%, rgba(200,16,46,.085), transparent 28%),
    radial-gradient(circle at 7% 32%, rgba(56,33,43,.035), transparent 24%);
}
.hero-grid { position: relative; z-index: 1; display: block; }
.hero-copy { max-width: 1040px; margin: 0 auto; padding-bottom: 78px; text-align: center; }
.hero-copy .eyebrow { margin-bottom: 24px; }
.hero-copy h1 {
  max-width: 980px;
  margin: 0 auto 29px;
  font-size: clamp(3.05rem, 4.95vw, 5.1rem);
  font-weight: 450;
  line-height: 1.025;
  letter-spacing: -0.052em;
}
.hero-subtitle {
  font-weight: 300;
  max-width: 815px;
  margin: 0 auto 34px;
  font-family: var(--sans);
  font-size: clamp(1.14rem, 1.5vw, 1.37rem);
  line-height: 1.35;
  color: #ffffff;
}
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-proofline {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  padding: 8px;
  background: #f7f5f4;
  border-radius: 17px;
}
.hero-proofline a {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: .77rem;
  font-weight: 400;
  color: #55575b;
  transition: background .15s ease, color .15s ease;
}
.hero-proofline a:hover { color: var(--red); background: var(--white); }

.hero-brief {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  grid-template-areas:
    "kicker list"
    "title list"
    "copy list"
    "link list";
  gap: 0 82px;
  padding: 68px 72px 70px;
  background:
    radial-gradient(circle at 92% 2%, rgba(200,16,46,.22), transparent 29%),
    linear-gradient(125deg, var(--plum) 0%, var(--plum-2) 72%, #472733 100%);
  color: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}
.brief-kicker { grid-area: kicker; margin-bottom: 22px; font-family: var(--serif); font-size: 1.12rem; font-style: italic; color: var(--white); }
.hero-brief h2 { grid-area: title; max-width: 650px; margin-bottom: 23px; color: var(--white); font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 450; }
.hero-brief > p { grid-area: copy; max-width: 620px; margin-bottom: 32px; font-family: var(--serif); font-size: 1.13rem; line-height: 1.65; color: rgba(255,255,255,.79); }
.hero-brief > .text-link { grid-area: link; }
.brief-list { grid-area: list; display: grid; gap: 12px; align-self: center; }
.brief-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 17px 18px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
}
.brief-item span { color: #efc3cc; font-size: .73rem; font-weight: 700; letter-spacing: .08em; padding-top: 2px; }
.brief-item p { color: var(--white); font-size: .95rem; line-height: 1.46; }

/* FIRM AT A GLANCE */
.trust-strip { padding: 34px 0 0; background: var(--white); }
.trust-panel {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
  padding: 18px;
  background: var(--soft-warm);
  border: 1px solid #eeeceb;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.trust-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.trust-metric {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 30px;
  background: var(--white);
  border-radius: 16px;
}
.trust-metric strong { display: block; margin-bottom: 10px; color: var(--ink); font-size: clamp(2.25rem, 3.35vw, 3.6rem); font-weight: 450; letter-spacing: -0.055em; line-height: 1; }
.trust-metric > span { color: var(--muted); font-size: .86rem; }
.trust-statement {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 32px;
  background: linear-gradient(145deg, #2b1820 0%, #402632 100%);
  border-radius: 16px;
  color: var(--white);
}
.trust-label { margin-bottom: 12px; font-family: var(--serif); font-style: italic; color: #f0c7d0; }
.trust-statement p { max-width: 370px; font-family: var(--serif); font-size: 1.14rem; line-height: 1.58; color: var(--white); }

/* INDUSTRIES */
.industry-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}
.industry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 332px;
  padding: 38px 40px 40px;
  background: var(--soft-warm);
  border: 1px solid #ece9e7;
  border-radius: var(--r-lg);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s ease;
}
.industry-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #e0dcda; }
.industry-card-featured {
  grid-row: 1 / 3;
  min-height: 682px;
  justify-content: flex-end;
  padding: 48px 50px 50px;
  background:
    radial-gradient(circle at 82% 12%, rgba(200,16,46,.22), transparent 31%),
    linear-gradient(145deg, var(--plum) 0%, var(--plum-2) 60%, #4a2935 100%);
  color: var(--white);
  border-color: transparent;
}
.industry-card-featured:hover { border-color: transparent; }
.industry-topline { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: auto; }
.industry-number { font-size: .74rem; font-weight: 700; letter-spacing: .1em; color: var(--red); }
.industry-card-featured .industry-number { color: #efc3cc; }
.industry-tag { padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.10); color: var(--white); font-family: var(--serif); font-size: .9rem; font-style: italic; }
.industry-card h3 { margin: 0 0 17px; max-width: 560px; font-size: clamp(1.65rem, 2.1vw, 2.35rem); font-weight: 500; }
.industry-card > p { max-width: 620px; margin-bottom: 22px; color: #55575b; font-family: var(--serif); font-size: 1.04rem; line-height: 1.62; }
.industry-card-featured h3 { color: var(--white); font-size: clamp(2.25rem, 3.35vw, 3.85rem); }
.industry-card-featured > p { color: rgba(255,255,255,.79); font-size: 1.13rem; }
.clean-list { display: grid; gap: 9px; margin: 0 0 27px; }
.clean-list li { position: relative; padding-left: 17px; color: #4c4e52; font-size: .88rem; line-height: 1.45; }
.clean-list li::before { content: ''; position: absolute; left: 0; top: .63em; width: 5px; height: 5px; border-radius: 50%; background: var(--red); }
.clean-list-light li { color: rgba(255,255,255,.87); }
.clean-list-light li::before { background: #f0c2cc; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 32px 32px 34px;
  background: var(--white);
  border: 1px solid #ebe8e6;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(20,18,19,.025);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #dfdad8; }
.service-kicker { margin-bottom: 24px; color: var(--red); font-size: .73rem; font-weight: 700; letter-spacing: .1em; }
.service-card h3 { margin-bottom: 14px; font-size: clamp(1.42rem, 1.75vw, 1.82rem); font-weight: 500; }
.service-card > p:not(.service-kicker) { margin-bottom: 20px; color: #56585d; font-family: var(--serif); font-size: 1rem; line-height: 1.62; }
.service-list { display: grid; gap: 9px; margin-bottom: 26px; }
.service-list li { position: relative; padding-left: 16px; color: #505256; font-size: .84rem; line-height: 1.45; }
.service-list li::before { content: ''; position: absolute; left: 0; top: .62em; width: 5px; height: 5px; border-radius: 50%; background: #cf6578; }
.service-card .text-link { margin-top: auto; }

/* BUILT FOR SCRUTINY */
.consequence-band { background: var(--white); color: var(--white); }
.consequence-band .container {
  padding: 68px 70px 70px;
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 88% 8%, rgba(200,16,46,.23), transparent 27%),
    linear-gradient(125deg, var(--plum) 0%, #321d26 65%, var(--plum-3) 100%);
  box-shadow: var(--shadow-md);
}
.consequence-glow { display: none; }
.consequence-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .75fr);
  grid-template-areas: "eyebrow eyebrow" "title copy";
  gap: 18px 72px;
  align-items: end;
  margin-bottom: 38px;
}
.consequence-head .eyebrow { grid-area: eyebrow; margin-bottom: 0; }
.consequence-head h2 { grid-area: title; max-width: 720px; margin: 0; color: var(--white); font-weight: 450; }
.consequence-head > p:last-child { grid-area: copy; max-width: 560px; color: rgba(255,255,255,.78); font-family: var(--serif); font-size: 1.11rem; line-height: 1.65; }
.consequence-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.consequence-item {
  min-height: 215px;
  padding: 28px 25px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
}
.consequence-item > span { display: inline-block; margin-bottom: 34px; color: #efc3cc; font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.consequence-item h3 { margin-bottom: 12px; color: var(--white); font-size: 1.22rem; font-weight: 500; }
.consequence-item p { color: rgba(255,255,255,.72); font-family: var(--serif); font-size: .98rem; line-height: 1.6; }

/* CLIENT PROOF */
.clients-marquee-wrapper { width: min(100% - 64px, var(--max)); margin: 0 auto; overflow: visible; mask-image: none; -webkit-mask-image: none; }
.clients-marquee-track { width: 100%; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; animation: none !important; }
.client-chip {
  position: relative;
  width: auto;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: var(--soft-warm);
  border: 1px solid #eeebe9;
  border-radius: 16px;
  transition: background .18s ease, transform .18s var(--ease), box-shadow .18s ease;
}
.client-chip:nth-child(n+10) { display: none; }
.client-chip:hover { background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.client-chip img { max-height: 74px; max-width: 165px; object-fit: contain; filter: saturate(.86); }
.client-name {
  position: absolute;
  left: 12px; right: 12px; bottom: 9px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: .76rem;
  line-height: 1.3;
  text-align: center;
  opacity: 0;
  transform: translateY(3px);
  transition: .16s ease;
  pointer-events: none;
}
.client-chip:hover .client-name, .client-chip:focus-visible .client-name, .client-chip.show-name .client-name { opacity: 1; transform: translateY(0); }
.proof-actions { margin-top: 30px; }

/* HOW WE WORK */
.process-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.process-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-areas: "number title" "number copy";
  gap: 9px 18px;
  align-content: start;
  min-height: 190px;
  padding: 30px 30px 32px;
  background: var(--white);
  border: 1px solid #ebe8e6;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(20,18,19,.025);
}
.process-number {
  grid-area: number;
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .06em;
}
.process-row h3 { grid-area: title; margin: 4px 0 0; font-size: 1.34rem; font-weight: 500; }
.process-row p { grid-area: copy; max-width: 650px; color: #57595d; font-family: var(--serif); font-size: 1.01rem; line-height: 1.62; }

/* SYSTEMS */
.systems-band { padding: 100px 0; background: var(--white); color: var(--ink); }
.systems-band .container {
  padding: 58px 62px 48px;
  background: var(--soft-warm);
  border: 1px solid #eeebe9;
  border-radius: var(--r-xl);
}
.systems-heading { display: grid; grid-template-columns: 1fr .75fr; gap: 72px; align-items: end; }
.systems-heading .eyebrow-light { color: var(--red); }
.systems-heading h2 { max-width: 760px; color: var(--ink); font-weight: 450; }
.systems-note { max-width: 550px; color: #515359; font-family: var(--serif); font-size: 1.05rem; line-height: 1.65; }
.logo-marquee-wrapper {
  width: 100%;
  margin-top: 36px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}
.logo-marquee-track { display: flex; align-items: center; gap: 12px; width: max-content; animation: logoScroll 32s linear infinite; }
.logo-marquee-wrapper:hover .logo-marquee-track { animation-play-state: paused; }
.logo-marquee-item {
  display: flex; align-items: center; gap: 10px; flex: 0 0 auto;
  min-height: 54px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid #ebe8e6;
  border-radius: 13px;
}
.logo-marquee-item img { width: auto; max-width: 88px; height: 25px; object-fit: contain; }
.logo-marquee-item span { color: #505258; font-size: .8rem; font-weight: 600; white-space: nowrap; }
@keyframes logoScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* FINAL CTA */
.cta-final-card {
  position: relative;
  padding: 66px 68px;
  background:
    radial-gradient(circle at 88% 12%, rgba(200,16,46,.22), transparent 30%),
    linear-gradient(125deg, var(--plum) 0%, var(--plum-2) 72%, #452631 100%);
  border-radius: var(--r-xl);
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.cta-final-mesh { display: none; }
.cta-final-content { max-width: 860px; margin: 0; }
.cta-final-content .eyebrow-light { color: var(--white); }
.cta-final-content h2 { max-width: 760px; margin-bottom: 20px; color: var(--white); font-size: clamp(2.55rem, 4vw, 4.35rem); font-weight: 450; }
.cta-final-content > p:not(.eyebrow) { max-width: 760px; margin-bottom: 32px; color: rgba(255,255,255,.78); font-family: var(--serif); font-size: 1.13rem; line-height: 1.66; }
.cta-final-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-final-actions .btn-white { background: var(--white); border-color: var(--white); color: var(--ink); }
.cta-final-actions .btn-ghost-white { border-color: rgba(255,255,255,.43); color: var(--white); }

/* FOOTER */
.site-footer { background: #171717; color: var(--white); padding: 58px 0 0; }
.footer-top { display: grid; grid-template-columns: minmax(220px, .85fr) 2.4fr; gap: 90px; padding-bottom: 52px; }
.footer-brand { align-self: start; }
.footer-logo { height: 105px; width: auto; filter: brightness(0) invert(1); }
.footer-company-name { margin-top: 8px; color: var(--white); font-size: 1rem; font-weight: 600; }
.footer-tagline { margin-top: 8px; font-family: var(--serif); font-style: italic; color: rgba(255,255,255,.64); }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.footer-col h4 { margin-bottom: 17px; color: var(--white); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-col .footer-subhead { margin-top: 24px; margin-bottom: 12px; }
.footer-col a { display: block; padding: 5px 0; color: rgba(255,255,255,.63); font-size: .84rem; line-height: 1.45; }
.footer-col a:hover { color: var(--white); }
.footer-wordmark { padding: 24px 0 20px; overflow: hidden; white-space: nowrap; text-align: center; color: rgba(255,255,255,.045); font-size: clamp(3.1rem, 7vw, 7.4rem); font-weight: 750; letter-spacing: -.055em; line-height: .95; user-select: none; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0 26px; color: rgba(255,255,255,.48); font-size: .77rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: var(--white); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .52s var(--ease), transform .52s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 70ms; }
.reveal-delay-2 { transition-delay: 140ms; }
.reveal-delay-3 { transition-delay: 210ms; }

/* RESPONSIVE */
@media (max-width: 1120px) {
  .header-nav { display: none; }
  .header-actions .btn { display: none; }
  .mobile-toggle { display: flex; }

  .hero-brief { grid-template-columns: 1fr; grid-template-areas: "kicker" "title" "copy" "list" "link"; gap: 0; padding: 54px; }
  .brief-list { margin: 10px 0 28px; }

  .section-intro, .consequence-head, .systems-heading { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .consequence-head { grid-template-areas: "eyebrow" "title" "copy"; }
  .industry-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .industry-card-featured { grid-row: auto; min-height: 560px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .consequence-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-marquee-track { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 46px; }
}

@media (max-width: 820px) {
  :root { --header-h: 72px; }
  .container, .header-inner, .clients-marquee-wrapper { width: min(100% - 40px, var(--max)); }
  .section { padding: 86px 0; }
  .hero { padding-top: calc(var(--header-h) + 78px); }
  .hero-copy { padding-bottom: 66px; }
  .hero-copy h1 { font-size: clamp(2.7rem, 11.6vw, 4.25rem); }
  .hero-proofline { width: 100%; justify-content: flex-start; }
  .hero-brief { padding: 42px 30px 46px; border-radius: 24px; }

  .trust-panel { grid-template-columns: 1fr; }
  .trust-statement { padding: 28px 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .consequence-band .container { padding: 50px 32px; border-radius: 24px; }
  .process-list { grid-template-columns: 1fr; }
  .clients-marquee-track { grid-template-columns: repeat(2, 1fr); }
  .systems-band .container { padding: 44px 32px 38px; border-radius: 24px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .container, .header-inner, .clients-marquee-wrapper { width: min(100% - 32px, var(--max)); }
  .section { padding: 70px 0; }
  .section-intro { margin-bottom: 38px; }
  .hero { padding-top: calc(var(--header-h) + 58px); }
  .hero-copy { text-align: left; }
  .hero-actions { justify-content: flex-start; flex-direction: column; align-items: stretch; }
  .hero-proofline { padding: 7px; gap: 3px; border-radius: 14px; }
  .hero-proofline a { padding: 8px 9px; }
  .hero-brief { padding: 36px 24px 40px; }

  .trust-panel { padding: 10px; gap: 10px; }
  .trust-metrics { grid-template-columns: 1fr; gap: 8px; }
  .trust-metric { min-height: 112px; padding: 22px 24px; }
  .industry-card { min-height: 0; padding: 32px 26px 35px; border-radius: 19px; }
  .industry-card-featured { min-height: 520px; }
  .service-card { min-height: 0; padding: 28px 26px 30px; }
  .consequence-band .container { padding: 40px 22px; }
  .consequence-grid { grid-template-columns: 1fr; }
  .consequence-item { min-height: 0; }
  .clients-marquee-track { grid-template-columns: 1fr 1fr; gap: 9px; }
  .client-chip { height: 120px; padding: 18px; border-radius: 13px; }
  .client-chip img { max-width: 118px; max-height: 58px; }
  .process-row { grid-template-columns: 42px 1fr; padding: 26px 24px; }
  .process-number { width: 34px; height: 34px; }
  .systems-band { padding: 76px 0; }
  .systems-band .container { padding: 36px 24px 32px; }
  .cta-final-card { padding: 46px 28px; border-radius: 24px; }
  .cta-final-actions { flex-direction: column; align-items: stretch; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-wordmark { font-size: clamp(1.5rem, 8.5vw, 3.1rem); overflow: visible; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ================================================================
   FINAL SURGICAL REFINEMENTS — supporting copy + client marquee only
   ================================================================ */

/* Supporting editorial copy: contained, deliberate, quieter than headings */
.section-context {
  max-width: 580px;
  padding: 22px 24px 23px;
  background: #f7f5f3;
  border: 1px solid #ece8e5;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(24, 20, 21, 0.025);
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.18vw, 1.14rem);
  font-weight: 400;
  line-height: 1.64;
  color: #46474b;
}

.section-soft .section-context {
  background: var(--white);
  border-color: #e9e5e2;
}

/* Dark-section supporting copy gets a contained translucent treatment */
.consequence-head > p:last-child {
  max-width: 560px;
  padding: 21px 23px 22px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--serif);
  font-size: 1.06rem;
  line-height: 1.62;
}

/* Systems supporting copy: white inset card within the warm systems panel */
.systems-note {
  max-width: 550px;
  padding: 21px 23px 22px;
  background: var(--white);
  border: 1px solid #e9e5e2;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(24, 20, 21, 0.025);
  color: #4b4d51;
  font-family: var(--serif);
  font-size: 1.03rem;
  line-height: 1.62;
}

/* Restore the client proof to a seamless infinite marquee while keeping the polished tiles */
.clients-marquee-wrapper {
  width: min(100% - 64px, var(--max));
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.clients-marquee-track {
  --client-gap: 14px;
  --client-half-gap: 7px;
  display: flex !important;
  align-items: center;
  gap: var(--client-gap) !important;
  width: max-content !important;
  grid-template-columns: none !important;
  animation: clientsMarquee 25s linear infinite !important;
  will-change: transform;
}

.clients-marquee-wrapper:hover .clients-marquee-track {
  animation-play-state: paused !important;
}

.client-chip,
.client-chip:nth-child(n+10) {
  display: flex !important;
  flex: 0 0 238px;
  width: 238px;
  height: 145px;
}

@keyframes clientsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - var(--client-half-gap))); }
}

@media (max-width: 820px) {
  .section-context,
  .consequence-head > p:last-child,
  .systems-note {
    max-width: 100%;
  }

  .clients-marquee-track {
    --client-gap: 12px;
    --client-half-gap: 6px;
  }

  .client-chip,
  .client-chip:nth-child(n+10) {
    flex-basis: 205px;
    width: 205px;
    height: 126px;
  }
}

@media (max-width: 560px) {
  .section-context,
  .consequence-head > p:last-child,
  .systems-note {
    padding: 18px 19px 19px;
    border-radius: 14px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .clients-marquee-wrapper {
    width: min(100% - 32px, var(--max));
  }

  .clients-marquee-track {
    --client-gap: 10px;
    --client-half-gap: 5px;
    animation-duration: 26s !important;
  }

  .client-chip,
  .client-chip:nth-child(n+10) {
    flex-basis: 170px;
    width: 170px;
    height: 112px;
    padding: 16px;
  }

  .client-chip img {
    max-width: 118px;
    max-height: 58px;
  }
}

/* ================================================================
   INSIGHTS TYPOGRAPHY SYNC — supporting gradient copy only
   ================================================================ */

/* Hero supporting statement: same treatment as the Insights hero */
.hero-subtitle {
  max-width: 825px;
  margin: 0 auto 34px;
  padding: 24px 28px 25px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 4%, rgba(200,16,46,.20), transparent 31%),
    linear-gradient(125deg, var(--plum) 0%, var(--plum-2) 72%, #472733 100%);
  box-shadow: 0 10px 30px rgba(24,15,19,.08);
  color: rgba(255,255,255,.94);
  font-family: var(--sans);
  font-size: clamp(1.08rem, 1.4vw, 1.24rem);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -.01em;
}

/* Standalone supporting notes: same treatment as Insights gradient notes */
.section-context,
.section-soft .section-context,
.systems-note {
  padding: 22px 24px 23px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 4%, rgba(200,16,46,.20), transparent 31%),
    linear-gradient(125deg, var(--plum) 0%, var(--plum-2) 72%, #472733 100%);
  box-shadow: 0 10px 30px rgba(24,15,19,.07);
  color: rgba(255,255,255,.94);
  font-family: var(--sans);
  font-size: clamp(1.01rem, 1.16vw, 1.12rem);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -.008em;
}

.section-context,
.section-soft .section-context { max-width: 590px; }
.systems-note { max-width: 550px; }

/* Supporting copy inside the dark scrutiny section follows the same lighter rhythm */
.consequence-head > p:last-child {
  font-family: var(--sans);
  font-size: 1.03rem;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -.008em;
}

@media (max-width: 560px) {
  .hero-subtitle {
    padding: 20px 20px 21px;
    border-radius: 15px;
  }

  .section-context,
  .section-soft .section-context,
  .systems-note {
    max-width: 100%;
    padding: 18px 19px 19px;
    border-radius: 14px;
  }
}

/* ================================================================
   HOMEPAGE HERO EXPERIMENT — OPEN EDITORIAL SUPPORTING STATEMENT
   Removes the opening plum card while preserving hierarchy.
   ================================================================ */

.hero-subtitle {
  position: relative;
  max-width: 790px;
  margin: 0 auto 36px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #4b4d52;
  font-family: var(--sans);
  font-size: clamp(1.10rem, 1.38vw, 1.27rem);
  font-weight: 300;
  line-height: 1.56;
  letter-spacing: -.012em;
}

.hero-subtitle::before {
  content: '';
  display: block;
  width: 54px;
  height: 2px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: var(--red);
}

@media (max-width: 560px) {
  .hero-subtitle {
    max-width: 100%;
    margin: 0 0 32px;
    padding: 0;
    border-radius: 0;
    font-size: 1.06rem;
    line-height: 1.58;
  }

  .hero-subtitle::before {
    width: 46px;
    margin: 0 0 19px;
  }
}

/* ================================================================
   OPEN EDITORIAL HERO SUPPORT — APPROVED SITE-WIDE TREATMENT
   Opening hero copy stays open on white; interior plum modules remain.
   ================================================================ */

.hero-subtitle {
  position: relative;
  max-width: 790px;
  margin: 0 auto 36px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #4b4d52;
  font-family: var(--sans);
  font-size: clamp(1.10rem, 1.38vw, 1.27rem);
  font-weight: 300;
  line-height: 1.56;
  letter-spacing: -.012em;
}

.hero-subtitle::before {
  content: '';
  display: block;
  width: 54px;
  height: 2px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: var(--red);
}

@media (max-width: 560px) {
  .hero-subtitle {
    max-width: 100%;
    margin: 0 0 32px;
    padding: 0;
    border-radius: 0;
    font-size: 1.06rem;
    line-height: 1.58;
  }

  .hero-subtitle::before {
    width: 46px;
    margin: 0 0 19px;
  }
}
