:root {
  --ink: #172234;
  --navy: #11203d;
  --navy-2: #182b4b;
  --paper: #f7f3ea;
  --white: #ffffff;
  --orange: #f3702d;
  --gold: #f2ce63;
  --steel: #607281;
  --green: #6d7f4a;
  --line: rgba(23, 34, 52, 0.14);
  --shadow: 0 24px 70px rgba(17, 32, 61, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--paper);
  box-shadow: 0 1px 0 var(--line);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 12px 5vw;
  background: var(--navy);
  color: var(--white);
}

.brand-mark img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  background: var(--white);
}

.topbar-links {
  display: flex;
  gap: 24px;
  font-weight: 700;
}

.topbar-links a::before {
  color: var(--orange);
  margin-right: 8px;
}

.topbar-links a:first-child::before {
  content: "Email:";
}

.topbar-links a:last-child::before {
  content: "Phone:";
}

.nav {
  display: flex;
  justify-content: center;
  padding: 0 5vw;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(1120px, 100%);
  min-height: 72px;
}

.nav-menu a {
  padding: 15px 16px;
  font-weight: 800;
  color: var(--ink);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--orange);
}

.nav-cta {
  margin-left: auto;
  min-width: 134px;
  text-align: center;
  background: var(--navy);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 32, 61, 0.82), rgba(17, 32, 61, 0.54) 48%, rgba(17, 32, 61, 0.22)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.3), transparent 34%);
}

.hero-content {
  position: relative;
  width: min(1080px, 90vw);
  margin: 0 auto;
  padding: 110px 0 120px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.process h2,
.proof h2,
.resources h2,
.contact-copy h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  font-size: 4.8rem;
}

.hero p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  font-size: 1.22rem;
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid transparent;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--orange);
  color: var(--white);
}

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

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 8px solid var(--gold);
  border-bottom: 1px solid var(--line);
}

.intro-band div {
  min-height: 140px;
  padding: 34px 5vw;
  background: var(--paper);
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.intro-band span {
  color: var(--steel);
  line-height: 1.55;
}

.section,
.projects {
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 94px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading h2,
.process h2,
.proof h2,
.resources h2,
.contact-copy h2 {
  font-size: 3rem;
  color: var(--navy);
}

.section-heading p:not(.eyebrow),
.process-copy p,
.resources p,
.contact-copy p {
  color: var(--steel);
  line-height: 1.7;
  font-size: 1.05rem;
}

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

.service-card {
  min-height: 390px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(17, 32, 61, 0.06);
}

.service-card img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  margin-bottom: 28px;
}

.service-card:nth-child(4) img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.service-card h3,
.sector-grid h3 {
  margin: 0 0 14px;
  font-size: 1.25rem;
}

.service-card p,
.sector-grid p,
.proof li,
.timeline span,
.footer p {
  color: var(--steel);
  line-height: 1.6;
}

.service-card a {
  display: inline-block;
  margin-top: 16px;
  font-weight: 900;
  color: var(--orange);
}

.process {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 64px;
  padding: 94px 5vw;
  background: var(--white);
}

.process-copy {
  max-width: 520px;
}

.process-copy .button {
  margin-top: 18px;
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: stages;
}

.timeline li {
  position: relative;
  padding: 24px 24px 24px 76px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.timeline li::before {
  counter-increment: stages;
  content: counter(stages);
  position: absolute;
  left: 22px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  margin-bottom: 6px;
}

.sector-section {
  padding-bottom: 70px;
}

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

.sector-grid article {
  padding: 28px;
  border-left: 5px solid var(--orange);
  background: rgba(255, 255, 255, 0.64);
}

.proof {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  padding: 82px 5vw;
  background: var(--navy);
  color: var(--white);
}

.proof h2,
.proof .eyebrow {
  color: var(--white);
}

.proof .eyebrow {
  color: var(--gold);
}

.proof ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.78);
}

.proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: var(--orange);
}

.project-gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
}

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

.project-gallery img:first-child {
  grid-row: span 2;
  height: 536px;
}

.resources {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 68px 5vw;
  background: var(--green);
  color: var(--white);
}

.resources > div {
  max-width: 800px;
}

.resources h2,
.resources .eyebrow {
  color: var(--white);
}

.resources p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 56px;
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 94px 0;
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-direct a {
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--navy);
}

.enquiry-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin: 0;
  color: var(--navy);
}

.contact-card p {
  margin: 0;
  color: var(--steel);
  line-height: 1.65;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

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

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(243, 112, 45, 0.28);
  border-color: var(--orange);
}

.checkbox {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  font-weight: 500;
  color: var(--steel);
}

.checkbox input {
  min-height: auto;
  margin-top: 4px;
}

.form-button {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 800;
  color: var(--green);
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 36px;
  padding: 54px 5vw;
  background: var(--ink);
  color: var(--white);
}

.footer img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: var(--white);
  margin-bottom: 18px;
}

.footer h2 {
  margin: 0 0 16px;
  font-size: 1rem;
}

.footer a {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
}

.subhero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 50px;
  align-items: center;
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 86px 0 70px;
}

.subhero h1,
.legal-page h1 {
  margin: 0;
  max-width: 780px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 4rem;
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--navy);
}

.subhero p {
  color: var(--steel);
  line-height: 1.7;
  font-size: 1.08rem;
}

.subhero-image {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.mini-nav a,
.tag {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
}

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

.price-card,
.feature-card,
.range-card,
.calc-panel,
.spec-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(17, 32, 61, 0.06);
}

.price-card,
.feature-card,
.range-card {
  padding: 26px;
}

.price-card h3,
.feature-card h3,
.range-card h3 {
  margin: 0 0 10px;
}

.price {
  display: block;
  margin: 18px 0 8px;
  font-size: 2.15rem;
  line-height: 1;
  font-weight: 950;
  color: var(--navy);
}

.vat,
.note {
  color: var(--steel);
  font-size: 0.92rem;
}

.spec-list,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.spec-list li,
.plain-list li {
  position: relative;
  padding-left: 22px;
  color: var(--steel);
  line-height: 1.55;
}

.spec-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  background: var(--orange);
}

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

.price-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  background: var(--navy);
  color: var(--white);
}

.price-table strong {
  color: var(--navy);
}

.calculator {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.calc-panel {
  padding: 26px;
}

.calc-panel label {
  margin-bottom: 18px;
}

.calc-total {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.calc-total div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.calc-result {
  padding: 24px;
  background: var(--navy);
  color: var(--white);
}

.calc-result strong {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-size: 2.4rem;
}

.question-grid {
  display: grid;
  gap: 16px;
}

.spec-card {
  padding: 22px;
}

.spec-card button {
  min-height: 42px;
  margin: 6px 6px 0 0;
  border: 1px solid var(--line);
  padding: 0 12px;
  background: var(--paper);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.spec-card button.is-selected {
  background: var(--orange);
  color: var(--white);
}

.legal-page {
  max-width: 880px;
}

.legal-page h2 {
  margin-top: 34px;
  color: var(--navy);
}

.legal-page p,
.legal-page li {
  color: var(--steel);
  line-height: 1.7;
}

@media (max-width: 960px) {
  .topbar,
  .topbar-links,
  .resources {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: stretch;
    flex-direction: column;
    padding: 0;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 58px;
    border: 0;
    padding: 0 5vw;
    background: var(--paper);
    font: inherit;
    font-weight: 900;
    color: var(--ink);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .nav-menu {
    display: none;
    width: 100%;
    min-height: auto;
    padding: 8px 5vw 20px;
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu a {
    padding: 14px 0;
  }

  .nav-cta {
    margin-left: 0;
    padding: 14px 18px !important;
  }

  .hero {
    min-height: 590px;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .intro-band,
  .service-grid,
  .process,
  .subhero,
  .calculator,
  .proof,
  .contact-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .sector-grid,
  .price-grid,
  .feature-grid,
  .range-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process,
  .proof {
    padding: 74px 5vw;
  }
}

@media (max-width: 640px) {
  .topbar-links {
    gap: 8px;
  }

  .hero {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .subhero h1,
  .legal-page h1 {
    font-size: 2.65rem;
  }

  .hero p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .hero-actions,
  .field-row,
  .service-grid,
  .price-grid,
  .feature-grid,
  .range-grid,
  .sector-grid,
  .project-gallery {
    grid-template-columns: 1fr;
    display: grid;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .section,
  .projects,
  .contact-section {
    padding: 68px 0;
  }

  .section-heading h2,
  .process h2,
  .proof h2,
  .resources h2,
  .contact-copy h2 {
    font-size: 2.25rem;
  }

  .timeline li {
    padding-left: 24px;
  }

  .timeline li::before {
    position: static;
    margin-bottom: 16px;
  }

  .project-gallery img,
  .project-gallery img:first-child {
    height: 260px;
  }

  .enquiry-form {
    padding: 22px;
  }
}
