:root {
  --ivory: #f6f1e7;
  --ivory-light: #fcfaf5;
  --navy: #082b42;
  --navy-soft: #35505f;
  --blue: #0879ba;
  --blue-deep: #006aa8;
  --gold: #b79150;
  --line: rgba(8, 43, 66, .14);
  --shadow: 0 30px 70px rgba(18, 38, 48, .16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--navy);
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, .9), transparent 28rem),
    linear-gradient(120deg, var(--ivory-light), var(--ivory));
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: white;
  background: var(--navy);
  border-radius: 4px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(252, 250, 245, .88);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1740px, calc(100% - 32px));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(22px, 2.2vw, 42px);
}

.brand {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding-right: 0;
  border-right: 0;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 52px;
  display: block;
  object-fit: contain;
}

.brand-wordmark {
  color: var(--navy);
  font-size: clamp(18px, 1.1vw, 21px);
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
  white-space: nowrap;
}

.nav-menu {
  grid-column: 2;
  margin: 0;
  display: flex;
  align-items: center;
  justify-self: center;
  gap: clamp(18px, 1.5vw, 28px);
}

.nav-menu a {
  position: relative;
  padding: 33px 2px 30px;
  color: #28495b;
  font-size: clamp(16px, .95vw, 17px);
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.nav-menu a::after {
  content: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 23px;
  height: 2px;
  background: var(--blue);
}

.nav-menu a[aria-current="page"]::after { content: ""; }

.nav-cta {
  grid-column: 3;
  min-height: 52px;
  padding: 0 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 3px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.nav-cta:hover { background: var(--blue-deep); transform: translateY(-1px); }

.menu-toggle { display: none; }

.hero {
  min-height: clamp(720px, calc(100svh - 86px), 940px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
}

.hero-shell {
  width: min(1740px, calc(100% - 32px));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(28px, 3vw, 50px) 0 clamp(60px, 5.5vw, 86px);
  display: grid;
  grid-template-columns: minmax(460px, 43.5fr) minmax(0, 56.5fr);
  align-items: center;
  gap: clamp(40px, 3vw, 56px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-left: clamp(28px, 2.8vw, 48px);
  padding-right: 0;
}

.eyebrow {
  margin-bottom: 29px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-deep);
  font-size: clamp(15px, .95vw, 16px);
  font-weight: 800;
  letter-spacing: .24em;
}

.eyebrow span { width: 34px; height: 2px; background: var(--gold); }

h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(54px, 4.4vw, 80px);
  line-height: .98;
  letter-spacing: -.047em;
  text-wrap: balance;
}

.supporting-headline {
  max-width: 620px;
  margin: 30px 0 0;
  color: #173f54;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 1.6vw, 27px);
  line-height: 1.38;
}

.body-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--navy-soft);
  font-size: 18px;
  line-height: 1.7;
}

.cta-group {
  margin-top: 38px;
  max-width: 532px;
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.button {
  height: 58px;
  min-height: 58px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .035em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button-primary {
  flex: 1 1 200px;
  max-width: 236px;
  color: white;
  background: var(--blue);
  border: 1px solid var(--blue);
  box-shadow: 0 12px 28px rgba(8, 121, 186, .21);
}

.button svg { width: 16px; flex: 0 0 auto; }
.button-primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(8, 121, 186, .27); }

.button-secondary {
  flex: 1 1 320px;
  max-width: 286px;
  color: #3f5d6b;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(8, 43, 66, .2);
  font-weight: 650;
}

.button-secondary:hover { background: white; transform: translateY(-2px); }

.button:focus-visible,
.nav-menu a:focus-visible,
.nav-cta:focus-visible,
.brand:focus-visible,
.menu-toggle:focus-visible { outline: 3px solid rgba(8, 121, 186, .35); outline-offset: 3px; }

.cta-note {
  margin: 16px 0 0;
  color: #3f5968;
  font-size: clamp(17px, 1.05vw, 18px);
  font-weight: 600;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  min-width: 0;
  z-index: 1;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 7%;
  bottom: 7%;
  left: -54px;
  width: 140px;
  background: radial-gradient(ellipse at center, rgba(205, 161, 91, .22), rgba(205, 161, 91, 0) 70%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 940;
  object-fit: contain;
  background: #dfd1b7;
  border-radius: 8px;
  box-shadow: -28px 26px 70px rgba(157, 107, 48, .13), 0 18px 42px rgba(18, 38, 48, .1);
}
.anchor-targets { display: none; }

.backbone-problems {
  --section-gold: #d9aa3f;
  position: relative;
  overflow: hidden;
  background: #0b3042;
  border-top: 1px solid rgba(217, 170, 63, .48);
}

.backbone-problems::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1440px, calc(100% - 64px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 170, 63, .6) 18%, rgba(217, 170, 63, .6) 82%, transparent);
  transform: translateX(-50%);
}

.problems-shell {
  width: min(1504px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(54px, 4.8vw, 76px) 32px clamp(74px, 6vw, 96px);
  border-left: 1px solid rgba(252, 248, 239, .09);
  border-right: 1px solid rgba(252, 248, 239, .09);
}

.section-eyebrow {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--section-gold);
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 850;
  letter-spacing: .18em;
}

.section-eyebrow span { width: 64px; height: 3px; background: var(--section-gold); }

.problems-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 300px);
  align-items: end;
  gap: clamp(38px, 4.5vw, 68px);
  min-height: clamp(310px, 25vw, 390px);
  padding: clamp(34px, 3vw, 46px) clamp(28px, 3.2vw, 48px) clamp(32px, 2.8vw, 42px);
  background: rgba(4, 26, 31, .16);
  border: 1px solid rgba(255, 249, 238, .12);
  border-radius: 12px;
  box-shadow: inset 4px 0 0 rgba(217, 170, 63, .88);
}

.problems-intro::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 4px;
  width: clamp(100px, 10vw, 150px);
  height: 2px;
  background: var(--section-gold);
}

.problems-intro h2 {
  margin: 0;
  max-width: 1000px;
  color: #fbf7ed;
  font-size: clamp(50px, 4.2vw, 74px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.05em;
}

.problems-intro h2 span {
  display: block;
  text-wrap: balance;
}
.problems-intro h2 span:first-child {
  max-width: 920px;
  color: #e8ddc8;
  font-size: .66em;
  font-weight: 640;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.problems-intro h2 span:last-child {
  max-width: 960px;
  margin-top: 18px;
  color: #fff9ee;
  font-size: 1em;
  font-weight: 850;
}

.problems-intro h2 span:last-child strong {
  color: var(--section-gold);
  font-weight: inherit;
}

.problems-intro > p {
  width: 100%;
  max-width: 330px;
  margin: 0 0 8px;
  padding-left: 18px;
  align-self: end;
  justify-self: end;
  color: rgba(255, 249, 238, .88);
  border-left: 1px solid rgba(217, 170, 63, .68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.15vw, 20px);
  line-height: 1.55;
}

.backbone-bridge {
  margin: clamp(14px, 1.6vw, 22px) 0 0;
  padding: 15px 20px 15px 22px;
  color: rgba(244, 237, 222, .78);
  background: rgba(4, 26, 31, .16);
  border-left: 3px solid rgba(217, 170, 63, .92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.5;
}

.backbone-bridge strong {
  color: #fff9ee;
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .015em;
}

.problem-system {
  position: relative;
  margin-top: clamp(14px, 1.5vw, 20px);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: clamp(18px, 2.2vw, 30px);
  row-gap: clamp(20px, 2.4vw, 32px);
}

.problem-system::before {
  content: none;
}

.problem-point {
  position: relative;
  z-index: 1;
  grid-column: span 2;
  min-height: 222px;
  padding: 28px 26px 26px;
  overflow: hidden;
  background:
    linear-gradient(rgba(8, 43, 66, .24), rgba(8, 43, 66, .24)) right 13px bottom 12px / 20px 1px no-repeat,
    linear-gradient(rgba(8, 43, 66, .24), rgba(8, 43, 66, .24)) right 12px bottom 13px / 1px 20px no-repeat,
    #fbf8f0;
  border: 1px solid rgba(8, 43, 66, .23);
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(56, 39, 21, .1);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.problem-point::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 25px;
  height: 25px;
  background: transparent;
  border-top: 2px solid rgba(217, 170, 63, .86);
  border-left: 2px solid rgba(217, 170, 63, .86);
  border-radius: 15px 0 0;
}

.problem-point::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 24px;
  width: 48px;
  height: 2px;
  background: rgba(217, 170, 63, .86);
}

.problem-point:hover {
  border-color: rgba(8, 121, 186, .42);
  box-shadow: 0 13px 28px rgba(56, 39, 21, .13);
  transform: translateY(-2px);
}

.problem-point-four { grid-column: 2 / span 2; }
.problem-point-five { grid-column: 4 / span 2; }

.problem-marker {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.problem-marker::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(8, 121, 186, .3);
}

.problem-marker > span {
  color: var(--section-gold);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .14em;
}

.problem-marker svg {
  display: none;
  width: 42px;
  height: 42px;
  overflow: visible;
  color: var(--blue-deep);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-marker svg circle { fill: #f1ece2; }

.problem-marker .broken {
  stroke: var(--section-gold);
  stroke-dasharray: 3 4;
}

.problem-point h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(20px, 1.25vw, 22px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: .035em;
}

.problem-point > p {
  max-width: none;
  margin: 15px 0 0;
  color: #435f6c;
  font-size: clamp(18px, 1.08vw, 19.5px);
  line-height: 1.55;
}

.problems-cta {
  position: relative;
  max-width: 900px;
  margin: clamp(34px, 3.2vw, 48px) auto 0;
  padding: 21px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 52px);
  background: #f8f3e9;
  border: 1px solid rgba(217, 170, 63, .42);
  border-radius: 4px;
}

.problems-cta::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: 52px;
  height: 2px;
  background: rgba(217, 170, 63, .86);
  transform: translateX(-50%);
}

.problems-cta p {
  margin: 0;
  color: var(--navy-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
}

.problems-cta a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}

.problems-cta a span {
  font-size: 21px;
  font-weight: 400;
  transition: transform .2s ease;
}

.problems-cta a:hover span { transform: translateX(4px); }
.problems-cta a:focus-visible { outline: 3px solid rgba(8, 121, 186, .3); outline-offset: 5px; }

.backbone-framework {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 11% 18%, rgba(255, 255, 255, .94), transparent 29rem),
    linear-gradient(118deg, #fbf8f1 0%, #f4eee2 100%);
  border-top: 1px solid rgba(217, 170, 63, .52);
}

.backbone-framework::before {
  content: "";
  position: absolute;
  top: 0;
  right: 7%;
  width: min(680px, 48vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8, 121, 186, .48), transparent);
}

.framework-shell {
  position: relative;
  z-index: 1;
  width: min(1504px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(84px, 7vw, 112px) 32px clamp(90px, 7.5vw, 120px);
  display: grid;
  grid-template-columns: minmax(360px, .7fr) minmax(700px, 1.4fr);
  align-items: start;
  gap: clamp(40px, 4vw, 64px);
}

.framework-copy {
  max-width: 540px;
  padding-top: clamp(56px, 5vw, 76px);
}

.framework-eyebrow {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--blue-deep);
  font-size: clamp(14px, .92vw, 16px);
  font-weight: 800;
  letter-spacing: .2em;
}

.framework-eyebrow span {
  width: 44px;
  height: 2px;
  background: #d9aa3f;
}

.framework-copy h2 {
  margin: 0;
  max-width: 560px;
  color: var(--navy);
  font-size: clamp(40px, 3.4vw, 54px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.047em;
}

.framework-copy h2 span { display: inline; }

.framework-intro {
  max-width: 530px;
  margin: 30px 0 0;
  color: #3f5968;
  font-size: clamp(18px, 1.22vw, 20px);
  line-height: 1.68;
}

.framework-message {
  position: relative;
  max-width: 520px;
  margin-top: 38px;
  padding: 5px 10px 5px 28px;
  background: rgba(217, 170, 63, .035);
  border: 0;
  border-left: 3px solid #d9aa3f;
}

.framework-message::after {
  content: none;
}

.framework-message > span {
  display: none;
}

.framework-message p {
  margin: 0;
  color: #173f54;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.4vw, 23px);
  line-height: 1.55;
}

.backbone-architecture {
  position: relative;
  min-width: 0;
  min-height: 588px;
  padding: 24px 17px 18px;
  overflow: hidden;
  background: #f8f3e9;
  border: 1px solid rgba(8, 43, 66, .13);
  box-shadow: 0 24px 55px rgba(49, 39, 24, .1);
}

.backbone-architecture::before,
.backbone-architecture::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  pointer-events: none;
}

.backbone-architecture::before {
  top: 13px;
  left: 13px;
  border-top: 2px solid rgba(217, 170, 63, .86);
  border-left: 2px solid rgba(217, 170, 63, .86);
}

.backbone-architecture::after {
  right: 13px;
  bottom: 13px;
  border-right: 2px solid rgba(8, 121, 186, .58);
  border-bottom: 2px solid rgba(8, 121, 186, .58);
}

.backbone-map {
  position: relative;
  height: 500px;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  column-gap: 284px;
  row-gap: 16px;
  align-content: start;
  align-items: stretch;
}

.backbone-connections {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: rgba(8, 84, 116, .68);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
}

.backbone-core {
  position: absolute;
  z-index: 4;
  top: 35%;
  left: 50%;
  width: 220px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--navy);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 9px;
  box-shadow: 0 14px 26px rgba(8, 43, 66, .2);
  transform: translate(-50%, -50%);
}

.backbone-core::before {
  content: none;
}

.backbone-core::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 58px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d9aa3f 20% 80%, transparent);
  transform: translateX(-50%);
}

.backbone-core span,
.backbone-core strong {
  position: relative;
  z-index: 2;
  display: block;
  text-align: center;
}

.backbone-core strong {
  color: #fbf8f0;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: .105em;
}

.backbone-part {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 0;
  padding: 15px 18px 16px;
  background: #fffefa;
  border: 1px solid rgba(8, 43, 66, .25);
  border-radius: 10px;
  box-shadow: 0 13px 27px rgba(34, 48, 45, .1), 0 3px 8px rgba(8, 43, 66, .055);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.backbone-part:hover {
  background: #fffdf8;
  border-color: rgba(8, 121, 186, .54);
  box-shadow: 0 14px 30px rgba(34, 48, 45, .09), 0 3px 8px rgba(8, 43, 66, .05);
  transform: translateY(-1px);
}

.backbone-part::after {
  content: none;
}

.backbone-part::before {
  content: none;
}

.backbone-part-strategy { grid-column: 1; grid-row: 1; }
.backbone-part-people { grid-column: 2; grid-row: 1; }
.backbone-part-systems { grid-column: 1; grid-row: 2; }
.backbone-part-technology { grid-column: 2; grid-row: 2; }
.backbone-part-growth {
  position: absolute;
  grid-column: auto;
  grid-row: auto;
  top: calc(35% + 86px);
  right: 0;
  left: 0;
  margin-inline: auto;
  width: calc((100% - 284px) / 2);
  padding-block: 14px 15px;
  justify-self: center;
}

.backbone-part-heading {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.backbone-part-heading span {
  color: #b77a16;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .12em;
}

.backbone-part h3 {
  min-width: 0;
  margin: 0;
  color: var(--navy);
  font-size: clamp(21px, 1.4vw, 24px);
  font-weight: 850;
  letter-spacing: .045em;
  line-height: 1.2;
  white-space: nowrap;
}

.backbone-part p {
  margin: 10px 0 0;
  color: #46616f;
  font-size: clamp(17px, 1.08vw, 18px);
  line-height: 1.5;
}

.backbone-definition {
  margin: -44px auto 0;
  color: #506773;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.backbone-definition strong {
  color: var(--navy);
  font-weight: 800;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1240px) {
  .nav-shell, .hero-shell { width: calc(100% - 32px); }
  .nav-shell { min-height: 82px; column-gap: 18px; }
  .brand { min-width: 0; padding-right: 0; }
  .brand-logo { width: 44px; height: 50px; }
  .brand-wordmark { font-size: 18px; letter-spacing: .085em; }
  .nav-menu { gap: 14px; }
  .nav-menu a { padding: 31px 1px 28px; font-size: 16px; font-weight: 650; }
  .nav-menu a::after { bottom: 21px; }
  .nav-cta { min-height: 52px; padding: 0 24px; font-size: 16px; }
  .hero { min-height: clamp(680px, calc(100svh - 82px), 860px); }
  .hero-shell {
    padding: clamp(24px, 2.6vw, 34px) 0 clamp(50px, 4.8vw, 66px);
    grid-template-columns: minmax(410px, 43fr) minmax(480px, 57fr);
  }
  .hero-visual { width: 100%; margin-left: 0; }
  h1 { font-size: clamp(50px, 4.8vw, 66px); }
  .body-copy { font-size: 18px; }
  .cta-group { flex-wrap: nowrap; }
  .button-primary { flex-basis: 200px; }
  .button-secondary { flex: 1 1 320px; }
}

@media (max-width: 980px) {
  .site-header { position: relative; }
  .nav-shell { width: min(760px, calc(100% - 48px)); min-height: 80px; grid-template-columns: auto 1fr auto; }
  .brand { grid-column: 1; }
  .nav-cta { grid-column: 2; margin-left: 0; justify-self: end; }
  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    width: 42px;
    height: 42px;
    padding: 10px;
    display: grid;
    align-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 10px 24px 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ivory-light);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 30px rgba(8, 43, 66, .08);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 15px 0; font-size: 16px; }
  .nav-menu a::after { bottom: 7px; }
  .hero { min-height: auto; }
  .hero-shell {
    width: min(760px, calc(100% - 48px));
    min-height: 0;
    padding: 50px 0 54px;
    grid-template-columns: 1fr;
    gap: 62px;
  }
  .hero-copy { max-width: 720px; padding: 0; }
  h1 { max-width: 700px; font-size: clamp(56px, 8vw, 76px); }
  .cta-group { max-width: 532px; flex-wrap: nowrap; }
  .button-primary { flex-basis: 200px; }
  .hero-visual { width: 100%; max-width: 760px; margin: 0; }
  .problems-shell { width: min(760px, calc(100% - 48px)); }
  .problems-intro { grid-template-columns: 1fr; gap: 24px; }
  .problems-intro > p { max-width: 340px; justify-self: start; }
  .problem-system { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 36px; }
  .problem-point { grid-column: auto; }
  .problem-point-four, .problem-point-five { grid-column: auto; }
  .problem-point-five { grid-column: 1 / -1; width: calc(50% - 18px); justify-self: center; }
}

@media (max-width: 620px) {
  .nav-shell, .hero-shell { width: calc(100% - 36px); }
  .nav-shell { min-height: 74px; grid-template-columns: auto 1fr; }
  .brand { min-width: 0; padding-right: 0; border-right: 0; }
  .brand-logo { width: 40px; height: 46px; }
  .brand-wordmark { font-size: 16px; letter-spacing: .075em; }
  .nav-cta { display: none; }
  .menu-toggle { grid-column: 2; margin-left: 0; justify-self: end; }
  .nav-menu { top: 74px; padding-inline: 18px; }
  .hero-shell { padding: 38px 0 38px; gap: 48px; }
  .eyebrow { margin-bottom: 22px; font-size: 14px; }
  h1 { font-size: clamp(44px, 13vw, 60px); line-height: .99; }
  .supporting-headline { margin-top: 23px; font-size: 22px; }
  .body-copy { margin-top: 21px; font-size: 17px; line-height: 1.65; }
  .cta-group { margin-top: 30px; flex-direction: column; }
  .button { width: 100%; height: 56px; min-height: 56px; padding-inline: 18px; }
  .button-primary,
  .button-secondary { max-width: none; flex: 0 0 56px; }
  .cta-note { margin-top: 14px; }
  .problems-shell { width: calc(100% - 36px); padding: 46px 0 62px; }
  .section-eyebrow { margin-bottom: 12px; font-size: 15px; }
  .section-eyebrow span { width: 46px; }
  .problems-intro { min-height: 0; padding: 28px 22px 26px; }
  .problems-intro h2 { font-size: clamp(36px, 9.8vw, 44px); line-height: 1.04; }
  .problems-intro h2 span:first-child { font-size: .82em; }
  .problems-intro > p { padding-left: 17px; font-size: 17px; }
  .problem-system { margin-top: 22px; grid-template-columns: 1fr; row-gap: 34px; }
  .problem-system::before { display: none; }
  .problem-point,
  .problem-point-five { grid-column: 1; width: 100%; min-height: 0; padding: 24px 22px; }
  .problem-marker { margin-bottom: 20px; }
  .problem-point > p { max-width: none; }
  .problems-cta { margin-top: 34px; padding: 22px 18px; align-items: center; flex-direction: column; gap: 14px; text-align: center; }
  .problems-cta a { line-height: 1.45; }
}

@media (max-width: 1240px) {
  .framework-shell {
    width: min(1504px, calc(100% - 16px));
    padding-inline: 8px;
    grid-template-columns: minmax(300px, .6fr) minmax(718px, 1.4fr);
    gap: 18px;
  }
  .backbone-architecture { min-height: 598px; padding: 22px 17px 18px; }
  .backbone-map { height: 510px; min-height: 0; column-gap: 232px; row-gap: 14px; }
  .backbone-core { top: 37.5%; width: 184px; height: 102px; }
  .backbone-core strong { font-size: 15px; }
  .backbone-part { padding: 14px 17px 15px; }
  .backbone-part-growth { top: calc(37.5% + 80px); width: calc((100% - 232px) / 2); }
}

@media (max-width: 1080px) {
  .framework-shell {
    width: min(760px, calc(100% - 48px));
    padding: 76px 0 88px;
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .framework-copy { max-width: 680px; padding-top: 0; }
  .framework-copy h2 { max-width: 650px; }
  .framework-intro { max-width: 650px; }
  .framework-message { max-width: 620px; }
  .backbone-architecture { width: 100%; max-width: 760px; min-height: 568px; padding: 22px 11px 18px; }
  .backbone-map { height: 480px; min-height: 0; column-gap: 260px; row-gap: 16px; }
  .backbone-core { top: 35%; width: 214px; height: 106px; }
  .backbone-part-growth { top: calc(35% + 86px); width: calc((100% - 260px) / 2); }
}

@media (max-width: 680px) {
  .framework-shell {
    width: calc(100% - 36px);
    padding: 60px 0 70px;
    gap: 42px;
  }
  .framework-eyebrow { margin-bottom: 18px; font-size: 13px; letter-spacing: .16em; }
  .framework-eyebrow span { width: 34px; }
  .framework-copy h2 { max-width: 340px; font-size: clamp(38px, 10vw, 44px); }
  .framework-intro { margin-top: 24px; font-size: 17px; line-height: 1.64; }
  .framework-message { margin-top: 30px; padding: 3px 8px 3px 22px; }
  .framework-message p { font-size: 18px; }
  .backbone-architecture { min-height: 0; padding: 26px 20px 24px; }
  .backbone-map {
    height: auto;
    min-height: 0;
    display: block;
    padding-left: 30px;
  }
  .backbone-map::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 92px;
    bottom: 42px;
    left: 14px;
    width: 2px;
    background: linear-gradient(#d9aa3f, var(--blue) 18% 82%, #d9aa3f);
  }
  .backbone-connections { display: none; }
  .backbone-core {
    position: relative;
    top: auto;
    left: auto;
    width: 230px;
    height: 104px;
    margin: 0 auto 24px;
    transform: none;
  }
  .backbone-part,
  .backbone-part-left,
  .backbone-part-right {
    width: 100%;
    margin: 0 0 15px;
    padding: 16px 17px 17px;
  }
  .backbone-part-growth {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    margin-inline: 0;
  }
  .backbone-part::after,
  .backbone-part-left::after,
  .backbone-part-right::after {
    content: "";
    position: absolute;
    top: 32px;
    left: -30px;
    width: 30px;
    height: 1px;
    background: rgba(8, 121, 186, .48);
  }
  .backbone-part::before,
  .backbone-part-left::before,
  .backbone-part-right::before {
    content: none;
  }
  .backbone-part h3 { font-size: 19px; }
  .backbone-part p { margin-left: 0; font-size: 17px; }
  .backbone-definition { margin-top: 10px; font-size: 14px; }
}

/* Section 4 — customer-facing solution wayfinding */
.solutions-section {
  position: relative;
  overflow: hidden;
  background: #edf3f5;
  border-top: 1px solid rgba(8, 43, 66, .1);
}

.solutions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1504px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8, 121, 186, .48) 18%, rgba(217, 170, 63, .58) 50%, rgba(8, 121, 186, .48) 82%, transparent);
  transform: translateX(-50%);
}

.solutions-shell {
  position: relative;
  width: min(1504px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(86px, 7vw, 112px) 32px clamp(82px, 6.8vw, 108px);
}

.solutions-intro {
  max-width: 1400px;
  margin: 0 auto;
}

.solutions-eyebrow {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .22em;
}

.solutions-eyebrow span {
  width: 42px;
  height: 2px;
  background: #d9aa3f;
}

.solutions-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .68fr);
  align-items: end;
  gap: clamp(50px, 7vw, 112px);
}

.solutions-heading > p {
  margin: 0 0 12px;
  color: #6b8290;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2em;
}

.solutions-heading h2 {
  max-width: 780px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(52px, 4.7vw, 72px);
  font-weight: 780;
  letter-spacing: -.047em;
  line-height: 1.01;
}

.solutions-lede {
  max-width: 510px;
  margin: 0 0 5px;
  padding-left: 24px;
  color: #355563;
  border-left: 2px solid rgba(217, 170, 63, .9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.58;
}

.solution-wayfinding {
  max-width: 1400px;
  margin: clamp(54px, 5.3vw, 78px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-path {
  position: relative;
  min-width: 0;
  min-height: 236px;
  padding: 31px 31px 28px;
  display: flex;
  flex-direction: column;
  color: var(--navy);
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(8, 43, 66, .17);
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(30, 61, 76, .035);
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.solution-path::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 78px;
  height: 2px;
  background: #d9aa3f;
}

.solution-path::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 24px;
  height: 24px;
  border-right: 1px solid rgba(8, 121, 186, .25);
  border-bottom: 1px solid rgba(8, 121, 186, .25);
  transition: border-color .22s ease;
}

.solution-route {
  display: flex;
  align-items: center;
  gap: 13px;
}

.solution-route span {
  color: #a66f15;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .12em;
}

.solution-route i {
  width: 38px;
  height: 1px;
  display: block;
  background: rgba(8, 121, 186, .42);
  transition: width .22s ease, background-color .22s ease;
}

.solution-path h3 {
  max-width: calc(100% - 34px);
  margin: 27px 0 11px;
  color: var(--navy);
  font-size: clamp(22px, 1.65vw, 27px);
  font-weight: 800;
  letter-spacing: -.022em;
  line-height: 1.12;
}

.solution-path p {
  max-width: 340px;
  margin: 0;
  color: #45606d;
  font-size: 17px;
  line-height: 1.56;
}

.solution-arrow {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 1;
  color: var(--blue-deep);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  transition: transform .22s ease, color .22s ease;
}

.solution-path:hover,
.solution-path:focus-visible {
  background: rgba(255, 255, 255, .92);
  border-color: rgba(8, 121, 186, .48);
  box-shadow: 0 13px 30px rgba(30, 61, 76, .07);
  transform: translateY(-2px);
}

.solution-path:hover::after,
.solution-path:focus-visible::after { border-color: rgba(8, 121, 186, .55); }

.solution-path:hover .solution-route i,
.solution-path:focus-visible .solution-route i { width: 50px; background: var(--blue); }

.solution-path:hover .solution-arrow,
.solution-path:focus-visible .solution-arrow { color: var(--blue); transform: translateX(4px); }

.solution-path:focus-visible,
.solutions-cta a:focus-visible { outline: 3px solid rgba(8, 121, 186, .3); outline-offset: 3px; }

.solutions-cta {
  max-width: 1400px;
  margin: 38px auto 0;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-top: 1px solid rgba(8, 43, 66, .13);
}

.solutions-cta > span {
  color: #607784;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.solutions-cta a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
}

.solutions-cta a span { color: var(--blue-deep); font-size: 20px; transition: transform .2s ease; }
.solutions-cta a:hover span { transform: translateX(4px); }

@media (max-width: 1100px) {
  .solutions-shell { width: min(900px, calc(100% - 48px)); padding-inline: 0; }
  .solutions-heading-row { grid-template-columns: 1fr; gap: 28px; }
  .solutions-lede { max-width: 590px; }
  .solution-wayfinding { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .solutions-shell { width: calc(100% - 36px); padding: 62px 0 68px; }
  .solutions-eyebrow { margin-bottom: 19px; font-size: 13px; }
  .solutions-heading > p { font-size: 12px; }
  .solutions-heading h2 { max-width: 520px; font-size: clamp(42px, 12vw, 56px); }
  .solutions-lede { padding-left: 18px; font-size: 18px; }
  .solution-wayfinding { margin-top: 42px; grid-template-columns: 1fr; gap: 14px; }
  .solution-path { min-height: 210px; padding: 27px 25px 25px; }
  .solution-path h3 { margin-top: 23px; font-size: 23px; }
  .solution-path p { padding-right: 30px; font-size: 16.5px; }
  .solution-arrow { right: 24px; bottom: 22px; }
  .solutions-cta { margin-top: 30px; padding-top: 23px; flex-direction: column; gap: 10px; text-align: center; }
  .solutions-cta a { font-size: 14px; }
}

/* Section 4 — consultation and diagnostic pathway */
.solutions-section {
  background: #edf3f5;
}

.solutions-section::after {
  content: "";
  position: absolute;
  right: max(24px, calc((100% - 1400px) / 2));
  bottom: 0;
  width: 34px;
  height: 34px;
  border-right: 1px solid rgba(8, 121, 186, .28);
  border-bottom: 1px solid rgba(8, 121, 186, .28);
}

.solutions-shell {
  width: min(1504px, calc(100% - 48px));
  padding: clamp(88px, 7vw, 114px) 32px clamp(84px, 6.8vw, 110px);
}

.consultation-intro {
  max-width: 1400px;
  margin: 0 auto;
}

.solutions-eyebrow {
  margin-bottom: 27px;
  color: var(--blue-deep);
}

.consultation-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .72fr);
  align-items: end;
  gap: clamp(52px, 7vw, 116px);
}

.consultation-heading-row h2 {
  max-width: 800px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(54px, 4.8vw, 74px);
  font-weight: 780;
  letter-spacing: -.048em;
  line-height: 1.01;
}

.consultation-copy {
  max-width: 520px;
  padding: 4px 0 3px 25px;
  border-left: 2px solid rgba(217, 170, 63, .92);
}

.consultation-kicker {
  margin: 0 0 10px;
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 2.2vw, 35px);
  font-weight: 800;
  line-height: 1.15;
}

.consultation-lede {
  margin: 0;
  color: #355563;
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.62;
}

.consultation-journey {
  position: relative;
  max-width: 1400px;
  margin: clamp(38px, 3.7vw, 54px) auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  background: rgba(255, 255, 255, .46);
  border: 1px solid rgba(8, 43, 66, .15);
  border-radius: 7px;
  box-shadow: 0 18px 44px rgba(30, 61, 76, .045);
}

.consultation-journey::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 112px;
  height: 2px;
  background: #d9aa3f;
}

.journey-step {
  position: relative;
  min-width: 0;
  min-height: 276px;
  padding: 38px clamp(30px, 2.6vw, 42px) 40px;
}

.journey-step + .journey-step {
  border-left: 1px solid rgba(8, 43, 66, .13);
}

.journey-step:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 45px;
  right: -25px;
  width: 50px;
  height: 1px;
  background: rgba(8, 121, 186, .4);
}

.journey-step:not(:last-child)::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 41.5px;
  right: -27px;
  width: 8px;
  height: 8px;
  background: rgba(8, 121, 186, .68);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.journey-marker {
  display: flex;
  align-items: center;
  gap: 14px;
}

.journey-marker span {
  color: #a66f15;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .12em;
}

.journey-marker i {
  width: 48px;
  height: 1px;
  display: block;
  background: rgba(8, 121, 186, .4);
}

.journey-step h3 {
  max-width: 340px;
  margin: 30px 0 13px;
  color: var(--navy);
  font-size: clamp(23px, 1.65vw, 27px);
  font-weight: 800;
  letter-spacing: -.024em;
  line-height: 1.13;
}

.journey-step p {
  max-width: 350px;
  margin: 0;
  color: #45606d;
  font-size: 17px;
  line-height: 1.62;
}

.consultation-actions {
  max-width: 1400px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.consultation-primary {
  min-height: 60px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: white;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 3px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.consultation-primary span {
  color: #8fd3f4;
  font-size: 22px;
  transition: transform .2s ease;
}

.consultation-primary:hover,
.consultation-primary:focus-visible {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-1px);
}

.consultation-primary:hover span,
.consultation-primary:focus-visible span { transform: translateX(4px); }

.consultation-secondary {
  min-width: 0;
  padding: 18px 0 18px clamp(28px, 4vw, 58px);
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 18px;
  border-left: 1px solid rgba(8, 43, 66, .15);
}

.consultation-secondary > span {
  color: #758892;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  white-space: nowrap;
}

.consultation-secondary a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #3b5361;
  font-size: 13.5px;
  font-weight: 750;
  letter-spacing: .055em;
  line-height: 1.45;
  opacity: .88;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity .2s ease;
}

.consultation-secondary a span {
  color: #527f98;
  font-size: 19px;
  transition: transform .2s ease;
}

.consultation-secondary a:hover span,
.consultation-secondary a:focus-visible span { transform: translateX(4px); }

.consultation-secondary a:hover,
.consultation-secondary a:focus-visible { opacity: 1; }

.consultation-primary:focus-visible,
.consultation-secondary a:focus-visible {
  outline: 3px solid rgba(8, 121, 186, .3);
  outline-offset: 3px;
}

@media (max-width: 1060px) {
  .solutions-shell { width: min(900px, calc(100% - 48px)); padding-inline: 0; }
  .consultation-heading-row { grid-template-columns: 1fr; gap: 30px; }
  .consultation-copy { max-width: 650px; }
  .consultation-journey { grid-template-columns: 1fr; }
  .journey-step { min-height: 0; padding: 32px 36px 34px; }
  .journey-step + .journey-step { border-top: 1px solid rgba(8, 43, 66, .13); border-left: 0; }
  .journey-step:not(:last-child)::after {
    content: "";
    top: auto;
    right: auto;
    bottom: -22px;
    left: 50%;
    width: 1px;
    height: 44px;
    background: rgba(8, 121, 186, .38);
    transform: none;
  }
  .journey-step:not(:last-child)::before {
    top: auto;
    right: auto;
    bottom: -24px;
    left: calc(50% - 4px);
    width: 8px;
    height: 8px;
    background: rgba(8, 121, 186, .66);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .journey-step h3,
  .journey-step p { max-width: 720px; }
  .consultation-actions { grid-template-columns: 1fr; gap: 20px; }
  .consultation-primary { justify-self: start; }
  .consultation-secondary { padding: 20px 0 0; justify-content: flex-start; border-top: 1px solid rgba(8, 43, 66, .13); border-left: 0; }
}

@media (max-width: 650px) {
  .solutions-shell { width: calc(100% - 36px); padding: 62px 0 70px; }
  .solutions-eyebrow { margin-bottom: 20px; font-size: 12px; letter-spacing: .17em; }
  .solutions-eyebrow span { width: 36px; }
  .consultation-heading-row h2 { font-size: clamp(42px, 11.7vw, 54px); }
  .consultation-copy { padding-left: 18px; }
  .consultation-kicker { font-size: 26px; }
  .consultation-lede { font-size: 17px; }
  .consultation-journey { margin-top: 42px; }
  .journey-step { padding: 29px 24px 31px; }
  .journey-step h3 { margin-top: 24px; font-size: 22px; }
  .journey-step p { font-size: 16.5px; }
  .consultation-actions { margin-top: 31px; }
  .consultation-primary { width: 100%; min-height: 58px; padding-inline: 20px; }
  .consultation-secondary { align-items: flex-start; flex-direction: column; gap: 9px; }
  .consultation-secondary > span { font-size: 17px; }
  .consultation-secondary a { font-size: 13.5px; }
}

/* Section 5: evidence without invented claims */
.proof-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(8, 43, 66, .1);
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 255, 255, .92), transparent 32rem),
    #f8f4eb;
}

.proof-shell {
  width: min(1504px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(86px, 7vw, 118px) 0 clamp(78px, 6.5vw, 108px);
}

.proof-eyebrow {
  margin-bottom: 27px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #9a681a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2em;
}

.proof-eyebrow span {
  width: 34px;
  height: 2px;
  background: #d9aa3f;
}

.proof-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  align-items: end;
  gap: clamp(50px, 8vw, 130px);
}

.proof-heading-row h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(50px, 4.25vw, 72px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .98;
}

.proof-heading-row h2 span { display: block; }
.proof-heading-row h2 span:last-child { color: var(--blue-deep); }

.proof-heading-row > p {
  max-width: 390px;
  margin: 0 0 5px;
  padding-left: 25px;
  color: #405c6b;
  border-left: 2px solid #d9aa3f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.55;
}

.proof-feature {
  margin-top: clamp(52px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(520px, 1.18fr);
  overflow: hidden;
  border: 1px solid rgba(8, 43, 66, .17);
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: 0 24px 60px rgba(28, 46, 53, .1);
}

.proof-visual {
  position: relative;
  min-height: 650px;
  padding: clamp(36px, 3.4vw, 52px);
  display: flex;
  flex-direction: column;
  color: #fffaf0;
  background:
    linear-gradient(135deg, rgba(8, 121, 186, .16), transparent 45%),
    #0b3042;
}

.proof-visual::before,
.proof-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.proof-visual::before {
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: rgba(217, 170, 63, .55);
}

.proof-visual::after {
  right: -115px;
  bottom: -150px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 66px rgba(255, 255, 255, .025), 0 0 0 132px rgba(255, 255, 255, .018);
}

.proof-visual-heading { position: relative; z-index: 1; }

.proof-visual-heading > span,
.proof-story-heading > span,
.proof-standard > span,
.proof-meta span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}

.proof-visual-heading > span { color: #d9aa3f; }

.proof-visual-heading strong {
  max-width: 460px;
  margin-top: 18px;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.proof-sequence {
  position: relative;
  z-index: 1;
  margin: auto 0;
  display: grid;
  grid-template-columns: minmax(54px, auto) minmax(18px, 1fr) minmax(54px, auto) minmax(18px, 1fr) minmax(54px, auto) minmax(18px, 1fr) minmax(54px, auto);
  align-items: center;
  gap: 10px;
}

.proof-sequence div {
  min-width: 0;
  text-align: center;
}

.proof-sequence div span {
  color: #d9aa3f;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

.proof-sequence div strong {
  margin-top: 8px;
  display: block;
  font-size: 10px;
  letter-spacing: .11em;
}

.proof-sequence i {
  position: relative;
  height: 1px;
  display: block;
  background: rgba(142, 206, 238, .52);
}

.proof-sequence i::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d9aa3f;
}

.proof-standard {
  position: relative;
  z-index: 1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.proof-standard > span { color: #8fd3f4; }

.proof-standard p {
  max-width: 410px;
  margin: 10px 0 0;
  color: rgba(255, 250, 240, .82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.55;
}

.proof-story {
  padding: clamp(36px, 3.9vw, 58px) clamp(34px, 4.2vw, 64px);
}

.proof-story-heading > span { color: #9a681a; }

.proof-story-heading h3 {
  max-width: 710px;
  margin: 15px 0 0;
  color: var(--navy);
  font-size: clamp(28px, 2.35vw, 38px);
  font-weight: 780;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.proof-story-heading p {
  max-width: 720px;
  margin: 15px 0 0;
  color: #55707d;
  font-size: 16px;
  line-height: 1.58;
}

.proof-meta {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(8, 43, 66, .14);
  border-bottom: 1px solid rgba(8, 43, 66, .14);
}

.proof-meta div { padding: 19px 0 20px; }
.proof-meta div + div { padding-left: 28px; border-left: 1px solid rgba(8, 43, 66, .14); }
.proof-meta span { color: #9a681a; }

.proof-meta strong {
  margin-top: 7px;
  display: block;
  color: #49626f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 500;
}

.proof-ledger { margin-top: 9px; }

.proof-ledger section {
  padding: 19px 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  border-bottom: 1px solid rgba(8, 43, 66, .12);
}

.proof-ledger section > span {
  padding-top: 2px;
  color: #a66f15;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .1em;
}

.proof-ledger h4 {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 820;
  letter-spacing: .055em;
}

.proof-ledger p {
  max-width: 700px;
  margin: 7px 0 0;
  color: #496673;
  font-size: 15.5px;
  line-height: 1.52;
}

.proof-footer {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.proof-footer p {
  margin: 0;
  color: #6a7e88;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.proof-footer a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .075em;
  text-decoration: none;
  text-transform: uppercase;
}

.proof-footer a span {
  color: var(--blue);
  font-size: 20px;
  transition: transform .2s ease;
}

.proof-footer a:hover span,
.proof-footer a:focus-visible span { transform: translateX(4px); }

.proof-footer a:focus-visible {
  outline: 3px solid rgba(8, 121, 186, .26);
  outline-offset: 5px;
}

@media (max-width: 1100px) {
  .proof-shell { width: min(900px, calc(100% - 48px)); }
  .proof-heading-row { grid-template-columns: 1fr; align-items: start; gap: 28px; }
  .proof-heading-row > p { max-width: 620px; }
  .proof-feature { grid-template-columns: 1fr; }
  .proof-visual { min-height: 460px; }
}

@media (max-width: 650px) {
  .proof-shell { width: calc(100% - 36px); padding: 66px 0 72px; }
  .proof-eyebrow { margin-bottom: 20px; font-size: 12px; }
  .proof-heading-row h2 { font-size: clamp(41px, 11.5vw, 54px); line-height: 1.01; }
  .proof-heading-row > p { padding-left: 18px; font-size: 18px; }
  .proof-feature { margin-top: 42px; border-radius: 9px; }
  .proof-visual { min-height: 415px; padding: 30px 24px; }
  .proof-visual-heading strong { font-size: 34px; }
  .proof-sequence {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
  }
  .proof-sequence i { display: none; }
  .proof-sequence div strong { font-size: 9px; letter-spacing: .07em; }
  .proof-standard p { font-size: 16px; }
  .proof-story { padding: 32px 24px 28px; }
  .proof-story-heading h3 { font-size: 29px; }
  .proof-meta { grid-template-columns: 1fr; }
  .proof-meta div + div { padding-left: 0; border-top: 1px solid rgba(8, 43, 66, .12); border-left: 0; }
  .proof-ledger section { grid-template-columns: 32px minmax(0, 1fr); gap: 10px; }
  .proof-ledger p { font-size: 15px; }
  .proof-footer { align-items: flex-start; flex-direction: column; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Section 5 — Legacy Center featured work */
.proof-section {
  border-top: 1px solid rgba(8, 43, 66, .1);
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 255, 255, .95), transparent 33rem),
    #f8f4eb;
}

.proof-shell {
  width: min(1504px, calc(100% - 48px));
  padding: clamp(76px, 6vw, 98px) 0 clamp(68px, 5.5vw, 88px);
}

.proof-eyebrow { color: #9a681a; }
.proof-eyebrow span { background: #d9aa3f; }

.proof-heading-row {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
  align-items: end;
}

.proof-heading-row h2 {
  max-width: 920px;
  font-size: clamp(49px, 4.15vw, 70px);
}

.proof-heading-row h2 span:last-child { color: var(--blue-deep); }

.proof-heading-row > p {
  max-width: 410px;
  color: #405c6b;
  border-left-color: #d9aa3f;
  font-size: 20px;
}

.legacy-case-study {
  margin-top: clamp(44px, 4vw, 60px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(600px, 1.1fr);
  overflow: hidden;
  border: 1px solid rgba(8, 43, 66, .17);
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: 0 24px 60px rgba(28, 46, 53, .1);
  align-items: start;
}

.legacy-project-column {
  min-width: 0;
  align-self: start;
}

.legacy-project-visual {
  min-width: 0;
  min-height: 0;
  padding: clamp(24px, 2.4vw, 34px);
  display: flex;
  flex-direction: column;
  color: #fffaf0;
  background:
    linear-gradient(135deg, rgba(8, 121, 186, .14), transparent 44%),
    #0b3042;
}

.project-browser {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 9px;
  background: #eef3f5;
  box-shadow: 0 24px 48px rgba(0, 13, 22, .28);
}

.project-browser-bar {
  height: 38px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(8, 43, 66, .14);
  background: #f8faf9;
}

.project-browser-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d2d9db;
}

.project-browser-bar span:first-child { background: #d9aa3f; }

.project-browser-bar i {
  margin-left: auto;
  color: #647b86;
  font-size: 9px;
  font-style: normal;
  font-weight: 750;
  letter-spacing: .13em;
}

.project-browser > img {
  width: 100%;
  height: auto;
  display: block;
}

.project-visual-caption {
  margin-top: 22px;
  padding-top: 21px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.project-visual-caption span {
  color: #d9aa3f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.project-visual-caption p {
  margin: 0;
  color: rgba(255, 250, 240, .82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.legacy-case-narrative {
  min-width: 0;
  padding: clamp(30px, 2.6vw, 40px) clamp(30px, 3vw, 46px);
}

.legacy-case-heading {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.legacy-client-logo {
  position: relative;
  width: 142px;
  height: 76px;
  overflow: hidden;
  border: 1px solid rgba(8, 43, 66, .12);
  border-radius: 6px;
  background: #eef3f5;
}

.legacy-client-logo img {
  position: absolute;
  top: -24px;
  left: -46px;
  width: 997px;
  max-width: none;
  height: 720px;
}

.legacy-case-heading > div:last-child > span {
  color: #9a681a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.legacy-case-heading h3 {
  margin: 8px 0 6px;
  color: var(--navy);
  font-size: clamp(34px, 2.8vw, 46px);
  font-weight: 790;
  letter-spacing: -.04em;
  line-height: 1;
}

.legacy-case-heading p {
  margin: 0;
  color: #516b78;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.legacy-case-heading p i,
.project-previews p i {
  padding: 0 3px;
  color: #c88f26;
  font-style: normal;
}

.legacy-case-ledger {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(22px, 2.2vw, 34px);
}

.legacy-case-ledger section {
  padding: 14px 0 15px;
  border-top: 1px solid rgba(8, 43, 66, .13);
}

.case-section-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-section-label > span {
  color: #a66f15;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .1em;
}

.case-section-label h4 {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 820;
  letter-spacing: .055em;
}

.case-section-label em {
  margin-left: auto;
  color: #61869a;
  font-size: 9px;
  font-style: normal;
  font-weight: 750;
  letter-spacing: .13em;
}

.legacy-case-ledger section > p {
  max-width: 38ch;
  margin: 9px 0 0;
  color: #496673;
  font-size: 16.5px;
  line-height: 1.58;
}

.case-editable {
  min-height: 49px;
  padding: 9px 12px;
  border: 1px dashed rgba(8, 121, 186, .23);
  border-radius: 4px;
  background: rgba(237, 243, 245, .42);
  outline: none;
}

.case-editable:empty::before {
  content: attr(data-placeholder);
  color: #718691;
  font-style: italic;
}

.case-editable:focus {
  border-color: rgba(8, 121, 186, .58);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(8, 121, 186, .09);
}

.case-editable:focus:empty::before { color: #9baab1; }

.google-proof {
  margin-top: 22px;
  padding: 25px clamp(24px, 3vw, 42px);
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 74px);
  border: 1px solid rgba(8, 43, 66, .15);
  border-radius: 8px;
  background: rgba(255, 255, 255, .7);
}

.legacy-project-column .google-proof {
  margin: 18px clamp(24px, 2.4vw, 34px) 0;
  padding: 20px 22px;
  display: block;
  background: #fffdf8;
}

.google-proof-kicker {
  display: block;
  color: #9a681a;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .16em;
  line-height: 1.35;
}

.legacy-project-column .google-rating { margin-top: 12px; }

.google-rating {
  display: flex;
  align-items: center;
  gap: 22px;
}

.google-stars {
  color: #d9aa3f;
  font-size: clamp(22px, 2.1vw, 30px);
  letter-spacing: .11em;
  line-height: 1;
  white-space: nowrap;
}

.google-rating strong {
  display: block;
  color: var(--navy);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
}

.google-rating p {
  margin: 4px 0 0;
  color: #607783;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.google-review-excerpts:empty { display: none; }
.google-review-excerpts[hidden] { display: none !important; }

.google-review-excerpts:not(:empty) {
  min-width: 0;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid rgba(8, 43, 66, .13);
}

.google-review-excerpts blockquote {
  margin: 0;
  padding: 0 24px;
  color: #496673;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.5;
}

.google-review-excerpts blockquote + blockquote { border-left: 1px solid rgba(8, 43, 66, .13); }

.legacy-ongoing {
  margin-top: 2px;
  padding: 16px 19px;
  border-left: 2px solid #d9aa3f;
  background: #f4efe5;
}

.legacy-ongoing span {
  color: #9a681a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.legacy-ongoing p {
  margin: 8px 0 0;
  color: #2d5060;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.5;
}

.project-previews-heading {
  margin-top: clamp(38px, 3.7vw, 52px);
  padding-bottom: 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(8, 43, 66, .17);
}

.project-previews-heading > span {
  color: #9a681a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.project-previews-heading > p {
  margin: 0;
  color: #738791;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.project-previews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-previews article {
  min-width: 0;
  padding: 25px 24px 27px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  border-bottom: 1px solid rgba(8, 43, 66, .13);
}

.project-previews article:first-child { padding-left: 0; }
.project-previews article:last-child { padding-right: 0; }

.project-previews article + article {
  border-left: 1px solid rgba(8, 43, 66, .13);
}

.project-previews article > span {
  color: #a66f15;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .1em;
}

.project-previews h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.18;
}

.project-previews p {
  margin: 7px 0 0;
  color: #5a717d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.proof-footer {
  margin-top: 22px;
  padding-top: 4px;
}

.proof-footer a { font-size: 14px; }

@media (max-width: 1120px) {
  .proof-shell { width: min(900px, calc(100% - 48px)); }
  .proof-heading-row { grid-template-columns: 1fr; align-items: start; gap: 28px; }
  .proof-heading-row > p { max-width: 650px; }
  .legacy-case-study { grid-template-columns: 1fr; }
  .legacy-project-visual { min-height: 0; }
  .project-visual-caption { margin-top: 24px; }
  .legacy-case-ledger { display: block; }
  .legacy-case-ledger section > p { max-width: 64ch; margin-left: 35px; }
}

@media (max-width: 650px) {
  .proof-shell { width: calc(100% - 36px); padding: 66px 0 72px; }
  .proof-heading-row h2 { font-size: clamp(40px, 11vw, 52px); }
  .proof-heading-row > p { font-size: 18px; }
  .legacy-case-study { margin-top: 42px; border-radius: 9px; }
  .legacy-project-visual { padding: 22px 18px; }
  .project-browser-bar { height: 32px; padding-inline: 11px; }
  .project-browser-bar i { font-size: 8px; }
  .project-visual-caption { align-items: flex-start; flex-direction: column; gap: 7px; }
  .legacy-case-narrative { padding: 30px 22px 26px; }
  .legacy-case-heading { grid-template-columns: 1fr; gap: 18px; }
  .legacy-client-logo { width: 142px; }
  .legacy-case-heading h3 { font-size: 38px; }
  .legacy-case-heading p { font-size: 14px; }
  .case-section-label { flex-wrap: wrap; }
  .case-section-label em { width: 100%; margin: 0 0 0 35px; }
  .legacy-case-ledger section > p { margin-left: 0; font-size: 16px; }
  .legacy-ongoing { padding: 17px 16px; }
  .legacy-ongoing p { font-size: 16px; }
  .google-proof { margin-top: 20px; padding: 22px; }
  .legacy-project-column .google-proof { margin: 14px 18px 0; padding: 20px; }
  .google-rating { align-items: flex-start; flex-direction: column; gap: 12px; }
  .google-review-excerpts:not(:empty) { grid-template-columns: 1fr; border-top: 1px solid rgba(8, 43, 66, .13); border-left: 0; }
  .google-review-excerpts blockquote { padding: 18px 0; }
  .google-review-excerpts blockquote + blockquote { border-top: 1px solid rgba(8, 43, 66, .13); border-left: 0; }
  .project-previews-heading { align-items: flex-start; flex-direction: column; gap: 9px; }
  .project-previews { grid-template-columns: 1fr; }
  .project-previews article,
  .project-previews article + article { padding: 24px 0; border-left: 0; }
  .project-previews article { grid-template-columns: 34px minmax(0, 1fr); gap: 10px; }
  .project-previews h3 { font-size: 20px; }
}

.legacy-social-work {
  margin-top: clamp(42px, 4vw, 58px);
  padding-top: clamp(30px, 3vw, 40px);
  border-top: 1px solid rgba(8, 43, 66, .17);
}

.legacy-social-heading {
  margin-bottom: 25px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
}

.legacy-social-heading > div > span {
  color: #9a681a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}

.legacy-social-heading h3 {
  margin: 9px 0 0;
  color: var(--navy);
  font-size: clamp(30px, 2.7vw, 42px);
  font-weight: 790;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.legacy-social-heading > p {
  max-width: 390px;
  margin: 0;
  color: #667d88;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.5;
  text-align: right;
}

.legacy-social-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.legacy-social-gallery > a {
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.legacy-social-gallery figure {
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 43, 66, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 12px 28px rgba(28, 46, 53, .07);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.social-artwork {
  aspect-ratio: 4 / 5;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(8, 43, 66, .13);
  background: #e9eff1;
}

.social-artwork img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform .28s ease;
}

.legacy-social-gallery figcaption {
  min-height: 78px;
  padding: 15px 17px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
}

.legacy-social-gallery figcaption span {
  color: #a66f15;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 750;
}

.legacy-social-gallery figcaption div { min-width: 0; }

.legacy-social-gallery figcaption strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.3;
}

.legacy-social-gallery figcaption small {
  margin-top: 6px;
  display: block;
  color: #657b86;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.3;
}

.legacy-social-gallery figcaption small i {
  padding: 0 2px;
  color: #bd8420;
  font-style: normal;
}

.legacy-social-gallery figcaption b {
  color: var(--blue-deep);
  font-size: 16px;
  font-weight: 600;
}

.legacy-social-gallery > a:hover figure,
.legacy-social-gallery > a:focus-visible figure {
  border-color: rgba(8, 121, 186, .42);
  box-shadow: 0 16px 34px rgba(28, 46, 53, .11);
  transform: translateY(-2px);
}

.legacy-social-gallery > a:hover img,
.legacy-social-gallery > a:focus-visible img { transform: scale(1.012); }

.legacy-social-gallery > a:focus-visible {
  border-radius: 8px;
  outline: 3px solid rgba(8, 121, 186, .28);
  outline-offset: 4px;
}

.legacy-video-work {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  align-items: stretch;
  border: 1px solid rgba(8, 43, 66, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .66);
}

.legacy-video-mark {
  min-height: 142px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, .12);
  background: #0b3042;
}

.legacy-video-intro {
  padding: 25px 30px;
}

.legacy-video-intro > span {
  color: #9a681a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.legacy-video-intro h3 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 790;
  letter-spacing: -.025em;
  line-height: 1.12;
}

.legacy-video-intro p {
  max-width: 360px;
  margin: 8px 0 0;
  color: #2d5060;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.48;
}

.legacy-video-action {
  min-width: 260px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-left: 1px solid rgba(8, 43, 66, .14);
  color: var(--navy);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: .08em;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
}

.video-play {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fffaf0;
  border: 1px solid rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  text-indent: 2px;
  transition: background-color .2s ease, transform .2s ease;
}

.legacy-video-action i {
  color: var(--blue-deep);
  font-size: 19px;
  font-style: normal;
  transition: transform .2s ease;
}

.legacy-video-action:hover,
.legacy-video-action:focus-visible { color: var(--blue-deep); background: #fff; }
.legacy-video-action:hover i,
.legacy-video-action:focus-visible i { transform: translateX(3px); }
.legacy-video-action:focus-visible { outline: 3px solid rgba(8, 121, 186, .27); outline-offset: -3px; }

@media (max-width: 1120px) {
  .legacy-video-work { grid-template-columns: 90px minmax(0, 1fr) auto; }
  .legacy-video-action { min-width: 230px; }
}

@media (max-width: 820px) {
  .legacy-social-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legacy-social-gallery > a:last-child {
    width: calc(50% - 8px);
    grid-column: 1 / -1;
    justify-self: center;
  }
}

/* Section 5 — final review strip and selected work */
.featured-google-proof {
  min-height: 0;
  margin-top: 18px;
  padding: 15px clamp(20px, 2.4vw, 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 30px;
}

.featured-google-proof .google-proof-kicker {
  padding-right: 30px;
  border-right: 1px solid rgba(8, 43, 66, .14);
}

.featured-google-proof .google-rating {
  justify-content: flex-start;
  gap: 17px;
}

.featured-google-proof .google-stars {
  font-size: clamp(20px, 1.7vw, 25px);
}

.featured-google-proof .google-rating strong { font-size: 17px; }
.featured-google-proof .google-rating p { margin-top: 2px; font-size: 14px; }

.featured-google-proof .google-review-excerpts:not(:empty) {
  flex: 0 0 100%;
  margin-top: 2px;
  padding-top: 18px;
}

.featured-google-proof + .selected-work {
  margin-top: clamp(38px, 4vw, 56px);
}

.selected-work {
  padding-top: clamp(27px, 2.7vw, 38px);
}

.selected-work-heading {
  margin-bottom: 26px;
  grid-template-columns: minmax(130px, .24fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 4.5vw, 72px);
}

.selected-work-heading > span { padding-top: 7px; }

.selected-work-heading > div {
  align-items: end;
  gap: clamp(30px, 4vw, 64px);
}

.selected-work-heading h3 {
  flex: 0 0 min(43%, 470px);
  font-size: clamp(32px, 2.8vw, 43px);
  line-height: 1.03;
}

.selected-work-heading h3 span { display: block; }

.selected-work-heading p {
  max-width: 540px;
  font-size: 16.5px;
  line-height: 1.55;
}

.selected-work-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.55vw, 22px);
  border: 0;
}

.selected-work-item {
  min-width: 0;
  padding: clamp(20px, 1.8vw, 27px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(8, 43, 66, .16);
  border-radius: 10px;
  background: rgba(255, 253, 248, .78);
  box-shadow: 0 12px 28px rgba(28, 46, 53, .055);
}

.selected-work-item + .selected-work-item { border-left: 1px solid rgba(8, 43, 66, .16); }

.selected-work-brand {
  height: 122px;
  flex: 0 0 122px;
  border-color: rgba(8, 43, 66, .14);
  border-radius: 7px;
}

.selected-work-brand--church {
  position: relative;
  padding: 22px 24px;
  align-items: flex-start;
  justify-content: center;
  background: #0b3042;
}

.selected-work-brand--church::before {
  width: 36px;
  height: 2px;
  top: 22px;
  right: 22px;
  content: "";
  background: #d9aa3f;
}

.selected-work-brand--church span {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .17em;
}

.selected-work-brand--church strong {
  margin-top: 7px;
  font-size: clamp(17px, 1.45vw, 22px);
  letter-spacing: .065em;
}

.selected-work-brand--ideal img {
  width: auto;
  max-width: calc(100% - 36px);
  height: 112px;
  object-fit: contain;
}

.selected-work-brand--lemon { background: #ed81d0; }

.selected-work-brand--lemon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 61%;
}

.selected-work-copy {
  margin-top: 20px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.selected-work-copy h4 {
  margin-top: 8px;
  font-size: clamp(20px, 1.55vw, 24px);
}

.selected-work-copy .selected-work-services {
  min-height: 42px;
  margin-top: 8px;
  color: #365c6d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .045em;
  line-height: 1.45;
  text-transform: uppercase;
}

.selected-work-copy .selected-work-description {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(8, 43, 66, .12);
  color: #536d79;
  font-size: 15.5px;
  line-height: 1.56;
}

.proof-footer--selected-work {
  margin-top: 26px;
  padding-top: 0;
  justify-content: flex-end;
  gap: 14px;
}

.proof-footer--selected-work .proof-more-work,
.proof-footer--selected-work .proof-start-conversation {
  min-height: 48px;
  padding: 0 22px;
  justify-content: center;
  border-radius: 5px;
}

.proof-footer--selected-work .proof-more-work {
  border: 1px solid rgba(8, 43, 66, .22);
  background: transparent;
}

.proof-footer--selected-work .proof-start-conversation {
  border: 1px solid var(--navy);
  color: #fffaf0;
  background: var(--navy);
}

.proof-footer--selected-work .proof-start-conversation span { color: #d9aa3f; }

.proof-footer--selected-work .proof-more-work:hover,
.proof-footer--selected-work .proof-more-work:focus-visible { background: rgba(255, 255, 255, .74); }

.proof-footer--selected-work .proof-start-conversation:hover,
.proof-footer--selected-work .proof-start-conversation:focus-visible { background: #10394b; }

@media (max-width: 1120px) {
  .selected-work-heading { grid-template-columns: 1fr; gap: 12px; }
  .selected-work-heading > span { padding-top: 0; }
  .selected-work-heading > div { align-items: flex-start; }
  .selected-work-heading h3 { flex-basis: 48%; }
  .selected-work-heading p { text-align: left; }
  .selected-work-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .selected-work-item:nth-child(odd) { border-left: 1px solid rgba(8, 43, 66, .16); }
  .selected-work-item:nth-child(n + 3) { border-top: 1px solid rgba(8, 43, 66, .16); }
  .selected-work-item:last-child { grid-column: 1 / -1; }
  .selected-work-item:last-child .selected-work-brand { max-width: 420px; }
}

@media (max-width: 650px) {
  .featured-google-proof {
    padding: 17px 19px;
    justify-content: flex-start;
    gap: 11px;
  }

  .featured-google-proof .google-proof-kicker {
    width: 100%;
    padding: 0 0 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 43, 66, .13);
  }

  .featured-google-proof .google-rating { gap: 13px; }
  .featured-google-proof .google-stars { font-size: 20px; }
  .selected-work-heading > div { gap: 16px; }
  .selected-work-heading h3 { flex-basis: auto; font-size: clamp(31px, 9.3vw, 39px); }
  .selected-work-heading p { font-size: 16px; }
  .selected-work-list { grid-template-columns: 1fr; gap: 14px; }
  .selected-work-item,
  .selected-work-item + .selected-work-item {
    padding: 19px;
    display: flex;
    border: 1px solid rgba(8, 43, 66, .16);
  }
  .selected-work-item:last-child { grid-column: auto; }
  .selected-work-brand,
  .selected-work-item:last-child .selected-work-brand { width: 100%; max-width: none; height: 112px; }
  .selected-work-brand--church { padding: 20px; }
  .selected-work-copy { margin-top: 18px; }
  .selected-work-copy .selected-work-services { min-height: 0; }
  .proof-footer--selected-work { align-items: stretch; flex-direction: column-reverse; }
  .proof-footer--selected-work a { width: 100%; }
}

/* Homepage footer */
.site-footer {
  position: relative;
  color: #fffaf0;
  background: #061f31;
  border-top: 1px solid rgba(217, 170, 63, .42);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: max(24px, calc((100% - 1504px) / 2));
  width: clamp(92px, 10vw, 154px);
  height: 2px;
  background: #d9aa3f;
}

.site-footer-shell {
  width: min(1504px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(48px, 4.4vw, 66px) clamp(24px, 3.3vw, 52px) 0;
  border-left: 1px solid rgba(255, 250, 240, .06);
  border-right: 1px solid rgba(255, 250, 240, .06);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(170px, .75fr) minmax(260px, 1.05fr) minmax(220px, .9fr);
  align-items: start;
  gap: clamp(30px, 3.5vw, 56px);
  padding-bottom: clamp(40px, 4vw, 60px);
}

.footer-column { min-width: 0; }

.footer-brand-lockup {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fffaf0;
  text-decoration: none;
}

.footer-shield {
  width: 48px;
  height: 55px;
  flex: 0 0 48px;
  display: block;
  background-image: url("assets/tribus-ventures-logo-transparent.png");
  background-repeat: no-repeat;
  background-position: center -7px;
  background-size: 96px 96px;
}

.footer-brand-lockup > span {
  font-size: clamp(18px, 1.15vw, 21px);
  font-weight: 750;
  letter-spacing: .105em;
  line-height: 1;
  white-space: nowrap;
}

.footer-tagline {
  margin: 22px 0 0;
  color: #fffaf0;
  font-size: clamp(26px, 2vw, 33px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.footer-support {
  max-width: 370px;
  margin: 13px 0 0;
  color: rgba(255, 250, 240, .68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.62;
}

.footer-column-label {
  min-height: 22px;
  margin-bottom: 16px;
  display: block;
  color: #d9aa3f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.4;
}

.footer-navigation {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-navigation > a {
  width: fit-content;
  padding: 2px 0;
  color: rgba(255, 250, 240, .76);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.footer-navigation > a:hover,
.footer-navigation > a:focus-visible {
  color: #8fd3f4;
  transform: translateX(2px);
}

.footer-navigation .footer-conversation-link {
  margin-top: 5px;
  color: rgba(255, 250, 240, .66);
  font-weight: 650;
}

.footer-conversation-link span {
  margin-left: 5px;
  color: rgba(217, 170, 63, .74);
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 19px;
}

.footer-contact .footer-column-label,
.footer-connect .footer-column-label { margin-bottom: 0; }

.footer-contact-link {
  width: fit-content;
  max-width: 100%;
  display: grid;
  gap: 5px;
  color: #fffaf0;
  text-decoration: none;
}

.footer-contact-link > span {
  color: rgba(255, 250, 240, .67);
  font-size: 11.5px;
  font-weight: 750;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-contact-link > strong {
  color: rgba(255, 250, 240, .87);
  font-size: clamp(16px, 1.05vw, 18px);
  font-weight: 650;
  line-height: 1.4;
  overflow-wrap: anywhere;
  transition: color .18s ease;
}

.footer-contact-link:hover > strong,
.footer-contact-link:focus-visible > strong { color: #8fd3f4; }

.footer-connect {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-social-link {
  min-height: 52px;
  padding: 9px 12px 9px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 250, 240, .82);
  border: 1px solid rgba(255, 250, 240, .13);
  border-radius: 6px;
  text-decoration: none;
  transition: color .18s ease, border-color .18s ease, background-color .18s ease;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  color: #fffaf0;
  border-radius: 4px;
  background: rgba(255, 250, 240, .08);
}

.footer-social-icon svg {
  width: 19px;
  height: 19px;
  display: block;
  fill: currentColor;
}

.footer-social-link > span:last-child {
  font-size: 15px;
  font-weight: 650;
  line-height: 1.25;
}

.footer-social-name {
  display: grid;
  gap: 2px;
}

.footer-social-name small {
  color: rgba(255, 250, 240, .52);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-social-name strong {
  font-size: 14px;
  font-weight: 650;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: #8fd3f4;
  border-color: rgba(8, 121, 186, .72);
  background: rgba(8, 121, 186, .08);
}

.footer-brand-lockup:focus-visible,
.footer-navigation a:focus-visible,
.footer-contact-link:focus-visible,
.footer-social-link:focus-visible {
  outline: 3px solid rgba(143, 211, 244, .72);
  outline-offset: 4px;
}

.footer-bottom {
  min-height: 64px;
  padding: 17px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: rgba(255, 250, 240, .52);
  border-top: 1px solid rgba(255, 250, 240, .11);
  font-size: 13px;
}

.footer-bottom p { margin: 0; }

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer-legal span { white-space: nowrap; }

.footer-signature {
  justify-self: end;
  color: rgba(255, 250, 240, .46);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-signature i {
  margin: 0 5px;
  color: #d9aa3f;
  font-style: normal;
}

@media (max-width: 1120px) {
  .footer-main {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 40px 60px;
  }

  .footer-navigation { grid-column: 1; grid-row: 2; }
  .footer-contact { grid-column: 2; grid-row: 1; }
  .footer-connect { grid-column: 2; grid-row: 2; }
  .footer-navigation { grid-template-columns: repeat(2, minmax(0, max-content)); }
  .footer-navigation .footer-column-label,
  .footer-navigation .footer-conversation-link { grid-column: 1 / -1; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-signature { display: none; }
}

@media (max-width: 680px) {
  .site-footer-shell {
    width: min(100% - 32px, 560px);
    padding: 42px 0 0;
    border: 0;
  }

  .site-footer::before { left: 16px; width: 92px; }

  .footer-main {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "contact"
      "navigation"
      "connect";
    gap: 34px;
    padding-bottom: 36px;
  }

  .footer-brand { grid-area: brand; }
  .footer-contact { grid-area: contact; }
  .footer-navigation { grid-area: navigation; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-connect { grid-area: connect; }
  .footer-contact-link > strong { font-size: 17px; }
  .footer-social-link { min-height: 58px; }

  .footer-bottom {
    min-height: 0;
    padding: 21px 0 24px;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
    font-size: 13px;
  }

  .footer-legal { justify-content: flex-start; gap: 18px; }
}

/* Final homepage conversion section */
.closing-cta {
  position: relative;
  overflow: hidden;
  color: #fffaf0;
  background: var(--navy);
}

.closing-cta-shell {
  width: min(1504px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(82px, 7vw, 116px) clamp(24px, 3.3vw, 52px) clamp(88px, 7.5vw, 124px);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, .64fr);
  align-items: end;
  gap: clamp(52px, 5vw, 88px);
  border-left: 1px solid rgba(255, 250, 240, .08);
  border-right: 1px solid rgba(255, 250, 240, .08);
}

.closing-cta-copy { min-width: 0; }

.closing-cta-eyebrow {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #d9aa3f;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.2;
}

.closing-cta-eyebrow span {
  width: 44px;
  height: 2px;
  flex: 0 0 44px;
  background: #d9aa3f;
}

.closing-cta h2 {
  max-width: 850px;
  margin: 0;
  color: #fffaf0;
  font-size: clamp(50px, 4.35vw, 72px);
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: .98;
}

.closing-cta h2 span { display: block; }

.closing-cta-copy > p {
  max-width: 730px;
  margin: 30px 0 0;
  color: rgba(255, 250, 240, .79);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.4vw, 21px);
  line-height: 1.6;
}

.closing-cta-actions {
  min-width: 0;
  padding-left: clamp(26px, 3.2vw, 50px);
  display: grid;
  gap: 14px;
  border-left: 1px solid rgba(217, 170, 63, .42);
}

.closing-cta-primary,
.closing-cta-secondary {
  width: 100%;
  min-height: 58px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .065em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
}

.closing-cta-primary {
  min-height: 68px;
  color: var(--navy);
  background: #fffaf0;
  border: 1px solid #fffaf0;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .14);
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.closing-cta-primary span {
  color: var(--blue-deep);
  font-size: 21px;
  transition: transform .2s ease;
}

.closing-cta-primary:hover,
.closing-cta-primary:focus-visible {
  color: white;
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-1px);
}

.closing-cta-primary:hover span,
.closing-cta-primary:focus-visible span { color: white; transform: translateX(4px); }

.closing-cta-secondary {
  color: rgba(255, 250, 240, .78);
  background: transparent;
  border: 1px solid rgba(255, 250, 240, .23);
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.closing-cta-secondary span {
  color: #d9aa3f;
  font-size: 19px;
  transition: transform .2s ease;
}

.closing-cta-secondary:hover,
.closing-cta-secondary:focus-visible {
  color: #fffaf0;
  border-color: rgba(217, 170, 63, .72);
  background: rgba(255, 250, 240, .045);
}

.closing-cta-secondary:hover span,
.closing-cta-secondary:focus-visible span { transform: translateX(4px); }

.closing-cta-primary:focus-visible,
.closing-cta-secondary:focus-visible {
  outline: 3px solid rgba(143, 211, 244, .72);
  outline-offset: 4px;
}

.closing-cta-actions > p {
  max-width: 440px;
  margin: 2px 0 0;
  color: rgba(255, 250, 240, .62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 1000px) {
  .closing-cta-shell {
    width: min(900px, calc(100% - 48px));
    padding-inline: 0;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 48px;
    border: 0;
  }

  .closing-cta h2 { max-width: 800px; }
  .closing-cta-copy > p { max-width: 720px; }
  .closing-cta-actions { width: min(100%, 620px); padding: 0; border-left: 0; }
}

@media (max-width: 650px) {
  .closing-cta-shell {
    width: min(100% - 32px, 560px);
    padding: 66px 0 72px;
    gap: 38px;
  }

  .closing-cta-eyebrow {
    margin-bottom: 22px;
    font-size: 12px;
    letter-spacing: .17em;
  }

  .closing-cta-eyebrow span { width: 34px; flex-basis: 34px; }
  .closing-cta h2 { font-size: clamp(40px, 12.2vw, 54px); line-height: 1; }
  .closing-cta-copy > p { margin-top: 24px; font-size: 18px; line-height: 1.58; }
  .closing-cta-actions { gap: 12px; }
  .closing-cta-primary,
  .closing-cta-secondary { min-height: 60px; padding-inline: 18px; font-size: 12.5px; }
  .closing-cta-primary { min-height: 64px; }
  .closing-cta-actions > p { margin-top: 2px; font-size: 15.5px; }
}

/* Selected Work refinement: unified intro and standardized identity stages */
.proof-section .selected-work-heading {
  grid-template-columns: minmax(0, .92fr) minmax(320px, .68fr);
  align-items: end;
  gap: clamp(42px, 6vw, 92px);
}

.proof-section .selected-work-heading-copy {
  min-width: 0;
  display: grid;
  gap: 12px;
}

.proof-section .selected-work-heading-copy > span {
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  color: var(--blue-deep);
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.proof-section .selected-work-heading-copy > span::before {
  width: 34px;
  height: 2px;
  flex: 0 0 34px;
  content: "";
  background: #d9aa3f;
}

.proof-section .selected-work-heading h3 {
  width: 100%;
  margin: 0;
}

.proof-section .selected-work-heading > p {
  width: 100%;
  max-width: 540px;
  justify-self: end;
  text-align: left;
}

.proof-section .selected-work-item {
  height: 100%;
}

.proof-section .selected-work-brand,
.proof-section .selected-work-item:last-child .selected-work-brand {
  width: 100%;
  max-width: none;
  height: 122px;
  flex: 0 0 122px;
  padding: 16px 20px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 7px;
}

.proof-section .selected-work-brand--church {
  position: relative;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #050505;
}

.proof-section .selected-work-brand--church::before {
  display: none;
}

.proof-section .selected-work-brand--church span,
.proof-section .selected-work-brand--church strong {
  width: 100%;
}

.proof-section .selected-work-brand--church strong {
  margin-top: 4px;
}

.proof-section .selected-work-brand--church img {
  position: absolute;
  inset: 16px 20px;
  width: calc(100% - 40px);
  height: calc(100% - 32px);
  max-width: none;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.proof-section .selected-work-brand--ideal img,
.proof-section .selected-work-brand--lemon img {
  position: absolute;
  inset: 16px 20px;
  width: calc(100% - 40px);
  height: calc(100% - 32px);
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.proof-section .selected-work-brand--ideal img {
  transform: scale(1.12);
}

.proof-section .selected-work-brand--ideal,
.proof-section .selected-work-brand--lemon {
  position: relative;
}

.proof-section .selected-work-brand--lemon img {
  transform: translateY(4px) scale(1.68);
}

@media (max-width: 900px) {
  .proof-section .selected-work-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }

  .proof-section .selected-work-heading > p {
    max-width: 680px;
    justify-self: start;
  }
}

@media (max-width: 650px) {
  .proof-section .selected-work-brand,
  .proof-section .selected-work-item:last-child .selected-work-brand {
    height: 112px;
    flex-basis: 112px;
    padding: 16px 18px;
  }

  .proof-section .selected-work-brand--ideal img,
  .proof-section .selected-work-brand--lemon img,
  .proof-section .selected-work-brand--church img {
    inset-inline: 18px;
    width: calc(100% - 36px);
  }
}

/* Keep the ongoing-relationship panel clear of the adjacent narrative column. */
@media (min-width: 1121px) {
  .proof-section .legacy-case-study > .legacy-ongoing {
    margin-right: 14px;
  }
}

@media (max-width: 650px) {
  .legacy-social-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .legacy-social-heading > p { text-align: left; }
  .legacy-social-gallery { grid-template-columns: 1fr; gap: 16px; }
  .legacy-social-gallery > a:last-child { width: auto; grid-column: auto; justify-self: stretch; }
  .social-artwork { padding: 12px; }
  .legacy-social-gallery figcaption { min-height: 60px; }
  .legacy-video-work { grid-template-columns: 70px minmax(0, 1fr); }
  .legacy-video-mark { min-height: 122px; }
  .legacy-video-intro { padding: 22px 20px; }
  .legacy-video-action { min-width: 0; padding: 19px 20px; grid-column: 1 / -1; border-top: 1px solid rgba(8, 43, 66, .14); border-left: 0; }
}

/* Section 5 — compact selected work rail */
.selected-work {
  margin-top: clamp(42px, 4vw, 58px);
  padding-top: clamp(28px, 2.5vw, 36px);
  border-top: 1px solid rgba(8, 43, 66, .17);
}

.selected-work-heading {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: minmax(150px, .32fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(24px, 4vw, 64px);
}

.selected-work-heading > span {
  padding-bottom: 4px;
  color: #9a681a;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .18em;
}

.selected-work-heading > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
}

.selected-work-heading h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(27px, 2.2vw, 36px);
  font-weight: 790;
  letter-spacing: -.03em;
  line-height: 1.08;
}

.selected-work-heading p {
  max-width: 430px;
  margin: 0;
  color: #607883;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15.5px;
  line-height: 1.45;
  text-align: right;
}

.selected-work-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(8, 43, 66, .16);
  border-bottom: 1px solid rgba(8, 43, 66, .16);
}

.selected-work-item {
  min-width: 0;
  padding: 22px clamp(16px, 1.6vw, 24px) 24px;
}

.selected-work-item + .selected-work-item {
  border-left: 1px solid rgba(8, 43, 66, .13);
}

.selected-work-brand {
  position: relative;
  width: 100%;
  height: 72px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8, 43, 66, .12);
  border-radius: 6px;
  background: rgba(255, 255, 255, .74);
}

.selected-work-brand img { display: block; }
.selected-work-brand--legacy { background: #eef3f5; }

.selected-work-brand--legacy img {
  position: absolute;
  top: -18px;
  left: -38px;
  width: 790px;
  max-width: none;
  height: auto;
}

.selected-work-brand--church {
  padding: 10px 15px;
  align-items: flex-start;
  flex-direction: column;
  background: #0b3042;
}

.selected-work-brand--church::before {
  content: "+";
  position: absolute;
  top: 9px;
  right: 14px;
  color: #d9aa3f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
}

.selected-work-brand--church span,
.selected-work-brand--church strong {
  color: #fffaf0;
  line-height: 1.05;
}

.selected-work-brand--church span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: .12em;
}

.selected-work-brand--church strong {
  margin-top: 5px;
  font-size: 14px;
  letter-spacing: .065em;
}

.selected-work-brand--lemon img,
.selected-work-brand--ideal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selected-work-brand--lemon img { object-position: 50% 63%; }
.selected-work-brand--ideal { background: #050505; }
.selected-work-brand--ideal img {
  width: auto;
  max-width: calc(100% - 22px);
  height: 88px;
  object-fit: contain;
}

.selected-work-copy { margin-top: 17px; }

.selected-work-copy > span {
  color: #a66f15;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .1em;
}

.selected-work-copy h4 {
  margin: 7px 0 0;
  color: var(--navy);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.selected-work-copy p {
  margin: 7px 0 0;
  color: #58717d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.45;
}

.selected-work-copy p i {
  padding: 0 2px;
  color: #bd8420;
  font-style: normal;
}

.selected-work + .proof-footer { margin-top: 24px; }

@media (max-width: 1120px) {
  .selected-work-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
  }

  .selected-work-heading > div { align-items: flex-start; }
  .selected-work-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .selected-work-item:nth-child(odd) { border-left: 0; }
  .selected-work-item:nth-child(n + 3) { border-top: 1px solid rgba(8, 43, 66, .13); }
}

@media (max-width: 650px) {
  .selected-work { margin-top: 38px; padding-top: 26px; }
  .selected-work-heading > div { flex-direction: column; gap: 10px; }
  .selected-work-heading p { max-width: 34rem; text-align: left; }
  .selected-work-list { grid-template-columns: 1fr; }
  .selected-work-item,
  .selected-work-item + .selected-work-item {
    padding: 18px 0;
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    border-left: 0;
  }

  .selected-work-item + .selected-work-item { border-top: 1px solid rgba(8, 43, 66, .13); }
  .selected-work-brand { width: 104px; height: 68px; }
  .selected-work-brand--legacy img { top: -17px; left: -36px; width: 735px; }
  .selected-work-brand--church { padding: 9px 10px; }
  .selected-work-brand--church::before { top: 8px; right: 9px; }
  .selected-work-brand--church span { font-size: 8px; }
  .selected-work-brand--church strong { font-size: 11px; }
  .selected-work-copy { margin-top: 0; }
  .selected-work-copy h4 { font-size: 19px; }
  .selected-work-copy p { font-size: 14px; }
}

/* Section 5 — featured proof strip and compact narrative rhythm */
.legacy-case-narrative {
  padding-top: clamp(27px, 2.15vw, 33px);
  padding-bottom: clamp(27px, 2.15vw, 33px);
}

.legacy-case-study {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.legacy-project-visual {
  border: 1px solid rgba(8, 43, 66, .17);
  border-right: 0;
  border-radius: 12px 0 12px 12px;
  box-shadow: 0 24px 60px rgba(28, 46, 53, .1);
}

.legacy-case-narrative {
  grid-column: 2;
  grid-row: 1 / span 2;
  border: 1px solid rgba(8, 43, 66, .17);
  border-left: 0;
  border-radius: 0 12px 12px 0;
  background: #fffdf8;
  box-shadow: 14px 24px 60px rgba(28, 46, 53, .08);
}

.legacy-project-column {
  grid-column: 1;
  grid-row: 1;
}

.legacy-case-ledger { margin-top: 20px; }

.legacy-case-ledger section {
  padding-top: 11px;
  padding-bottom: 12px;
}

.legacy-case-ledger section > p { margin-top: 7px; }

.legacy-ongoing {
  margin-top: 0;
  padding: 14px 18px;
}

.legacy-ongoing p { margin-top: 6px; }

.legacy-case-study > .legacy-ongoing {
  margin: 16px 0 0;
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  border: 1px solid rgba(8, 43, 66, .14);
  border-left: 2px solid #d9aa3f;
  border-radius: 0 8px 8px 0;
  background: #fffdf8;
  box-shadow: 0 12px 28px rgba(28, 46, 53, .055);
}

.featured-google-proof {
  margin-top: 22px;
  padding: 22px clamp(24px, 2.8vw, 38px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(28px, 4vw, 64px);
  background: #fffdf8;
  box-shadow: 0 12px 30px rgba(28, 46, 53, .055);
}

.featured-google-proof .google-proof-kicker {
  font-size: 11px;
  letter-spacing: .18em;
}

.featured-google-proof .google-rating {
  justify-content: flex-end;
}

.featured-google-proof .google-review-excerpts:not(:empty) {
  margin-top: 20px;
  padding-top: 20px;
  grid-column: 1 / -1;
  border-top: 1px solid rgba(8, 43, 66, .13);
  border-left: 0;
}

.featured-google-proof + .selected-work {
  margin-top: clamp(36px, 3.4vw, 48px);
}

@media (max-width: 1120px) {
  .legacy-project-column,
  .legacy-case-narrative,
  .legacy-case-study > .legacy-ongoing {
    grid-column: 1;
    grid-row: auto;
  }

  .legacy-project-visual {
    border-right: 1px solid rgba(8, 43, 66, .17);
    border-radius: 12px 12px 0 0;
  }

  .legacy-case-narrative {
    border-top: 0;
    border-left: 1px solid rgba(8, 43, 66, .17);
    border-radius: 0 0 12px 12px;
  }

  .legacy-case-study > .legacy-ongoing {
    margin-top: 16px;
    border-radius: 0 8px 8px 0;
  }
}

@media (max-width: 650px) {
  .legacy-case-narrative { padding-top: 27px; padding-bottom: 23px; }
  .legacy-case-ledger { margin-top: 18px; }

  .featured-google-proof {
    margin-top: 16px;
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .featured-google-proof .google-rating {
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
  }
}

/* Section 5 final cascade: compact trust proof + three-project editorial row */
.featured-google-proof {
  min-height: 0;
  margin-top: 18px;
  padding: 15px clamp(20px, 2.4vw, 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 30px;
}

.featured-google-proof .google-proof-kicker {
  padding-right: 30px;
  border-right: 1px solid rgba(8, 43, 66, .14);
  font-size: 11px;
  letter-spacing: .18em;
}

.featured-google-proof .google-rating {
  justify-content: flex-start;
  gap: 17px;
}

.featured-google-proof .google-stars { font-size: clamp(20px, 1.7vw, 25px); }
.featured-google-proof .google-rating strong { font-size: 17px; }
.featured-google-proof .google-rating p { margin-top: 2px; font-size: 14px; }

.featured-google-proof .google-review-excerpts:not(:empty) {
  flex: 0 0 100%;
  margin-top: 2px;
  padding-top: 18px;
  border-top: 1px solid rgba(8, 43, 66, .13);
  border-left: 0;
}

.featured-google-proof + .selected-work {
  margin-top: clamp(38px, 4vw, 56px);
}

.selected-work {
  padding-top: clamp(27px, 2.7vw, 38px);
  border-top: 1px solid rgba(8, 43, 66, .17);
}

.selected-work-heading {
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: minmax(130px, .24fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 4.5vw, 72px);
}

.selected-work-heading > span { padding: 7px 0 0; }

.selected-work-heading > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(30px, 4vw, 64px);
}

.selected-work-heading h3 {
  flex: 0 0 min(43%, 470px);
  margin: 0;
  font-size: clamp(32px, 2.8vw, 43px);
  line-height: 1.03;
}

.selected-work-heading h3 span { display: block; }

.selected-work-heading p {
  max-width: 540px;
  margin: 0;
  font-size: 16.5px;
  line-height: 1.55;
  text-align: right;
}

.selected-work-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.55vw, 22px);
  border: 0;
}

.selected-work-item,
.selected-work-item + .selected-work-item {
  min-width: 0;
  padding: clamp(20px, 1.8vw, 27px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(8, 43, 66, .16);
  border-radius: 10px;
  background: rgba(255, 253, 248, .78);
  box-shadow: 0 12px 28px rgba(28, 46, 53, .055);
}

.selected-work-brand {
  width: 100%;
  height: 122px;
  flex: 0 0 122px;
  border-color: rgba(8, 43, 66, .14);
  border-radius: 7px;
}

.selected-work-brand--church {
  position: relative;
  padding: 22px 24px;
  align-items: flex-start;
  justify-content: center;
  background: #0b3042;
}

.selected-work-brand--church::before {
  width: 36px;
  height: 2px;
  top: 22px;
  right: 22px;
  content: "";
  background: #d9aa3f;
}

.selected-work-brand--church span {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .17em;
}

.selected-work-brand--church strong {
  margin-top: 7px;
  font-size: clamp(17px, 1.45vw, 22px);
  letter-spacing: .065em;
}

.selected-work-brand--ideal img {
  width: auto;
  max-width: calc(100% - 36px);
  height: 112px;
  object-fit: contain;
}

.selected-work-brand--lemon { background: #ed81d0; }

.selected-work-brand--lemon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 61%;
}

.selected-work-copy {
  margin-top: 20px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.selected-work-copy h4 {
  margin-top: 8px;
  font-size: clamp(20px, 1.55vw, 24px);
}

.selected-work-copy .selected-work-services {
  min-height: 42px;
  margin-top: 8px;
  color: #365c6d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .045em;
  line-height: 1.45;
  text-transform: uppercase;
}

.selected-work-copy .selected-work-description {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(8, 43, 66, .12);
  color: #536d79;
  font-size: 15.5px;
  line-height: 1.56;
}

.proof-footer--selected-work {
  margin-top: 26px;
  padding-top: 0;
  justify-content: flex-end;
  gap: 14px;
}

.proof-footer--selected-work .proof-more-work,
.proof-footer--selected-work .proof-start-conversation {
  min-height: 48px;
  padding: 0 22px;
  justify-content: center;
  border-radius: 5px;
}

.proof-footer--selected-work .proof-more-work {
  border: 1px solid rgba(8, 43, 66, .22);
  background: transparent;
}

.proof-footer--selected-work .proof-start-conversation {
  border: 1px solid var(--navy);
  color: #fffaf0;
  background: var(--navy);
}

.proof-footer--selected-work .proof-start-conversation span { color: #d9aa3f; }
.proof-footer--selected-work .proof-more-work:hover,
.proof-footer--selected-work .proof-more-work:focus-visible { background: rgba(255, 255, 255, .74); }
.proof-footer--selected-work .proof-start-conversation:hover,
.proof-footer--selected-work .proof-start-conversation:focus-visible { background: #10394b; }

@media (max-width: 1120px) {
  .selected-work-heading { grid-template-columns: 1fr; gap: 12px; }
  .selected-work-heading > span { padding-top: 0; }
  .selected-work-heading > div { align-items: flex-start; }
  .selected-work-heading h3 { flex-basis: 48%; }
  .selected-work-heading p { text-align: left; }
  .selected-work-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .selected-work-item:nth-child(odd) { border-left: 1px solid rgba(8, 43, 66, .16); }
  .selected-work-item:nth-child(n + 3) { border-top: 1px solid rgba(8, 43, 66, .16); }
  .selected-work-item:last-child { grid-column: 1 / -1; }
  .selected-work-item:last-child .selected-work-brand { max-width: 420px; }
}

@media (max-width: 650px) {
  .featured-google-proof {
    padding: 17px 19px;
    justify-content: flex-start;
    gap: 11px;
  }

  .featured-google-proof .google-proof-kicker {
    width: 100%;
    padding: 0 0 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 43, 66, .13);
  }

  .featured-google-proof .google-rating { gap: 13px; }
  .featured-google-proof .google-stars { font-size: 20px; }
  .selected-work-heading > div { gap: 16px; }
  .selected-work-heading h3 { flex-basis: auto; font-size: clamp(31px, 9.3vw, 39px); }
  .selected-work-heading p { font-size: 16px; }
  .selected-work-list { grid-template-columns: 1fr; gap: 14px; }
  .selected-work-item,
  .selected-work-item + .selected-work-item {
    padding: 19px;
    display: flex;
    border: 1px solid rgba(8, 43, 66, .16);
  }
  .selected-work-item:last-child { grid-column: auto; }
  .selected-work-brand,
  .selected-work-item:last-child .selected-work-brand { width: 100%; max-width: none; height: 112px; }
  .selected-work-brand--church { padding: 20px; }
  .selected-work-copy { margin-top: 18px; }
  .selected-work-copy .selected-work-services { min-height: 0; }
  .proof-footer--selected-work { align-items: stretch; flex-direction: column-reverse; }
  .proof-footer--selected-work a { width: 100%; }
}
