:root {
  --navy-900: #082854;
  --navy-700: #143b73;
  --navy-500: #27598f;
  --yellow: #ffbf17;
  --yellow-dark: #d99b00;
  --red: #e31b23;
  --red-dark: #b90f16;
  --text: #082854;
  --text-body: #303947;
  --muted: #5f6876;
  --white: #fff;
  --soft: #f5f7fa;
  --soft-blue: #eef2f6;
  --line: #e4e8ef;
  --shadow-sm: 0 8px 24px rgba(8, 40, 84, .06);
  --shadow-md: 0 16px 38px rgba(8, 40, 84, .11);
  --radius-sm: 4px;
  --radius-md: 8px;
  --max: 1320px;
  --header-height: 84px;
}

/* 2. RESET & BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

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

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

button,
summary {
  cursor: pointer;
}

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

h1,
h2,
h3,
h4 {
  color: var(--navy-900);
  font-weight: 700;
  text-wrap: balance;
}

p,
li {
  color: var(--text-body);
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

/* 3. SHARED HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 280px;
  max-height: 70px;
  object-fit: contain;
}

.nav-wrap,
.main-nav {
  display: flex;
  align-items: center;
}

.nav-wrap {
  gap: 24px;
}

.main-nav {
  gap: 24px;
}

.main-nav a {
  position: relative;
  padding: 31px 0 27px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .025em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.quote-button,
.quote-btn,
.quote,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 23px;
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  text-transform: uppercase;
}

.quote-button,
.quote-btn,
.quote,
.button-primary {
  color: var(--navy-900);
  background: var(--yellow);
}

.quote-button:hover,
.quote-button:focus-visible,
.quote-btn:hover,
.quote-btn:focus-visible,
.quote:hover,
.quote:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  color: var(--white);
  background: var(--red);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--navy-900);
  background: var(--yellow);
  border: 1px solid #aeb7c3;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  align-items: center;
  justify-content: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  content: "";
  background: var(--navy-900);
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

.mobile-nav {
  display: none;
  padding: 12px 24px 22px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

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

.mobile-nav a {
  padding: 12px 0;
  color: var(--navy-900);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

/* 4. HOMEPAGE HERO */
body > main > .hero {
  padding: 42px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

body > main > .hero .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
  gap: 42px;
  align-items: center;
}

body > main > .hero .hero-copy {
  position: relative;
  z-index: 2;
  padding: 18px 0;
}

.eyebrow,
.section-kicker,
.breadcrumb {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--red);
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  content: "";
  background: var(--red);
}

body > main > .hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.12;
  letter-spacing: -.04em;
}

body > main > .hero h1 span {
  color: var(--red);
}

body > main > .hero p {
  max-width: 590px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 17px;
}

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

.hero-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #dfe5ee;
  box-shadow: var(--shadow-md);
}

.hero-visual > .hero-image,
.hero-visual video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual > .hero-image { z-index: 1; }
.hero-visual video {
  z-index: 2;
  transition: opacity .7s ease;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, .10), transparent 25%);
}

.colour-bars {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  width: 46%;
  height: 8px;
}

.colour-bars span { flex: 1; }
.colour-bars span:nth-child(1) { background: #00a9e0; }
.colour-bars span:nth-child(2) { background: #d7197d; }
.colour-bars span:nth-child(3) { background: #ffd200; }
.colour-bars span:nth-child(4) { background: #111; }

/* 5. SHARED INTERNAL HERO MATCHES INDEX.PHP DIMENSIONS */
.page-scope {
  overflow: hidden;
}

.page-scope .hero {
  padding: 42px 0;
  color: var(--white);
  background: linear-gradient(110deg, var(--navy-900), var(--navy-700));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-scope .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
  gap: 42px;
  align-items: center;
  min-height: 0;
}

.page-scope .hero-copy {
  position: relative;
  z-index: 2;
  display: block;
  padding: 18px 0;
}

.page-scope .breadcrumb {
  margin: 0 0 18px;
  color: #d7e1ee;
  letter-spacing: 0;
  text-transform: none;
}

.page-scope .breadcrumb strong,
.page-scope .eyebrow,
.page-scope .section-kicker {
  color: var(--yellow);
}

.page-scope .hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.04em;
  text-transform: none;
}

.page-scope .hero-rule,
.section-rule {
  width: 42px;
  height: 4px;
  background: var(--yellow);
}

.page-scope .hero-rule {
  margin: 18px 0;
}

.page-scope .hero-copy > p:last-child {
  max-width: 590px;
  margin: 0;
  color: #e4edf7;
  font-size: 17px;
  line-height: 1.55;
}

.page-scope .hero-image {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #dfe5ee;
  box-shadow: var(--shadow-md);
}

.page-scope .hero-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(20, 59, 115, .28), transparent 40%);
}

.page-scope .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 6. SHARED SECTION TYPOGRAPHY */
.section-heading,
.intro,
.process-head {
  text-align: center;
}

.section-heading h2,
.section-title,
.intro h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -.025em;
  text-transform: none;
}

.section-heading p,
.section-lead,
.intro p {
  max-width: 780px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.section-rule {
  height: 3px;
  margin: 12px auto 28px;
}

/* 7. HOMEPAGE CORE SERVICES */
.core-services {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  min-height: 180px;
  padding: 40px 38px;
  overflow: hidden;
  background: var(--white);
  border-right: 1px solid var(--line);
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.service-card:last-child { border-right: 0; }

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.service-card:nth-child(2)::after { background: var(--navy-700); }
.service-card:nth-child(3)::after { background: var(--yellow); }

.service-card:hover,
.service-card:focus-visible {
  z-index: 2;
  background: #f9fafc;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card:hover::after,
.service-card:focus-visible::after {
  transform: scaleX(1);
}

.icon-box {
  width: 56px;
  height: 56px;
  color: var(--red);
  transition: transform .22s ease;
}

.service-card:nth-child(2) .icon-box { color: var(--navy-700); }
.service-card:nth-child(3) .icon-box { color: var(--yellow-dark); }
.service-card:hover .icon-box { transform: scale(1.08); }

.service-card h2 {
  margin: 1px 0 7px;
  font-size: 20px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* 8. HOMEPAGE WHY */
.why {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(115deg, var(--navy-900), var(--navy-700));
}

.why::after {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 360px;
  height: 360px;
  content: "";
  border: 70px solid rgba(255, 255, 255, .045);
  border-radius: 50%;
}

.why-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: center;
  padding: 72px 0;
}

.why h2 {
  max-width: 800px;
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.13;
  letter-spacing: -.025em;
}

.why p {
  max-width: 780px;
  margin: 0;
  color: #dbe6f7;
}

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

.reason-list .reason {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
}

.check {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid var(--red);
  border-radius: 50%;
}

.check::after {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 4px;
  content: "";
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  transform: rotate(-45deg);
}

/* 9. HOMEPAGE PATHWAYS */
.pathways {
  padding: 86px 0 94px;
  background: var(--white);
}

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

.section-heading .eyebrow {
  justify-content: center;
}

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

.path-card,
.card,
.equipment-card,
.team-card,
.quote-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.path-card {
  position: relative;
  min-height: 330px;
  padding: 38px 32px 30px;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.path-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  content: "";
  background: var(--red);
}

.path-card:nth-child(2)::before { background: var(--navy-700); }
.path-card:nth-child(3)::before { background: var(--yellow); }

.path-card:hover {
  border-color: #ccd5e0;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.path-card > svg,
.path-icon {
  width: 112px;
  height: 112px;
  margin-bottom: 28px;
}

.path-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
}

.path-card p {
  margin: 0 0 22px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
}

.path-card:nth-child(2) .text-link { color: var(--navy-700); }
.path-card:nth-child(3) .text-link { color: #a87300; }

.arrow {
  font-size: 20px;
  transition: transform .2s ease;
}

.path-card:hover .arrow { transform: translateX(4px); }

/* 10. SERVICES PAGE */
.page-services .services {
  padding: 28px 0 18px;
}

.page-services .service-row {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 270px;
}

.page-services .service-row.reverse {
  grid-template-columns: 58% 42%;
}

.page-services .service-row.reverse .service-image { order: 2; }
.page-services .service-row.reverse .service-copy { order: 1; }

.page-services .service-image {
  min-height: 270px;
  overflow: hidden;
}

.page-services .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-services .service-copy {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: center;
  padding: 32px 38px;
}

.page-services .service-number {
  padding-right: 22px;
  text-align: center;
  border-right: 2px solid var(--yellow);
}

.page-services .service-number strong {
  display: block;
  color: var(--navy-900);
  font-size: 46px;
  line-height: 1;
}

.page-services .service-icon {
  width: 54px;
  height: 54px;
  margin: 18px auto 0;
  fill: none;
  stroke: var(--yellow-dark);
  stroke-width: 1.8;
}

.page-services .service-content h2 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.12;
  text-transform: none;
}

.page-services .service-content p {
  max-width: 540px;
  margin: 0 0 12px;
}

.page-services .service-content ul,
.page-capabilities .equipment-body ul {
  margin: 0;
  padding-left: 18px;
}

.page-services .service-content li,
.page-capabilities .equipment-body li {
  margin: 4px 0;
}

.page-services li::marker,
.page-capabilities li::marker {
  color: var(--yellow-dark);
}

/* 11. CAPABILITIES PAGE */
.page-capabilities .values {
  padding: 28px 0 18px;
}

.page-capabilities .values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.page-capabilities .value {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.page-capabilities .value:last-child { border-right: 0; }

.page-capabilities .value svg {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  fill: none;
  stroke: var(--yellow-dark);
  stroke-width: 1.8;
}

.page-capabilities .value strong {
  display: block;
  color: var(--navy-900);
  font-size: 14px;
}

.page-capabilities .value span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.page-capabilities .equipment {
  padding: 36px 0 74px;
}

.page-capabilities .equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.page-capabilities .equipment-card {
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.page-capabilities .equipment-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.page-capabilities .equipment-card img {
  width: 100%;
  aspect-ratio: 12 / 6.2;
  object-fit: cover;
}

.page-capabilities .equipment-body {
  padding: 20px 22px 24px;
}

.page-capabilities .equipment-body h2 {
  margin: 0 0 5px;
  font-size: 23px;
  line-height: 1.12;
  text-transform: none;
}

.page-capabilities .equipment-body .sub {
  margin: 0 0 12px;
  color: var(--text-body);
}

.page-capabilities .equipment-body ul {
  font-size: 14px;
}

.page-capabilities .difference {
  color: var(--white);
  background: var(--navy-900);
}

.page-capabilities .difference-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
}

.page-capabilities .difference-main,
.page-capabilities .difference-item {
  min-height: 138px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.page-capabilities .difference-item:last-child { border-right: 0; }

.page-capabilities .difference-main {
  display: flex;
  align-items: center;
  gap: 18px;
}

.page-capabilities .difference-main svg,
.page-capabilities .difference-item svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 1.8;
}

.page-capabilities .difference-main h2 {
  margin: 0 0 5px;
  color: var(--white);
  font-size: 21px;
  text-transform: uppercase;
}

.page-capabilities .difference-main p,
.page-capabilities .difference-item span {
  margin: 0;
  color: #cbd8e8;
  font-size: 12px;
}

.page-capabilities .difference-item {
  text-align: center;
}

.page-capabilities .difference-item svg {
  margin: 0 auto 10px;
}

.page-capabilities .difference-item strong {
  display: block;
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
}

/* 12. INDUSTRIES PAGE */
.page-industries .intro,
.page-about .intro {
  padding: 68px 0 30px;
}

.page-industries .industries {
  padding: 22px 0 74px;
}

.page-industries .accordion {
  border-top: 1px solid var(--line);
}

.page-industries .industry {
  border-bottom: 1px solid var(--line);
}

.page-industries .industry-button {
  width: 100%;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 25px 12px;
  color: var(--navy-900);
  text-align: left;
  background: var(--white);
  border: 0;
}

.page-industries .industry:nth-child(even) .industry-button {
  background: #fbfcfd;
}

.page-industries .industry-button:hover {
  background: var(--soft);
}

.page-industries .number {
  color: #9ca8b8;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
}

.page-industries .industry-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-industries .industry-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  fill: none;
  stroke: var(--yellow-dark);
  stroke-width: 1.8;
}

.page-industries .industry-text strong {
  display: block;
  font-size: 20px;
}

.page-industries .industry-text span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.page-industries .plus {
  position: relative;
  width: 24px;
  height: 24px;
}

.page-industries .plus::before,
.page-industries .plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: var(--navy-900);
  transform: translate(-50%, -50%);
  transition: opacity .2s ease;
}

.page-industries .plus::before { width: 18px; height: 2px; }
.page-industries .plus::after { width: 2px; height: 18px; }
.page-industries .industry.open .plus::after { opacity: 0; }

.page-industries .panel {
  display: none;
  padding: 0 12px 32px 104px;
}

.page-industries .industry.open .panel {
  display: block;
}

.page-industries .panel-inner {
  max-width: 900px;
  padding: 25px 30px;
  background: var(--soft);
  border-left: 4px solid var(--yellow);
}

.page-industries .panel-inner h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.page-industries .panel-inner p {
  margin: 0 0 18px;
}

.page-industries .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.page-industries .tag {
  padding: 7px 12px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.page-industries .credibility {
  color: var(--white);
  background: var(--navy-900);
}

.page-industries .cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.page-industries .cred-item {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.page-industries .cred-item:last-child { border-right: 0; }

.page-industries .cred-item svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 2;
}

.page-industries .cred-item strong {
  display: block;
  color: var(--white);
  font-size: 13px;
}

.page-industries .cred-item span {
  display: block;
  margin-top: 4px;
  color: #cbd7e7;
  font-size: 12px;
}

/* 13. ABOUT PAGE */
.page-about .reasons {
  padding: 24px 0 50px;
}

.page-about .reasons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-about .reason {
  min-height: 225px;
  padding: 15px 23px;
  border-right: 1px solid var(--line);
}

.page-about .reason:last-child { border-right: 0; }

.page-about .reason svg {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  fill: none;
  stroke: var(--yellow-dark);
  stroke-width: 1.8;
}

.page-about .reason h3 {
  margin: 0 0 9px;
  font-size: 18px;
}

.page-about .reason p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.page-about .process {
  padding: 40px 0;
  background: var(--soft);
}

.page-about .process-head {
  margin-bottom: 38px;
}

.page-about .process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.page-about .process-grid::before {
  position: absolute;
  top: 34px;
  right: 7%;
  left: 7%;
  height: 2px;
  content: "";
  background: #d7dde6;
}

.page-about .step {
  position: relative;
  z-index: 2;
  padding: 0 12px;
  text-align: center;
}

.page-about .step-number {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--navy-900);
  background: var(--white);
  border: 3px solid var(--yellow);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
}

.page-about .step h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.page-about .step p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.page-about .assurance {
  color: var(--white);
  background: var(--navy-900);
}

.page-about .assurance-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(5, 1fr);
}

.page-about .assurance-main,
.page-about .assurance-item {
  min-height: 132px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.page-about .assurance-item:last-child { border-right: 0; }

.page-about .assurance-main {
  display: flex;
  align-items: center;
}

.page-about .assurance-main h2 {
  margin: 0 0 5px;
  color: var(--white);
  font-size: 22px;
}

.page-about .assurance-main p,
.page-about .assurance-item span {
  margin: 0;
  color: #cbd8e8;
  font-size: 12px;
}

.page-about .assurance-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-about .assurance-item svg {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 1.8;
}

.page-about .assurance-item strong {
  display: block;
  color: var(--white);
  font-size: 13px;
}

.page-about .team {
  padding: 90px 0 100px;
  background: var(--white);
}

.page-about .team-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 45px;
}

.page-about .team-head .section-title {
  margin-bottom: 0;
}

.page-about .team-head .section-lead {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.page-about .team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 24px;
}

.page-about .team-card {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.page-about .team-photo {
  width: 80%;
  height: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft-blue);
  border-radius: 0;
}

.page-about .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .35s ease;
}

.page-about .team-card:hover .team-photo img {
  transform: scale(1.025);
}

.page-about .team-info {
  padding: 18px 2px 0;
}

.page-about .team-card h3,
.page-about .team-info h3 {
  margin: 0 0 5px;
  color: var(--navy-900);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
}

.page-about .team-role {
  display: block;
  min-height: 12px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  text-transform: none;
}

.page-about .team-ext {
  margin-top: 1px;
  color: var(--yellow-dark);
  font-size: 14px;
  font-weight: 700;
}

/* 14. WHAT WE PRINT */
.page-what-we-print .intro {
  padding: 68px 0 30px;
}

.page-what-we-print .featured {
  padding: 24px 0 78px;
}

.page-what-we-print .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.page-what-we-print .card {
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.page-what-we-print .card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.page-what-we-print .card img {
  width: 100%;
  aspect-ratio: 10 / 7;
  object-fit: cover;
}

.page-what-we-print .card-body {
  padding: 22px 24px 26px;
}

.page-what-we-print .card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.page-what-we-print .card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.page-what-we-print .card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--navy-700);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-what-we-print .capabilities {
  padding: 30px 0;
  color: var(--white);
  background: var(--navy-900);
}

.page-what-we-print .cap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.page-what-we-print .cap {
  padding: 12px 22px;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.page-what-we-print .cap:last-child { border-right: 0; }

.page-what-we-print .cap strong {
  display: block;
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
}

.page-what-we-print .cap span {
  display: block;
  margin-top: 4px;
  color: #cdd9e8;
  font-size: 12px;
}

.page-what-we-print .all-print {
  padding: 72px 0;
  background: var(--soft);
}

.page-what-we-print .all-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 38px;
}

.page-what-we-print .all-print h2 {
  margin: 0 0 12px;
  font-size: 40px;
}

.page-what-we-print details {
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 0;
}

.page-what-we-print details:last-child {
  border-bottom: 1px solid var(--line);
}

.page-what-we-print summary {
  padding: 18px 22px;
  color: var(--navy-900);
  font-weight: 700;
}

.page-what-we-print .detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px 24px;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 14px;
}

.page-what-we-print .detail span::before {
  content: "— ";
  color: var(--yellow-dark);
  font-weight: 700;
}

.page-what-we-print .quote-box {
  padding: 32px;
}

.page-what-we-print .quote-box h3 {
  margin: 0 0 12px;
  font-size: 29px;
}

/* 15. PAGE CTA SECTIONS */
.page-scope .cta {
  background: var(--soft-blue);
}

.page-services .cta {
  color: var(--white);
  background: var(--navy-900);
}

.page-scope .cta-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 150px;
}

.page-capabilities .cta-grid {
  grid-template-columns: .55fr 1.45fr;
  align-items: center;
}

.page-scope .cta-copy,
.page-scope .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 30px 0;
}

.page-capabilities .cta-copy {
  padding-left: 40px;
}

.page-scope .cta h2 {
  margin: 0 0 6px;
  font-size: 29px;
  text-transform: none;
}

.page-services .cta h2 {
  color: var(--white);
}

.page-scope .cta p {
  margin: 0;
  color: var(--muted);
}

.page-services .cta p {
  color: #d8e3f0;
}

.page-scope .cta-image {
  position: relative;
  min-height: 150px;
  background-position: center;
  background-size: cover;
}

.page-services .cta-image {
  background-image: url("../images/trade-publications.jpg");
}

.page-capabilities .cta-image {
  background-image: url("../images/magazines.jpg");
}

.page-scope .cta-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--navy-900), transparent 52%);
}

.page-industries .cta-inner,
.page-about .cta-inner {
  padding: 36px 0;
}

/* 16. SHARED FOOTER CTA */
.footer-cta {
  padding: 42px 0;
  color: var(--navy-900);
  background: var(--soft-blue);
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-cta h2 {
  margin: 0;
  font-size: clamp(27px, 3vw, 40px);
}

.footer-cta p {
  margin: 6px 0 0;
  color: var(--navy-900);
}

.footer-cta .button {
  min-width: 190px;
  color: var(--navy-900);
  background: var(--white);
}

.footer-cta .button:hover {
  color: var(--white);
  background: var(--red);
}

/* 17. SHARED FOOTER */
.site-footer {
  padding: 52px 0 24px;
  color: var(--white);
  background: var(--navy-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 58px;
  padding-bottom: 40px;
}

.footer-brand img {
  width: 280px;
  max-height: 78px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: #b8c5d6;
}

.footer-title {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.location {
  margin-bottom: 22px;
  color: #c6d1df;
  font-size: 14px;
}

.location strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 16px;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: #c6d1df;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: #91a4bb;
  border-top: 1px solid rgba(255, 255, 255, .13);
  font-size: 13px;
}

/* 18. TABLET */
@media (max-width: 1080px) {
	/* home */
	.path-card > svg,
	.path-icon {	  margin-bottom: 8px;	}
	
  .page-about .process {display: none;  }
  .page-what-we-print .capabilities {display:none;}
  .page-capabilities .difference  {display:none;}
  .page-industries .credibility   {display:none;}
  
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .nav-wrap .quote-button { display: none; }

  body > main > .hero .hero-grid,
  .page-scope .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  body > main > .hero .hero-copy,
  .page-scope .hero-copy {
    max-width: 760px;
    padding: 8px 0 0;
  }

  body > main > .hero .hero-visual,
  .page-scope .hero-image {
    width: 100%;
    max-width: 900px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .page-services .service-row,
  .page-services .service-row.reverse {
    grid-template-columns: 1fr;
  }

  .page-services .service-row.reverse .service-image,
  .page-services .service-row.reverse .service-copy {
    order: initial;
  }

  .page-services .service-image {
    min-height: 280px;
  }
  
  .page-capabilities .equipment {
	padding:36px 0 20px;  
  }
  
  
  .page-capabilities .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-capabilities .value:nth-child(2n) {
    border-right: 0;
  }

  .page-capabilities .equipment-grid,
  .page-what-we-print .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .page-capabilities .difference-grid,
  .page-about .assurance-grid,
  .page-industries .cred-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-capabilities .difference-main,
  .page-about .assurance-main {
    grid-column: 1 / -1;
  }

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

  .page-about .reason:nth-child(2n) {
    border-right: 0;
  }

  .page-about .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .page-about .process-grid::before {
    display: none;
  }

  .page-what-we-print .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-what-we-print .featured{
	padding: 24px 0 24px;
  }
  .page-what-we-print .all-print{
	padding: 24px 0 24px;
  }
  .page-what-we-print .all-grid,
  .page-scope .cta-grid {
    grid-template-columns: 1fr;
  }
 
 .page-industries .industries{
	padding: 24px 0 24px;
  }
  .page-capabilities .cta-copy {
    padding-left: 0;
  }

  .page-scope .cta-image {
    min-height: 220px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
	gap: 28px;
  }
}

/* 19. MOBILE */
@media (max-width: 700px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 30px), var(--max));
  }

  .brand img {
    width: 190px;
    max-height: 50px;
  }

  body > main > .hero,
  .page-scope .hero {
    padding: 34px 0 30px;
  }

  body > main > .hero .hero-grid,
  .page-scope .hero-grid {
    gap: 28px;
  }

  body > main > .hero h1,
  .page-scope .hero h1 {
    font-size: clamp(36px, 10vw, 46px);
  }

  body > main > .hero p {
    margin: 18px 0 24px;
    font-size: 16px;
  }

  .page-scope .hero-copy > p:last-child {
    font-size: 16px;
  }

  body > main > .hero .hero-visual,
  .page-scope .hero-image {
    border-radius: var(--radius-sm);
  }

  .service-grid,
  .path-grid,
  .page-capabilities .values-grid,
  .page-capabilities .equipment-grid,
  .page-capabilities .difference-grid,
  .page-industries .cred-grid,
  .page-about .reasons-grid,
  .page-about .process-grid,
  .page-about .assurance-grid,
  .page-what-we-print .product-grid,
  .page-what-we-print .cap-grid,
  .page-what-we-print .detail,
  .footer-grid {
    grid-template-columns: 1fr;
	    gap: 10px;
    padding-bottom: 10px;

  }

  .core-services .container {
    width: 100%;
  }

  .service-card {
    grid-template-columns: 50px 1fr;
    gap: 15px;
    min-height: 0;
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child { border-bottom: 0; }
  .service-card:hover { box-shadow: none; transform: none; }
  .icon-box { width: 45px; height: 45px; }

  .why-grid {
    padding: 52px 0;
  }

  .pathways {
    padding: 22px 0;
  }

  .page-services .service-copy {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .page-services .service-number {
    padding: 0 0 18px;
    text-align: left;
    border-right: 0;
    border-bottom: 2px solid var(--yellow);
  }

  .page-services .service-icon {
    margin: 12px 0 0;
  }

  .page-capabilities .value,
  .page-about .reason,
  .page-capabilities .difference-main,
  .page-capabilities .difference-item,
  .page-about .assurance-main,
  .page-about .assurance-item,
  .page-industries .cred-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .page-capabilities .difference-main,
  .page-capabilities .difference-item,
  .page-about .assurance-main,
  .page-about .assurance-item,
  .page-industries .cred-item {
    border-bottom-color: rgba(255, 255, 255, .15);
  }

  .page-industries .industry-button {
    grid-template-columns: 42px 1fr auto;
    gap: 12px;
    padding: 20px 4px;
  }

  .page-industries .industry-text strong {
    font-size: 16px;
  }

  .page-industries .industry-text span {
    font-size: 13px;
  }

  .page-industries .panel {
    padding: 0 4px 26px;
  }

  .page-industries .panel-inner {
    padding: 22px;
  }
  .page-about .reasons {
    padding: 15px 0 15px;
  }
  .page-about .reason {
	min-height: 80px;
	padding: 10px 23px;
	}
  .page-about .team-head,
  .page-scope .cta-copy,
  .page-scope .cta-inner,
  .footer-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  
  .page-about .team {
    padding: 20px 0 20px;
  }
  .page-about .team-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 35px;
	
  }

  .page-about .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 20px;
  }

  .page-about .team-role {
    min-height: 42px;
  }

  .footer-bottom {
    flex-direction: column;
	    gap: 5px;
    padding: 10px 0 24px;
  }

.page-services .service-number{
    display:flex;
    align-items:center;
    flex-direction:row;
    flex-wrap:nowrap;
    gap:14px;
}

.page-services .service-number strong{
    display:block;
    flex-shrink:0;
}

.page-services .service-number svg{
    display:block;
    flex-shrink:0;
    width:60px;
    height:60px;
}

}


/* 20. SMALL MOBILE TEAM */
@media (max-width: 520px) {
  

  .page-about .team-grid {
   	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px;
  }

  .page-about .team-photo {
    aspect-ratio: 4 / 4.5;
  }

  .page-about .team-role {
    min-height: 0;
  }
}
