:root {
  --ink: #151719;
  --ink2: #1c1f21;
  --paper: #f4f4f1;
  --white: #fff;
  --muted: #686d70;
  --line: #d6d7d5;
  --accent: #f26a2e;
  --accent2: #ff8b55;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 850;
  font-size: 0.78rem;
  color: var(--accent);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  transition: 0.2s ease;
}
.button.primary {
  background: var(--accent);
  color: #111;
}
.button.primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
}
.button.dark {
  background: var(--ink);
  color: #fff;
}
.button.outline {
  border-color: #555b5f;
  color: #fff;
}
.button.outline:hover {
  border-color: #fff;
}
header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(21, 23, 25, 0.96);
  backdrop-filter: blur(12px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.brand span {
  font-weight: 850;
  letter-spacing: 0.05em;
  line-height: 1.05;
}
.brand small {
  display: block;
  color: #aeb1b3;
  font-weight: 650;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  margin-top: 5px;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 23px;
}
.navlinks > a {
  text-decoration: none;
  font-weight: 680;
  font-size: 0.88rem;
}
.navlinks > a:hover,
.navlinks > a.active {
  color: var(--accent2);
}
.lift-menu {
  position: relative;
}
.lift-menu > button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  font-weight: 680;
  padding: 12px 0;
  cursor: pointer;
}
.dropdown {
  display: none;
  position: absolute;
  top: 44px;
  left: -22px;
  background: #222628;
  width: 310px;
  padding: 12px;
  box-shadow: 0 20px 50px #0008;
  border: 1px solid #3a3e40;
}
.lift-menu:hover .dropdown,
.lift-menu:focus-within .dropdown {
  display: grid;
}
.dropdown a {
  padding: 10px 12px;
  text-decoration: none;
  font-size: 0.83rem;
  color: #d7d9da;
}
.dropdown a:hover {
  background: #303538;
  color: #fff;
}
.menu {
  display: none;
  border: 0;
  background: none;
  color: #fff;
  font-size: 1.5rem;
}
.page-hero {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero:after {
  content: "";
  position: absolute;
  right: -10%;
  top: -60%;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid #ffffff12;
  transform: rotate(45deg);
  box-shadow:
    0 0 0 90px #ffffff05,
    0 0 0 180px #ffffff03;
}
.page-hero .wrap {
  position: relative;
  z-index: 2;
  min-height: 520px;
  padding-top: 95px;
  padding-bottom: 82px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #9ea2a5;
  font-size: 0.78rem;
  margin-bottom: auto;
}
.breadcrumbs a {
  text-decoration: none;
}
.page-hero h1 {
  font-size: clamp(3.25rem, 7.5vw, 7rem);
  line-height: 0.91;
  letter-spacing: -0.065em;
  max-width: 960px;
  margin: 30px 0 24px;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.page-hero p {
  font-size: 1.15rem;
  color: #c7cacb;
  max-width: 720px;
  margin: 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.intro {
  padding: 100px 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}
.intro h2,
.split h2,
.cta h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
  margin: 12px 0 25px;
}
.intro-copy {
  font-size: 1.06rem;
  color: var(--muted);
}
.intro-copy p:first-child {
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.45;
  margin-top: 0;
}
.scope {
  padding: 0 0 110px;
}
.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.scope-card {
  background: #fff;
  padding: 34px;
  min-height: 245px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.scope-card b {
  font-size: 0.74rem;
  color: var(--accent);
  letter-spacing: 0.12em;
}
.scope-card h3 {
  font-size: 1.28rem;
  line-height: 1.2;
  margin: 34px 0 12px;
}
.scope-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.split {
  background: var(--ink2);
  color: #fff;
  padding: 100px 0;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.split p {
  color: #b9bdbe;
}
.checks {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
.checks li {
  padding: 13px 0;
  border-bottom: 1px solid #3b3f42;
}
.checks li:before {
  content: "/";
  color: var(--accent);
  font-weight: 900;
  margin-right: 12px;
}
.callout {
  background: #292d30;
  padding: 38px;
  border-left: 5px solid var(--accent);
  align-self: start;
}
.callout h3 {
  font-size: 1.5rem;
  margin: 0 0 12px;
}
.callout p {
  margin: 0 0 22px;
}
.related {
  padding: 100px 0;
}
.related-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 40px;
}
.related-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 10px 0 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.related-card {
  background: #fff;
  padding: 28px;
  min-height: 205px;
  text-decoration: none;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: 0.2s;
}
.related-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.related-card span {
  color: var(--accent);
  font-weight: 900;
  font-size: 0.75rem;
}
.related-card h3 {
  font-size: 1.2rem;
  margin: 34px 0 8px;
}
.related-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}
.related-card i {
  font-style: normal;
  margin-top: auto;
  text-align: right;
  font-size: 1.3rem;
}
.service-index {
  padding: 100px 0;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.service-link {
  background: #fff;
  min-height: 280px;
  padding: 36px;
  text-decoration: none;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: 0.2s;
}
.service-link:hover {
  background: #faf6f3;
  border-color: var(--accent);
  transform: translateY(-4px);
}
.service-link .number {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.service-link h2 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 40px 0 14px;
}
.service-link p {
  color: var(--muted);
  max-width: 520px;
  margin: 0;
}
.service-link strong {
  margin-top: auto;
  text-align: right;
}
.projects {
  padding: 100px 0;
}
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 45px;
}
.sector {
  background: #fff;
  padding: 28px;
  min-height: 180px;
  border-top: 4px solid var(--accent);
}
.sector h3 {
  margin: 26px 0 8px;
}
.sector p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}
.project-band {
  background: var(--ink2);
  color: #fff;
  padding: 90px 0;
}
.project-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #3c4043;
  border: 1px solid #3c4043;
}
.project-type {
  background: var(--ink2);
  padding: 34px;
  min-height: 240px;
}
.project-type small {
  color: var(--accent);
  font-weight: 850;
}
.project-type h3 {
  font-size: 1.4rem;
  margin: 45px 0 12px;
}
.project-type p {
  font-size: 0.9rem;
  color: #b8bcbd;
}
.photo-note {
  margin-top: 40px;
  color: #aeb2b4;
  font-size: 0.84rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
.about-logo {
  background: var(--ink);
  padding: 18px;
}
.qualifications {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.pill {
  border: 1px solid var(--line);
  padding: 10px 14px;
  background: #fff;
  font-size: 0.83rem;
  font-weight: 700;
}
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 55px;
}
.value {
  background: #fff;
  padding: 28px;
  min-height: 190px;
}
.value b {
  font-size: 2.5rem;
  color: #dadcdd;
}
.value h3 {
  margin: 25px 0 8px;
}
.value p {
  color: var(--muted);
  font-size: 0.87rem;
  margin: 0;
}
.contact-page {
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
}
.contact-options {
  display: grid;
  gap: 12px;
}
.contact-option {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
  text-decoration: none;
}
.contact-option small {
  color: var(--muted);
}
.contact-option strong {
  display: block;
  font-size: 1.25rem;
  margin-top: 5px;
}
.enquiry-guide {
  background: var(--ink2);
  color: #fff;
  padding: 38px;
}
.enquiry-guide h2 {
  margin-top: 0;
}
.enquiry-guide p {
  color: #bdc0c1;
}
.enquiry-guide ol {
  padding-left: 20px;
}
.enquiry-guide li {
  margin: 12px 0;
}
.cta {
  background: var(--accent);
  padding: 78px 0;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}
.cta h2 {
  margin: 0;
}
.cta p {
  margin: 18px 0 0;
  max-width: 670px;
}
.cta-actions {
  display: grid;
  gap: 12px;
}
.cta-actions .button {
  min-height: 58px;
}
footer {
  background: #111315;
  color: #b7bbbd;
  padding: 45px 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 45px;
}
.footer-brand {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 850;
}
.footer-brand-block p {
  font-size: 0.82rem;
  max-width: 300px;
}
.footer-col h3 {
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
}
.footer-col a {
  display: block;
  text-decoration: none;
  font-size: 0.82rem;
  margin: 8px 0;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid #303335;
  margin-top: 35px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.75rem;
}
.legal-page {
  padding: 90px 0;
}
.legal-page article {
  max-width: 780px;
}
.legal-page h2 {
  margin-top: 45px;
}
.legal-page p,
.legal-page li {
  color: var(--muted);
}
@media (max-width: 960px) {
  .navlinks {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #17191b;
    padding: 18px 22px;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 68px);
    overflow: auto;
  }
  .navlinks.open {
    display: flex;
  }
  .lift-menu > button {
    width: 100%;
    text-align: left;
  }
  .dropdown,
  .lift-menu:hover .dropdown,
  .lift-menu:focus-within .dropdown {
    display: grid;
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: 4px;
  }
  .menu {
    display: block;
  }
  .nav {
    min-height: 68px;
  }
  .brand img {
    width: 45px;
    height: 45px;
  }
  .page-hero .wrap {
    min-height: 460px;
    padding-top: 75px;
  }
  .intro-grid,
  .split-grid,
  .about-grid,
  .contact-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .scope-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sector-grid,
  .values {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }
  .brand span {
    font-size: 0.82rem;
  }
  .brand small {
    font-size: 0.53rem;
  }
  .page-hero h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }
  .page-hero .wrap {
    min-height: 440px;
  }
  .intro,
  .service-index,
  .projects,
  .related,
  .contact-page {
    padding: 72px 0;
  }
  .scope {
    padding-bottom: 72px;
  }
  .scope-grid,
  .service-list,
  .sector-grid,
  .values,
  .related-grid,
  .project-band-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .scope-card {
    min-height: 210px;
  }
  .service-link {
    min-height: 245px;
  }
  .related-head,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-actions .button {
    width: 100%;
  }
  .cta {
    padding: 65px 0;
  }
}
.project-gallery {
  padding: 100px 0;
  background: #f1f1ef;
}
.project-gallery.dark-gallery {
  background: var(--ink2);
  color: #fff;
}
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}
.gallery-head h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 10px 0 0;
  max-width: 760px;
}
.gallery-head p {
  max-width: 430px;
  color: var(--muted);
  margin: 0;
}
.dark-gallery .gallery-head p {
  color: #b8bcbd;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 250px;
  gap: 14px;
}
.gallery-spaced {
  margin-top: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: #d8d9d7;
  grid-column: span 4;
  margin: 0;
}
.gallery-item.wide {
  grid-column: span 8;
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-item:hover img {
  transform: scale(1.025);
}
.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 18px 16px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 750;
  background: linear-gradient(transparent, rgba(15, 17, 18, 0.82));
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.comparison-card {
  position: relative;
  margin: 0;
  background: #d8d9d7;
  overflow: hidden;
}
.comparison-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}
.comparison-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--accent);
  color: #17191b;
  padding: 9px 12px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
@media (max-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 270px;
  }
  .gallery-item,
  .gallery-item.wide {
    grid-column: span 1;
  }
  .gallery-item.tall {
    grid-row: span 1;
  }
}
@media (max-width: 600px) {
  .gallery-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .gallery-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-auto-rows: 300px;
  }
  .comparison-card img {
    height: 330px;
  }
  .project-gallery {
    padding: 72px 0;
  }
}
