:root {
  --steel: #1c2126;
  --steel-2: #252c33;
  --navy: #0b3954;
  --blue: #168ce5;
  --amber: #f2a93b;
  --amber-2: #ffbf5c;
  --paper: #f6f5f1;
  --surface: #ffffff;
  --surface-2: #eef2f4;
  --ink: #121821;
  --muted: #66717f;
  --line: rgba(18, 24, 33, 0.12);
  --line-strong: rgba(18, 24, 33, 0.18);
  --white: #ffffff;
  --radius: 8px;
  --shadow-sm: 0 10px 30px rgba(18, 24, 33, 0.08);
  --shadow-md: 0 24px 70px rgba(18, 24, 33, 0.14);
  --page-max: 1320px;
  --gutter: clamp(18px, 4vw, 64px);
  --ease: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  content: none;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 3vw, 58px);
  width: 100%;
  min-height: 104px;
  padding: 16px clamp(28px, 3vw, 56px);
  border-bottom: 1px solid rgba(18, 24, 33, 0.08);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  transition: box-shadow var(--ease), background-color var(--ease), border-color var(--ease);
}

.site-header.scrolled {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 45px rgba(18, 24, 33, 0.09);
}

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

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 0;
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong,
.nav-link,
.btn,
.header-call,
.tab,
.filter,
.text-link,
.site-footer a {
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.brand strong {
  color: var(--steel);
  font-size: clamp(1.25rem, 1.4vw, 1.68rem);
  line-height: 0.96;
}

.brand small,
.eyebrow,
.hero-panel span,
.hero-panel strong,
.card-index,
.service-meta small,
.project-card span,
.contact-panel strong,
.tab-panel span,
.call-meta span {
  font-family: "IBM Plex Mono", monospace;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 2.5vw, 42px);
}

.nav-link {
  position: relative;
  padding: 12px 0;
  color: rgba(28, 33, 38, 0.74);
  font-size: 1.03rem;
  transition: color var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 4px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--steel);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-call {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 0 28px;
  border: 1px solid rgba(28, 33, 38, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  background: #071927;
  box-shadow: 0 16px 36px rgba(28, 33, 38, 0.16);
}

.phone-icon {
  position: relative;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--amber);
  transform: none;
}

.phone-icon::before {
  content: "\260E";
  font-family: Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  transform: rotate(-18deg);
}

.call-meta {
  display: grid;
  gap: 1px;
}

.call-meta span {
  color: var(--amber-2);
  font-size: 14px;
  letter-spacing: 0.1em;
}

.call-meta strong {
  font-family: "IBM Plex Mono", monospace;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--steel);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: clamp(720px, calc(100vh - 104px), 850px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 0 92%, rgba(22, 140, 229, 0.2), transparent 33%),
    linear-gradient(120deg, #061d32 0%, #071522 58%, #0c1219 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 57% 0 0;
  z-index: 1;
  opacity: 0.42;
  background-image: radial-gradient(rgba(255, 255, 255, 0.32) 1.5px, transparent 1.5px);
  background-size: 19px 19px;
  mask-image: linear-gradient(180deg, transparent 6%, #000 22%, transparent 54%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: -9% 37% -12% auto;
  z-index: 2;
  width: min(25vw, 360px);
  background:
    linear-gradient(118deg, transparent 0 34%, rgba(242, 169, 59, 0.88) 34% 39%, transparent 39% 49%, rgba(242, 169, 59, 0.28) 49% 63%, transparent 63% 100%);
  opacity: 0.95;
  pointer-events: none;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
}

.hero-media {
  inset: 0 0 0 42%;
  overflow: hidden;
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%, 19% 62%, 0 62%);
}

.hero-media img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
  transform-origin: center;
  animation: heroSettle 1200ms ease both;
}

.hero-shade {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 24, 39, 0.84) 0%, rgba(6, 24, 39, 0.22) 34%, rgba(6, 24, 39, 0) 60%),
    linear-gradient(0deg, rgba(6, 13, 22, 0.2), transparent 54%);
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: inherit;
  max-width: 820px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 6vw, 94px) var(--gutter) clamp(34px, 4vw, 58px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  color: #ffb33a;
  font-size: 13px;
  letter-spacing: 0.18em;
  opacity: 0;
  animation: riseIn 420ms ease 150ms both;
}

.hero .eyebrow::after {
  content: "";
  width: 56px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section h2,
.quality h2 {
  margin: 0;
  color: inherit;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero h1 {
  display: grid;
  gap: 0;
  max-width: 760px;
  margin-top: 6px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(3.8rem, 4.95vw, 5.55rem);
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 0.94;
  text-transform: uppercase;
  animation: wipeReveal 560ms ease 260ms both;
}

.hero h1 span {
  display: block;
}

.hero h1 .accent {
  color: var(--amber);
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.65;
  opacity: 0;
  animation: riseIn 420ms ease 520ms both;
}

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

.btn {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 178px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.98rem;
  transition: transform var(--ease), background-color var(--ease), border-color var(--ease), color var(--ease);
  opacity: 0;
  animation: riseIn 420ms ease 650ms both;
}

.btn:nth-child(2) {
  animation-delay: 730ms;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--steel);
  background: linear-gradient(180deg, #ffca5c, var(--amber));
  box-shadow: 0 16px 36px rgba(242, 169, 59, 0.2);
}

.btn.primary:hover {
  background: var(--amber-2);
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(7, 22, 35, 0.48);
}

.btn.ghost:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
}

.btn.ghost.dark {
  color: var(--steel);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
}

.btn.ghost.dark:hover {
  border-color: rgba(242, 169, 59, 0.56);
  background: rgba(255, 255, 255, 0.92);
}

.hero-values {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  align-items: end;
  gap: 0;
  margin-top: clamp(38px, 5vw, 64px);
  opacity: 0;
  animation: riseIn 420ms ease 820ms both;
}

.hero-value {
  display: grid;
  grid-template-columns: 48px max-content;
  align-items: center;
  gap: 16px;
  min-width: 172px;
  padding-right: clamp(16px, 2vw, 34px);
}

.hero-value + .hero-value {
  padding-left: clamp(16px, 2vw, 34px);
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-value span:last-child {
  display: grid;
  gap: 1px;
}

.hero-value strong {
  color: var(--white);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-value small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.35;
}

.hero-value-icon {
  position: relative;
  display: block;
  width: 43px;
  height: 43px;
  color: var(--amber);
}

.icon-helmet::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 30px;
  height: 18px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
}

.icon-helmet::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 9px;
  width: 37px;
  height: 8px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 4px 4px;
}

.icon-shield::before {
  content: "";
  position: absolute;
  inset: 3px 7px 4px;
  border: 3px solid currentColor;
  clip-path: polygon(50% 0, 100% 18%, 100% 58%, 50% 100%, 0 58%, 0 18%);
}

.icon-shield::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 17px;
  width: 12px;
  height: 7px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.icon-clock::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.icon-clock::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 12px;
  width: 10px;
  height: 12px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.icon-gear::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: repeating-conic-gradient(currentColor 0 10deg, transparent 10deg 20deg);
  -webkit-mask: radial-gradient(circle, transparent 0 12px, #000 13px 19px, transparent 20px);
  mask: radial-gradient(circle, transparent 0 12px, #000 13px 19px, transparent 20px);
}

.icon-gear::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: #061d32;
}

.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel {
  position: absolute;
  right: var(--gutter);
  bottom: 0;
  left: var(--gutter);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1060px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(28, 33, 38, 0.96);
  box-shadow: var(--shadow-md);
  transform: translateY(50%);
  opacity: 0;
  animation: statsRise 520ms ease 830ms both;
}

.hero-panel div {
  position: relative;
  display: grid;
  gap: 8px;
  padding: clamp(20px, 2vw, 30px);
}

.hero-panel div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel strong {
  color: var(--white);
  font-size: clamp(1.7rem, 2vw, 2.35rem);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 10vw, 150px) var(--gutter) clamp(68px, 7vw, 108px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 140, 229, 0.2), transparent 42%),
    linear-gradient(90deg, rgba(28, 33, 38, 0.98), rgba(28, 33, 38, 0.88)),
    var(--steel);
}

.page-hero-photo {
  min-height: clamp(520px, 54vh, 720px);
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(18, 24, 33, 0.94) 0%, rgba(18, 24, 33, 0.82) 42%, rgba(18, 24, 33, 0.28) 72%, rgba(18, 24, 33, 0.02) 100%),
    linear-gradient(0deg, rgba(18, 24, 33, 0.26), rgba(18, 24, 33, 0.02) 55%),
    var(--page-hero-image);
  background-position: center, center, var(--page-hero-position, center);
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero-photo::after {
  opacity: 0.14;
}

.about-hero {
  --page-hero-image: url("assets/engineers.webp");
  --page-hero-position: center 36%;
}

.services-hero {
  --page-hero-image: url("assets/steel-grid.webp");
  --page-hero-position: center 58%;
}

.projects-hero {
  --page-hero-image: url("assets/steel-yard.webp");
  --page-hero-position: center 54%;
}

.contact-hero {
  --page-hero-image: url("assets/hero.webp");
  --page-hero-position: center 42%;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.28;
  pointer-events: none;
}

.page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.page-hero .eyebrow {
  color: var(--amber);
}

.page-hero h1 {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2.55rem, 5vw, 5.3rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.72;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  margin: 0;
  padding: 94px var(--gutter) 0;
  background: var(--paper);
}

.trust-strip span {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  color: rgba(28, 33, 38, 0.78);
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(0.88rem, 1vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
}

.section,
.quality {
  width: min(var(--page-max), calc(100% - (var(--gutter) * 2)));
  margin: clamp(86px, 9vw, 138px) auto;
}

.page-hero + .section,
.page-hero + .quality {
  margin-top: clamp(58px, 6vw, 92px);
}

.page-hero + .services {
  margin-top: 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

.intro-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--steel);
  box-shadow: var(--shadow-sm);
}

.intro-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 24, 33, 0.12), transparent 50%);
  pointer-events: none;
}

.intro-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.intro-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(28, 33, 38, 0.82);
  backdrop-filter: blur(12px);
}

.intro-badge strong {
  color: var(--amber);
  font-size: 1.8rem;
  line-height: 1;
}

.intro-badge span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
}

.intro-copy h2,
.section-heading h2,
.process-copy h2,
.contact h2,
.quality h2 {
  font-size: clamp(2rem, 3.1vw, 3.65rem);
}

.intro-copy h2 {
  max-width: 820px;
}

.intro-copy p:not(.eyebrow),
.process-copy p,
.contact-copy p,
.quality-card p,
.section-summary {
  color: var(--muted);
  max-width: 720px;
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.75;
}

.intro-lead {
  margin-top: 22px;
}

.intro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.intro-points span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: rgba(28, 33, 38, 0.74);
  font-size: 0.86rem;
  font-weight: 600;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 30px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.tab,
.filter {
  border: 0;
  border-radius: 6px;
  color: rgba(28, 33, 38, 0.68);
  background: transparent;
  cursor: pointer;
  font-size: 0.86rem;
  transition: background-color var(--ease), color var(--ease), box-shadow var(--ease);
}

.tab {
  min-height: 50px;
  padding: 12px;
}

.tab.active,
.filter.active {
  color: var(--steel);
  background: var(--amber);
  box-shadow: 0 12px 26px rgba(242, 169, 59, 0.22);
}

.tab-panel {
  margin-top: 12px;
  padding: clamp(22px, 2vw, 32px);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
  color: rgba(28, 33, 38, 0.78);
  font-size: clamp(1rem, 1vw, 1.08rem);
  font-weight: 600;
  line-height: 1.7;
}

.tab-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.section-heading h2 {
  max-width: 980px;
}

.section-summary {
  margin: 16px 0 0;
}

.text-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(242, 169, 59, 0.42);
  border-radius: 6px;
  color: var(--steel);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  white-space: nowrap;
  transition: background-color var(--ease), transform var(--ease);
}

.text-link:hover {
  background: var(--amber);
  transform: translateY(-2px);
}

.home-intro {
  position: relative;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(44px, 6vw, 92px);
  width: min(1440px, calc(100% - (var(--gutter) * 2)));
  margin-top: clamp(86px, 8vw, 128px);
}

.home-intro::before {
  content: "";
  position: absolute;
  left: -24px;
  top: -24px;
  width: 150px;
  height: 170px;
  border-radius: 26px 8px 8px 8px;
  background: linear-gradient(135deg, #ff9b00, #f47b00);
  z-index: -1;
}

.home-intro::after,
.home-services::after {
  content: "";
  position: absolute;
  inset: -80px 0;
  z-index: -2;
  background:
    linear-gradient(112deg, transparent 0 62%, rgba(11, 57, 84, 0.045) 62% 72%, transparent 72%),
    radial-gradient(circle at 92% 16%, rgba(28, 33, 38, 0.1) 1.5px, transparent 1.5px);
  background-size: auto, 22px 22px;
  opacity: 0.7;
  pointer-events: none;
}

.home-intro .intro-visual {
  overflow: visible;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(18, 24, 33, 0.14);
}

.home-intro .intro-visual img {
  overflow: hidden;
  aspect-ratio: 0.82;
  border-radius: 8px;
  object-position: center;
}

.home-intro .intro-visual::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 2;
  width: 110px;
  height: 122px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.8) 2px, transparent 2px);
  background-size: 17px 17px;
  pointer-events: none;
}

.home-intro .intro-badge {
  right: 42px;
  bottom: -22px;
  left: 42px;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  padding: 26px 32px;
  border: 0;
  border-radius: 8px;
  background: #061d32;
  box-shadow: 0 22px 48px rgba(6, 29, 50, 0.28);
}

.home-intro .intro-badge::after {
  content: none;
}

.home-intro .intro-badge .service-icon {
  position: relative;
  right: auto;
  bottom: auto;
  width: 82px;
  height: 82px;
  color: var(--amber);
  opacity: 1;
}

.home-intro .intro-badge div {
  display: grid;
  gap: 8px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.home-intro .intro-badge strong {
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  font-weight: 600;
}

.home-intro .intro-badge span {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

.home-intro .eyebrow,
.home-services .eyebrow,
.home-process .eyebrow {
  color: #f47b00;
}

.home-intro .eyebrow::after,
.home-services .eyebrow::after,
.home-process .eyebrow::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 16px;
  background: currentColor;
}

.home-intro .intro-copy h2 span,
.home-services .section-heading h2 span,
.home-process .process-copy h2 span {
  color: #f47b00;
}

.intro-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.intro-feature-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(18, 24, 33, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(18, 24, 33, 0.08);
}

.intro-feature-grid .service-icon {
  position: relative;
  right: auto;
  bottom: auto;
  width: 76px;
  height: 76px;
  color: #f47b00;
  opacity: 1;
  border-radius: 50%;
  background: #fff1df;
}

.intro-feature-grid h3 {
  max-width: 180px;
  margin: 0;
  color: #071927;
  font-size: 1.08rem;
  line-height: 1.22;
}

.intro-feature-grid h3::after,
.home-services .service-content h3::after,
.process-step h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 16px;
  background: #f47b00;
}

.intro-feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.intro-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  margin-top: 26px;
  padding: 26px 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 55px rgba(18, 24, 33, 0.1);
}

.intro-metrics div {
  display: grid;
  grid-template-columns: 44px auto;
  align-items: center;
  gap: 18px;
  min-height: 66px;
  padding: 0 30px;
}

.metric-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.intro-metrics div + div {
  border-left: 1px solid var(--line);
}

.intro-metrics .hero-value-icon,
.intro-metrics .service-icon {
  position: relative;
  right: auto;
  bottom: auto;
  width: 42px;
  height: 42px;
  color: #f47b00;
  opacity: 1;
}

.intro-metrics strong {
  color: #071927;
  font-size: 1.45rem;
  line-height: 1;
}

.intro-metrics small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.25;
}

.home-services {
  position: relative;
  overflow: hidden;
  padding-top: clamp(84px, 8vw, 132px);
  padding-bottom: clamp(84px, 8vw, 132px);
  background:
    radial-gradient(circle at 90% 14%, rgba(18, 24, 33, 0.12) 1.5px, transparent 1.5px),
    linear-gradient(112deg, transparent 0 58%, rgba(11, 57, 84, 0.045) 58% 69%, transparent 69%),
    #fffdf9;
  background-size: 22px 22px, auto, auto;
}

.home-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.86), transparent 52%);
  pointer-events: none;
}

.home-services .section-heading,
.home-services .service-grid {
  position: relative;
  z-index: 1;
}

.home-services .section-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.home-services .section-heading .eyebrow {
  margin-bottom: 0;
}

.home-services .section-heading h2 {
  max-width: 820px;
  color: #071927;
  font-size: clamp(2.55rem, 4.6vw, 4.95rem);
  line-height: 1.03;
}

.home-services .section-summary {
  max-width: 780px;
  font-size: 1.08rem;
}

.home-services .text-link {
  min-width: 210px;
  min-height: 64px;
  border-color: #f47b00;
  background: rgba(255, 255, 255, 0.66);
}

.home-services .service-grid {
  gap: 32px;
}

.home-services .service-card {
  min-height: 520px;
  padding: 0;
  border-color: rgba(18, 24, 33, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 55px rgba(18, 24, 33, 0.1);
}

.home-services .service-card::before {
  display: none;
}

.home-services .service-card::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 110px;
  height: 110px;
  border: 4px solid rgba(244, 123, 0, 0.08);
  border-radius: 8px;
  transform: skewY(-8deg);
}

.home-services .service-meta {
  align-items: center;
  padding: 18px 24px 0;
}

.home-services .card-index {
  width: 56px;
  height: 56px;
  color: var(--white);
  background: linear-gradient(135deg, #ff9b00, #f47b00);
  font-size: 1.25rem;
}

.home-services .service-meta small {
  color: rgba(28, 33, 38, 0.48);
  font-size: 12px;
  letter-spacing: 0.15em;
}

.home-services .service-meta small::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin: 16px 0 0 auto;
  background: rgba(244, 123, 0, 0.36);
}

.home-services .service-card > .service-icon {
  position: relative;
  right: auto;
  bottom: auto;
  width: 118px;
  height: 118px;
  margin: -6px auto 0;
  color: #f47b00;
  opacity: 1;
  border-radius: 50%;
  background: #fff1df;
}

.home-services .service-content {
  margin-top: 8px;
  padding: 0 52px 116px;
}

.home-services .service-card h3 {
  color: #071927;
  font-size: clamp(1.2rem, 1.28vw, 1.55rem);
}

.home-services .service-card p {
  max-width: 280px;
  font-size: 1rem;
  line-height: 1.75;
}

.card-arrow {
  position: absolute;
  left: 52px;
  bottom: 40px;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(244, 123, 0, 0.55);
  border-radius: 50%;
  color: #f47b00;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.25rem;
  transition: background-color var(--ease), color var(--ease), transform var(--ease);
}

.card-arrow:hover {
  color: var(--white);
  background: #f47b00;
  transform: translateX(4px);
}

.home-services .reveal,
.home-process .reveal,
.home-intro .reveal,
.home-services .reveal.is-visible,
.home-process .reveal.is-visible,
.home-intro .reveal.is-visible {
  opacity: 1;
  transform: none;
  animation: none;
}

.services {
  width: 100%;
  padding: clamp(78px, 8vw, 124px) var(--gutter);
  background:
    linear-gradient(90deg, rgba(18, 24, 33, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, var(--surface-2), #f8f8f4);
  background-size: 72px 72px, auto;
}

.services .section-heading,
.service-grid {
  width: min(var(--page-max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.service-card {
  position: relative;
  display: grid;
  min-height: 260px;
  align-content: space-between;
  gap: 24px;
  overflow: hidden;
  padding: clamp(24px, 2.4vw, 34px);
  border: 1px solid rgba(18, 24, 33, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(18, 24, 33, 0.05);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--blue));
  opacity: 0;
  transition: opacity var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 169, 59, 0.56);
  box-shadow: var(--shadow-sm);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:nth-child(6) {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(11, 57, 84, 0.54), rgba(28, 33, 38, 0.98));
}

.service-card:nth-child(6) p,
.service-card:nth-child(6) .service-meta small {
  color: rgba(255, 255, 255, 0.68);
}

.service-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.card-index {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--steel);
  background: #fff0d3;
  font-size: 0.96rem;
  font-weight: 600;
}

.service-card:nth-child(6) .card-index {
  background: var(--amber);
}

.service-meta small {
  color: rgba(28, 33, 38, 0.45);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-icon {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 62px;
  height: 62px;
  color: var(--navy);
  opacity: 0.1;
}

.service-card:nth-child(6) .service-icon {
  color: var(--amber);
  opacity: 0.24;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
}

.service-icon-building::before { inset: 13px 15px 8px; }
.service-icon-building::after { right: 24px; bottom: 8px; width: 10px; height: 17px; border-top: 0; }
.service-icon-structure::before { left: 8px; right: 8px; bottom: 11px; height: 36px; transform: skewX(-14deg); }
.service-icon-structure::after { left: 21px; top: 10px; width: 18px; height: 40px; border-top: 0; border-bottom: 0; }
.service-icon-earth::before { left: 6px; right: 6px; bottom: 12px; height: 14px; border-top: 0; }
.service-icon-earth::after { left: 13px; top: 14px; width: 34px; height: 22px; border-right: 0; border-bottom: 0; transform: rotate(-18deg); }
.service-icon-steel::before { left: 8px; top: 13px; width: 46px; height: 12px; }
.service-icon-steel::after { left: 8px; bottom: 13px; width: 46px; height: 12px; }
.service-icon-modular::before { inset: 13px 7px; }
.service-icon-modular::after { left: 20px; top: 13px; width: 12px; height: 36px; border-top: 0; border-bottom: 0; }
.service-icon-project::before { left: 14px; top: 9px; width: 34px; height: 44px; }
.service-icon-project::after { left: 23px; top: 22px; width: 18px; height: 2px; border-right: 0; border-left: 0; box-shadow: 0 11px 0 currentColor; }

.service-content {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  margin: 0 0 12px;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.06rem, 1.1vw, 1.28rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.24;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.process {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
  width: min(var(--page-max), calc(100% - (var(--gutter) * 2)));
  padding: clamp(42px, 5vw, 78px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 140, 229, 0.18), transparent 42%),
    var(--steel);
  box-shadow: var(--shadow-sm);
}

.process .eyebrow {
  color: var(--amber);
}

.process-copy p {
  color: rgba(255, 255, 255, 0.66);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.process-steps > span {
  display: grid;
  min-height: 150px;
  align-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform var(--ease), border-color var(--ease), background-color var(--ease);
}

.process-steps > span:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 169, 59, 0.52);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
}

.process-icon {
  display: block;
  width: 42px;
  height: 42px;
  color: var(--amber);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.process-steps > span:nth-child(even) .process-icon {
  color: #5aa6d6;
}

.home-process {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1.54fr);
  gap: clamp(36px, 5vw, 76px);
  width: min(1680px, calc(100% - (var(--gutter) * 2)));
  padding: clamp(58px, 6vw, 92px) clamp(48px, 6vw, 76px);
  border-radius: 10px;
  overflow: hidden;
  background:
    linear-gradient(116deg, rgba(22, 140, 229, 0.17), transparent 35%),
    linear-gradient(112deg, transparent 0 23%, rgba(255, 255, 255, 0.035) 23% 29%, transparent 29% 100%),
    #06111d;
  box-shadow: 0 28px 70px rgba(18, 24, 33, 0.26);
}

.home-process::before {
  content: "";
  position: absolute;
  left: 72px;
  bottom: 62px;
  width: 210px;
  height: 86px;
  opacity: 0.44;
  background-image: radial-gradient(#f47b00 1.6px, transparent 1.6px);
  background-size: 26px 26px;
}

.home-process .process-copy {
  position: relative;
  z-index: 1;
}

.home-process .process-copy h2 {
  max-width: 500px;
  font-size: clamp(2.15rem, 3.05vw, 3.35rem);
  line-height: 1.06;
}

.home-process .process-copy p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

.home-process .process-steps {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 28px);
  overflow: visible;
}

.process-step {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 370px;
  padding: 42px 24px 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform var(--ease), border-color var(--ease), background-color var(--ease);
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 169, 59, 0.52);
}

.process-step + .process-step::before {
  content: "\203A";
  position: absolute;
  left: clamp(-30px, -1.65vw, -20px);
  top: 44%;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--amber);
  background: #071522;
  font-family: "IBM Plex Mono", monospace;
  font-size: 2.1rem;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.process-step .process-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 42px;
  color: var(--amber);
}

.process-step span {
  color: rgba(123, 153, 180, 0.55);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.process-step h3 {
  margin: 16px 0 0;
  color: var(--white);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.process-step p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
  line-height: 1.65;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

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

.project-card {
  position: relative;
  grid-column: span 4;
  min-height: clamp(420px, 34vw, 560px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--steel);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}

.project-card:nth-child(1),
.project-card:nth-child(2) {
  grid-column: span 6;
}

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

.project-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 500ms ease, opacity var(--ease);
}

.project-card:hover img {
  transform: scale(1.035);
  opacity: 1;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 24, 33, 0.92), rgba(18, 24, 33, 0.42) 48%, rgba(18, 24, 33, 0.08));
}

.project-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: clamp(24px, 3vw, 42px);
  color: var(--white);
}

.project-card span {
  color: var(--amber-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card h3 {
  max-width: 620px;
  margin: 9px 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.24rem, 1.45vw, 1.72rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.project-card p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.9rem, 0.96vw, 1rem);
  line-height: 1.62;
}

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

.preview-grid .project-card {
  grid-column: span 6;
}

.cta-strip {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(242, 169, 59, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
}

.cta-strip h2 {
  max-width: 920px;
}

.cta-strip .btn {
  width: fit-content;
}

.detail-band,
.service-detail-list,
.credentials,
.case-study,
.enquiry-grid {
  position: relative;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.detail-grid article,
.service-detail,
.credential-list div,
.case-study-facts div,
.checklist-panel span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 30px rgba(18, 24, 33, 0.05);
}

.detail-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 240px;
  padding: clamp(22px, 2vw, 30px);
}

.detail-grid span,
.service-detail span {
  width: fit-content;
  color: var(--navy);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-grid h3,
.service-detail h3,
.case-study h2,
.credentials h2,
.enquiry-grid h2 {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.detail-grid h3 {
  font-size: clamp(1.18rem, 1.25vw, 1.45rem);
}

.detail-grid p,
.credentials p,
.case-study p,
.enquiry-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-detail-list {
  display: grid;
  gap: 14px;
}

.service-detail-list .section-heading {
  margin-bottom: 14px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 50px);
  align-items: start;
  padding: clamp(24px, 3vw, 38px);
}

.service-detail h3 {
  margin-top: 8px;
  font-size: clamp(1.35rem, 1.6vw, 2rem);
}

.service-detail ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.service-detail li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.credentials,
.case-study,
.enquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding: clamp(34px, 4vw, 58px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
}

.credentials h2,
.case-study h2,
.enquiry-grid h2 {
  max-width: 780px;
  font-size: clamp(2rem, 3vw, 3.35rem);
}

.credentials p,
.case-study p,
.enquiry-grid p {
  max-width: 760px;
  margin-top: 18px;
}

.credential-list,
.case-study-facts,
.checklist-panel {
  display: grid;
  gap: 10px;
}

.credential-list div,
.case-study-facts div {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.credential-list strong,
.case-study-facts strong {
  color: var(--steel);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.credential-list span,
.case-study-facts span {
  color: var(--muted);
  line-height: 1.55;
}

.case-study {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 140, 229, 0.18), transparent 42%),
    var(--steel);
}

.case-study .eyebrow {
  color: var(--amber);
}

.case-study p,
.case-study-facts span {
  color: rgba(255, 255, 255, 0.7);
}

.case-study-facts div {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.case-study-facts strong {
  color: var(--white);
}

.checklist-panel span {
  position: relative;
  padding: 16px 18px 16px 46px;
  color: rgba(28, 33, 38, 0.78);
  font-weight: 600;
}

.checklist-panel span::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 18px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--amber);
  border-bottom: 2px solid var(--amber);
  transform: rotate(-45deg);
}

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

.quality-card,
.quality-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

.quality-card {
  padding: clamp(36px, 5vw, 76px);
}

.quality-card h2,
.quality-card p {
  max-width: 880px;
}

.quality-list {
  display: grid;
  overflow: hidden;
  background: rgba(18, 24, 33, 0.08);
}

.quality-list div {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 160px;
  padding: clamp(24px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.82);
}

.quality-list div + div {
  border-top: 1px solid var(--line);
}

.quality-list strong {
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.04rem, 1.05vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.quality-list span {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 5vw, 90px);
  align-items: start;
  padding: clamp(42px, 5vw, 78px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(242, 169, 59, 0.2), transparent 42%),
    linear-gradient(180deg, var(--steel-2), var(--steel));
  box-shadow: var(--shadow-sm);
}

.contact .eyebrow {
  color: var(--amber);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-panel a,
.contact-panel div {
  display: grid;
  gap: 7px;
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  transition: border-color var(--ease), background-color var(--ease), transform var(--ease);
}

.contact-panel a:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 169, 59, 0.78);
  background: rgba(255, 255, 255, 0.09);
}

.contact-panel strong {
  color: var(--amber-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-panel span {
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.home-contact {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  width: min(1640px, calc(100% - (var(--gutter) * 2)));
  margin-top: clamp(86px, 8vw, 128px);
  margin-bottom: clamp(86px, 8vw, 128px);
  padding: clamp(58px, 6vw, 86px) clamp(48px, 6vw, 88px);
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(242, 169, 59, 0.3), transparent 26%),
    radial-gradient(circle at 100% 0, rgba(22, 140, 229, 0.16), transparent 34%),
    linear-gradient(112deg, transparent 0 42%, rgba(255, 255, 255, 0.035) 42% 48%, transparent 48%),
    #061522;
  box-shadow: 0 28px 70px rgba(18, 24, 33, 0.24);
}

.home-contact::before,
.home-contact::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 76px;
  opacity: 0.36;
  background-image: radial-gradient(#f2a93b 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
}

.home-contact::before {
  left: 0;
  bottom: 18px;
}

.home-contact::after {
  top: 18px;
  right: 32px;
}

.home-contact .contact-copy,
.home-contact .contact-panel {
  position: relative;
  z-index: 1;
}

.home-contact .eyebrow {
  color: var(--amber);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.home-contact .eyebrow::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 18px;
  background: currentColor;
}

.home-contact h2 {
  max-width: 570px;
  margin-top: 34px;
  font-size: clamp(2.4rem, 3.8vw, 4.15rem);
  line-height: 1.07;
}

.home-contact h2 span {
  color: var(--amber);
}

.home-contact .contact-copy p {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.72;
}

.home-contact .contact-copy .btn {
  width: fit-content;
  margin-top: 34px;
}

.home-contact .contact-panel {
  gap: 20px;
}

.home-contact .contact-panel a {
  min-height: 228px;
  align-content: center;
  gap: 16px;
  padding: clamp(28px, 3vw, 40px);
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-contact .contact-panel strong {
  color: var(--amber);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.home-contact .contact-panel a > span:last-child {
  color: var(--white);
  font-size: clamp(1.18rem, 1.35vw, 1.45rem);
  font-weight: 700;
  line-height: 1.32;
}

.contact-icon {
  position: relative;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  color: var(--amber);
  background: rgba(255, 255, 255, 0.045);
}

.contact-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon::before,
.contact-icon::after {
  content: "";
  position: absolute;
}

.contact-icon-phone::before {
  width: 24px;
  height: 24px;
  border: 4px solid currentColor;
  border-top: 0;
  border-right: 0;
  border-radius: 5px;
  transform: rotate(-45deg);
}

.contact-icon-phone::after {
  right: 21px;
  bottom: 22px;
  width: 10px;
  height: 13px;
  border: 4px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-45deg);
}

.contact-icon-mail::before {
  width: 31px;
  height: 22px;
  border: 4px solid currentColor;
  border-radius: 3px;
}

.contact-icon-mail::after {
  width: 27px;
  height: 18px;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: translateY(-4px) rotate(45deg);
}

.contact-icon-location::before {
  width: 28px;
  height: 28px;
  border: 4px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.contact-icon-location::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--page-max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 28px 0 38px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer div {
  display: grid;
  gap: 3px;
}

.site-footer address {
  max-width: 430px;
  color: rgba(95, 108, 128, 0.95);
  font-style: normal;
  line-height: 1.55;
}

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

.site-footer a {
  color: var(--navy);
  font-size: 0.9rem;
}

@keyframes wipeReveal {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSettle {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

@keyframes statsRise {
  from {
    opacity: 0;
    transform: translateY(50%) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(50%) scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
}

.reveal.is-visible {
  animation: riseIn 500ms ease both;
}

.service-grid .reveal:nth-child(2),
.project-grid .reveal:nth-child(2),
.contact-panel .reveal:nth-child(2) { animation-delay: 70ms; }
.service-grid .reveal:nth-child(3),
.project-grid .reveal:nth-child(3),
.contact-panel .reveal:nth-child(3) { animation-delay: 140ms; }
.service-grid .reveal:nth-child(4),
.project-grid .reveal:nth-child(4),
.contact-panel .reveal:nth-child(4) { animation-delay: 210ms; }
.service-grid .reveal:nth-child(5),
.project-grid .reveal:nth-child(5),
.contact-panel .reveal:nth-child(5) { animation-delay: 280ms; }
.service-grid .reveal:nth-child(6),
.project-grid .reveal:nth-child(6),
.contact-panel .reveal:nth-child(6) { animation-delay: 350ms; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .hero .eyebrow,
  .hero-copy,
  .hero-actions .btn,
  .hero-panel,
  .hero-values,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero h1 {
    clip-path: none !important;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 82px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links,
  .header-call {
    display: none;
  }

  .site-header.open .nav-links {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    padding-top: 10px;
  }

  .site-header.open .nav-link {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.78);
  }

  .site-header.open .header-call {
    display: flex;
    grid-column: 1 / -1;
    justify-content: center;
  }

  .intro,
  .process,
  .quality,
  .contact {
    grid-template-columns: 1fr;
  }

  .home-intro {
    grid-template-columns: 1fr;
  }

  .intro-feature-grid,
  .intro-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .credentials,
  .case-study,
  .enquiry-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .home-process .process-steps {
    grid-template-columns: repeat(5, minmax(210px, 1fr));
  }

  .process-step {
    min-height: 340px;
  }

  .process-step + .process-step::before {
    left: -30px;
  }

  .project-card,
  .project-card:nth-child(1),
  .project-card:nth-child(2) {
    grid-column: span 6;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media {
    inset: 0 0 0 34%;
  }

  .hero h1 {
    max-width: 610px;
  }

  .hero-values {
    grid-template-columns: repeat(2, max-content);
    gap: 22px 0;
  }

  .hero-value:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 76px;
    padding: 12px 16px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    display: none;
  }

  .site-header.open .nav-links {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 28px;
  }

  .hero::before {
    inset: 0;
    opacity: 0.18;
  }

  .hero::after {
    display: none;
  }

  .hero-media,
  .hero-media img,
  .hero-shade {
    position: absolute;
  }

  .hero-media {
    inset: 0;
    clip-path: none;
  }

  .hero-media img {
    object-position: 62% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(6, 18, 31, 0.82), rgba(6, 18, 31, 0.94)),
      linear-gradient(90deg, rgba(6, 18, 31, 0.92), rgba(6, 18, 31, 0.56));
  }

  .hero-content {
    min-height: 720px;
    padding: 64px 18px 24px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(3rem, 15vw, 4.2rem);
    letter-spacing: 0.005em;
  }

  .hero .eyebrow {
    gap: 7px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .hero .eyebrow::after {
    width: 28px;
  }

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

  .btn {
    width: 100%;
  }

  .hero-values {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 38px;
  }

  .hero-value {
    min-width: 0;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .hero-value + .hero-value {
    padding-left: 0;
    border-left: 0;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 18px;
    transform: none;
    animation-name: riseIn;
  }

  .hero-panel div {
    padding: 18px 16px;
  }

  .hero-panel strong {
    font-size: 1.45rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .trust-strip span {
    min-height: 54px;
  }

  .section,
  .quality {
    width: calc(100% - 36px);
    margin: 74px auto;
  }

  .intro-copy h2,
  .section-heading h2,
  .process-copy h2,
  .contact h2,
  .quality h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
    line-height: 1.08;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .filter-row {
    justify-content: flex-start;
  }

  .services {
    width: 100%;
    padding: 74px 18px;
  }

  .home-intro::before {
    width: 96px;
    height: 112px;
  }

  .home-intro .intro-badge {
    right: 18px;
    bottom: -18px;
    left: 18px;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    padding: 20px;
  }

  .home-intro .intro-badge .service-icon {
    width: 58px;
    height: 58px;
  }

  .home-intro .intro-badge div {
    padding-left: 16px;
  }

  .intro-feature-grid,
  .intro-metrics,
  .home-services .service-grid {
    grid-template-columns: 1fr;
  }

  .intro-feature-grid article {
    min-height: auto;
  }

  .intro-metrics {
    padding: 18px;
  }

  .intro-metrics div {
    padding: 18px 0;
  }

  .intro-metrics div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .home-services {
    padding: 74px 18px;
  }

  .home-services .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-services .section-heading h2 {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
  }

  .home-services .text-link {
    width: fit-content;
    min-width: 0;
    min-height: 54px;
  }

  .home-services .service-card {
    min-height: 410px;
  }

  .home-services .service-content {
    padding: 0 30px;
  }

  .card-arrow {
    left: 30px;
    bottom: 30px;
  }

  .service-grid,
  .contact-panel,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 230px;
  }

  .process,
  .contact,
  .quality-card,
  .credentials,
  .case-study,
  .enquiry-grid,
  .cta-strip {
    padding: 28px;
  }

  .home-process {
    width: calc(100% - 28px);
    padding: 34px 22px;
  }

  .home-process .process-copy h2 {
    font-size: clamp(1.95rem, 8.5vw, 2.55rem);
  }

  .home-contact {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    padding: 34px 22px;
    border-radius: 10px;
  }

  .home-contact h2 {
    margin-top: 24px;
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .home-contact .contact-copy p {
    font-size: 1rem;
  }

  .home-contact .contact-copy .btn {
    width: 100%;
  }

  .home-contact .contact-panel {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-contact .contact-panel a {
    min-height: 190px;
    padding: 26px;
  }

  .home-contact .contact-panel a > span:last-child {
    font-size: 1.06rem;
  }

  .contact-icon {
    width: 62px;
    height: 62px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .home-process .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
    padding: 30px 26px;
  }

  .process-step + .process-step::before {
    display: none;
  }

  .process-steps > span {
    min-height: 104px;
  }

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

  .project-card,
  .project-card:nth-child(1),
  .project-card:nth-child(2) {
    grid-column: 1 / -1;
    min-height: 420px;
  }

  .site-footer {
    width: calc(100% - 36px);
    flex-direction: column;
  }
}
