:root {
  --ink: #17201d;
  --soft-ink: #53605a;
  --muted: #7c817b;
  --line: #d8d1c4;
  --paper: #f4f0e7;
  --surface: #fffdf8;
  --forest: #1f5a4f;
  --forest-dark: #123d36;
  --brass: #88602b;
  --brass-on-dark: #d6b16f;
  --forest-tint: color-mix(in srgb, var(--forest) 7%, var(--surface));
  --brass-tint: color-mix(in srgb, var(--brass) 9%, var(--surface));
  --shadow-card: 0 10px 28px rgba(23, 32, 29, 0.055);
  --shadow-emphasis: 0 20px 56px rgba(23, 32, 29, 0.075);
  --font-brand: "DM Sans", "Segoe UI", Arial, sans-serif;
  --content-frame: 1280px;
  --content-width: 1184px;
  --page-gutter: clamp(18px, 4vw, 48px);
  --content-inset: max(var(--page-gutter), calc((100vw - var(--content-width)) / 2));
  --split-columns: minmax(0, 1.28fr) minmax(0, 1fr);
  --split-gap: clamp(40px, 5vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-brand);
  font-weight: 400;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 66px;
  padding: 0 var(--page-gutter);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  width: 100%;
  max-width: var(--content-width);
  min-height: 66px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--ink);
  background: var(--forest-dark);
  border: 1px solid color-mix(in srgb, var(--forest) 72%, var(--surface));
  border-radius: 4px;
  line-height: 0;
}

.brand-logo {
  width: auto;
  height: auto;
}

.brand-logo-header {
  width: 208px;
  margin: 4px 9px;
}

.brand-logo-footer {
  width: 300px;
  margin: 8px 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 600;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: color-mix(in srgb, var(--forest) 10%, var(--surface));
}

.site-nav a[aria-current="page"] {
  color: var(--forest-dark);
  background: var(--forest-tint);
}

.site-nav .nav-cta {
  margin-left: 5px;
  color: var(--surface);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 4px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.site-nav .nav-cta[aria-current="page"] {
  color: var(--surface);
  background: var(--forest-dark);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: var(--split-columns);
  gap: var(--split-gap);
  align-items: start;
  max-width: var(--content-frame);
  min-height: 0;
  margin: clamp(22px, 4vw, 42px) auto 0;
  padding: clamp(34px, 4vw, 48px) var(--page-gutter);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-emphasis);
}

.hero-copy {
  max-width: 680px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-brand);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.12;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(36px, 3.2vw, 46px);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--soft-ink);
  font-size: 17px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--surface);
  background: var(--forest);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--forest-dark);
}

.button.secondary {
  color: var(--forest);
  background: transparent;
  border-color: color-mix(in srgb, var(--forest) 28%, var(--surface));
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: color-mix(in srgb, var(--forest) 10%, var(--surface));
  border-color: color-mix(in srgb, var(--forest) 44%, var(--surface));
}

.hero-panel {
  display: grid;
  overflow: hidden;
  color: var(--surface);
  background: var(--forest-dark);
  border: 1px solid color-mix(in srgb, var(--forest-dark) 82%, var(--surface));
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.hero-panel article {
  padding: 18px 20px;
}

.hero-panel article + article {
  border-top: 1px solid color-mix(in srgb, var(--surface) 16%, transparent);
}

.hero-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--brass-on-dark);
  font-size: 11px;
  font-weight: 700;
}

.hero-panel strong {
  display: block;
  color: var(--surface);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
}

.hero-panel p {
  margin: 8px 0 0;
  color: var(--surface);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.growth-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: var(--content-frame);
  margin: 0 auto;
  padding: 0 var(--page-gutter) 24px;
}

.growth-strip article {
  min-height: 96px;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.growth-strip article:nth-child(1) {
  background: var(--forest-tint);
}

.growth-strip article:nth-child(2) {
  background: var(--surface);
}

.growth-strip article:nth-child(3) {
  background: var(--brass-tint);
}

.growth-strip article:first-child {
  border-radius: 8px 0 0 8px;
}

.growth-strip article:last-child {
  border-radius: 0 8px 8px 0;
}

.growth-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.growth-strip strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.28;
}

.visual-band {
  max-width: var(--content-frame);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

.visual-band img {
  width: 100%;
  height: clamp(112px, 16vw, 190px);
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.home-visual {
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.home-visual img {
  height: clamp(130px, 12vw, 190px);
  object-position: center 46%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 0.84;
}

.trade-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--content-frame);
  margin: 0 auto;
  padding: 0 var(--page-gutter) 28px;
}

.trade-strip span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 9px 14px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.trade-strip span:nth-child(1) {
  background: var(--surface);
}

.trade-strip span:nth-child(2) {
  background: var(--surface);
}

.trade-strip span:nth-child(3) {
  background: var(--surface);
}

.trade-strip span:nth-child(4) {
  background: var(--surface);
}

.trade-strip span:nth-child(5) {
  background: var(--surface);
}

.section {
  padding: clamp(56px, 7vw, 80px) var(--page-gutter);
}

.home-paths,
.contact-cta {
  padding-top: clamp(46px, 7vw, 70px);
  padding-bottom: clamp(46px, 7vw, 70px);
}

.home-paths {
  padding-bottom: clamp(28px, 4vw, 40px);
}

.home-proof {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-proof-shell {
  display: grid;
  grid-template-columns: var(--split-columns);
  gap: var(--split-gap);
  align-items: start;
  max-width: var(--content-width);
  margin: 0 auto;
}

.home-proof-shell h2 {
  max-width: 680px;
}

.home-proof-copy {
  max-width: 560px;
}

.home-proof-copy p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 17px;
}

.home-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: var(--content-width);
  margin: 38px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-proof-list article {
  padding: 26px 28px 28px 0;
}

.home-proof-list article + article {
  padding-right: 0;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.home-proof-list span {
  display: block;
  margin-bottom: 16px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-proof-list h3 {
  max-width: 480px;
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

.home-proof-list p {
  max-width: 510px;
  margin: 14px 0 0;
  color: var(--soft-ink);
}

.home-proof-list a {
  display: inline-block;
  margin-top: 20px;
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--forest) 35%, transparent);
  text-underline-offset: 4px;
}

.intro {
  background: var(--paper);
}

.two-column,
.section-heading,
.fit-layout,
.method-shell,
.contact-shell {
  display: grid;
  grid-template-columns: var(--split-columns);
  gap: var(--split-gap);
  align-items: start;
  max-width: var(--content-width);
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(28px, 2.6vw, 36px);
}

.two-column p,
.section-heading p,
.method-list p,
.fit li,
.contact-copy p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 17px;
}

.services {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dedicated {
  background: var(--forest-tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dedicated-shell {
  display: grid;
  grid-template-columns: var(--split-columns);
  gap: var(--split-gap);
  align-items: start;
  max-width: var(--content-width);
  margin: 0 auto;
}

.dedicated-list {
  display: grid;
  gap: 14px;
}

.dedicated-list article {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.dedicated-list h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
}

.dedicated-list p {
  margin: 0;
  color: var(--soft-ink);
}

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

.full-width-heading {
  display: block;
  max-width: var(--content-width);
}

.case-study {
  scroll-margin-top: 76px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-study-shell {
  max-width: var(--content-width);
  margin: 0 auto;
}

.case-study-heading {
  max-width: 860px;
}

.case-study-heading > p:not(.section-kicker) {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--soft-ink);
  font-size: 17px;
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-facts article {
  min-height: 118px;
  padding: 20px;
}

.case-facts article + article {
  border-left: 1px solid var(--line);
}

.case-facts span {
  display: block;
  margin-bottom: 12px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-facts strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.case-study-story {
  display: grid;
  grid-template-columns: var(--split-columns);
  gap: var(--split-gap);
  align-items: start;
  margin-top: 44px;
}

.case-study-story h3,
.case-study-outcome h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}

.case-study-story > div > p:not(.section-kicker),
.case-study-outcome > p:not(.section-kicker) {
  margin: 16px 0 0;
  color: var(--soft-ink);
  font-size: 16px;
}

.case-study-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.case-study-list li {
  padding: 11px 0;
  color: var(--soft-ink);
  border-bottom: 1px solid var(--line);
}

.case-study-outcome {
  max-width: 880px;
  margin-top: 46px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.home-section-head {
  max-width: var(--content-width);
  margin: 0 auto 30px;
}

.home-section-head > div {
  max-width: 720px;
}

.home-section-head h2 {
  max-width: 680px;
}

.home-section-head > div > p:not(.section-kicker) {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--soft-ink);
  font-size: 16px;
}

.section-heading h2 {
  max-width: 740px;
}

.capacity-story,
.brand-belief {
  background: var(--paper);
}

.capacity-story-shell,
.brand-belief-shell {
  display: grid;
  grid-template-columns: var(--split-columns);
  gap: var(--split-gap);
  align-items: start;
  max-width: var(--content-width);
  margin: 0 auto;
}

.capacity-story-copy {
  max-width: 560px;
}

.capacity-story-body p,
.brand-belief-copy p {
  margin: 18px 0 0;
  color: var(--soft-ink);
  font-size: 17px;
}

.capacity-story-body {
  max-width: 560px;
}

.brand-principles {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-belief-copy {
  max-width: 560px;
}

.capacity-story-body p:first-child,
.brand-belief-copy p:first-child {
  margin-top: 0;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--content-width);
  margin: 0 auto;
}

.path-card {
  display: grid;
  min-height: 204px;
  align-content: start;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--forest);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  transition: transform 160ms ease, border-color 160ms ease;
}

.path-card:hover,
.path-card:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--forest) 34%, var(--surface));
}

.path-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.path-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
}

.path-card p {
  margin: 0;
  color: var(--soft-ink);
}

.service-table {
  display: grid;
  max-width: var(--content-width);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.service-table article {
  display: grid;
  grid-template-columns: 70px minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-table span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
}

.service-table h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
}

.service-table p {
  margin: 0;
  color: var(--soft-ink);
}

.method {
  background: var(--paper);
}

.method-copy,
.method-list {
  max-width: 560px;
}

.method-list {
  display: grid;
  gap: 0;
  width: 100%;
}

.method-list article {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 16px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
}

.method-list article + article {
  padding-top: 24px;
}

.method-list h3 {
  grid-column: 2;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
}

.method-list span {
  grid-row: 1 / span 2;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
}

.method-list p {
  grid-column: 2;
}

.fit {
  background: var(--surface);
}

.fit-layout {
  margin-top: 0;
}

.fit ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.rhythm {
  padding-top: clamp(48px, 6vw, 68px);
  padding-bottom: clamp(48px, 6vw, 68px);
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rhythm-shell {
  max-width: var(--content-width);
  margin: 0 auto;
}

.rhythm-heading {
  display: grid;
  grid-template-columns: var(--split-columns);
  gap: var(--split-gap);
  align-items: end;
}

.rhythm-heading h2 {
  max-width: 650px;
}

.rhythm-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--soft-ink);
  font-size: 17px;
}

.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rhythm-grid article {
  min-height: 170px;
  padding: 22px;
}

.rhythm-grid article + article {
  border-left: 1px solid var(--line);
}

.rhythm-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
}

.rhythm-grid h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
}

.rhythm-grid p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 15px;
}

.contact {
  background: var(--paper);
}

.contact-cta {
  background: var(--forest-dark);
  border-top: 1px solid var(--line);
}

.contact-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: var(--content-width);
  margin: 0 auto;
  text-align: left;
}

.contact-cta .section-kicker {
  color: var(--brass-on-dark);
}

.contact-cta h2 {
  color: var(--surface);
}

.contact-cta-shell p:not(.section-kicker) {
  max-width: 620px;
  margin: 16px 0 0;
  color: color-mix(in srgb, var(--surface) 78%, transparent);
  font-size: 17px;
}

.contact-cta-shell .button {
  margin-top: 0;
  white-space: nowrap;
}

.pilot-hero {
  display: grid;
  grid-template-columns: var(--split-columns);
  gap: var(--split-gap);
  align-items: start;
  width: 100%;
  padding: clamp(42px, 5vw, 64px) var(--content-inset) clamp(38px, 5vw, 58px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.pilot-copy h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-brand);
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.12;
}

.pilot-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--soft-ink);
  font-size: 17px;
}

.pilot-summary {
  padding: 22px;
  background: var(--forest-tint);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.pilot-summary span {
  display: block;
  margin-bottom: 12px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pilot-summary ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--soft-ink);
}

.page-hero {
  width: 100%;
  padding: clamp(42px, 5vw, 64px) var(--content-inset) clamp(36px, 4vw, 52px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-brand);
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.12;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--soft-ink);
  font-size: 17px;
}

.page-section {
  background: var(--paper);
}

.detail-grid,
.industry-grid,
.proof-grid {
  display: grid;
  gap: 18px;
  max-width: var(--content-width);
  margin: 0 auto;
}

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.detail-card,
.industry-grid article,
.industry-card,
.proof-grid article {
  min-height: 260px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.detail-card span,
.industry-grid span,
.industry-card span,
.proof-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-card h2,
.industry-grid h2,
.industry-card h2,
.proof-grid h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--font-brand);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
}

.detail-card p,
.industry-grid p,
.industry-card p,
.proof-grid p {
  margin: 0;
  color: var(--soft-ink);
}

.industry-card {
  display: block;
  transition: transform 160ms ease, border-color 160ms ease;
}

.industry-card:hover,
.industry-card:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--forest) 34%, var(--surface));
}

.trade-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--content-width);
  margin: 0 auto;
}

.detail-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.detail-card li {
  padding-top: 8px;
  color: var(--soft-ink);
  border-top: 1px solid var(--line);
}

.accent-forest,
.accent-forest-soft {
  background: var(--forest-tint);
  border-top: 4px solid var(--forest);
}

.accent-brass,
.accent-brass-soft {
  background: var(--brass-tint);
  border-top: 4px solid var(--brass);
}

.contact-copy h2 {
  max-width: 650px;
}

.contact-copy p {
  margin-top: 18px;
}

.contact-copy a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--forest);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-form label:nth-last-of-type(1),
.form-button,
.form-note {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--forest) 24%, transparent);
  border-color: var(--forest);
}

.contact-form textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
  margin-top: 2px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-note.is-success {
  color: var(--forest);
  font-weight: 700;
}

.form-note.is-error {
  color: #9a3d2d;
  font-weight: 700;
}

.site-footer {
  padding: 28px var(--page-gutter);
  color: var(--soft-ink);
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.footer-contact a {
  color: var(--forest);
  font-weight: 700;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--soft-ink);
  font-size: 12px;
}

.footer-legal a,
.footer-legal button {
  color: inherit;
  font: inherit;
}

.footer-legal a:hover,
.footer-legal a:focus-visible,
.footer-legal button:hover,
.footer-legal button:focus-visible {
  color: var(--forest-dark);
}

.footer-legal button {
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.footer-site-link {
  color: var(--ink);
  font-weight: 800;
}

.privacy-section {
  background: var(--paper);
}

.privacy-shell {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.privacy-updated {
  margin: 0 0 34px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.privacy-block + .privacy-block {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.privacy-block h2 {
  font-size: 24px;
}

.privacy-block p {
  margin: 12px 0 0;
  color: var(--soft-ink);
  font-size: 16px;
}

.privacy-block a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(680px, calc(100vw - 48px));
  padding: 20px;
  gap: 24px;
  align-items: center;
  color: var(--surface);
  background: var(--forest-dark);
  border: 1px solid color-mix(in srgb, var(--surface) 18%, transparent);
  border-radius: 6px;
  box-shadow: var(--shadow-emphasis);
}

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

.consent-banner strong {
  font-size: 15px;
}

.consent-banner p {
  margin: 4px 0 0;
  color: color-mix(in srgb, var(--surface) 78%, transparent);
  font-size: 13px;
}

.consent-banner p a {
  color: var(--surface);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-actions {
  display: flex;
  gap: 8px;
}

.consent-actions .button {
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
}

.consent-actions .secondary {
  color: var(--surface);
  background: transparent;
  border-color: color-mix(in srgb, var(--surface) 42%, transparent);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-card);
  }

  .site-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero,
  .growth-strip,
  .pilot-hero,
  .path-grid,
  .detail-grid,
  .proof-grid,
  .trade-detail-grid,
  .two-column,
  .section-heading,
  .home-proof-shell,
  .case-study-story,
  .capacity-story-shell,
  .brand-belief-shell,
  .dedicated-shell,
  .fit-layout,
  .method-shell,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .home-proof-list {
    grid-template-columns: 1fr;
  }

  .home-proof-list article,
  .home-proof-list article + article {
    padding: 24px 0;
  }

  .home-proof-list article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .growth-strip article,
  .growth-strip article:first-child,
  .growth-strip article:last-child {
    border-radius: 8px;
  }

  .hero {
    min-height: 0;
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-facts article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .case-facts article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .industry-grid .industry-card {
    grid-column: auto;
    grid-row: auto;
  }

  .industry-card:last-child {
    grid-column: 1 / -1;
  }

  .hero-panel {
    max-width: 520px;
  }

  .service-table article {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .service-table p {
    grid-column: 2;
  }

  .rhythm-heading {
    grid-template-columns: 1fr;
  }

  .rhythm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rhythm-grid article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .rhythm-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
    padding: 0 var(--page-gutter);
  }

  .header-inner {
    min-height: 64px;
  }

  .brand-logo-header {
    width: 172px;
    margin: 4px 8px;
  }

  .site-nav {
    top: 64px;
    right: var(--page-gutter);
    left: var(--page-gutter);
  }

  .hero {
    margin: 18px 18px 0;
    padding: 32px 22px 22px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .pilot-copy h1 {
    font-size: 34px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .hero-copy > p:not(.eyebrow),
  .two-column p,
  .section-heading p,
  .method-list p,
  .fit li,
  .contact-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .footer-meta {
    justify-items: start;
  }

  .consent-banner {
    right: 18px;
    bottom: 18px;
    grid-template-columns: 1fr;
    width: calc(100vw - 36px);
    gap: 16px;
  }

  .consent-actions {
    width: 100%;
  }

  .brand-logo-footer {
    width: min(100%, 284px);
    margin: 7px 9px;
  }

  .contact-cta-shell {
    display: grid;
    grid-template-columns: 1fr;
    text-align: left;
  }

  .rhythm-heading,
  .rhythm-grid {
    grid-template-columns: 1fr;
  }

  .rhythm-grid article {
    min-height: 0;
  }

  .rhythm-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .button {
    width: 100%;
  }

  .visual-band img {
    height: 118px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .case-facts {
    grid-template-columns: 1fr;
  }

  .case-facts article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .industry-card:last-child {
    grid-column: auto;
  }

  .service-table article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-table p {
    grid-column: auto;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

}
