:root {
  --navy: #082746;
  --navy-deep: #051b31;
  --blue: #135987;
  --red: #d51f2c;
  --green: #15915e;
  --ink: #162c3d;
  --muted: #607487;
  --line: #dce4ea;
  --mist: #f2f6f8;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(8, 39, 70, 0.1);
  --radius: 18px;
  --container: 1180px;
  --font: Arial, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.16;
}

h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.25rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.section {
  padding: clamp(60px, 8vw, 100px) 0;
}

.section-soft {
  background: var(--mist);
}

.label {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.section-intro {
  display: flex;
  gap: 38px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 42px;
}

.section-intro p {
  max-width: 470px;
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  background: var(--red);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: #b91724;
  transform: translateY(-2px);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid,
.inner-page .site-header {
  background: var(--navy-deep);
  box-shadow: 0 8px 24px rgba(5, 27, 49, 0.15);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

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

.brand img {
  width: 88px;
  height: 48px;
  object-fit: cover;
  object-position: center;
  background: var(--white);
}

.brand-copy strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.13em;
}

.brand-copy small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-list a {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}

.nav-list a::after {
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transition: width 180ms ease;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--white);
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: currentColor;
}

.hero {
  display: grid;
  min-height: 100vh;
  color: var(--white);
  background: var(--navy-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.43;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 27, 49, 0.96) 0%, rgba(5, 27, 49, 0.78) 48%, rgba(5, 27, 49, 0.28) 100%),
    linear-gradient(0deg, rgba(5, 27, 49, 0.5), transparent);
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 650px) 1fr;
  gap: 48px;
  align-items: center;
  padding: 146px 0 74px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 4vw, 3.7rem);
}

.hero h1 span {
  color: #f15159;
}

.hero p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
}

.hero-facts {
  align-self: end;
  padding: 27px;
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.hero-facts strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 2.35rem;
  line-height: 1;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.76);
}

.hero-facts div + div {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.metric-strip {
  position: relative;
  z-index: 2;
  margin-top: -38px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: var(--shadow);
}

.metric {
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border: 0;
}

.metric strong {
  display: block;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 0.9rem;
}

.domain-grid,
.value-grid,
.reference-grid,
.process-grid {
  display: grid;
  gap: 22px;
}

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

.card {
  position: relative;
  overflow: hidden;
  min-height: 236px;
  padding: 31px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 4px;
  content: "";
  background: var(--red);
}

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

.card-number {
  display: block;
  margin-bottom: 38px;
  color: #a9b7c2;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.card p {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.98fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.split-image {
  position: relative;
}

.split-image img {
  width: 100%;
  min-height: 450px;
  object-fit: cover;
}

.image-note {
  position: absolute;
  right: -18px;
  bottom: 28px;
  max-width: 252px;
  padding: 22px;
  color: var(--white);
  background: var(--navy);
}

.image-note strong {
  display: block;
  color: var(--white);
  font-size: 1.25rem;
}

.feature-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list li::before {
  flex: none;
  width: 9px;
  height: 9px;
  margin-top: 9px;
  content: "";
  background: var(--red);
}

.feature-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
}

.project-highlight {
  position: relative;
  display: grid;
  min-height: 470px;
  overflow: hidden;
  color: var(--white);
}

.project-highlight img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-highlight::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(5, 27, 49, 0.94), rgba(5, 27, 49, 0.25));
}

.project-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 570px;
  padding: clamp(30px, 6vw, 58px);
}

.project-copy h2,
.project-copy p {
  color: var(--white);
}

.project-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
  counter-reset: steps;
}

.process-step {
  padding: 25px 22px 26px 0;
  border-top: 2px solid var(--red);
  counter-increment: steps;
}

.process-step::before {
  display: block;
  margin-bottom: 17px;
  color: var(--red);
  content: "0" counter(steps);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.activity-grid,
.tool-grid,
.document-grid,
.scope-grid,
.gallery-grid,
.team-grid {
  display: grid;
  gap: 22px;
}

.activity-grid {
  grid-template-columns: repeat(5, 1fr);
}

.activity-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.activity-card img {
  width: 100%;
  height: 154px;
  object-fit: cover;
}

.activity-card div {
  padding: 22px 19px 24px;
}

.activity-card small,
.gallery-card small {
  display: block;
  margin-bottom: 9px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.activity-card h3 {
  font-size: 1.05rem;
}

.activity-card p {
  margin: 0;
  font-size: 0.92rem;
}

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

.document {
  padding: 29px;
  border: 1px solid var(--line);
  background: var(--white);
}

.document strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.16rem;
}

.document p {
  margin: 0;
}

.statement {
  padding: clamp(28px, 5vw, 48px);
  border-left: 4px solid var(--red);
  background: var(--navy);
}

.statement h2,
.statement p {
  color: var(--white);
}

.statement p {
  color: rgba(255, 255, 255, 0.75);
}

.method-stack {
  display: grid;
  gap: 24px;
}

.method-card {
  display: grid;
  grid-template-columns: 0.63fr 1fr;
  gap: 30px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  background: var(--white);
}

.method-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

.method-card p {
  margin-bottom: 0;
}

.method-card .bullet-list {
  margin-top: 6px;
}

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

.tool-card {
  position: relative;
  display: grid;
  min-height: 260px;
  align-content: end;
  overflow: hidden;
  padding: 26px;
  color: var(--white);
  background: var(--navy);
}

.tool-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.27;
}

.tool-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(5, 27, 49, 0.96), rgba(5, 27, 49, 0.2));
}

.tool-card h3,
.tool-card p,
.tool-card small {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.tool-card small {
  margin-bottom: 10px;
  color: #f15159;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tool-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.scope-card {
  padding: 28px;
  border-top: 3px solid var(--red);
  background: var(--mist);
}

.scope-card p {
  margin: 0;
}

.promise-list {
  display: grid;
  gap: 14px;
  margin-top: 25px;
}

.promise-list li {
  padding: 19px 21px;
  border-left: 3px solid var(--red);
  color: rgba(255, 255, 255, 0.77);
  background: rgba(255, 255, 255, 0.08);
}

.gallery-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 34px;
}

.gallery-nav span {
  padding: 9px 17px;
  color: var(--navy);
  background: var(--mist);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-nav span:first-child {
  color: var(--white);
  background: var(--red);
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.gallery-card img {
  width: 100%;
  height: 184px;
  object-fit: cover;
}

.gallery-card div {
  padding: 18px 17px 21px;
}

.gallery-card h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.gallery-card p {
  margin: 0;
  font-size: 0.9rem;
}

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

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

.quote-head {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 19px;
}

.quote-head img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-head h3 {
  margin: 0 0 2px;
  font-size: 1.08rem;
}

.quote-head small {
  color: var(--red);
  font-weight: 700;
}

.quote-card p {
  margin: 0;
  font-size: 0.94rem;
}

.page-hero {
  padding: 166px 0 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 27, 49, 0.95), rgba(5, 27, 49, 0.72)),
    url("../img/optimized/page-title.webp") center / cover;
}

.page-hero h1 {
  max-width: 780px;
  margin-bottom: 14px;
  color: var(--white);
}

.page-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumb span {
  color: #ec6168;
}

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

.value {
  padding: 30px;
  border-top: 3px solid var(--red);
  background: var(--mist);
}

.value p {
  margin-bottom: 0;
}

.capability-band {
  color: var(--white);
  background: var(--navy);
}

.capability-band h2,
.capability-band h3 {
  color: var(--white);
}

.capability-band p {
  color: rgba(255, 255, 255, 0.7);
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.capability {
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  padding: 38px;
  border: 1px solid var(--line);
}

.service-panel + .service-panel {
  margin-top: 20px;
}

.bullet-list li {
  display: flex;
  gap: 11px;
  padding: 8px 0;
  color: var(--muted);
}

.bullet-list li::before {
  width: 7px;
  height: 7px;
  margin-top: 10px;
  content: "";
  background: var(--red);
}

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

.reference-card {
  display: grid;
  min-height: 390px;
  border: 1px solid var(--line);
  background: var(--white);
}

.reference-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.reference-card div {
  padding: 25px;
}

.reference-card small {
  display: block;
  margin-bottom: 11px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reference-card p {
  margin: 0;
}

.project-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.project-table th {
  padding: 15px;
  color: var(--white);
  background: var(--navy);
  text-align: left;
}

.project-table td {
  padding: 16px 15px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.project-table tr:nth-child(even) {
  background: var(--mist);
}

.table-shell {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
}

.project-table {
  min-width: 920px;
}

.project-table td:first-child,
.project-table th:first-child {
  width: 58px;
  text-align: center;
}

.project-table td:nth-child(2) {
  min-width: 260px;
  font-weight: 600;
}

.project-table td:nth-child(3) {
  min-width: 300px;
}

.project-table td:last-child {
  min-width: 230px;
}

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

.realisation-card {
  overflow: hidden;
  padding: clamp(25px, 4vw, 34px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  background: var(--white);
}

.realisation-card .realisation-image {
  width: calc(100% + clamp(50px, 8vw, 68px));
  height: 228px;
  margin: calc(-1 * clamp(25px, 4vw, 34px)) calc(-1 * clamp(25px, 4vw, 34px)) 27px;
  object-fit: cover;
}

.realisation-card h3 {
  font-size: 1.25rem;
}

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

.project-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.project-meta dt {
  margin-bottom: 3px;
  color: var(--red);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.93rem;
}

.projects-page main {
  display: flex;
  flex-direction: column;
}

.projects-page .page-hero {
  order: 0;
}

.projects-page .project-register {
  order: 1;
}

.projects-page .project-cases {
  order: 2;
}

.projects-page .project-advisory {
  order: 3;
}

.projects-page .project-gallery {
  order: 4;
}

.projects-page .project-callout {
  order: 5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 30px;
}

.contact-panel,
.contact-form {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
}

.contact-panel {
  color: var(--white);
  background: var(--navy);
}

.contact-panel h2,
.contact-panel h3 {
  color: var(--white);
}

.contact-panel p,
.contact-panel a {
  color: rgba(255, 255, 255, 0.76);
}

.contact-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-item:last-child {
  border: 0;
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

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

.field-full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #cfdae2;
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 2px solid rgba(19, 89, 135, 0.13);
}

textarea {
  min-height: 135px;
  resize: vertical;
}

.maps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.map-placeholder {
  display: flex;
  min-height: 195px;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--muted);
  background: var(--mist);
  text-align: center;
}

.map-button {
  padding: 10px 17px;
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.map-frame {
  width: 100%;
  height: 260px;
  border: 0;
}

.cta {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(36px, 5vw, 54px);
  color: var(--white);
  background: var(--navy);
}

.cta h2,
.cta p {
  color: var(--white);
}

.cta p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.73);
}

.site-footer {
  padding: 60px 0 25px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.72fr 1fr;
  gap: 48px;
  margin-bottom: 46px;
}

.footer-brand p {
  max-width: 380px;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-title {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links li + li {
  margin-top: 9px;
}

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

.copyright {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

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

  .nav-list {
    position: absolute;
    top: 84px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
    padding: 26px;
    background: var(--navy-deep);
  }

  .site-header.nav-open .nav-list {
    display: flex;
  }

  .hero .container,
  .split,
  .service-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    align-self: auto;
  }

  .metrics,
  .domain-grid,
  .reference-grid,
  .process-grid,
  .value-grid,
  .capabilities,
  .activity-grid,
  .document-grid,
  .tool-grid,
  .gallery-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-card {
    grid-template-columns: 1fr;
  }

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

  .section-intro,
  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .brand img {
    width: 72px;
  }

  .brand-copy small {
    display: none;
  }

  .hero .container {
    grid-template-columns: 1fr;
    padding-top: 126px;
  }

  .hero-actions,
  .maps {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .metrics,
  .domain-grid,
  .reference-grid,
  .process-grid,
  .value-grid,
  .capabilities,
  .activity-grid,
  .document-grid,
  .tool-grid,
  .scope-grid,
  .gallery-grid,
  .team-grid,
  .realisation-grid,
  .footer-grid,
  .form-grid,
  .maps {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .image-note {
    right: 0;
  }
}

/* ABB-inspired corporate presentation: white navigation, red accent and editorial layouts. */
:root {
  --navy: #1b1b1b;
  --navy-deep: #1b1b1b;
  --blue: #4b4b4b;
  --red: #e30613;
  --ink: #1b1b1b;
  --muted: #545454;
  --line: #dedede;
  --mist: #f5f5f5;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --radius: 0;
  --container: 1232px;
}

body {
  color: var(--ink);
  line-height: 1.55;
}

p {
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 600;
}

h1 {
  letter-spacing: -0.045em;
}

h2 {
  letter-spacing: -0.025em;
}

.section {
  padding: clamp(54px, 7vw, 84px) 0;
}

.label {
  gap: 0;
  margin-bottom: 13px;
  color: var(--red);
  letter-spacing: 0.05em;
}

.label::before {
  display: none;
}

.button {
  min-height: 48px;
  padding: 0 23px;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.button:hover,
.button:focus-visible {
  background: #c0000b;
}

.button-outline {
  border-color: #666666;
  color: var(--ink);
  background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--white);
  background: #303030;
}

.site-header,
.site-header.is-solid,
.inner-page .site-header {
  position: sticky;
  top: 0;
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.header-bar {
  min-height: 78px;
}

.brand {
  gap: 18px;
}

.brand img {
  width: 108px;
  height: 52px;
  object-fit: contain;
}

.brand-copy strong {
  color: var(--red);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: #555555;
  letter-spacing: 0.03em;
  text-transform: none;
}

.nav-list {
  gap: 35px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.nav-list a {
  color: var(--ink);
}

.nav-list a::after {
  bottom: -27px;
  height: 4px;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--red);
}

.nav-toggle {
  border-color: #c6c6c6;
  color: var(--ink);
}

.hero {
  position: relative;
  display: block;
  min-height: 620px;
  color: var(--ink);
  background: var(--mist);
}

.hero-media {
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 54%;
}

.hero-media img {
  opacity: 1;
  object-position: center;
}

.hero-media::after {
  display: none;
}

.hero .container {
  position: relative;
  display: block;
  min-height: 620px;
  padding: clamp(58px, 7vw, 84px) 0;
}

.hero .container > div:first-child {
  position: relative;
  z-index: 2;
  width: min(50%, 590px);
  padding: 0 34px 0 0;
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(2.35rem, 3.45vw, 3.35rem);
  line-height: 1.12;
}

.hero h1 span {
  color: var(--ink);
}

.hero p {
  max-width: 530px;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  margin-top: 31px;
}

.hero-facts {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 32px;
  display: grid;
  width: min(660px, 52%);
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  border-left: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.hero-facts div {
  padding: 25px 22px;
  border-left: 1px solid var(--line);
}

.hero-facts div:first-child {
  border-left: 4px solid var(--red);
}

.hero-facts div + div {
  margin-top: 0;
  padding-top: 25px;
  border-top: 0;
}

.hero-facts strong {
  color: var(--ink);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 600;
}

.hero-facts span {
  color: var(--muted);
  font-size: 0.9rem;
}

.metric-strip {
  margin-top: 0;
  border-bottom: 1px solid var(--line);
}

.metrics {
  box-shadow: none;
}

.metric {
  padding: 29px 30px;
}

.metric strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  font-weight: 600;
}

.section-intro {
  margin-bottom: 35px;
}

.activity-grid {
  gap: 24px;
}

.activity-card,
.gallery-card,
.reference-card,
.quote-card,
.document,
.method-card,
.service-panel {
  border-color: var(--line);
  box-shadow: none;
}

.activity-card {
  border: 0;
  background: transparent;
}

.activity-card img {
  height: 145px;
}

.activity-card div {
  padding: 20px 0 0;
}

.activity-card small,
.gallery-card small,
.reference-card small {
  color: var(--red);
  letter-spacing: 0.03em;
}

.activity-card h3 {
  font-size: 1.15rem;
}

.document {
  padding: 28px 27px;
  border-top: 4px solid var(--red);
}

.split-image img {
  min-height: 390px;
}

.image-note {
  right: 0;
  bottom: 0;
  padding: 20px 24px;
  color: var(--white);
  background: rgba(27, 27, 27, 0.94);
}

.process-step {
  border-top: 4px solid var(--red);
}

.page-hero {
  padding: clamp(47px, 6vw, 72px) 0;
  color: var(--ink);
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  color: var(--ink);
}

.page-hero p {
  color: var(--muted);
}

.breadcrumb {
  margin-bottom: 20px;
  color: #666666;
  letter-spacing: 0;
  text-transform: none;
}

.breadcrumb span {
  color: var(--red);
}

.value,
.scope-card {
  border-top: 4px solid var(--red);
  background: var(--white);
}

.capability-band {
  color: var(--ink);
  background: var(--mist);
}

.capability-band h2,
.capability-band h3 {
  color: var(--ink);
}

.capability-band p {
  color: var(--muted);
}

.capability {
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  background: var(--white);
}

.method-card {
  border-left: 4px solid var(--red);
}

.tool-card {
  min-height: 242px;
}

.tool-card::after {
  background: linear-gradient(to top, rgba(27, 27, 27, 0.92), rgba(27, 27, 27, 0.05));
}

.statement {
  border-left: 0;
  border-top: 5px solid var(--red);
  color: var(--ink);
  background: var(--mist);
}

.statement h2 {
  color: var(--ink);
}

.promise-list li {
  color: var(--muted);
  background: var(--white);
}

.gallery-nav span {
  color: var(--ink);
  background: #efefef;
}

.gallery-card img {
  height: 178px;
}

.project-table th {
  background: #363636;
}

.contact-panel {
  color: var(--ink);
  background: var(--mist);
  border-top: 5px solid var(--red);
}

.contact-panel h2,
.contact-panel h3,
.contact-item strong {
  color: var(--ink);
}

.contact-panel p,
.contact-panel a {
  color: var(--muted);
}

.contact-item {
  border-bottom-color: var(--line);
}

.cta {
  border-top: 5px solid var(--red);
  color: var(--ink);
  background: var(--mist);
}

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

.cta p {
  color: var(--muted);
}

.site-footer {
  padding-top: 48px;
  color: #c8c8c8;
  background: #242424;
}

.footer-brand .brand-copy strong {
  color: var(--white);
}

.footer-brand .brand-copy small {
  color: #b4b4b4;
}

@media (max-width: 960px) {
  .nav-list {
    top: 78px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-list a::after {
    bottom: -5px;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    position: relative;
    width: 100%;
    height: min(52vw, 390px);
  }

  .hero .container {
    min-height: 0;
    padding: 42px 0;
  }

  .hero .container > div:first-child {
    width: 100%;
    padding: 0;
  }

  .hero-facts {
    position: static;
    width: 100%;
    margin-top: 36px;
  }
}

@media (max-width: 620px) {
  .header-bar {
    min-height: 70px;
  }

  .brand img {
    width: 84px;
  }

  .hero .container {
    padding-top: 34px;
  }

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

  .hero-facts div {
    border-top: 1px solid var(--line);
    border-left: 4px solid var(--red);
  }
}
