:root {
  --ink: #172126;
  --muted: #5f6f86;
  --line: #dbe3f0;
  --paper: #f6f8fc;
  --white: #ffffff;
  --blue: #183f9d;
  --blue-dark: #0f2e78;
  --blue-soft: #e9eefb;
  --gold: #f5a400;
  --gold-dark: #d88b00;
  --green: var(--blue);
  --green-dark: var(--blue-dark);
  --amber: var(--gold);
  --steel: #263a63;
  --shadow: 0 18px 50px rgba(24, 63, 157, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
}

.brand-logo {
  width: 150px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  background: var(--white);
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  display: none;
}

.brand-text small {
  max-width: 250px;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

nav {
  display: flex;
  gap: 16px;
  color: #263a63;
  font-size: 13px;
  font-weight: 700;
}

.menu-button {
  display: none;
  min-height: 42px;
  padding: 0 14px;
  color: var(--green);
  border: 1px solid var(--line);
  background: var(--white);
  font: inherit;
  font-weight: 800;
}

.header-cta,
.button,
form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  font-weight: 800;
  border: 1px solid transparent;
}

.header-cta,
.button.primary,
form button {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  color: var(--green);
  background: var(--white);
  border-color: var(--line);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: end;
  min-height: 600px;
  padding: clamp(56px, 7vw, 92px) clamp(18px, 4vw, 58px) 54px;
  overflow: hidden;
  isolation: isolate;
}

.hero-slider,
.hero-slider img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 900ms ease,
    transform 4800ms ease;
}

.hero-slider img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 46, 120, 0.94), rgba(24, 63, 157, 0.68) 45%, rgba(23, 33, 38, 0.22)),
    linear-gradient(180deg, rgba(23, 33, 38, 0.04), rgba(15, 46, 120, 0.36));
}

.hero-content,
.hero-proof {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 880px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-content > p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.6;
}

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

.hero-proof {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow);
}

.hero-proof div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
}

.hero-proof strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 20px;
}

.hero-proof span {
  color: #4a565b;
  line-height: 1.45;
}

.sector-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--white);
  border-block: 1px solid var(--line);
}

.sector-strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 16px;
  color: #4b5a60;
  border-right: 1px solid var(--line);
  font-weight: 800;
  text-align: center;
}

.page-hero {
  position: relative;
  padding: clamp(64px, 8vw, 96px) clamp(18px, 4vw, 58px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 46, 120, 0.94), rgba(38, 58, 99, 0.76)),
    url("assets/images/projects/sm-building.jpg") center/cover;
}

.page-hero.compact {
  min-height: 320px;
  display: grid;
  align-content: end;
}

.page-hero h1 {
  max-width: 840px;
  margin-bottom: 0;
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.12;
}

.section {
  padding: clamp(70px, 8vw, 104px) clamp(18px, 4vw, 58px);
}

.company-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(32px, 7vw, 110px);
}

h2 {
  max-width: 840px;
  font-size: clamp(26px, 2.7vw, 36px);
  line-height: 1.12;
  letter-spacing: 0;
}

.company-copy p,
.project-card span,
.service-grid p,
.contact-section p,
.form-note {
  color: var(--muted);
  line-height: 1.65;
}

.company-copy p {
  font-size: 17px;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 0;
  background: var(--line);
}

.metrics-band div {
  min-height: 180px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)), var(--white);
  border-top: 4px solid var(--gold);
}

.metrics-band strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.metrics-band span {
  color: var(--muted);
  line-height: 1.55;
}

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

.services,
.people {
  background: var(--white);
}

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

.service-grid article {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid span {
  color: var(--amber);
  font-weight: 800;
}

.service-grid h3 {
  margin: 44px 0 14px;
  font-size: 20px;
  line-height: 1.18;
}

.projects {
  background: var(--blue-soft);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 26px;
}

.filter-row button {
  min-height: 40px;
  padding: 0 15px;
  color: var(--green);
  border: 1px solid var(--line);
  background: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.filter-row button.is-active {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.project-card {
  min-height: 420px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(23, 33, 38, 0.06);
}

.project-card[hidden] {
  display: none;
}

.project-card.featured {
  grid-row: span 2;
}

.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: #e5ece8;
}

.project-card.featured img {
  height: 520px;
}

.project-card div {
  padding: 24px;
}

.project-card p {
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.15;
}

.phase-stack {
  display: grid;
  gap: 18px;
}

.phase-block {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.phase-block h3 {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 22px;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-list li {
  padding: 16px;
  background: #f8faff;
  border: 1px solid var(--line);
}

.project-list strong,
.project-list span {
  display: block;
}

.project-list strong {
  margin-bottom: 6px;
}

.project-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

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

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
}

.client-logo-grid img {
  width: 100%;
  height: 124px;
  padding: 26px;
  object-fit: contain;
  filter: saturate(0.92);
}

.client-logo-link {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 124px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 255, 0.96));
  outline-offset: -6px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.client-logo-link img {
  position: relative;
  z-index: 1;
  border: 0;
  transition:
    transform 180ms ease,
    filter 180ms ease,
    opacity 180ms ease;
}

.client-logo-link span,
.client-logo-link em {
  position: absolute;
  left: 16px;
  right: 16px;
  opacity: 0;
  text-align: center;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.client-logo-link span {
  bottom: 42px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.client-logo-link em {
  bottom: 18px;
  color: var(--gold-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.client-logo-link::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(232, 239, 253, 0.98)),
    radial-gradient(circle at top right, rgba(245, 164, 0, 0.22), transparent 13rem);
  transition: opacity 180ms ease;
}

.client-logo-link:hover,
.client-logo-link:focus-visible {
  z-index: 2;
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(24, 63, 157, 0.24);
  box-shadow: var(--shadow-strong);
}

.client-logo-link:hover img,
.client-logo-link:focus-visible img {
  transform: translateY(-14px) scale(0.94);
  filter: saturate(1.08) contrast(1.03);
  opacity: 0.9;
}

.client-logo-link:hover::after,
.client-logo-link:hover span,
.client-logo-link:hover em,
.client-logo-link:focus-visible::after,
.client-logo-link:focus-visible span,
.client-logo-link:focus-visible em {
  opacity: 1;
  transform: translateY(0);
}

.client-logo-link span,
.client-logo-link em {
  z-index: 1;
}

.client-logo-link.is-disabled {
  cursor: default;
}

.client-logo-link.is-disabled:hover,
.client-logo-link.is-disabled:focus-visible {
  transform: none;
  box-shadow: none;
}

.client-logo-link.is-disabled:hover img,
.client-logo-link.is-disabled:focus-visible img {
  transform: none;
  opacity: 0.55;
}

.client-name-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.client-directory-heading {
  margin-top: 56px;
}

.client-name-grid span {
  padding: 13px 14px;
  color: #3e4d53;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.client-name-grid a {
  padding: 13px 14px;
  color: #3e4d53;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.client-name-grid a:hover,
.client-name-grid a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(24, 63, 157, 0.28);
  box-shadow: var(--shadow);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.people-grid article {
  background: #f8faff;
  border: 1px solid var(--line);
}

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

.people-grid h3,
.people-grid p {
  padding-inline: 20px;
}

.people-grid h3 {
  margin: 20px 0 8px;
  font-size: 18px;
}

.people-grid p {
  margin-bottom: 22px;
  color: var(--muted);
}

.people-grid.directory {
  grid-template-columns: repeat(6, 1fr);
}

.people-grid.directory img {
  aspect-ratio: 4 / 5;
}

.people-grid.directory h3,
.people-grid.directory p {
  padding-inline: 14px;
}

.people-grid.directory h3 {
  font-size: 16px;
}

.people-grid.directory p {
  font-size: 13px;
  line-height: 1.4;
}

.gallery {
  background: var(--blue-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: clamp(180px, 16vw, 240px);
  object-fit: cover;
  border: 1px solid var(--line);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(70px, 8vw, 104px) clamp(18px, 4vw, 58px);
  color: var(--white);
  background: var(--steel);
}

.full-contact {
  min-height: calc(100vh - 82px);
  align-items: center;
}

.contact-section h2 {
  color: var(--white);
}

.contact-section p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.74);
}

form {
  display: grid;
  gap: 14px;
  align-self: start;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
}

label {
  display: grid;
  gap: 8px;
  color: #47535a;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fbfcfa;
  font: inherit;
}

input[type="search"] {
  min-height: 48px;
}

textarea {
  min-height: 118px;
  padding-top: 12px;
  resize: vertical;
}

form button {
  margin-top: 6px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.tool-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 220px 220px;
  gap: 12px;
  margin-bottom: 24px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

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

.directory-card {
  background: var(--white);
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  outline-offset: 4px;
}

.directory-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--blue-soft);
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.directory-card div {
  padding: 18px;
}

.directory-card p {
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.directory-card h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.25;
}

.directory-card span,
.directory-card small,
.client-name-grid small,
.people-grid small {
  display: block;
  color: var(--muted);
  line-height: 1.45;
}

.client-name-grid span strong,
.client-name-grid a strong {
  display: block;
  margin-bottom: 4px;
}

.search-results {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.search-results a {
  display: block;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.search-results strong,
.search-results span {
  display: block;
}

.search-results span {
  margin-top: 6px;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(8, 20, 24, 0.86);
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  object-fit: contain;
}

.lightbox button {
  position: fixed;
  top: 20px;
  right: 20px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: var(--green);
  border: 0;
  font: inherit;
  font-weight: 800;
}

.admin-form textarea {
  min-height: 62vh;
  font-family: Consolas, monospace;
  font-size: 13px;
}

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

.admin-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
  background: var(--blue-soft);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.admin-sidebar .brand {
  margin-bottom: 14px;
}

.admin-sidebar button,
.admin-actions button {
  min-height: 42px;
  padding: 0 14px;
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--line);
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.admin-sidebar button.is-active,
.admin-actions button:last-child {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.admin-main {
  padding: 28px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.admin-topbar h1 {
  margin-bottom: 0;
  color: var(--ink);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-status {
  min-height: 24px;
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 700;
}

.admin-status[data-tone="success"] {
  color: var(--green);
}

.admin-status[data-tone="error"] {
  color: #a83232;
}

.admin-status[data-tone="warn"] {
  color: #94620f;
}

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

.admin-list {
  max-height: calc(100vh - 160px);
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 8px;
}

.admin-list button,
.admin-list p {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  text-align: left;
}

.admin-list button.is-active {
  border-color: var(--green);
  box-shadow: inset 4px 0 0 var(--green);
}

.admin-list strong,
.admin-list span {
  display: block;
}

.admin-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.admin-editor {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
}

.admin-editor pre {
  max-height: calc(100vh - 220px);
  overflow: auto;
  padding: 16px;
  background: #f8faff;
  border: 1px solid var(--line);
  white-space: pre-wrap;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 58px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--green-dark);
}

.site-footer strong {
  color: var(--ink);
}

@media (max-width: 1100px) {
  .hero,
  .company-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    max-width: 720px;
    margin-top: 38px;
  }

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

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

  .project-card.featured {
    grid-column: span 2;
  }

  .client-logo-grid,
  .client-name-grid,
  .directory-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .tool-panel {
    grid-template-columns: 1fr;
  }

  .admin-shell,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }
}

@media (max-width: 780px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
  }

  .brand-text small,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  nav {
    order: 3;
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding-top: 12px;
  }

  nav.is-open {
    display: flex;
  }

  nav a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: 660px;
  }

  h1 {
    font-size: 36px;
  }

  .sector-strip,
  .service-grid,
  .project-grid,
  .people-grid,
  .client-logo-grid,
  .client-name-grid,
  .directory-grid,
  .metrics-band,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .people-grid.directory {
    grid-template-columns: 1fr 1fr;
  }

  .project-card.featured {
    grid-column: auto;
  }

  .project-card.featured img,
  .project-card img {
    height: 260px;
  }
}

/* Premium brand layer */
:root {
  --ink: #10182e;
  --muted: #62708a;
  --line: #d9e0ef;
  --paper: #f4f7fc;
  --blue: #173f9f;
  --blue-dark: #0b225d;
  --blue-deep: #081842;
  --blue-soft: #eaf0fb;
  --gold: #f5a400;
  --gold-dark: #d88b00;
  --green: var(--blue);
  --green-dark: var(--blue-dark);
  --amber: var(--gold);
  --steel: #24395f;
  --shadow: 0 24px 70px rgba(8, 24, 66, 0.15);
  --shadow-strong: 0 34px 90px rgba(8, 24, 66, 0.24);
  --radius: 14px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(245, 164, 0, 0.08), transparent 30rem),
    linear-gradient(180deg, #ffffff 0, var(--paper) 30rem);
}

.site-header {
  min-height: 78px;
  padding-block: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(234, 240, 251, 0.92)),
    linear-gradient(180deg, rgba(245, 164, 0, 0.09), transparent);
  box-shadow: 0 12px 40px rgba(8, 24, 66, 0.08);
  backdrop-filter: blur(18px);
}

.site-header::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue));
}

.brand {
  min-width: 292px;
  gap: 14px;
}

.brand-logo {
  width: 138px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-text small {
  color: #465779;
  font-size: 10px;
}

nav {
  gap: 4px;
  color: #172b67;
}

nav a {
  padding: 10px 11px;
  border-radius: 999px;
}

nav a:hover {
  color: var(--blue);
  background: var(--blue-soft);
}

.header-cta,
.button,
form button,
.admin-actions button,
.admin-sidebar button {
  border-radius: 999px;
}

.header-cta,
.button.primary,
form button,
.admin-actions button:last-child,
.admin-sidebar button.is-active {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 14px 34px rgba(24, 63, 157, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(8, 24, 66, 0.08);
}

.hero {
  grid-template-columns: minmax(0, 1fr) 370px;
  min-height: 690px;
  padding-top: clamp(70px, 8vw, 112px);
  padding-bottom: 70px;
}

.hero-content::before {
  display: block;
  width: 74px;
  height: 4px;
  margin-bottom: 22px;
  content: "";
  background: linear-gradient(90deg, var(--gold), rgba(245, 164, 0, 0));
  border-radius: 999px;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 140px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(244, 247, 252, 0.96));
  pointer-events: none;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 24, 66, 0.92), rgba(23, 63, 159, 0.62) 48%, rgba(8, 24, 66, 0.16)),
    linear-gradient(180deg, rgba(8, 24, 66, 0.06), rgba(8, 24, 66, 0.52));
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
}

.page-hero h1 {
  font-size: clamp(30px, 3.2vw, 44px);
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.hero-content > p:not(.eyebrow) {
  line-height: 1.75;
}

.hero-proof {
  overflow: hidden;
  border-radius: var(--radius);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.hero-proof div {
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
}

.sector-strip {
  position: relative;
  z-index: 3;
  max-width: calc(100% - clamp(36px, 8vw, 116px));
  margin: -38px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section {
  padding-top: clamp(76px, 8vw, 112px);
  padding-bottom: clamp(76px, 8vw, 112px);
}

.projects,
.gallery,
.admin-shell,
.directory-card img {
  background: linear-gradient(180deg, var(--blue-soft), #f7f9fd);
}

.service-grid,
.client-logo-grid,
.project-card,
.directory-card,
.phase-block,
.tool-panel,
form,
.admin-editor,
.admin-list button {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-grid,
.client-logo-grid {
  overflow: hidden;
}

.service-grid article,
.project-list li,
.people-grid article {
  background: rgba(255, 255, 255, 0.94);
}

.filter-row button {
  border-radius: 999px;
}

.project-card,
.directory-card,
.people-grid article,
.client-name-grid span {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.project-card:hover,
.directory-card:hover,
.directory-card:focus-visible,
.people-grid article:hover,
.client-name-grid span:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 63, 157, 0.28);
  box-shadow: var(--shadow-strong);
}

.directory-card:hover h3,
.directory-card:focus-visible h3 {
  color: var(--blue);
}

.directory-card:hover img,
.directory-card:focus-visible img {
  transform: scale(1.04);
}

.project-card img,
.directory-card img,
.gallery-grid img {
  filter: saturate(0.96) contrast(1.02);
}

.contact-section {
  background:
    radial-gradient(circle at top right, rgba(245, 164, 0, 0.18), transparent 24rem),
    linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
}

.intelligence-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #081842, #123a94 62%, #0b225d), var(--blue-dark);
  color: var(--white);
}

.intelligence-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, black, transparent);
}

.intelligence-section .section-heading,
.scope-assistant {
  position: relative;
  z-index: 1;
}

.intelligence-section h2 {
  color: var(--white);
}

.scope-assistant {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.9fr;
  gap: 18px;
}

.scope-controls,
.scope-output {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}

.scope-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.scope-controls label {
  color: rgba(255, 255, 255, 0.78);
}

.scope-output {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.scope-output h3 {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 28px;
}

.scope-output p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  background: var(--blue-deep);
}

@media (max-width: 780px) {
  .brand-logo {
    width: 112px;
  }

  .hero {
    min-height: 680px;
  }

  h1 {
    font-size: 38px;
  }

  .sector-strip {
    max-width: none;
    margin: 0;
    border-radius: 0;
  }

  .scope-assistant,
  .scope-controls {
    grid-template-columns: 1fr;
  }
}

/* ── Why Deltadesh section ── */
.why-section {
  background: var(--white);
}

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

.why-block {
  padding: 36px 30px;
  background: linear-gradient(180deg, rgba(234, 240, 251, 0.6), rgba(255, 255, 255, 0.8));
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-number {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why-block h3 {
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 21px;
  line-height: 1.2;
}

.why-block p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

/* ── Services section CTA ── */
.section-cta {
  display: flex;
  margin-top: 32px;
}

/* ── CTA band ── */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: clamp(56px, 6vw, 84px) clamp(18px, 4vw, 58px);
  background:
    radial-gradient(circle at top left, rgba(245, 164, 0, 0.16), transparent 20rem),
    linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
}

.cta-band-copy h2 {
  color: var(--white);
  max-width: 560px;
  margin-bottom: 12px;
}

.cta-band-copy p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  line-height: 1.65;
}

.cta-band-button {
  flex-shrink: 0;
  background: var(--gold) !important;
  color: var(--ink) !important;
  box-shadow: 0 14px 34px rgba(245, 164, 0, 0.32) !important;
}

.cta-band-button:hover {
  background: var(--gold-dark) !important;
}

/* ── Quote band ── */
.quote-band {
  padding: clamp(72px, 8vw, 112px) clamp(18px, 4vw, 58px);
  background: radial-gradient(circle at center, rgba(245, 164, 0, 0.06), transparent 30rem), var(--blue-soft);
  text-align: center;
}

.quote-band blockquote {
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  border: 0;
}

.quote-band blockquote p {
  margin-bottom: 28px;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--blue-dark);
  letter-spacing: -0.01em;
}

.quote-band blockquote footer {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Footer ── */
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-template-rows: auto auto;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(56px, 7vw, 96px) clamp(18px, 4vw, 58px) clamp(28px, 4vw, 48px);
  color: var(--muted);
  background: #f4f7fc;
  border-top: 3px solid var(--gold);
}

.footer-logo {
  display: block;
  width: 168px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 300px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.footer-nav h4,
.footer-contact h4 {
  margin: 0 0 16px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-nav a {
  display: block;
  padding: 4px 0;
  color: var(--muted);
  font-size: 14px;
  transition: color 150ms ease;
}

.footer-nav a:hover {
  color: var(--blue-dark);
}

.footer-contact p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}

.footer-contact a {
  color: var(--blue-dark);
  transition: color 150ms ease;
}

.footer-contact a:hover {
  color: var(--gold-dark);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--blue-dark);
}

@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

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

@media (max-width: 780px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

/* ── Scroll animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb a {
  color: var(--gold);
  transition: opacity 150ms;
}
.breadcrumb a:hover {
  opacity: 0.85;
}
.breadcrumb span[aria-current] {
  color: rgba(255, 255, 255, 0.95);
}

/* ── Case study layout ── */
.case-study-hero {
  min-height: 460px;
  display: grid;
  align-content: end;
  background: var(--blue-deep);
  background-blend-mode: normal;
}
.case-study-hero-inner {
  max-width: 920px;
}
.case-study-hero h1 {
  margin-bottom: 16px;
  max-width: 880px;
  color: var(--white);
}
.case-study-tagline {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
}
.case-study-section {
  background: var(--paper);
}
.case-study-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.case-study-main {
  display: grid;
  gap: 56px;
}
.case-study-block {
  background: var(--white);
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.case-study-lead {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.65;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
}
.case-study-list,
.case-study-outcomes {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.case-study-list li,
.case-study-outcomes li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.case-study-bullet {
  color: var(--gold);
  font-size: 14px;
  line-height: 1.5;
}
.case-study-check {
  color: var(--blue);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.5;
}
.case-study-numbered {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 22px;
  counter-reset: approach;
}
.case-study-numbered li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: start;
}
.case-study-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.case-study-numbered p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
.case-study-facts {
  position: sticky;
  top: 100px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.case-study-facts h3 {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.case-study-facts h3:not(:first-child) {
  margin-top: 24px;
}
.case-study-facts dl {
  margin: 0;
  display: grid;
  gap: 12px;
}
.case-study-facts dt {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.case-study-facts dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
}
.case-study-services {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.case-study-services li {
  padding: 10px 14px;
  background: var(--blue-soft);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-dark);
}
.case-study-gallery {
  background: var(--white);
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.case-study-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.case-study-gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}
.related-projects {
  background: var(--blue-soft);
}

/* ── Sector pages ── */
.sector-hero {
  min-height: 420px;
  display: grid;
  align-content: end;
  color: var(--white);
}
.sector-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
  max-width: 880px;
}
.sector-tagline {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
}
.sector-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sector-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}
.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}
.sector-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.sector-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.sector-card-body h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
  color: var(--blue-dark);
}
.sector-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
  flex: 1;
}
.sector-card-link {
  margin-top: 10px;
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ── Insights & News cards ── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.insight-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}
.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}
.insight-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.insight-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.insight-card-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  color: var(--blue-dark);
}
.insight-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
  flex: 1;
}
.insight-card-link {
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
}
.section-heading-link {
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
  margin-top: 6px;
}

/* ── Insight & News article ── */
.insight-hero {
  padding: clamp(70px, 8vw, 120px) clamp(18px, 4vw, 58px);
  color: var(--white);
  background-position: center;
  background-size: cover;
}
.insight-hero h1 {
  color: var(--white);
  max-width: 880px;
  margin-bottom: 16px;
}
.insight-meta {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.insight-body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(50px, 6vw, 80px) clamp(18px, 4vw, 30px);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.8;
}
.insight-body p {
  margin: 0 0 22px;
}
.insight-body strong {
  color: var(--blue-dark);
}

/* ── News list ── */
.news-list {
  display: grid;
  gap: 18px;
}
.news-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}
.news-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}
.news-row img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}
.news-row > div {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.news-row h3 {
  margin: 0;
  font-size: 20px;
  color: var(--blue-dark);
  line-height: 1.3;
}
.news-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Testimonials ── */
.testimonials-section {
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: linear-gradient(180deg, var(--blue-soft) 0%, #f7f9fd 100%);
  padding: clamp(28px, 3vw, 36px);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.testimonial-card blockquote {
  margin: 0;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
  font-style: italic;
}
.testimonial-card blockquote::before {
  content: "“";
  display: block;
  font-size: 60px;
  line-height: 0.6;
  color: var(--gold);
  font-style: normal;
  margin-bottom: 6px;
}
.testimonial-card figcaption {
  display: grid;
  gap: 3px;
}
.testimonial-card figcaption strong {
  color: var(--blue-dark);
  font-size: 14px;
}
.testimonial-card figcaption span {
  color: var(--muted);
  font-size: 13px;
}
.testimonial-card figcaption em {
  color: var(--gold-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.testimonial-note {
  margin: 28px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ── Awards strip ── */
.awards-section {
  padding: clamp(40px, 5vw, 60px) clamp(18px, 4vw, 58px);
  background: var(--blue-deep);
  color: var(--white);
}
.awards-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}
.award-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.award-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.award-item strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 3px;
}
.award-item span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.4;
}

/* ── Homepage insights ── */
.homepage-insights {
  background: var(--paper);
}
.homepage-insights .section-heading {
  margin-bottom: 32px;
}

/* ── Sector strip (now clickable) ── */
.sector-strip {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 22px clamp(16px, 4vw, 40px);
}
.sector-strip a,
.sector-strip [data-sector-link] {
  flex: 1 1 auto;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
  border-right: 1px solid transparent;
  transition:
    color 150ms ease,
    background 150ms ease;
  text-align: center;
}
.sector-strip a:hover,
.sector-strip [data-sector-link]:hover {
  color: var(--blue);
  background: var(--blue-soft);
}

/* ── Mobile fixes ── */
@media (max-width: 1100px) {
  .case-study-layout {
    grid-template-columns: 1fr;
  }
  .case-study-facts {
    position: static;
  }
  .sector-card-grid,
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .awards-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .sector-card-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }
  .awards-strip {
    grid-template-columns: 1fr;
  }
  .news-row {
    grid-template-columns: 1fr;
  }
  .news-row img {
    height: 200px;
  }
  .metrics-band {
    grid-template-columns: 1fr 1fr;
  }
  .metrics-band div {
    min-height: 140px;
    padding: 22px;
  }
  .case-study-numbered li {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }
  .case-study-num {
    font-size: 22px;
  }
  .breadcrumb {
    font-size: 10px;
  }
  .testimonial-card blockquote::before {
    font-size: 44px;
  }
}
