:root {
  --font-inter: "Inter";
  --font-serif: "DM Serif Display";
  --canvas: #f6f3ec;
  --paper: #ffffff;
  --navy: #102a43;
  --navy-deep: #0b2239;
  --ink: #344054;
  --muted: #667085;
  --teal: #137c79;
  --teal-dark: #0a5c5a;
  --teal-pale: #e5f3f1;
  --line: #d9ddd8;
  --line-soft: #e9ece8;
  --shadow: 0 18px 48px rgba(16, 42, 67, 0.1);
  --shell: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-inter), Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-inter), Inter, Arial, sans-serif;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(19, 124, 121, 0.3);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.12;
}

h1,
h2 {
  letter-spacing: -0.03em;
}

h1 {
  font-family: var(--font-serif), Georgia, serif;
  font-size: clamp(3.2rem, 5.2vw, 5.1rem);
  font-weight: 400;
}

h2 {
  font-family: var(--font-serif), Georgia, serif;
  font-size: clamp(2.35rem, 3.7vw, 3.7rem);
  font-weight: 400;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.018em;
}

.shell {
  width: min(calc(100% - 112px), var(--shell));
  margin-inline: auto;
}

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

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 16px;
  background: var(--navy);
  color: white;
}

.utility-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  letter-spacing: 0.015em;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-inner div {
  display: flex;
  gap: 12px;
}

.utility-inner a:hover {
  color: white;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  min-width: 264px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--navy);
  font-family: var(--font-serif), Georgia, serif;
  font-size: 1.02rem;
  line-height: 1.05;
}

.brand img {
  width: 66px;
  height: 44px;
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
}

.brand strong {
  margin-top: 4px;
  font-family: var(--font-inter), Inter, sans-serif;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.desktop-nav a {
  position: relative;
  color: var(--navy);
  font-size: 0.91rem;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 13px 23px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 7px 16px rgba(19, 124, 121, 0.16);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-outline {
  border-color: var(--teal);
  background: transparent;
  color: var(--teal-dark);
}

.button-outline:hover {
  background: var(--teal-pale);
}

.header-action {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 10px 17px;
  font-size: 0.82rem;
}

.button-light {
  background: white;
  color: var(--navy);
}

.button-light:hover {
  background: var(--teal-pale);
}

.menu-button,
.mobile-nav {
  display: none;
}

.home-hero {
  overflow: hidden;
  background: var(--canvas);
}

.home-hero-grid {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(540px, 1.08fr);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 76px 70px 72px 0;
  animation: rise-in 500ms ease both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 46px;
  height: 2px;
  content: "";
  background: var(--teal);
}

.hero-copy h1 {
  max-width: 650px;
  margin-bottom: 24px;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 31px;
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-visual {
  position: relative;
  min-height: 670px;
  overflow: visible;
  border-top-left-radius: 92px;
  animation: fade-in 650ms 150ms ease both;
}

.hero-visual > img {
  width: calc(100% + max(56px, (100vw - var(--shell)) / 2));
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  border-top-left-radius: 92px;
}

.proof-card {
  position: absolute;
  bottom: 27px;
  left: -18px;
  min-width: 315px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 9px;
  padding: 18px 23px;
  background: white;
  box-shadow: var(--shadow);
  animation: rise-in 450ms 380ms ease both;
}

.proof-icon {
  width: 51px;
  height: 51px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal);
}

.proof-card p {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-serif), Georgia, serif;
  font-size: 1.07rem;
  line-height: 1.3;
}

.proof-card strong {
  display: block;
  font-weight: 400;
}

.hero-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero-trust-strip a {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--navy);
  font-weight: 650;
}

.hero-trust-strip a + a {
  border-left: 1px solid var(--line);
}

.trust-icon {
  color: var(--teal);
}

.section {
  padding-block: 110px;
}

.section-compact {
  padding-block: 92px;
}

.section-alt {
  background: #f7f8f5;
}

.section-intro {
  background: white;
}

.split-heading,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}

.split-heading h2,
.section-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.75;
}

.section-heading > .text-link {
  justify-self: end;
  margin-bottom: 12px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.solution-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 34px;
  background: white;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.solution-card:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon-tile {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 22px;
  background: var(--teal-pale);
  color: var(--teal-dark);
}

.card-eyebrow {
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solution-card h3 {
  margin-bottom: 14px;
  font-size: 1.42rem;
}

.solution-card > p:not(.card-eyebrow) {
  margin-bottom: 24px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 750;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.centred-action {
  display: flex;
  justify-content: center;
  padding-top: 42px;
}

.work-feature {
  display: grid;
  grid-template-columns: minmax(370px, 0.78fr) minmax(560px, 1.22fr);
  gap: 76px;
  align-items: center;
}

.work-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.03rem;
}

.work-copy h2 {
  margin-bottom: 24px;
}

.work-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

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

.work-metrics span {
  color: var(--muted);
  font-size: 0.8rem;
}

.system-window {
  overflow: hidden;
  border: 1px solid #dfe5e3;
  border-radius: 13px;
  background: white;
  box-shadow: 0 24px 70px rgba(16, 42, 67, 0.13);
}

.system-topbar {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 28px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--navy);
  font-weight: 750;
}

.system-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 20px;
  padding: 7px 12px;
  background: #edf7f1;
  color: #2b6d4d;
  font-size: 0.72rem;
}

.system-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #3c9b6b;
}

.system-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 22px;
  background: #f9faf8;
}

.system-metrics div {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 17px;
  background: white;
}

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

.system-metrics span {
  color: var(--muted);
  font-size: 0.7rem;
}

.system-metrics strong {
  margin: 7px 0 3px;
  color: var(--navy);
  font-size: 1.55rem;
}

.system-metrics em {
  color: var(--teal);
  font-size: 0.68rem;
  font-style: normal;
}

.system-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 22px;
}

.chart-panel,
.activity-panel {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 19px;
}

.chart-panel > p,
.activity-panel > p {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 750;
}

.bar-chart {
  height: 150px;
  display: flex;
  align-items: end;
  gap: 9px;
  border-bottom: 1px solid var(--line);
  background-image: linear-gradient(to top, transparent 49%, #edf0ed 50%, transparent 51%);
  background-size: 100% 50px;
}

.bar-chart i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--teal), #5ab1ac);
  opacity: 0.85;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  padding-top: 7px;
  color: #98a2b3;
  font-size: 0.62rem;
}

.activity-row {
  margin-top: 18px;
}

.activity-row > span,
.activity-row small {
  display: block;
}

.activity-row > span {
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 650;
}

.activity-row small {
  margin-top: 2px;
  color: #98a2b3;
  font-weight: 400;
}

.activity-row > i {
  height: 5px;
  display: block;
  overflow: hidden;
  margin-top: 8px;
  border-radius: 5px;
  background: #edf0ed;
}

.activity-row > i b {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--teal);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.project-grid-home {
  grid-template-columns: repeat(3, 1fr);
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.project-image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #eef1ee;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.project-card:hover .project-image img {
  transform: scale(1.025);
}

.project-image > span {
  position: absolute;
  top: 18px;
  left: 18px;
  border-radius: 30px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.project-content {
  padding: 28px;
}

.project-content h2,
.project-content h3 {
  margin-bottom: 13px;
}

.project-content h2 {
  font-family: var(--font-inter), Inter, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.project-content p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 5px 10px;
  color: var(--teal-dark);
  font-size: 0.67rem;
  font-weight: 650;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.industry-grid article {
  padding: 34px 34px 30px 0;
  border-bottom: 1px solid var(--line);
}

.industry-grid article:nth-child(3n + 2),
.industry-grid article:nth-child(3n + 3) {
  border-left: 1px solid var(--line);
  padding-left: 34px;
}

.industry-grid svg {
  margin-bottom: 20px;
  color: var(--teal);
}

.industry-grid h3 {
  margin-bottom: 10px;
}

.industry-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.insight-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--teal);
  padding: 30px;
  background: #f7f8f5;
}

.insight-card h2,
.insight-card h3 {
  margin-bottom: 18px;
  font-family: var(--font-serif), Georgia, serif;
  font-size: 1.64rem;
  font-weight: 400;
  line-height: 1.25;
}

.insight-card > p:not(.card-eyebrow) {
  color: var(--muted);
  font-size: 0.91rem;
}

.insight-card > span {
  margin-top: auto;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 750;
}

.cta-section {
  padding: 0 0 90px;
  background: white;
}

.cta-panel {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 70px;
  align-items: center;
  padding: 65px 72px;
  background: var(--navy);
  color: white;
}

.eyebrow-light {
  color: #a9d8d5;
}

.eyebrow-light::before {
  background: #a9d8d5;
}

.cta-panel h2 {
  max-width: 800px;
  margin-bottom: 18px;
  color: white;
}

.cta-panel > div > p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.text-link-light {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding-top: 78px;
  background: #081d31;
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.7fr 1fr;
  gap: 60px;
  padding-bottom: 65px;
}

.brand-light {
  color: white;
}

.footer-brand > p {
  max-width: 420px;
  margin: 24px 0;
}

.footer-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  font-size: 0.71rem;
}

.footer-grid h2 {
  margin: 7px 0 22px;
  color: white;
  font-family: var(--font-inter), Inter, sans-serif;
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) > a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.84rem;
}

.footer-grid a:hover {
  color: white;
}

.footer-contact p {
  margin-top: 20px;
  font-size: 0.84rem;
}

.footer-whatsapp {
  color: #9ed1ce;
  font-weight: 700;
}

.footer-bottom {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 105px 110px;
  background: var(--canvas);
}

.page-hero::after {
  position: absolute;
  top: 0;
  right: -130px;
  width: 520px;
  height: 100%;
  content: "";
  opacity: 0.55;
  background:
    linear-gradient(125deg, transparent 47%, rgba(19, 124, 121, 0.1) 47.3%, transparent 47.8%),
    linear-gradient(145deg, transparent 60%, rgba(16, 42, 67, 0.08) 60.3%, transparent 60.8%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 1000px;
  margin-bottom: 25px;
}

.page-hero-copy {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.13rem;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 90px minmax(280px, 0.8fr) minmax(400px, 1.2fr);
  gap: 44px;
  padding-block: 58px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 130px;
}

.service-number {
  padding-top: 11px;
  color: #98a2b3;
  font-size: 0.76rem;
  font-weight: 700;
}

.service-heading .icon-tile {
  margin-bottom: 19px;
}

.service-heading h2 {
  max-width: 420px;
  margin-bottom: 0;
  font-family: var(--font-inter), Inter, sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.55rem);
  font-weight: 650;
}

.service-detail > p {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1rem;
}

.service-detail ul,
.sector-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 22px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.service-detail li,
.sector-card li {
  position: relative;
  padding-left: 20px;
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 600;
}

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

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.delivery-grid > div {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  margin-bottom: 35px;
}

.delivery-grid article {
  border-top: 2px solid var(--navy);
  padding-top: 25px;
}

.delivery-grid article > span {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
}

.delivery-grid h3 {
  margin: 22px 0 11px;
}

.delivery-grid article p {
  color: var(--muted);
  font-size: 0.88rem;
}

.sector-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.sector-card {
  border: 1px solid var(--line);
  padding: 38px;
  background: white;
}

.sector-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.sector-number {
  color: #98a2b3;
  font-size: 0.76rem;
}

.sector-card h2 {
  margin-bottom: 16px;
  font-family: var(--font-inter), Inter, sans-serif;
  font-size: 1.75rem;
  font-weight: 650;
}

.sector-card > p {
  color: var(--muted);
}

.sector-card ul {
  margin: 25px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.confidentiality-note {
  max-width: 800px;
  margin: 42px auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.outcomes-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.outcomes-grid > div,
.values-grid > div {
  grid-column: 1 / -1;
  max-width: 850px;
  margin-bottom: 25px;
}

.outcomes-grid article,
.values-grid article {
  border-top: 1px solid var(--line);
  padding: 27px 10px 10px 0;
}

.outcomes-grid strong,
.values-grid h3 {
  display: block;
  margin-bottom: 11px;
  color: var(--navy);
  font-size: 1.2rem;
}

.outcomes-grid p,
.values-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-top-left-radius: 70px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy h2 {
  margin-bottom: 26px;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.credentials-panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.credentials-panel dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.credentials-panel dl div {
  min-height: 140px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credentials-panel dt {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credentials-panel dd {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-serif), Georgia, serif;
  font-size: 1.5rem;
}

.featured-insight {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  margin-bottom: 60px;
  background: var(--canvas);
}

.featured-insight > div {
  min-height: 480px;
}

.featured-insight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-insight article {
  align-self: center;
  padding: 56px;
}

.featured-insight h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.featured-insight article > p:not(.eyebrow) {
  color: var(--muted);
}

.featured-insight article > span {
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
}

.insights-page-grid {
  margin-top: 30px;
}

.contact-section {
  background: #f7f8f5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: start;
}

.contact-panel {
  border: 1px solid var(--line);
  padding: 48px;
  background: white;
}

.contact-panel > h2 {
  margin-bottom: 15px;
}

.contact-panel > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 20px;
  margin-top: 35px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd6d2;
  border-radius: 4px;
  padding: 13px 14px;
  background: white;
  color: var(--ink);
  font-size: 0.91rem;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-submit {
  justify-self: start;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  margin: 0;
  border-left: 3px solid var(--teal);
  padding: 10px 14px;
  background: var(--teal-pale);
  font-size: 0.82rem;
}

.form-status.error {
  border-color: #b5483f;
  background: #fceeed;
  color: #8d332d;
}

.contact-details {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.contact-details > div {
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details a {
  display: block;
  margin: 3px 0;
  color: var(--navy);
  font-weight: 650;
}

.contact-details p {
  margin-bottom: 0;
}

.contact-details .card-eyebrow {
  margin-bottom: 10px;
}

.contact-details .text-link {
  display: inline-flex;
  color: var(--teal-dark);
}

.response-note {
  margin-top: 20px;
  border: 0 !important;
  padding: 25px !important;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
}

.response-note strong {
  color: white;
}

.response-note p {
  margin-top: 9px;
  font-size: 0.84rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1180px) {
  .shell {
    width: min(calc(100% - 64px), var(--shell));
  }

  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav a {
    font-size: 0.82rem;
  }

  .header-action {
    display: none;
  }

  .home-hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .hero-copy {
    padding-right: 45px;
  }

  .project-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-grid-home .project-card:last-child {
    display: none;
  }
}

@media (max-width: 960px) {
  .utility-bar,
  .desktop-nav {
    display: none;
  }

  .site-header {
    top: 0;
  }

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

  .brand {
    min-width: 0;
  }

  .menu-button {
    width: 46px;
    height: 42px;
    display: grid;
    margin-left: auto;
    border: 0;
    padding: 10px;
    background: transparent;
  }

  .menu-button span:not(.sr-only) {
    width: 24px;
    height: 2px;
    display: block;
    align-self: center;
    background: var(--navy);
  }

  .mobile-nav {
    display: none;
    border-top: 1px solid var(--line);
    padding: 16px 32px 27px;
    background: white;
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav > a:not(.button) {
    padding: 12px 0;
    border-bottom: 1px solid var(--line-soft);
    color: var(--navy);
    font-weight: 650;
  }

  .mobile-nav .button {
    margin-top: 18px;
  }

  .home-hero-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: min(calc(100% - 64px), var(--shell));
    margin-inline: auto;
    padding: 80px 0 60px;
  }

  .hero-copy h1 {
    max-width: 770px;
  }

  .hero-visual {
    min-height: 580px;
    margin-left: 32px;
  }

  .hero-visual > img {
    width: 100%;
  }

  .proof-card {
    left: 25px;
  }

  .hero-trust-strip {
    width: 100%;
  }

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

  .solution-card {
    min-height: 350px;
  }

  .industry-grid article:nth-child(3n + 2),
  .industry-grid article:nth-child(3n + 3) {
    border-left: 0;
    padding-left: 0;
  }

  .industry-grid article:nth-child(even) {
    border-left: 1px solid var(--line);
    padding-left: 30px;
  }

  .work-feature,
  .about-story,
  .credentials-panel,
  .featured-insight,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .system-window {
    max-width: 760px;
  }

  .service-row {
    grid-template-columns: 50px 0.85fr 1.15fr;
    gap: 25px;
  }

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

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

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .shell {
    width: calc(100% - 40px);
  }

  .brand {
    gap: 8px;
    font-size: 0.88rem;
  }

  .brand img {
    width: 49px;
    height: 36px;
  }

  .brand strong {
    font-size: 0.6rem;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-copy {
    width: calc(100% - 40px);
    padding-block: 64px 48px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-visual {
    min-height: 420px;
    margin-left: 20px;
    border-top-left-radius: 52px;
  }

  .hero-visual > img {
    border-top-left-radius: 52px;
    object-position: 60% center;
  }

  .proof-card {
    right: 18px;
    bottom: 18px;
    left: 18px;
    min-width: 0;
  }

  .hero-trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-trust-strip a {
    min-height: 78px;
    justify-content: flex-start;
    padding-inline: 26px;
  }

  .hero-trust-strip a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section,
  .page-hero {
    padding-block: 76px;
  }

  .section-compact {
    padding-block: 70px;
  }

  .split-heading,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 42px;
  }

  .section-heading > .text-link {
    justify-self: start;
  }

  .solution-grid,
  .project-grid,
  .project-grid-home,
  .industry-grid,
  .insights-grid,
  .sector-list,
  .outcomes-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .project-grid-home .project-card:last-child {
    display: block;
  }

  .solution-card {
    min-height: 0;
  }

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

  .work-feature {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .system-metrics,
  .system-body {
    grid-template-columns: 1fr;
  }

  .system-metrics {
    padding: 14px;
  }

  .bar-chart {
    height: 120px;
  }

  .cta-section {
    padding-bottom: 54px;
  }

  .cta-panel {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 54px 24px;
  }

  .page-hero-copy {
    font-size: 1rem;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-number {
    padding-top: 0;
  }

  .service-detail ul,
  .sector-card ul {
    grid-template-columns: 1fr;
  }

  .delivery-grid,
  .delivery-grid > div {
    grid-template-columns: 1fr;
  }

  .delivery-grid > div {
    gap: 0;
  }

  .sector-card,
  .contact-panel {
    padding: 28px 22px;
  }

  .about-story {
    gap: 40px;
  }

  .about-image {
    border-top-left-radius: 45px;
  }

  .credentials-panel dl,
  .form-row {
    grid-template-columns: 1fr;
  }

  .featured-insight > div {
    min-height: 300px;
  }

  .featured-insight article {
    padding: 35px 25px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 25px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 22px;
  }
}

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