﻿:root {
  --black: #090909;
  --graphite: #171717;
  --white: #F7F5F2;
  --purple: #2B0B59;
  --gold: #C9A36A;
  --ink: #111111;
  --muted: rgba(247, 245, 242, .68);
  --line: rgba(247, 245, 242, .15);
  --shadow: 0 24px 72px rgba(0, 0, 0, .34);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--sans);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.icon-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.mobile-copy,
.mobile-contact-only { display: none; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: .75rem 1rem;
  color: var(--black);
  background: var(--gold);
}
.skip-link:focus { top: 1rem; }

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background: var(--black);
  animation: pageIn .85s cubic-bezier(.77, 0, .18, 1) forwards;
}
@keyframes pageIn { to { transform: translateY(-100%); } }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.05rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, padding .3s ease;
}
.site-header.is-scrolled {
  padding-block: .65rem;
  background: rgba(9, 9, 9, .84);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; }
.brand img,
.site-footer img {
  width: clamp(9.5rem, 13vw, 13rem);
  height: auto;
  filter: brightness(0) invert(1);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  color: rgba(247, 245, 242, .78);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-nav a { transition: color .2s ease; }
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--gold); }
.nav-cta {
  color: var(--black) !important;
  background: var(--gold);
  padding: .72rem 1rem;
}
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(7rem, 12vh, 10rem) clamp(1rem, 5vw, 5rem) clamp(3.4rem, 7vh, 5rem);
}
.hero-slides,
.hero-slide,
.hero-slide img,
.hero-shade { position: absolute; inset: 0; }
.hero-slide {
  margin: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  animation: slowZoom 18s ease-in-out infinite alternate;
}
.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9,9,9,.9), rgba(9,9,9,.48) 48%, rgba(9,9,9,.68)),
    linear-gradient(0deg, rgba(9,9,9,.74), rgba(9,9,9,.12) 46%, rgba(9,9,9,.74));
}
@keyframes slowZoom { to { transform: scale(1.055); } }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 76rem;
}
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-title,
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: .95;
  text-transform: uppercase;
}
.hero-title {
  max-width: none;
  font-size: clamp(2.05rem, 3.25vw, 3.65rem);
  line-height: 1.02;
  white-space: nowrap;
}
.hero-subtitle {
  width: min(40rem, 100%);
  margin: 1.15rem 0 0;
  color: rgba(247, 245, 242, .83);
  font-size: clamp(.98rem, 1.15vw, 1.12rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  padding: .9rem 1.2rem;
  color: var(--white);
  background: transparent;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--black); background: var(--gold); }
.button-secondary { background: rgba(247, 245, 242, .04); backdrop-filter: blur(14px); }
.hero-quote {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: clamp(2rem, 5vh, 4rem);
  z-index: 2;
  margin: 0;
  color: rgba(247, 245, 242, .82);
  font-family: var(--serif);
  font-size: clamp(.95rem, 1.35vw, 1.25rem);
  line-height: 1.05;
  text-align: right;
  text-transform: uppercase;
}
.hero-quote span { display: block; }
.slide-status {
  position: absolute;
  left: clamp(1rem, 5vw, 5rem);
  bottom: 1.35rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .14em;
}
.slide-status i { width: 4.8rem; height: 1px; background: var(--gold); }

.section { padding: clamp(4rem, 6.4vw, 6rem) clamp(1rem, 5vw, 5rem); }
.section-grid,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.section-heading { align-items: end; margin-bottom: clamp(2rem, 5vw, 4rem); }
.section-title {
  max-width: 18ch;
  font-size: clamp(1.45rem, 2.15vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: .01em;
}
.services .section-title,
.experience .section-title,
.region .section-title,
.method .section-title,
.why .section-title,
.credentials .section-title {
  text-wrap: balance;
}
.section-copy { color: rgba(247, 245, 242, .74); font-size: clamp(.95rem, 1.05vw, 1.08rem); }
.section-copy p:first-child { margin-top: 0; }

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.counter-grid article { min-height: 8.25rem; padding: 1.45rem 1.5rem; border-right: 1px solid var(--line); }
.counter-grid article:last-child { border-right: 0; }
.counter-grid strong { display: block; color: var(--gold); font-family: var(--serif); font-size: clamp(2.2rem, 3.25vw, 3.7rem); line-height: 1; }
.counter-grid article:nth-child(1) strong::after,
.counter-grid article:nth-child(3) strong::after { content: "+"; }
.counter-grid article:nth-child(4) strong::after { content: "%"; }
.counter-grid span { display: block; margin-top: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; font-weight: 800; }

.leadership {
  display: grid;
  grid-template-columns: minmax(13rem, .36fr) minmax(22rem, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: var(--graphite);
}
.leader-image {
  width: min(100%, 16.25rem);
  aspect-ratio: 4 / 5;
  justify-self: center;
  overflow: hidden;
  background: #262626;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .32);
}
.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.88) contrast(1.06);
}
.leader-role { margin: 1rem 0 1.5rem; color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.expertise-list,
.country-cloud { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.expertise-list span,
.country-cloud span {
  border: 1px solid rgba(201, 163, 106, .35);
  padding: .58rem .72rem;
  color: rgba(247, 245, 242, .84);
  background: rgba(247, 245, 242, .035);
  font-size: .76rem;
}
.service-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.service-card,
.why-grid article {
  min-height: 13rem;
  padding: clamp(.95rem, 1.45vw, 1.35rem);
  background: var(--black);
  transition: background .25s ease, transform .25s ease;
}
.service-card:hover,
.why-grid article:hover { background: #111; transform: translateY(-3px); }
.service-icon,
.method-icon,
.credential-icon {
  width: 1.35rem;
  height: 1.35rem;
  display: inline-grid;
  place-items: center;
  border: 0;
  color: var(--gold);
  background: transparent;
}
.service-icon svg,
.method-icon svg,
.credential-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
h3 { margin: 1rem 0 .65rem; font-family: var(--serif); font-size: clamp(1.05rem, 1.28vw, 1.38rem); line-height: 1.12; }
.service-card p,
.why-grid p,
.method-list p { margin: 0; color: var(--muted); font-size: .92rem; }

.experience { color: var(--black); background: var(--white); }
.experience .eyebrow,
.experience .project-card span { color: var(--gold); }
.experience .section-title { color: var(--black); }
.project-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .85rem; }
.project-card {
  position: relative;
  min-height: 21.5rem;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 1rem;
  color: var(--white);
  background: #222;
  box-shadow: 0 16px 50px rgba(9, 9, 9, .16);
}
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,9,9,.8), rgba(9,9,9,.1)); }
.project-card:hover img { transform: scale(1.06); }
.project-card div { position: relative; z-index: 1; }
.project-card span { display: block; margin-top: .5rem; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.project-card h3 { margin: 0; }
.project-card p {
  margin: .32rem 0 0;
  color: rgba(247, 245, 242, .72);
  font-size: .78rem;
  letter-spacing: .03em;
}
.experience-toggle {
  display: none;
  margin: 1.1rem auto 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0 0 .25rem;
  color: var(--purple);
  background: transparent;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}

.region {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  background: linear-gradient(120deg, rgba(43,11,89,.42), rgba(9,9,9,.08)), var(--graphite);
}
.method-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(201, 163, 106, .34);
  background: transparent;
}
.method-list li {
  position: relative;
  min-height: 13.25rem;
  padding: 1.4rem clamp(.85rem, 1.3vw, 1.2rem) 0 0;
  background: transparent;
  border-right: 1px solid rgba(247, 245, 242, .1);
}
.method-list li::before {
  content: "";
  position: absolute;
  top: -.25rem;
  left: 0;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 .35rem rgba(201, 163, 106, .1);
}
.method-list li:last-child { border-right: 0; }
.method-list .method-icon { margin-bottom: .15rem; }
.why { background: var(--graphite); }
.why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.why-grid article { min-height: 11.75rem; }

.credentials {
  background:
    linear-gradient(135deg, rgba(247,245,242,.03), rgba(43,11,89,.16)),
    var(--black);
}
.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(201, 163, 106, .34);
  border-bottom: 1px solid var(--line);
}
.credential-grid article {
  min-height: 12rem;
  padding: clamp(1rem, 1.6vw, 1.4rem);
  border-right: 1px solid var(--line);
}
.credential-grid article:last-child { border-right: 0; }
.credential-grid .credential-icon {
  color: var(--gold);
}
.credential-grid h3 { margin-top: 1.25rem; }
.credential-grid p {
  margin: 0;
  color: rgba(247, 245, 242, .66);
  font-size: .9rem;
}

.network {
  background:
    linear-gradient(135deg, rgba(43,11,89,.16), rgba(247,245,242,.025)),
    var(--graphite);
}
.network-copy {
  max-width: 48rem;
  margin: -2.2rem 0 2rem;
  color: rgba(247, 245, 242, .62);
  font-size: .95rem;
}
.network-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .75rem;
}
.network-logos span {
  min-height: 5.2rem;
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid rgba(247, 245, 242, .1);
  background: rgba(247, 245, 242, .035);
}
.network-logos img {
  max-width: min(8.2rem, 78%);
  max-height: 1.75rem;
  object-fit: contain;
  filter: grayscale(1) contrast(.92) brightness(1.42);
  opacity: .54;
  transition: opacity .25s ease, filter .25s ease;
}
.network-logos span:hover img {
  filter: grayscale(.15) contrast(1) brightness(1.08);
  opacity: .86;
}

.enquiry {
  display: grid;
  grid-template-columns: minmax(18rem, .62fr) minmax(25rem, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  color: var(--black);
  background: var(--white);
}
.enquiry .eyebrow { color: var(--purple); }
.enquiry .section-copy { color: rgba(9, 9, 9, .68); }
.enquiry-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, .42fr);
  gap: 1px;
  background: rgba(9, 9, 9, .13);
  box-shadow: 0 18px 60px rgba(9, 9, 9, .12);
}
.enquiry-form { padding: clamp(1.1rem, 2.2vw, 1.55rem); background: #fff; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; }
label { display: grid; gap: .4rem; color: rgba(9, 9, 9, .78); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
label.full { grid-column: 1 / -1; }
input,
textarea { width: 100%; border: 1px solid rgba(9, 9, 9, .16); border-radius: 0; padding: .85rem; color: var(--black); background: #f8f7f4; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
input:focus,
textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(43, 11, 89, .12); }
textarea { resize: vertical; }
.enquiry .button { margin-top: 1rem; border-color: var(--purple); color: var(--white); background: var(--purple); }
.enquiry .button[disabled] { opacity: .62; cursor: wait; transform: none; }
.honeypot { position: absolute; left: -9999px; }
.privacy-note { margin: .8rem 0 0; color: rgba(9, 9, 9, .55); font-size: .82rem; }
.form-status { min-height: 1.5rem; margin: .65rem 0 0; color: var(--purple); font-size: .9rem; }
.form-status.is-error { color: #8a1f2a; }
.form-status.is-success { color: #245c3a; }
.contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.15rem, 2vw, 1.55rem);
  color: rgba(247, 245, 242, .78);
  background: var(--black);
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(201, 163, 106, .18);
  pointer-events: none;
}
.contact-card .eyebrow { color: var(--gold); }
.contact-card h3 {
  position: relative;
  margin-top: 1.2rem;
  color: var(--white);
}
.contact-card p,
.contact-card address {
  position: relative;
  margin: 0 0 1rem;
  font-style: normal;
  font-size: .9rem;
}
.contact-card address { display: none; }
.contact-card a {
  position: relative;
  display: block;
  margin-bottom: .55rem;
  color: var(--gold);
  font-size: .92rem;
}
.contact-card a.mobile-contact-only { display: none; }
.contact-location {
  position: relative;
  margin: .9rem 0 0;
  color: rgba(247, 245, 242, .68);
  font-size: .9rem;
}
.contact-credential {
  position: relative;
  margin-top: 1.4rem !important;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 163, 106, .2);
  color: rgba(247, 245, 242, .5);
  font-size: .78rem !important;
  line-height: 1.55;
}
.company-seal {
  position: absolute;
  right: -2.6rem;
  bottom: -2.2rem;
  width: 12rem;
  height: 12rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 163, 106, .52);
  border-radius: 50%;
  color: rgba(201, 163, 106, .18);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-14deg);
}
.company-seal::before,
.company-seal::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.company-seal::before { inset: .55rem; border: 1px solid currentColor; }
.company-seal::after { inset: 2.45rem; border: 1px solid currentColor; }
.company-seal span {
  position: relative;
  display: block;
  max-width: 8rem;
  color: currentColor;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.company-seal span:first-child {
  margin-bottom: 1.4rem;
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: .08em;
}

.site-footer {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) auto;
  gap: 2rem;
  padding: clamp(2.2rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem);
  color: rgba(247, 245, 242, .7);
  background: var(--black);
  border-top: 1px solid var(--line);
}
.site-footer img { margin-bottom: 1rem; }
.site-footer p { max-width: 30rem; margin: 0; }
.company-details {
  margin-top: 1.2rem !important;
  color: rgba(247, 245, 242, .48);
  font-size: .82rem;
}
.site-footer nav { display: flex; flex-wrap: wrap; align-content: start; justify-content: end; gap: 1rem 1.5rem; text-transform: uppercase; font-size: .75rem; font-weight: 800; letter-spacing: .12em; }
.copyright { grid-column: 1 / -1; font-size: .85rem; }

.sticky-enquire {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border: 1px solid rgba(201, 163, 106, .65);
  padding: .78rem 1rem;
  color: var(--black);
  background: rgba(201, 163, 106, .94);
  box-shadow: 0 12px 38px rgba(0, 0, 0, .28);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.sticky-enquire:hover,
.sticky-enquire:focus-visible { transform: translateY(-2px); background: var(--gold); }

.reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .7s ease; }

@media (min-width: 1600px) {
  .section,
  .hero,
  .site-header,
  .site-footer { padding-inline: max(5rem, calc((100vw - 1520px) / 2)); }
}
@media (min-width: 1181px) {
  .services .section-heading,
  .experience .section-heading,
  .method .section-heading,
  .why .section-heading,
  .credentials .section-heading,
  .network .section-heading {
    row-gap: .75rem;
  }
  .services .section-title,
  .experience .section-title,
  .region .section-title,
  .method .section-title,
  .why .section-title,
  .credentials .section-title,
  .network .section-title {
    grid-column: 1 / -1;
    max-width: none;
    font-size: clamp(1.45rem, 2vw, 2rem);
    white-space: nowrap;
    text-wrap: nowrap;
  }
  .region > div:first-child,
  .region .country-cloud {
    grid-column: 1 / -1;
  }
}
@media (max-width: 1180px) {
  .hero-title { white-space: normal; }
  .service-grid,
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .credential-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .network-logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .credential-grid article:nth-child(2) { border-right: 0; }
  .credential-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .method-list { grid-template-columns: 1fr; }
  .method-list li { min-height: auto; }
}
@media (max-width: 860px) {
  .desktop-copy { display: none; }
  .mobile-copy { display: inline; }
  .section { padding-block: clamp(3.1rem, 12vw, 4.5rem); }
  .site-header { align-items: flex-start; }
  .nav-toggle {
    display: inline-grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    border: 1px solid var(--line);
    color: var(--white);
    background: rgba(9,9,9,.38);
  }
  .nav-toggle span { width: 1.25rem; height: 1px; background: currentColor; }
  .site-nav {
    position: fixed;
    inset: 4.6rem 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    background: rgba(9,9,9,.94);
    backdrop-filter: blur(20px);
  }
  .site-nav.is-open { display: flex; }
  .section-grid,
  .section-heading,
  .leadership,
  .region,
  .enquiry,
  .site-footer { grid-template-columns: 1fr; }
  .enquiry-panel { grid-template-columns: 1fr; }
  .hero { min-height: 88svh; align-items: center; padding-bottom: 3.2rem; }
  .hero-subtitle { width: min(24rem, 100%); font-size: .98rem; }
  .hero-actions { margin-top: 1.45rem; }
  .hero-actions .button-primary { display: none; }
  .hero-actions .button-secondary {
    color: var(--black);
    background: var(--gold);
    border-color: var(--gold);
    backdrop-filter: none;
  }
  .hero-quote { position: relative; right: auto; bottom: auto; margin-top: 2rem; text-align: left; }
  .counter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .counter-grid { display: none; }
  .counter-grid article:nth-child(2) { border-right: 0; }
  .counter-grid article { border-bottom: 1px solid var(--line); }
  .counter-grid article:nth-child(n+3) { border-bottom: 0; }
  .leader-image { width: min(100%, 14.5rem); }
  .service-grid,
  .credential-grid {
    border-color: rgba(247, 245, 242, .12);
    background: transparent;
    gap: .75rem;
  }
  .service-card {
    min-height: auto;
    border-top: 1px solid rgba(201, 163, 106, .28);
    padding: 1rem 0 .85rem;
    background: transparent;
  }
  .service-card:nth-child(n+5) { display: none; }
  .service-card:hover,
  .why-grid article:hover { transform: none; }
  .service-card p { display: none; }
  .service-card::after {
    content: attr(data-mobile);
    display: block;
    max-width: 25rem;
    margin-top: .45rem;
    color: rgba(247, 245, 242, .66);
    font-size: .86rem;
    line-height: 1.45;
  }
  .service-icon,
  .method-icon,
  .credential-icon {
    width: 1.15rem;
    height: 1.15rem;
  }
  .service-icon svg,
  .method-icon svg,
  .credential-icon svg {
    width: 1rem;
    height: 1rem;
  }
  .project-card { min-height: 17.5rem; }
  .project-card:nth-child(n+5) { display: none; }
  .experience.is-expanded .project-card:nth-child(n+5) {
    display: flex;
    opacity: 1;
    transform: none;
  }
  .project-card:hover img { transform: none; }
  .experience-toggle { display: inline-flex; }
  .credential-grid article {
    min-height: auto;
    border: 0;
    border-top: 1px solid rgba(201, 163, 106, .28);
    padding: 1rem 0;
    background: transparent;
  }
  .credential-grid article:nth-child(n+4) { display: none; }
  .credential-grid h3 {
    margin: .85rem 0 0;
    font-family: var(--sans);
    font-size: .95rem;
    letter-spacing: .02em;
  }
  .credential-grid p { display: none; }
  .network-copy {
    margin: -1.2rem 0 1.35rem;
    font-size: .88rem;
  }
  .network-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .network-logos span {
    min-height: 4.8rem;
    padding: 1rem;
  }
  .network-logos span:nth-child(n+5) { display: none; }
  .network-logos img {
    max-width: min(8.5rem, 76%);
    max-height: 1.8rem;
    opacity: .62;
  }
  .why-grid article { min-height: auto; }
  .why-grid p { font-size: .86rem; }
  .contact-card a.mobile-contact-only { display: block; }
  .contact-credential {
    margin-top: 1.1rem !important;
    font-size: .74rem !important;
  }
  .contact-card { padding: 1.25rem; }
  .site-footer nav { justify-content: start; }
  .site-footer {
    padding-block: 2rem;
    gap: 0;
  }
  .site-footer img,
  .site-footer nav,
  .site-footer div > p:not(.company-details),
  .copyright { display: none; }
  .company-details {
    margin-top: 0 !important;
    color: rgba(247, 245, 242, .58);
    font-size: .78rem;
    line-height: 1.65;
  }
  .sticky-enquire { display: none; }
}
@media (max-width: 560px) {
  .hero-title { font-size: clamp(1.82rem, 9.2vw, 2.45rem); line-height: 1.06; max-width: 100%; white-space: normal; }
  .service-grid,
  .project-grid,
  .why-grid,
  .credential-grid,
  .counter-grid,
  .form-grid { grid-template-columns: 1fr; }
  .credential-grid article { border-right: 0; border-bottom: 0; }
  .counter-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .counter-grid article:last-child { border-bottom: 0; }
  .project-card { min-height: 17.5rem; }
  .section-title { max-width: 100%; font-size: clamp(1.25rem, 5.2vw, 1.55rem); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

