:root {
  --page-bg: #f7f5f1;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-muted: #eef1f4;
  --ink: #122033;
  --ink-soft: #334155;
  --muted: #5b6472;
  --line: rgba(18, 32, 51, 0.12);
  --line-strong: rgba(18, 32, 51, 0.18);
  --navy: #122033;
  --slate: #304255;
  --warm: #b8875c;
  --warm-soft: rgba(184, 135, 92, 0.14);
  --shadow-soft: 0 18px 48px rgba(18, 32, 51, 0.08);
  --shadow-card: 0 14px 32px rgba(18, 32, 51, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(184, 135, 92, 0.14), transparent 28%),
    radial-gradient(circle at 90% 4%, rgba(18, 32, 51, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfaf8 0%, var(--page-bg) 100%);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(18, 32, 51, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 32, 51, 0.028) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.page-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 18px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px 14px 12px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(251, 250, 248, 0.82);
  box-shadow: 0 14px 36px rgba(18, 32, 51, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.brand-text {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--warm);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.nav-cta {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 24px rgba(18, 32, 51, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span + span {
  margin-top: 6px;
}

.section {
  margin-top: 112px;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 840px;
  font-size: clamp(2.55rem, 5vw, 4.8rem);
}

h2 {
  font-size: clamp(1.95rem, 3.4vw, 3.1rem);
}

h3 {
  font-size: clamp(1.22rem, 2vw, 1.62rem);
}

p {
  margin: 0;
}

.hero {
  display: grid;
  gap: 34px;
  min-height: calc(100vh - 110px);
  align-content: center;
  margin-top: 24px;
  padding-bottom: 12px;
}

.hero-compact {
  min-height: auto;
  max-width: 980px;
  margin-top: 54px;
  padding-bottom: 0;
}

.hero-home {
  min-height: auto;
  max-width: 920px;
  margin-top: 54px;
  padding-bottom: 0;
}

.hero-intro {
  max-width: 820px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.8vw, 1.24rem);
}

.hero-intro-narrow {
  max-width: 760px;
}

.hero-v5 h1 {
  max-width: 900px;
}

.hero-service-line {
  margin-top: 18px;
  color: var(--slate);
  font-size: 0.96rem;
  font-weight: 600;
}

.offer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.offer-pills span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  font-size: 0.9rem;
  box-shadow: var(--shadow-card);
}

.hero-support {
  max-width: 760px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  padding: 0 22px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
  box-shadow: 0 16px 28px rgba(18, 32, 51, 0.18);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.availability-line {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.98rem;
}

.credibility-section {
  margin-top: 34px;
}

.pipeline-panel {
  margin-top: 54px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 8% 18%, rgba(184, 135, 92, 0.13), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76));
  box-shadow: var(--shadow-soft);
}

.pipeline-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.pipeline-graphic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pipeline-graphic-expanded {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pipeline-groups {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 2px;
}

.pipeline-groups span {
  display: inline-flex;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--slate);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pipeline-group-demand {
  grid-column: 1 / span 3;
}

.pipeline-group-supply {
  grid-column: 4;
}

.pipeline-group-budget {
  grid-column: 5;
}

.pipeline-graphic::before {
  position: absolute;
  top: 50%;
  right: 6%;
  left: 6%;
  height: 1px;
  background: linear-gradient(90deg, rgba(18, 32, 51, 0.08), rgba(18, 32, 51, 0.3), rgba(18, 32, 51, 0.08));
  content: "";
}

.pipeline-stage {
  position: relative;
  z-index: 1;
  min-height: 244px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
}

.pipeline-stage > span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--warm);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.pipeline-stage p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.pipeline-inputs {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    rgba(184, 135, 92, 0.08);
}

.signal-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.signal-cluster em {
  padding: 8px 10px;
  border: 1px solid rgba(18, 32, 51, 0.1);
  border-radius: 999px;
  background: rgba(247, 245, 241, 0.95);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-style: normal;
}

.signal-cluster em:nth-child(2) {
  transform: translateY(6px);
}

.signal-cluster em:nth-child(3) {
  transform: translateY(-4px);
}

.pipeline-forecast svg {
  width: 100%;
  margin-top: 18px;
}

.pipeline-forecast path {
  fill: none;
  stroke: var(--warm);
  stroke-width: 4;
  stroke-linecap: round;
}

.pipeline-forecast circle {
  fill: var(--warm);
}

.pipeline-hidden-work {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    rgba(184, 135, 92, 0.08);
}

.hidden-work-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hidden-work-list em {
  padding: 8px 10px;
  border: 1px dashed rgba(18, 32, 51, 0.18);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-style: normal;
}

.pipeline-supply {
  background:
    linear-gradient(160deg, rgba(18, 32, 51, 0.98), rgba(33, 47, 65, 0.96)),
    var(--navy);
}

.pipeline-supply h3,
.pipeline-supply > span {
  color: #fff;
}

.pipeline-supply p {
  color: rgba(255, 255, 255, 0.76);
}

.agent-bars {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.agent-bars div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.agent-bars b {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
}

.agent-bars i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  overflow: hidden;
}

.agent-bars i::before {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(184, 135, 92, 0.92), rgba(255, 255, 255, 0.88));
  content: "";
}

.agent-bars div:nth-child(2) i::before {
  width: 58%;
}

.agent-bars div:nth-child(3) i::before {
  width: 42%;
}

.pipeline-outputs {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    rgba(18, 32, 51, 0.05);
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.output-grid em {
  min-height: 62px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(247, 245, 241, 0.82);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 600;
  text-align: center;
}

.audience-v5-list {
  display: grid;
  gap: 0;
}

.audience-v5-item {
  display: grid;
  grid-template-columns: minmax(230px, 0.44fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.audience-v5-item p {
  color: var(--muted);
}

.prior-work-panel {
  margin-top: 82px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76)),
    var(--warm-soft);
  box-shadow: var(--shadow-soft);
}

.prior-work-heading {
  margin-bottom: 28px;
}

.prior-work-heading p:last-child {
  max-width: 700px;
  color: var(--muted);
}

.prior-work-list {
  display: grid;
  gap: 0;
  margin-bottom: 22px;
}

.prior-work-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.prior-work-list p {
  color: var(--muted);
}

.prior-work-list strong {
  color: var(--ink);
}

.delivery-note {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 24px 28px;
  border-left: 3px solid var(--warm);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 255, 255, 0.58);
}

.delivery-note h2 {
  max-width: 860px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.delivery-note p:last-child {
  max-width: 760px;
  color: var(--muted);
}

.about-v5 {
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.about-v5 > div {
  display: grid;
  gap: 18px;
}

.about-v5 > div p {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.experience-v5-list {
  display: grid;
  gap: 16px;
}

.experience-v5-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.68fr) minmax(0, 1fr);
  gap: 26px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
}

.experience-v5-card > div {
  display: grid;
  gap: 12px;
  align-content: start;
}

.experience-v5-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.experience-v5-card li {
  position: relative;
  padding-left: 18px;
}

.experience-v5-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warm);
  content: "";
}

.service-spine {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-spine-card {
  min-height: 392px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-card);
}

.service-spine-card > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--warm);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-spine-card p {
  margin-top: 14px;
  color: var(--ink-soft);
}

.service-spine-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.service-spine-card li {
  position: relative;
  padding-left: 18px;
}

.service-spine-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warm);
  content: "";
}

.service-spine-featured {
  background:
    linear-gradient(160deg, rgba(18, 32, 51, 0.98), rgba(33, 47, 65, 0.96)),
    var(--navy);
}

.service-spine-featured h3,
.service-spine-featured > span {
  color: #fff;
}

.service-spine-featured p,
.service-spine-featured ul {
  color: rgba(255, 255, 255, 0.78);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.capability-card {
  min-height: 190px;
  padding: 24px;
  border-top: 1px solid var(--line);
}

.capability-card p {
  margin-top: 14px;
  color: var(--muted);
}

.output-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.output-list span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  box-shadow: var(--shadow-card);
}

.planning-journey {
  margin-top: 48px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 15% 20%, rgba(184, 135, 92, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72));
  box-shadow: var(--shadow-soft);
}

.journey-heading {
  max-width: none;
  margin-bottom: 26px;
}

.journey-map {
  display: grid;
  grid-template-columns:
    minmax(220px, 1fr)
    minmax(110px, 0.48fr)
    minmax(220px, 1fr)
    minmax(110px, 0.48fr)
    minmax(220px, 1fr);
  gap: 14px;
  align-items: center;
}

.journey-stage {
  min-height: 222px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.journey-stage-inputs {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    rgba(184, 135, 92, 0.07);
}

.journey-stage-model {
  background:
    linear-gradient(160deg, rgba(18, 32, 51, 0.98), rgba(34, 49, 68, 0.95)),
    var(--navy);
  color: #fff;
}

.journey-stage-model h3,
.journey-stage-model .journey-kicker {
  color: #fff;
}

.journey-stage-model ul {
  color: rgba(255, 255, 255, 0.78);
}

.journey-stage-outputs {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    rgba(18, 32, 51, 0.05);
}

.journey-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--warm);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journey-stage ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.journey-stage li {
  position: relative;
  padding-left: 18px;
}

.journey-stage li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warm);
  content: "";
}

.journey-bridge {
  position: relative;
  display: grid;
  gap: 10px;
  justify-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-bridge::before {
  position: absolute;
  top: 50%;
  right: 12px;
  left: 12px;
  height: 1px;
  background: linear-gradient(90deg, rgba(18, 32, 51, 0.08), rgba(18, 32, 51, 0.28), rgba(18, 32, 51, 0.08));
  content: "";
}

.journey-bridge::after {
  position: absolute;
  right: 4px;
  top: calc(50% - 4px);
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(18, 32, 51, 0.28);
  border-right: 1px solid rgba(18, 32, 51, 0.28);
  content: "";
  transform: rotate(45deg);
}

.journey-bridge span {
  position: relative;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(247, 245, 241, 0.92);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fit-card {
  min-height: 226px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-card);
}

.fit-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--warm);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fit-card p {
  margin-top: 14px;
  color: var(--muted);
}

.model-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.model-flow-card {
  min-height: 214px;
  padding: 22px;
  border-top: 1px solid var(--line);
}

.model-flow-card strong {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--warm);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
}

.model-flow-card p {
  margin-top: 12px;
  color: var(--muted);
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 28px;
  align-items: start;
  margin-top: 82px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    var(--warm-soft);
  box-shadow: var(--shadow-soft);
}

.proof-panel > div:first-child {
  display: grid;
  gap: 14px;
}

.proof-panel > div:first-child p:last-child {
  max-width: 580px;
  color: var(--muted);
}

.proof-metrics {
  display: grid;
  gap: 12px;
}

.proof-metrics article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
}

.proof-metrics strong,
.proof-metrics span {
  display: block;
}

.proof-metrics strong {
  color: var(--navy);
  font-size: 1.12rem;
}

.proof-metrics span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

.home-contact-section {
  margin-top: 82px;
}

.contact-panel-compact {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.proof-strip article {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--navy);
  font-size: 1.18rem;
}

.proof-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.credibility-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.credibility-pills span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  font-size: 0.92rem;
  box-shadow: var(--shadow-card);
}

.credibility-note {
  max-width: 840px;
  margin-top: 16px;
  color: var(--muted);
}

.credibility-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.credibility-item {
  min-height: 92px;
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-card);
}

.credibility-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.02rem;
}

.credibility-item span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.audience-band {
  display: grid;
  gap: 18px;
  margin-top: 36px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.66)),
    rgba(18, 32, 51, 0.035);
  box-shadow: var(--shadow-soft);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.audience-grid article {
  display: grid;
  gap: 6px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.audience-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.audience-grid strong {
  color: var(--navy);
  font-size: 0.98rem;
}

.audience-grid span {
  color: var(--muted);
  font-size: 0.94rem;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.problems-grid-compact .problem-card {
  min-height: 126px;
}

.section-tight {
  margin-top: 82px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.section-heading-row > div {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.text-link {
  color: var(--slate);
  font-weight: 600;
}

.text-link:hover {
  color: var(--ink);
}

.service-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.snapshot-card {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
}

.snapshot-card:nth-child(5) {
  grid-column: 1 / -1;
}

.snapshot-card p {
  margin-top: 14px;
  color: var(--muted);
}

.snapshot-card span {
  display: inline-flex;
  margin-top: 18px;
  margin-right: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(18, 32, 51, 0.06);
  color: var(--slate);
  font-size: 0.82rem;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.why-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 20px 22px;
  border-top: 1px solid var(--line);
}

.why-item strong {
  color: var(--warm);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.why-item p {
  color: var(--ink-soft);
}

.experience-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.highlight-card {
  min-height: 236px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72)),
    var(--warm-soft);
  box-shadow: var(--shadow-card);
}

.highlight-card p {
  margin-top: 14px;
  color: var(--muted);
}

.experience-snapshot {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
}

.experience-snapshot p {
  margin-top: 14px;
  color: var(--muted);
}

.problem-card,
.service-card,
.step-card,
.proof-card,
.engagement-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-card);
}

.problem-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 112px;
  padding: 22px;
  border-radius: var(--radius-md);
}

.problem-card::before {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--warm);
  content: "";
}

.problem-card p {
  color: var(--ink-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.model-card {
  min-height: 252px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.7)),
    var(--warm-soft);
  box-shadow: var(--shadow-card);
}

.model-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.model-card p {
  margin-top: 14px;
  color: var(--muted);
}

.service-card {
  display: grid;
  gap: 18px;
  min-height: 320px;
  padding: 26px;
  border-radius: var(--radius-lg);
}

.service-card:nth-child(5) {
  grid-column: 1 / -1;
}

.service-card p {
  color: var(--ink-soft);
}

.service-card ul,
.proof-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.service-card li,
.proof-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before,
.proof-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warm);
  content: "";
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  min-height: 224px;
  padding: 24px;
  border-radius: var(--radius-md);
}

.step-number {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.step-card p {
  margin-top: 14px;
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.proof-card {
  display: grid;
  gap: 16px;
  min-height: 290px;
  padding: 26px;
  border-radius: var(--radius-lg);
}

.proof-card.featured {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(18, 32, 51, 0.08), rgba(184, 135, 92, 0.08));
}

.proof-card p {
  color: var(--ink-soft);
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.72fr);
  gap: 24px;
  align-items: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68)),
    var(--warm-soft);
  box-shadow: var(--shadow-soft);
}

.about-copy {
  display: grid;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.about-aside {
  display: grid;
  gap: 12px;
}

.about-aside article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.about-aside strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.about-aside span {
  color: var(--muted);
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.engagement-card {
  min-height: 150px;
  padding: 22px;
  border-radius: var(--radius-md);
}

.engagement-card p {
  margin-top: 12px;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.8fr);
  gap: 30px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(18, 32, 51, 0.98), rgba(28, 42, 59, 0.98)),
    var(--navy);
  color: #fff;
  box-shadow: 0 22px 60px rgba(18, 32, 51, 0.2);
}

.contact-panel.contact-panel-home {
  display: block;
}

.contact-panel-home > div {
  max-width: 760px;
}

.contact-panel h2,
.contact-panel .eyebrow {
  color: #fff;
}

.contact-panel > div > p {
  max-width: 560px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-details a,
.contact-details span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
}

.contact-details a:hover {
  color: #fff;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.compact-button {
  width: fit-content;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.contact-form input {
  min-height: 48px;
  padding: 0 16px;
}

.contact-form select {
  min-height: 48px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.contact-form .button-primary {
  border-color: #fff;
  background: #fff;
  color: var(--navy);
  box-shadow: none;
}

.button-ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
}

.form-note {
  min-height: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.page-hero {
  display: grid;
  gap: 18px;
  max-width: 860px;
  margin-top: 54px;
}

.page-hero p:last-child {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.detail-stack,
.timeline-list {
  display: grid;
  gap: 16px;
}

.detail-card,
.timeline-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
}

.detail-card > div,
.timeline-card > div {
  display: grid;
  gap: 14px;
  align-content: start;
}

.detail-card > div > p:last-child {
  color: var(--muted);
}

.detail-card ul,
.timeline-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.detail-card li,
.timeline-card li {
  position: relative;
  padding-left: 18px;
}

.detail-card li::before,
.timeline-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warm);
  content: "";
}

.engagement-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.engagement-list span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  box-shadow: var(--shadow-card);
}

.page-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)),
    var(--warm-soft);
  box-shadow: var(--shadow-soft);
}

.page-cta > div {
  display: grid;
  gap: 12px;
}

.timeline-card h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.about-v3 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.about-with-portrait {
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr) minmax(260px, 0.72fr);
  align-items: start;
}

.about-portrait {
  margin: 0;
  max-width: 190px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 10px 24px rgba(18, 32, 51, 0.08);
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-v3 > div {
  display: grid;
  gap: 18px;
}

.about-v3 > div p {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.about-v3 aside {
  display: grid;
  gap: 12px;
}

.about-v3 article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.about-v3 article strong,
.about-v3 article span {
  display: block;
}

.about-v3 article span {
  margin-top: 6px;
  color: var(--muted);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(380px, 1fr);
  gap: 18px;
  align-items: start;
}

.contact-info-card,
.contact-form-light {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.contact-info-card {
  display: grid;
  gap: 18px;
}

.contact-details-dark a,
.contact-details-dark span {
  color: var(--ink-soft);
}

.contact-details-dark a:hover {
  color: var(--ink);
}

.contact-form-light label {
  color: var(--muted);
}

.contact-form-light input,
.contact-form-light select,
.contact-form-light textarea {
  border-color: rgba(18, 32, 51, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.contact-form-light input::placeholder,
.contact-form-light textarea::placeholder {
  color: rgba(51, 65, 85, 0.62);
}

.contact-form-light input:focus,
.contact-form-light select:focus,
.contact-form-light textarea:focus {
  border-color: rgba(18, 32, 51, 0.35);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(18, 32, 51, 0.08);
}

.contact-form-light .button-primary {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.form-note-dark {
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.7fr);
  gap: 22px 36px;
  margin-top: 30px;
  padding: 0 0 38px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-summary {
  display: grid;
  gap: 8px;
  max-width: 620px;
}

.footer-summary strong {
  color: var(--ink);
  font-size: 1rem;
}

.footer-meta {
  display: grid;
  gap: 6px;
  justify-items: start;
}

.footer-meta a:hover {
  color: var(--ink);
}

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .problem-card:hover,
  .model-card:hover,
  .service-card:hover,
  .step-card:hover,
  .proof-card:hover,
  .engagement-card:hover,
  .pipeline-stage:hover,
  .experience-v5-card:hover,
  .service-spine-card:hover,
  .capability-card:hover,
  .fit-card:hover,
  .journey-stage:hover,
  .snapshot-card:hover,
  .experience-snapshot:hover,
  .highlight-card:hover,
  .detail-card:hover,
  .timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(18, 32, 51, 0.12);
  }

  .problem-card,
  .model-card,
  .service-card,
  .step-card,
  .proof-card,
  .engagement-card,
  .pipeline-stage,
  .experience-v5-card,
  .service-spine-card,
  .capability-card,
  .fit-card,
  .journey-stage,
  .snapshot-card,
  .experience-snapshot,
  .highlight-card,
  .detail-card,
  .timeline-card {
    transition:
      transform 180ms ease,
      box-shadow 180ms ease,
      border-color 180ms ease;
  }
}

@media (max-width: 1080px) {
  .credibility-strip,
  .work-grid,
  .audience-grid,
  .model-grid,
  .pipeline-graphic,
  .pipeline-graphic-expanded,
  .service-spine,
  .fit-grid,
  .experience-snapshot-grid,
  .highlight-grid,
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-grid article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .about-panel,
  .contact-panel,
  .about-v3,
  .about-with-portrait,
  .about-v5,
  .experience-v5-card,
  .capability-grid,
  .proof-panel {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    max-width: 168px;
  }

  .pipeline-graphic::before {
    display: none;
  }

  .pipeline-groups {
    display: flex;
    flex-wrap: wrap;
  }

  .pipeline-groups span {
    flex: 1 1 150px;
  }

  .journey-map {
    grid-template-columns: 1fr;
  }

  .journey-bridge {
    min-height: 46px;
    grid-auto-flow: column;
    align-items: center;
  }

  .journey-bridge::before {
    top: 12px;
    bottom: 12px;
    left: 50%;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(18, 32, 51, 0.08), rgba(18, 32, 51, 0.28), rgba(18, 32, 51, 0.08));
  }

  .journey-bridge::after {
    top: auto;
    right: calc(50% - 4px);
    bottom: 5px;
    transform: rotate(135deg);
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 32px, 1240px);
  }

  .site-header-wrap {
    padding-top: 14px;
  }

  .site-header {
    position: relative;
    min-height: 66px;
  }

  .brand-text span {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(251, 250, 248, 0.96);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .section {
    margin-top: 86px;
  }

  .hero {
    min-height: auto;
    margin-top: 40px;
  }

  .hero-compact,
  .page-hero {
    margin-top: 38px;
  }

  .audience-band {
    margin-top: 28px;
  }

  .problems-grid,
  .model-grid,
  .services-grid,
  .proof-grid,
  .engagements-grid,
  .service-spine,
  .fit-grid,
  .model-flow-grid,
  .service-snapshot-grid,
  .why-list,
  .experience-snapshot-grid,
  .highlight-grid,
  .proof-strip,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .snapshot-card:nth-child(5) {
    grid-column: auto;
  }

  .section-heading-row,
  .page-cta {
    align-items: start;
    flex-direction: column;
  }

  .detail-card,
  .timeline-card {
    grid-template-columns: 1fr;
  }

  .prior-work-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card:nth-child(5) {
    grid-column: auto;
  }

  .pipeline-stage {
    min-height: auto;
  }

  .service-spine-card {
    min-height: auto;
  }

  .audience-v5-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 94px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .hero-actions,
  .credibility-strip,
  .work-grid,
  .audience-grid,
  .model-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .credibility-item,
  .audience-band,
  .problem-card,
  .pipeline-panel,
  .pipeline-stage,
  .delivery-note,
  .prior-work-panel,
  .about-v5,
  .experience-v5-card,
  .service-spine-card,
  .fit-card,
  .journey-stage,
  .model-card,
  .service-card,
  .step-card,
  .proof-card,
  .engagement-card,
  .snapshot-card,
  .experience-snapshot,
  .highlight-card,
  .detail-card,
  .timeline-card,
  .about-v3,
  .contact-info-card,
  .contact-form-light,
  .about-panel,
  .contact-panel,
  .planning-journey,
  .proof-panel {
    padding: 20px;
  }

  .contact-panel {
    border-radius: 26px;
  }

  .audience-grid article,
  .audience-grid article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 520px) {
  .pipeline-graphic {
    grid-template-columns: 1fr;
  }

  .pipeline-groups {
    display: grid;
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
