/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

/* ─── Tokens ─── */
:root {
  --primary:        #4F39E6;
  --primary-deep:   #3d2cc4;
  --on-primary:     #ffffff;
  --cream:          #fff8e0;
  --cream-light:    #fffaeb;
  --cream-deeper:   #fff0c2;
  --beige-deep:     #e6d5a8;
  --ink:            #1f1f1f;
  --ink-tint:       #3d3d3d;
  --steel:          #6a6a6a;
  --stone:          #767676;
  --canvas:         #ffffff;
  --surface:        #fafafa;
  --hairline-soft:  #ededed;
  --hairline-strong:#c7c7c7;
  --font-serif: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-sans:  'Inter', ui-sans-serif, system-ui, sans-serif;
  --radius-btn:  0;
  --radius-card: 0;
  --radius-pill: 0;
  --section-pad: 128px;
  --container-max: 1100px;
  --gutter: 32px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Base ─── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Container ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── Typography helpers ─── */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  line-height: 1.4;
  margin-bottom: 16px;
}

.sec-h {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 20px;
}

.sec-sub {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--steel);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ─── Buttons ─── */
.btn-primary, .btn-secondary, .btn-dark, .btn-on-cream, .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  padding: 10px 20px;
  border-radius: var(--radius-btn);
}
.btn-primary:hover { background: var(--primary-deep); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--hairline-strong);
}
.btn-secondary:hover { border-color: var(--ink); }

.btn-dark {
  background: var(--ink);
  color: var(--canvas);
  padding: 10px 20px;
  border-radius: var(--radius-btn);
}
.btn-dark:hover { background: var(--ink-tint); }

.btn-on-cream {
  background: var(--canvas);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--beige-deep);
}
.btn-on-cream:hover { border-color: var(--hairline-strong); }

.btn-link {
  background: transparent;
  color: var(--primary);
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  border: none;
}
.btn-link:hover { text-decoration: underline; }

/* ─── Skip link ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--ink);
  color: var(--canvas);
  padding: 8px 16px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  z-index: 200;
}
.skip-link:focus { top: 0; }

/* ─── Focus styles ─── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 0;
}

/* ─── Cards ─── */
.card-base {
  background: var(--canvas);
  border-radius: var(--radius-card);
  border: 1px solid var(--hairline-soft);
  padding: 24px;
}

.card-feature {
  background: var(--canvas);
  border-radius: var(--radius-card);
  border: 1px solid var(--hairline-soft);
  padding: 32px;
}

.card-cream {
  background: var(--cream);
  border-radius: var(--radius-card);
  border: 1px solid var(--beige-deep);
  padding: 32px;
  color: var(--ink);
}

/* ─── Badges ─── */
.badge-cream {
  display: inline-block;
  background: var(--cream-deeper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}

.badge-dark {
  display: inline-block;
  background: var(--ink);
  color: var(--canvas);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline-soft);
  height: 64px;
  overflow: visible;
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: stretch;
  border-right: 1px solid var(--hairline-soft);
  transition: background 150ms ease;
}

/* Reverse-spotlight: dim the whole bar on hover, restore the active cell */
.nav-inner:hover { background: var(--surface); }
.nav-inner:hover .nav-cell:hover { background: var(--canvas); }

.nav-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  border-left: 1px solid var(--hairline-soft);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  text-decoration: none;
  transition: background 150ms ease;
  cursor: pointer;
}

.nav-logo {
  padding: 0 24px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-spacer {
  flex: 1;
  border-left: 1px solid var(--hairline-soft);
}

.nav-cta {
  background: var(--ink);
  color: var(--canvas);
  font-weight: 500;
  letter-spacing: -0.1px;
}
.nav-inner:hover .nav-cta { background: var(--ink); }
.nav-inner:hover .nav-cta:hover { background: var(--primary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0 20px;
  background: none;
  border: none;
  border-left: 1px solid var(--hairline-soft);
  cursor: pointer;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 0;
}

.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline-soft);
  padding: 12px 20px 20px;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  z-index: 99;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a:not(.btn-dark) {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline-soft);
  display: block;
}

.nav-mobile-menu .btn-dark {
  color: var(--canvas);
  border-bottom: none;
}
.nav-mobile-menu .btn-dark:hover {
  background: var(--primary);
  color: var(--canvas);
}
.nav-mobile-menu .mobile-cta-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 16px;
}

/* ─── Sunset stripe ─── */
.sunset-stripe {
  height: 12px;
  width: 100%;
  background: linear-gradient(90deg, #4F39E6 0%, #7B68EE 30%, #B0A4F5 60%, #fff0c2 100%);
}

/* ─── Footer ─── */
.footer { background: #fbfbf8; border-top: 1px solid var(--hairline-soft); }
.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 64px var(--gutter) 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--beige-deep);
}
.footer-logo { height: 112px; width: auto; display: block; margin-bottom: 8px; }
.footer-tagline { font-size: 14px; color: var(--steel); margin-top: 8px; }
.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 16px; color: var(--ink); transition: color 150ms ease; }
.footer-col ul a:hover { color: var(--primary); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}
.footer-copy { font-size: 14px; color: var(--ink); }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 0;
  border: 1px solid var(--beige-deep);
  color: var(--steel);
  transition: color 150ms ease, border-color 150ms ease;
}
.footer-social a:hover { color: var(--primary); border-color: var(--primary); }

/* ─── Hero — Homepage ─── */
.hero {
  background: #fbfbf8;
  border-bottom: 1px solid var(--hairline-soft);
}
.hero-inner {
  display: flex;
  align-items: stretch;
}
.hero-left {
  flex: 2;
  padding: 200px 64px 40px 76px;
  display: flex;
  align-items: flex-end;
  background: var(--canvas);
}
.hero-right {
  flex: 1;
  border-left: 1px solid var(--hairline-soft);
  padding: 200px 48px 40px;
  display: flex;
  align-items: flex-end;
}
.hero h1 {
  font-family: 'Geist', var(--font-sans);
  font-size: 72px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.hero h1 em { color: var(--primary); font-style: normal; }
.hero-sub {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}
.hero-cta-bar {
  background: #fbfbf8;
  border-bottom: 1px solid var(--hairline-soft);
  padding: 32px 0 32px 76px;
}
.hero-cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.hero-note { font-size: 13px; color: var(--stone); }

/* ─── Hero — Inner pages ─── */
.page-hero {
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline-soft);
  padding: 72px 0 64px;
}
.page-hero-content { max-width: 640px; }
.page-hero h1 {
  font-family: var(--font-sans);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 12px 0 16px;
}
.page-hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--steel);
}

/* ─── Stat row ─── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--hairline-soft);
}
.stat-cell { padding: 40px 32px; text-align: center; }
.stat-cell + .stat-cell { border-left: 1px solid var(--hairline-soft); }
.stat-number {
  display: block;
  font-family: var(--font-sans);
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.stat-number .accent { color: var(--primary); }
.stat-label { display: block; margin-top: 8px; font-size: 14px; color: var(--steel); line-height: 1.4; }

/* ─── Section wrapper ─── */
.section { padding: 90px 0; }
.section-header { margin-bottom: 48px; }
.section-header .eyebrow { margin-bottom: 12px; }
.section-header .sec-h { margin-bottom: 20px; }
.section-header .sec-sub { margin-bottom: 48px; }

/* ─── Homepage: What we do ─── */
.services-bg { background: var(--surface); }

.services-layout {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 64px;
  align-items: start;
}

/* Left: sticky narrative */
.services-narrative {
  position: sticky;
  top: 88px;
}
.services-headline {
  font-family: 'Geist', var(--font-sans);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 20px 0 16px;
}
.services-intro {
  font-size: 18px;
  line-height: 1.6;
  color: var(--steel);
  margin: 0 0 40px;
}

/* Stepper */
.services-stepper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.services-stepper::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(#4F39E6, #7B68EE);
  opacity: 0.25;
}
.services-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
}
.services-step-num {
  flex: none;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary);
  font-family: 'Geist', var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.services-step-txt h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 9px 0 5px;
}
.services-step-txt p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--steel);
}

/* Right: 2x2 capability cards */
.services-capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.services-cap {
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.services-cap-art-wrap {
  position: relative;
  overflow: hidden;
}
.services-cap-art {
  display: block;
  width: 100%;
  height: 128px;
  object-fit: cover;
  border-bottom: 1px solid var(--hairline-soft);
}
.services-cap-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 68px;
  width: auto;
}
.services-cap:nth-child(1) .services-cap-art { object-position: 0% 50%; }
.services-cap:nth-child(2) .services-cap-art { object-position: 38% 50%; }
.services-cap:nth-child(3) .services-cap-art { object-position: 70% 50%; }
.services-cap:nth-child(4) .services-cap-art { object-position: 100% 50%; }
.services-cap-body { padding: 24px; }
.services-cap-body h3 {
  font-family: 'Geist', var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.services-cap-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--steel);
}

/* ─── Industries ─── */
.industries-bg { background: var(--canvas); }

.industries-header {
  padding: 0;
}
.industries-wordmark,
.services-wordmark {
  height: 20px;
  width: auto;
  display: block;
  margin-bottom: 28px;
}
.industries-headline-box {
  display: block;
  border: 1px solid var(--hairline-soft);
  border-bottom: none;
  padding: 36px 40px;
  margin-top: 20px;
}
.industries-headline-box .sec-h { margin-bottom: 0; font-family: 'Geist', var(--font-sans); }

.industries-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--hairline-soft);
  border-left: 1px solid var(--hairline-soft);
  border-right: 1px solid var(--hairline-soft);
}

.industry-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  transition: background 150ms ease;
}
.industry-card:nth-child(even) { border-right: none; }

.industry-card-body {
  padding: 36px 40px 28px;
}
.industry-card-body h3 {
  font-family: 'Geist', var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.industry-card-body p {
  font-size: 16px;
  color: var(--steel);
  line-height: 1.6;
}

.industry-card-visual {
  height: 220px;
  margin: auto 40px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.industry-card-visual--automotive   { background: #4F39E6; }
.industry-card-visual--defence      { background: #2D1FA3; }
.industry-card-visual--electronics  { background: #7B68EE; }
.industry-card-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.industry-card-visual--electronics  { background: #7B68EE; }
.industry-card-visual--placeholder  { background: #B0A4F5; }

.industry-card--placeholder .industry-card-body h3 { color: var(--steel); }

/* ─── Process ─── */
.process-bg { background: #fbfbf8; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.process-cell { padding: 48px; }
.process-cell:nth-child(1),
.process-cell:nth-child(3) { border-right: 1px solid var(--hairline-soft); }
.process-cell:nth-child(1),
.process-cell:nth-child(2) { border-bottom: 1px solid var(--hairline-soft); }
.process-step {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.process-cell h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 8px; }
.process-cell p { font-size: 16px; color: var(--ink-tint); line-height: 1.6; }

/* ─── CTA band ─── */
.cta-band {
  background: linear-gradient(90deg, #4F39E6 0%, #7B68EE 30%, #B0A4F5 60%, #fff0c2 100%);
  text-align: center;
}
.cta-band-inner { max-width: 600px; margin: 0 auto; padding: 0 var(--gutter); }
.cta-band h2 {
  font-family: 'Geist', var(--font-sans);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 14px;
}
.cta-band p { font-size: 18px; color: var(--steel); margin-bottom: 32px; line-height: 1.5; }
.cta-band-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ─── Services page ─── */
.service-section { padding: var(--section-pad) 0; }
.service-section-alt { background: var(--surface); }
.service-section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.service-section-body h2 {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 18px;
}
.service-section-body p { font-size: 16px; color: var(--steel); line-height: 1.65; }
.what-included {
  background: var(--canvas);
  border-radius: var(--radius-card);
  border: 1px solid var(--hairline-soft);
  padding: 28px;
}
.what-included h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 16px;
}
.what-included ul { display: flex; flex-direction: column; gap: 10px; }
.what-included li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-tint);
  line-height: 1.5;
}
.what-included li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 0;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ─── About page ─── */
.about-who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-header .eyebrow { margin-bottom: 12px; }
.about-text p { font-size: 17px; color: var(--ink-tint); line-height: 1.65; margin-bottom: 20px; }
.about-text p:last-child { margin-bottom: 0; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.why-card {
  padding: 22px;
  background: var(--canvas);
  border-radius: var(--radius-card);
  border: 1px solid var(--hairline-soft);
  border-left: 3px solid var(--primary);
}
.why-card h3 { font-size: 16px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.why-card p { font-size: 15px; color: var(--ink-tint); line-height: 1.6; }

/* ─── Contact page ─── */
.book-call {
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline-soft);
  padding: var(--section-pad) 0;
  text-align: center;
}
.book-call-inner { max-width: 520px; margin: 0 auto; padding: 0 var(--gutter); }
.book-call h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 14px;
}
.book-call p { font-size: 18px; color: var(--steel); margin-bottom: 28px; line-height: 1.5; }
.book-call-note { font-size: 13px; color: var(--stone); margin-top: 14px; }
.contact-form-section { background: var(--canvas); padding: var(--section-pad) 0; }
.contact-form-inner { max-width: 640px; margin: 0 auto; padding: 0 var(--gutter); }
.contact-form-inner h2 {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.contact-form-inner > p { font-size: 16px; color: var(--steel); margin-bottom: 28px; line-height: 1.5; }
.contact-form-panel {
  background: var(--cream);
  border: 1px solid var(--beige-deep);
  border-radius: var(--radius-card);
  padding: 32px;
}
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-btn);
  padding: 11px 14px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--stone); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,57,230,0.12);
}
.form-group input { height: 44px; }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ─── Responsive: Tablet 768–1023px ─── */
@media (max-width: 1023px) {
  .services-layout { grid-template-columns: 1fr; gap: 40px; }
  .services-narrative { position: static; }
  .service-section-inner,
  .about-who-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-capabilities { grid-template-columns: 1fr; }
  .industries-grid-2x2 { grid-template-columns: 1fr; }
  .industry-card { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-top .footer-brand { grid-column: 1 / -1; padding-bottom: 20px; border-bottom: 1px solid var(--beige-deep); }
  .hero-inner { flex-direction: column; }
  .hero-left { padding: 56px 32px 32px; }
  .hero-right { border-left: none; border-top: 1px solid var(--hairline-soft); padding: 32px 32px 56px; }
  .hero h1 { font-size: 56px; }
  .page-hero h1 { font-size: 36px; }
  .sec-h { font-size: 30px; }
  .cta-band h2 { font-size: 26px; }
  .stat-number { font-size: 32px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-cell:nth-child(1),
  .process-cell:nth-child(3) { border-right: none; }
  .process-cell:nth-child(1),
  .process-cell:nth-child(2),
  .process-cell:nth-child(3) { border-bottom: 1px solid var(--hairline-soft); }
  .process-cell:nth-child(4) { border-bottom: none; }
}

/* ─── Responsive: Mobile <768px ─── */
@media (max-width: 767px) {
  :root { --section-pad: 64px; --gutter: 20px; }
  .nav-link, .nav-cta, .nav-spacer { display: none; }
  .nav-toggle { display: flex; }
  .hero-left { padding: 40px 20px 24px; }
  .hero-right { padding: 24px 20px 40px; }
  .hero-cta-bar { padding-left: var(--gutter); }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .page-hero { padding: 56px 0 44px; }
  .page-hero h1 { font-size: 30px; }
  .page-hero-sub { font-size: 16px; }
  .sec-h { font-size: 26px; }
  .sec-sub { font-size: 16px; }
  .stat-row { grid-template-columns: 1fr; }
  .stat-cell + .stat-cell { border-left: none; border-top: 1px solid var(--hairline-soft); }
  .stat-number { font-size: 32px; }
  .industry-card-body { padding: 24px 20px 20px; }
  .industry-card-visual { height: 160px; margin: 0 20px 24px; }
  .industries-headline-box { padding: 24px 20px; }
  .industries-headline-box .sec-h { font-size: 28px; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-band h2 { font-size: 22px; }
  .cta-band p { font-size: 16px; }
  .service-section-body h2 { font-size: 26px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-top .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .book-call h2 { font-size: 30px; }
  .book-call p { font-size: 16px; }
  .contact-form-inner h2 { font-size: 28px; }
  .process-cell { padding: 28px 20px; }
}
