:root {
  --ink: #081631;
  --ink-2: #101b2f;
  --steel: #273244;
  --blue: #0649ff;
  --blue-dark: #0030b8;
  --yellow: #ffd12d;
  --yellow-dark: #e3ad00;
  --smoke: #f4f6f9;
  --white: #ffffff;
  --muted: #6e7788;
  --line: rgba(8, 22, 49, 0.12);
  --shadow: 0 28px 70px rgba(8, 22, 49, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--yellow);
  color: var(--ink);
  padding: 0.75rem 1rem;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
}

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  white-space: nowrap;
  overflow: hidden;
}

.topbar a:hover {
  color: var(--yellow);
}

.nav-wrap {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(8, 22, 49, 0.1);
  backdrop-filter: blur(14px);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  width: 260px;
  max-width: 48vw;
}

.brand img {
  width: 100%;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 0;
  height: 3px;
  background: var(--yellow);
  transition: width 180ms ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.icon-button,
.menu-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.icon-button svg,
.menu-button svg,
.quote-button svg,
.button-primary svg,
.button-secondary svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.quote-button,
.button-primary,
.button-secondary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.quote-button,
.button-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(227, 173, 0, 0.28);
}

.quote-button {
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.button-primary {
  padding: 0.9rem 1.25rem;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 0.9rem 1.2rem;
}

.button-primary:hover,
.quote-button:hover {
  transform: translateY(-2px);
  background: #ffe06b;
}

.button-secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.menu-button {
  display: none;
}

.mobile-nav {
  position: fixed;
  inset: 116px 0 auto 0;
  z-index: 45;
  transform: translateY(-120%);
  background: var(--ink);
  color: var(--white);
  padding: 1rem 20px 1.4rem;
  box-shadow: var(--shadow);
  transition: transform 260ms ease;
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav nav {
  display: grid;
  gap: 0.25rem;
}

.mobile-nav a {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-quote {
  width: 100%;
  margin-top: 1rem;
  border-bottom: 0 !important;
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  text-transform: none !important;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 10rem 0 4rem;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero-media {
  z-index: 0;
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 64% 50%;
  opacity: 0.9;
  filter: contrast(1.05) saturate(0.96);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 22, 49, 0.96) 0%, rgba(8, 22, 49, 0.84) 37%, rgba(8, 22, 49, 0.28) 72%, rgba(8, 22, 49, 0.76) 100%),
    linear-gradient(0deg, rgba(8, 22, 49, 0.95) 0%, transparent 28%);
}

.hero::after,
.project-section::before,
.service-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 80px;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.14) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255,255,255,0.14) 25%, transparent 25%);
  background-size: 32px 32px;
  opacity: 0.16;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 3.5rem;
  align-items: end;
}

.hero-copy,
.hero-panel,
.about-copy,
.enquiry-copy,
.contact-card,
.contact-details {
  min-width: 0;
}

.micro {
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.micro::before {
  content: "";
  width: 36px;
  height: 3px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.project-title h2,
.about-copy h2,
.trust-copy h2,
.enquiry-copy h2,
.faq-copy h2,
.contact-card h2 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 0.88;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(4rem, 7.5vw, 7.4rem);
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero-text {
  margin: 1.5rem 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.7;
}

.hero-trust-badge {
  width: min(100%, 620px);
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 209, 45, 0.34);
  background: rgba(8, 22, 49, 0.54);
  color: var(--white);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.hero-trust-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 209, 45, 0.14);
  color: var(--yellow);
}

.hero-trust-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.5;
}

.hero-trust-badge strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-trust-badge span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.panel-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-status span {
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(6, 73, 255, 0.12);
}

.hero-panel dl {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.hero-panel dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel dd {
  margin: 0.2rem 0 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

.ticker {
  display: flex;
  overflow: hidden;
  background: var(--yellow);
  color: var(--ink);
  border-block: 1px solid rgba(8, 22, 49, 0.12);
}

.ticker-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 3rem;
  min-width: 100%;
  padding: 1rem 1.5rem;
  animation: scroll-x 35s linear infinite;
}

.ticker span {
  white-space: nowrap;
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(5rem, 8vw, 7.5rem) 0;
}

.section-heading {
  max-width: 1080px;
  margin-bottom: 3rem;
}

.section-heading .micro {
  margin-bottom: 1.1rem;
}

.section-heading h2,
.project-title h2,
.about-copy h2,
.trust-copy h2,
.enquiry-copy h2,
.faq-copy h2,
.contact-card h2 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
}

.section-heading h2 {
  font-size: clamp(2.9rem, 4.5vw, 5.2rem);
  max-width: 1040px;
}

.section-heading p:last-child,
.about-copy p,
.trust-copy p,
.enquiry-copy p,
.faq-copy p,
.contact-card p {
  color: var(--muted);
  line-height: 1.75;
}

.section-heading p:last-child {
  max-width: 760px;
  margin-top: 1.25rem;
}

.service-section {
  background: var(--smoke);
}

.service-section .shell {
  width: min(1500px, calc(100% - 64px));
}

.service-section .section-heading {
  max-width: 1320px;
}

.service-section .section-heading h2 {
  max-width: 1120px;
  font-size: clamp(2.6rem, 3.4vw, 4.25rem);
  line-height: 0.95;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-showcase {
  position: relative;
  margin: 0 0 1.4rem;
  min-height: 520px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-showcase img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.service-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 22, 49, 0.88), rgba(8, 22, 49, 0.18) 64%, rgba(8, 22, 49, 0.64));
}

.service-showcase figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(1.2rem, 4vw, 3rem);
  bottom: clamp(1.2rem, 4vw, 3rem);
  max-width: 760px;
  color: var(--white);
}

.service-showcase span,
.tools-band .micro {
  color: var(--yellow);
}

.service-showcase span {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-showcase strong {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.35rem, 3.9vw, 4.6rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.service-card {
  position: relative;
  min-height: 300px;
  padding: 2rem;
  border: 0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.service-card.active {
  z-index: 1;
  transform: translateY(-8px);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.service-card:focus-visible {
  z-index: 2;
  outline: 4px solid var(--yellow);
  outline-offset: -4px;
}

.service-card > svg {
  width: 44px;
  height: 44px;
  color: var(--blue);
}

.service-card:hover > svg,
.service-card.active > svg {
  color: var(--yellow);
}

.service-card span {
  position: absolute;
  right: 1.4rem;
  top: 1.2rem;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(8, 22, 49, 0.07);
}

.service-card:hover span,
.service-card.active span {
  color: rgba(255, 255, 255, 0.1);
}

.service-card h3 {
  margin: 3.2rem 0 0.8rem;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

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

.service-card:hover p,
.service-card.active p {
  color: rgba(255, 255, 255, 0.72);
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.service-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 49, 0.78);
  backdrop-filter: blur(10px);
}

.service-modal-panel {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(86vh, 900px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.service-modal-panel img {
  width: 100%;
  height: min(62vh, 620px);
  min-height: 280px;
  object-fit: cover;
  opacity: 1;
}

.service-modal-copy {
  display: grid;
  gap: 0.45rem;
  padding: clamp(1rem, 2.6vw, 1.8rem);
}

.service-modal-copy p {
  margin: 0;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-modal-copy h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.service-modal-copy span {
  color: var(--muted);
  line-height: 1.6;
}

.service-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(8, 22, 49, 0.84);
  color: var(--white);
  cursor: pointer;
}

.service-modal-close:hover,
.service-modal-close:focus-visible {
  background: var(--yellow);
  color: var(--ink);
  outline: none;
}

.service-modal-close svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.8;
}

body.modal-open {
  overflow: hidden;
}

.tools-band {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  align-items: stretch;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tools-band img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.tools-band > div {
  padding: clamp(1.5rem, 4vw, 3rem);
  align-self: center;
}

.tools-band h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.tools-band p:last-child {
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.project-section {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.project-section::before {
  inset: 0 0 auto;
  opacity: 0.08;
}

.project-title {
  margin-bottom: 2.5rem;
}

.project-title h2 {
  max-width: 780px;
}

.project-rail {
  width: min(1500px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 1rem;
}

.project-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--steel);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
  transition: transform 400ms ease;
}

.project-card-wide img {
  object-position: center top;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(8, 22, 49, 0.92));
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-card div {
  position: absolute;
  z-index: 1;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
}

.project-card p {
  margin: 0 0 0.4rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.about-grid,
.enquiry-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: "E&J";
  position: absolute;
  left: -1rem;
  top: -3.4rem;
  z-index: -1;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(7rem, 18vw, 16rem);
  font-weight: 900;
  color: rgba(6, 73, 255, 0.08);
}

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

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

.about-stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.about-stats div {
  background: var(--smoke);
  padding: 1.2rem;
}

.about-stats strong {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--blue);
}

.about-stats span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 209, 45, 0.16), transparent 32%),
    linear-gradient(135deg, var(--ink) 0%, #101b2f 54%, #061125 100%);
  color: var(--white);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
  align-items: stretch;
}

.trust-copy {
  align-self: center;
}

.trust-copy h2 {
  max-width: 780px;
  font-size: clamp(3rem, 5.6vw, 6.2rem);
}

.trust-copy p {
  max-width: 690px;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
}

.trust-cert-card {
  min-height: 320px;
  display: grid;
  align-content: end;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(255, 209, 45, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.cert-badge-mark {
  width: 112px;
  height: 112px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  border: 2px solid rgba(255, 209, 45, 0.72);
  background: rgba(255, 209, 45, 0.12);
  color: var(--yellow);
  box-shadow: inset 0 0 0 8px rgba(8, 22, 49, 0.4);
}

.cert-badge-mark span {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.trust-cert-card p {
  margin: 0 0 0.35rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-cert-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.trust-cert-card span {
  display: block;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.trust-card-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
  gap: 1px;
}

.trust-card {
  min-height: 260px;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  background: rgba(8, 22, 49, 0.76);
  transition: transform 180ms ease, background 180ms ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
}

.trust-card svg {
  width: 42px;
  height: 42px;
  color: var(--yellow);
  stroke-width: 2.2;
}

.trust-card h3 {
  margin: 2.6rem 0 0.8rem;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.65rem, 2vw, 2.15rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.trust-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.enquiry-section {
  background:
    linear-gradient(rgba(8, 22, 49, 0.94), rgba(8, 22, 49, 0.94)),
    url("../images/ej-project-3.jpg") center / cover fixed;
  color: var(--white);
}

.enquiry-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.enquiry-form {
  background: var(--white);
  color: var(--ink);
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.enquiry-form label,
.enquiry-form fieldset {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.2rem;
}

.enquiry-form fieldset {
  border: 0;
  padding: 0;
}

.enquiry-form span,
.enquiry-form legend {
  color: var(--steel);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--smoke);
  color: var(--ink);
  padding: 0.9rem 1rem;
  border-radius: 0;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(6, 73, 255, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.checkbox-pill input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip-path: inset(50%);
}

.checkbox-pill label {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--smoke);
  color: var(--steel);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
}

.checkbox-pill input:checked + label {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.faq-section {
  background: var(--white);
}

.blog-section {
  background: var(--smoke);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.blog-card {
  display: grid;
  grid-template-rows: 230px 1fr;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(8, 22, 49, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(8, 22, 49, 0.14);
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card div {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: clamp(1.1rem, 2vw, 1.45rem);
}

.blog-meta {
  margin: 0;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.blog-card h3 a:hover {
  color: var(--blue);
}

.blog-card p:not(.blog-meta) {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-top: 0.2rem;
  color: var(--ink);
  font-weight: 900;
}

.blog-link:hover {
  color: var(--blue);
}

.blog-link svg {
  width: 18px;
  height: 18px;
}

.article-main {
  padding-top: 116px;
  background: var(--white);
}

.article-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

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

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 22, 49, 0.92), rgba(8, 22, 49, 0.58), rgba(8, 22, 49, 0.2));
}

.article-hero .shell {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.article-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.article-hero p {
  max-width: 760px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.article-content {
  min-width: 0;
}

.article-content h2,
.article-content h3 {
  margin: 2.6rem 0 0.9rem;
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: 0.95;
  text-transform: uppercase;
}

.article-content h2 {
  font-size: clamp(2.15rem, 4vw, 3.7rem);
}

.article-content h3 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.article-content p,
.article-content li {
  color: var(--steel);
  font-size: 1.02rem;
  line-height: 1.85;
}

.article-content p {
  margin: 0 0 1.15rem;
}

.article-content ul {
  margin: 0 0 1.4rem;
  padding-left: 1.2rem;
}

.article-aside {
  position: sticky;
  top: 138px;
  align-self: start;
  display: grid;
  gap: 1rem;
}

.article-cta,
.article-related {
  background: var(--smoke);
  border: 1px solid var(--line);
  padding: clamp(1.2rem, 2vw, 1.55rem);
}

.article-cta h2,
.article-related h2 {
  margin: 0 0 0.75rem;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.article-cta p,
.article-related p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.article-related a {
  display: block;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  font-weight: 900;
}

.article-related a:hover {
  color: var(--blue);
}

.article-main .button-secondary {
  color: var(--ink);
  border-color: var(--line);
}

.article-main .button-secondary:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 130px;
}

.faq-copy h2 {
  max-width: 620px;
  font-size: clamp(2.7rem, 4.8vw, 5.25rem);
}

.faq-copy p {
  max-width: 560px;
  margin: 1.1rem 0 0;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: var(--smoke);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(8, 22, 49, 0.06);
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.35;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  background: var(--yellow);
  color: var(--ink);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
  line-height: 1.75;
}

.contact-section {
  background: var(--smoke);
}

.contact-grid {
  grid-template-columns: minmax(360px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(2rem, 4vw, 4rem);
}

.contact-card,
.contact-details {
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  max-width: 680px;
  font-size: clamp(2.4rem, 3.35vw, 4.15rem);
  line-height: 1;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
}

.contact-card img {
  width: min(360px, 100%);
  height: 130px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1.4rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-card .button-secondary {
  color: var(--ink);
  border-color: var(--line);
}

.contact-card .button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.contact-details h3 {
  margin: 0 0 1.2rem;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.contact-details ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-details li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  color: var(--steel);
}

.contact-details svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
  stroke-width: 2.3;
}

.contact-details a:hover {
  color: var(--blue);
}

.site-footer {
  background: var(--smoke);
  color: var(--ink);
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}

.site-footer img {
  width: 240px;
  height: 76px;
  object-fit: contain;
  object-position: left center;
}

.site-footer p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  max-width: 520px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer nav a:hover {
  color: var(--blue);
}

.copyright {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-grid,
  .section-heading,
  .about-grid,
  .trust-layout,
  .enquiry-grid,
  .faq-grid,
  .article-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-copy {
    position: static;
  }

  .hero-panel {
    max-width: 520px;
  }

  .project-rail {
    grid-template-columns: 1fr;
  }

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

  .article-aside {
    position: static;
  }

  .tools-band {
    grid-template-columns: 1fr;
  }

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

  .project-card {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 82px;
  }

  .shell {
    width: min(100% - 28px, 1180px);
  }

  .service-section .shell {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    display: none;
  }

  .nav-inner {
    min-height: 74px;
  }

  .brand {
    width: 190px;
  }

  .brand img {
    height: 54px;
  }

  .icon-button,
  .quote-button {
    display: none;
  }

  .mobile-nav {
    inset: 74px 0 auto 0;
  }

  .hero {
    min-height: 92svh;
    padding-top: 7.2rem;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 22, 49, 0.92), rgba(8, 22, 49, 0.74)),
      linear-gradient(0deg, rgba(8, 22, 49, 0.96) 0%, transparent 40%);
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 2.85rem);
    line-height: 0.96;
    max-width: 100%;
    overflow-wrap: normal;
    text-wrap: wrap;
    word-break: normal;
  }

  .hero-copy,
  .hero-text {
    width: 100%;
    max-width: calc(100vw - 28px);
    overflow: hidden;
    overflow-wrap: break-word;
  }

  .hero-text {
    display: block;
    max-width: 20rem;
    inline-size: min(20rem, 100%);
  }

  .hero-trust-badge {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 0.8rem;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .hero-trust-badge > div {
    min-width: 0;
    max-width: 100%;
  }

  .hero-trust-icon {
    width: 42px;
    height: 42px;
  }

  .hero-trust-badge strong {
    font-size: 0.64rem;
    letter-spacing: 0.03em;
    line-height: 1.25;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: break-word;
  }

  .hero-trust-badge span {
    font-size: 0.8rem;
    line-height: 1.35;
    overflow-wrap: normal;
    text-wrap: wrap;
    white-space: normal;
    word-break: normal;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

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

  .project-card {
    min-height: 360px;
  }

  .blog-card {
    grid-template-rows: 210px 1fr;
  }

  .article-main {
    padding-top: 82px;
  }

  .article-hero {
    min-height: 460px;
  }

  .article-hero::after {
    background: linear-gradient(180deg, rgba(8, 22, 49, 0.45), rgba(8, 22, 49, 0.94));
  }

  .service-showcase,
  .service-showcase img {
    min-height: 360px;
  }

  .faq-copy h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.6rem);
    line-height: 0.96;
  }

  .faq-item summary {
    padding: 1rem;
  }

  .faq-item p {
    padding: 0 1rem 1rem;
  }

  .contact-card h2 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 3.15rem);
    line-height: 1;
  }

  .about-stats,
  .trust-card-grid,
  .form-row,
  .checkbox-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-cert-card {
    min-height: 280px;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-track,
  .reveal {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
