@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/roboto-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/roboto-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/roboto-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/roboto-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/roboto-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/roboto-900.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --ink: #151b1f;
  --ink-2: #242d33;
  --yellow: #f5c400;
  --paper: #fff;
  --pale: #f2f3f3;
  --muted: #59636a;
  --line: #d5dadd;
  --accent: #c9472b;
  --shadow: 0 18px 50px rgba(13, 18, 21, 0.12);
  --wrap: min(1200px, calc(100% - 48px));
  --radius: 8px;
}

html,
body,
body *,
body *::before,
body *::after {
  font-family: "Roboto", Arial, Helvetica, sans-serif !important;
}

body {
  color: var(--ink);
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 880px;
  font-size: clamp(3rem, 6vw, 5.75rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  font-weight: 800;
}

h3 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-top: 0;
  text-wrap: pretty;
}

strong {
  font-weight: 700;
}

small {
  line-height: 1.4;
}

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

.topbar {
  background: #11171a;
  color: #dfe4e6;
  border-bottom: 1px solid #313a3f;
}

.topbar-inner {
  min-height: 38px;
}

.site-header {
  background: #fff;
  border-bottom: 0;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
}

.nav-row {
  min-height: 84px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  background: #11171a;
  border-radius: 6px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 64px;
  object-fit: contain;
  transition: height 0.25s ease;
}

.brand-light .brand-logo {
  height: 104px;
  padding: 9px 12px;
  border-radius: 8px;
  background: #fff;
}

.brand strong {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0;
}

nav {
  gap: 28px;
}

nav a {
  position: relative;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 700;
}

nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.18s ease;
}

nav a:hover {
  text-decoration: none;
}

nav a:hover::after {
  transform: scaleX(1);
}

nav a.is-current:not(.nav-cta)::after {
  transform: scaleX(1);
}

.nav-cta.is-current {
  box-shadow: 0 7px 18px rgba(245, 196, 0, 0.2);
}

.nav-cta,
.button {
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.035em;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.nav-cta {
  padding: 13px 20px;
  border: 0;
  box-shadow: 0 7px 18px rgba(245, 196, 0, 0.2);
}

.button {
  min-height: 52px;
  padding: 13px 22px;
}

.button.yellow {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #11171a;
}

.button.dark {
  background: #151b1f;
}

.hero {
  min-height: 660px;
  background: #172028 url("/assets/img/homepage-hero-clear.jpg") center / cover no-repeat;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      110deg,
      transparent 0 70%,
      rgba(245, 196, 0, 0.16) 70% 79%,
      transparent 79% 82%,
      rgba(245, 196, 0, 0.42) 82% 100%
    );
  pointer-events: none;
}

.hero::after {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.44) 55%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

.hero-grid {
  display: block;
  z-index: 3;
}

.hero-copy {
  position: relative;
  max-width: 790px;
  padding: 112px 0 122px;
}

.hero h1,
.page-hero h1 {
  text-shadow: none;
}

.hero .eyebrow,
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  position: relative;
  padding: 0 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-shadow: none;
}

.hero .eyebrow::after,
.page-hero .eyebrow::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--yellow) 0%,
    rgba(245, 196, 0, 0.88) 62%,
    rgba(245, 196, 0, 0) 100%
  );
  box-shadow: none;
  transform: skewX(-28deg);
  transform-origin: left center;
  pointer-events: none;
}

.hero-copy p {
  max-width: 680px;
  font-size: 1.16rem;
}

.hero-road,
.hero-panel {
  display: none;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.065em;
}

.eyebrow.light {
  color: var(--yellow);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 24px;
  margin-top: 30px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-proof span::before {
  content: "✓";
  display: inline-block;
  width: 1.2em;
  margin-right: 6px;
  color: var(--yellow);
  line-height: 1;
  text-align: center;
  vertical-align: -0.05em;
}

.trust-strip {
  background: #fff;
  border: 0;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.05);
}

.trust-grid div {
  padding: 25px 28px;
  border-color: var(--line);
}

.trust-grid strong {
  font-size: 0.94rem;
}

.trust-marquee {
  position: relative;
  overflow: hidden;
}

.trust-marquee::before,
.trust-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 70px;
  pointer-events: none;
}

.trust-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.trust-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.trust-track {
  display: flex;
  width: max-content;
  animation: trust-scroll 42s linear infinite;
  will-change: transform;
}

.trust-marquee:hover .trust-track {
  animation-play-state: paused;
}

.trust-set {
  display: flex;
  flex-shrink: 0;
}

.trust-set > div {
  position: relative;
  width: 280px;
  padding: 24px 34px 24px 54px;
  border-right: 1px solid var(--line);
}

.trust-set > div::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateY(-50%);
}

.trust-set strong,
.trust-set span {
  display: block;
}

.trust-set strong {
  font-size: 0.94rem;
}

.trust-set span {
  color: var(--muted);
  font-size: 0.8rem;
}

@keyframes trust-scroll {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 92px 0;
}

.section-head {
  align-items: end;
  margin-bottom: 40px;
}

.section-head h2 {
  margin-bottom: 0;
}

.section-head > p {
  margin-bottom: 0.35rem;
  font-size: 1rem;
  line-height: 1.7;
}

.section-head > .text-link {
  flex: 0 0 auto;
  white-space: nowrap;
}

.services-grid {
  gap: 18px;
  background: transparent;
  border: 0;
}

.service-card {
  min-height: 310px;
  padding: 30px;
  background: #fff;
  border: 1px solid #e1e5e7;
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(17, 23, 26, 0.05);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: #151b1f;
  color: #fff;
  border-color: #151b1f;
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.home-page .service-card {
  isolation: isolate;
  overflow: hidden;
  border-top-color: var(--ink-2);
}

.home-page .service-card::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-color: rgba(12, 18, 22, 0.2);
  background-blend-mode: multiply;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.35s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .service-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-top: 3px solid var(--yellow);
  border-right: 3px solid var(--yellow);
  border-radius: 0 7px 0 0;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .service-card:nth-child(6)::before {
  background-image: url("/assets/img/road-lines.jpg");
}

.home-page .service-card:nth-child(4)::before {
  background-image: url("/assets/img/temporary-road-systems-hover.png");
  background-position: center 72%;
}

.home-page .service-card:nth-child(1)::before {
  background-image: url("/assets/img/traffic-calming-hover.png");
  background-position: center 68%;
}

.home-page .service-card:nth-child(5)::before {
  background-image: url("/assets/img/car-park-markings.jpg");
}

.home-page .service-card:nth-child(2)::before {
  background-image: url("/assets/img/anti-skid-surfacing-hover.png");
}

.home-page .service-card:nth-child(3)::before {
  background-image: url("/assets/img/factory-floor-markings.jpg");
}

.home-page .service-card:hover,
.home-page .service-card:focus-within {
  border-top-color: var(--yellow);
}

.home-page .service-card:hover::before,
.home-page .service-card:focus-within::before {
  opacity: 1;
  transform: scale(1);
}

.home-page .service-card:hover::after,
.home-page .service-card:focus-within::after {
  opacity: 1;
  transform: translate(0, 0);
}

.home-page .service-card:hover .service-number,
.home-page .service-card:focus-within .service-number {
  color: var(--yellow);
}

.home-page .service-card:hover > *,
.home-page .service-card:focus-within > * {
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

.service-card:hover p {
  color: #d4dade;
}

.service-number {
  margin-bottom: 42px;
  color: var(--accent);
}

.service-card h3 {
  min-height: 3.4rem;
}

.service-card p {
  flex: 1;
}

.service-card .text-link {
  align-self: flex-start;
}

.section.ink {
  position: relative;
  background:
    linear-gradient(rgba(17, 23, 26, 0.92), rgba(17, 23, 26, 0.92)),
    url("/assets/img/home-why-camline.png") center 68% / cover no-repeat;
}

.check-list > div {
  border-color: rgba(255, 255, 255, 0.24);
  align-items: start;
}

.check-list strong {
  font-size: 1.05rem;
  font-weight: 700;
}

.sector-row {
  gap: 12px;
  background: transparent;
  border: 0;
}

.sector-row span {
  position: relative;
  padding: 27px 24px 27px 42px;
  background: #fff;
  border: 1px solid #e0e5e7;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(17, 23, 26, 0.04);
}

.sector-row span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 22px;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  transform: translateY(-50%);
}

.gallery-preview {
  border-radius: var(--radius);
  box-shadow: 18px 18px 0 rgba(245, 196, 0, 0.82);
}

.gallery-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
  background: #eef0f1;
}

.area-panel {
  position: relative;
  overflow: hidden;
  padding: 58px;
  background: #151b1f;
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.area-section {
  background: #151b1f;
  color: #fff;
}

.area-section .area-panel {
  overflow: visible;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.area-section .area-panel::after {
  display: none;
}

.area-panel::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -130px;
  width: 260px;
  height: 500px;
  background: var(--yellow);
  transform: rotate(28deg);
}

.area-list {
  position: relative;
  z-index: 1;
}

.area-list span {
  border-color: #4a5358;
  font-weight: 700;
}

.page-hero {
  min-height: 390px;
  display: grid;
  align-items: end;
  padding: 105px 0 76px;
  background: url("/assets/img/road-lines.jpg") center 58% / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: auto;
  aspect-ratio: auto;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.44) 55%,
    rgba(0, 0, 0, 0.28) 100%
  );
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.page-hero .wrap {
  position: relative;
  z-index: 3;
  max-width: 1200px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
}

.page-hero p {
  max-width: 700px;
}

.service-car-park-painting .page-hero,
.service-anti-skid-surfacing .page-hero {
  background: url("/assets/img/car-park-markings.jpg") center 60% / cover no-repeat;
}

.sectors-page .page-hero {
  background: url("/assets/img/sectors-hero-clear.png") center / cover no-repeat;
}

.service-traffic-calming-systems .page-hero {
  background: url("/assets/img/wafer-road-marking.jpg") center 52% / cover no-repeat;
}

.service-factory-floors .page-hero,
.service-line-removal-maintenance .page-hero {
  background: url("/assets/img/factory-floor-markings.jpg") center 54% / cover no-repeat;
}

.service-playgrounds .page-hero,
.service-sports-grounds-courts .page-hero,
.service-multi-coloured-surfacing .page-hero {
  background: url("/assets/img/school-markings.jpg") center 58% / cover no-repeat;
}

.about-page .page-hero {
  background: url("/assets/img/about-team-hero.jpg") center 54% / cover no-repeat;
}

.contact-page .page-hero {
  background: url("/assets/img/quote-planning-hero.jpg") center 52% / cover no-repeat;
}

.service-detail {
  grid-template-columns: minmax(0, 1.4fr) minmax(290px, 0.65fr);
  gap: 72px;
}

.service-detail > div > p:first-of-type {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
}

.note,
.notice {
  margin-top: 30px;
  padding: 24px 26px;
  border-left: 4px solid var(--yellow);
  background: var(--pale);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.detail-aside {
  position: sticky;
  top: 112px;
  padding: 32px;
  background: #151b1f;
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.detail-aside h2 {
  font-size: 1.75rem;
  font-weight: 800;
}

.fact-stack strong {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.values,
.sector-cards {
  gap: 18px;
  background: transparent;
}

.values article,
.sector-cards article {
  min-height: 260px;
  padding: 34px;
  border: 1px solid #e0e5e7;
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: 0 9px 28px rgba(17, 23, 26, 0.05);
}

.project-grid {
  gap: 18px;
}

.project-grid article {
  overflow: hidden;
  border: 1px solid #e0e5e7;
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: 0 9px 28px rgba(17, 23, 26, 0.05);
}

.project-grid article > div:last-child {
  padding: 30px;
}

.project-grid h2,
.values h2,
.sector-cards h2 {
  font-weight: 700;
  line-height: 1.2;
}

.project-grid article:nth-child(3n + 1) {
  background: #fff;
}

.project-grid article:nth-child(3n + 2) {
  background: var(--pale);
}

.project-grid article:nth-child(3n) {
  background: #fff;
}

.sectors-hero {
  min-height: 520px;
  background: url("/assets/img/sectors-hero-clear.png") center / cover no-repeat;
}

.sectors-hero-simple {
  min-height: 500px;
  background: #26343f;
}

.sectors-hero-simple .wrap {
  max-width: 1200px;
}

.sector-intro-simple .wrap {
  display: block;
}

.sector-intro-simple .wrap > .eyebrow {
  display: block;
  margin-bottom: 18px;
}

.sector-intro-simple .wrap > div {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 64px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.sector-intro-simple h2,
.sector-intro-simple p {
  margin: 0;
}

.sector-intro-simple p {
  color: var(--muted);
  font-size: 1.06rem;
}

.sector-lines {
  border-top: 1px solid var(--line);
}

.sector-lines article {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background 0.25s ease, color 0.25s ease;
}

.sector-lines article::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background: var(--yellow);
  transition: width 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.sector-lines article:hover {
  color: #fff;
  background: #26343f;
}

.sector-lines article:hover::before {
  width: 8px;
}

.sector-lines article > .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(250px, 0.75fr) minmax(300px, 1fr);
  gap: 32px;
  align-items: center;
  min-height: 158px;
}

.sector-lines article > .wrap > span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.sector-lines small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.sector-lines h2 {
  margin: 5px 0 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.sector-lines p {
  margin: 0;
  color: var(--muted);
  transition: color 0.25s ease;
}

.sector-lines article:hover small,
.sector-lines article:hover p {
  color: #dce2e5;
}

.sector-note {
  background: #151b1f;
  color: #fff;
}

.sector-note .wrap {
  display: grid;
  grid-template-columns: 0.7fr 1.1fr;
  gap: 55px;
  align-items: center;
  min-height: 170px;
}

.sector-note span {
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sector-note p {
  margin: 0;
  color: #d5dce0;
}

.sector-intro {
  background: #fff;
}

.sector-intro .wrap {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: 60px;
  align-items: start;
}

.sector-intro .wrap > div {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 70px;
  align-items: end;
}

.sector-intro h2,
.sector-intro p {
  margin-bottom: 0;
}

.sector-intro p {
  color: var(--muted);
  font-size: 1.06rem;
}

.sector-explorer {
  padding: 86px 0;
  background: #151b1f;
  color: #fff;
}

.sector-explorer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: 56px;
  align-items: stretch;
}

.sector-index {
  display: grid;
  align-content: center;
}

.sector-index button {
  display: grid;
  grid-template-columns: 40px 1fr 30px;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 14px 4px;
  border: 0;
  border-bottom: 1px solid #465158;
  background: transparent;
  color: #aeb8bd;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, padding 0.2s ease;
}

.sector-index button:first-child {
  border-top: 1px solid #465158;
}

.sector-index button:hover,
.sector-index button.is-active {
  padding-left: 12px;
  color: #fff;
}

.sector-index button span {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
}

.sector-index button strong {
  font-size: 1.08rem;
  font-weight: 700;
}

.sector-index button i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-style: normal;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sector-index button.is-active i {
  background: var(--yellow);
  color: var(--ink);
  transform: translateX(3px);
}

.sector-stage {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border-radius: 24px;
  background: #26343f;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.sector-stage article {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.sector-stage article[hidden] {
  display: none;
}

.sector-stage article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 14, 17, 0.96), rgba(9, 14, 17, 0.08) 72%);
}

.sector-stage article > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: sector-image-in 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.sector-stage article > div:last-child {
  position: relative;
  z-index: 1;
  max-width: 690px;
  padding: 52px;
  animation: sector-copy-in 0.45s 0.08s both cubic-bezier(0.22, 1, 0.36, 1);
}

.sector-stage small {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sector-stage h2 {
  margin: 10px 0 16px;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
}

.sector-stage p {
  max-width: 630px;
  color: #dbe1e4;
  font-size: 1.02rem;
}

.sector-private-visual {
  position: absolute !important;
  inset: 0;
  max-width: none !important;
  padding: 0 !important;
  background:
    linear-gradient(140deg, rgba(38, 52, 63, 0.2), rgba(38, 52, 63, 0.92)),
    repeating-linear-gradient(72deg, #344651 0 70px, #26343f 70px 140px);
}

.sector-private-visual span {
  position: absolute;
  top: 48px;
  right: -45px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 8rem;
  font-weight: 900;
  white-space: nowrap;
}

.sector-proof {
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.sector-proof .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.sector-proof p {
  position: relative;
  margin: 0;
  padding: 25px 24px 25px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 700;
}

.sector-proof p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateY(-50%);
}

@keyframes sector-image-in {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
}

@keyframes sector-copy-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
}

.sector-lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 82px;
  align-items: center;
}

.sector-lead-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.sector-lead-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sector-lead-image > span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
}

.sector-lead-copy .lead-copy {
  max-width: 580px;
  font-size: 1.15rem;
  font-weight: 500;
}

.sector-lead-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.sector-lead-copy li {
  position: relative;
  padding: 14px 12px 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 600;
}

.sector-lead-copy li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.sector-capabilities {
  background: #151b1f;
  color: #fff;
}

.sector-capabilities article {
  display: grid;
  grid-template-columns: 74px minmax(230px, 0.7fr) minmax(280px, 1fr) 54px;
  gap: 30px;
  align-items: center;
  min-height: 190px;
  border-bottom: 1px solid #465158;
}

.sector-capabilities article:last-child {
  border-bottom: 0;
}

.sector-capabilities article > span {
  color: var(--yellow);
  font-size: 1rem;
  font-weight: 800;
}

.sector-capabilities small {
  color: #aeb9bf;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sector-capabilities h2 {
  margin: 5px 0 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.sector-capabilities p {
  margin: 0;
  color: #d4dade;
}

.sector-capabilities article > a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #68747a;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sector-capabilities article:hover > a {
  color: var(--ink);
  background: var(--yellow);
  transform: translateX(4px);
}

.sector-image-story {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.sector-image-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 14, 17, 0.94), rgba(9, 14, 17, 0.04) 75%);
}

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

.sector-image-story .wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 72px;
}

.sector-image-story .wrap > div {
  max-width: 720px;
}

.sector-image-story h2 {
  font-size: clamp(2.3rem, 4.8vw, 4.8rem);
}

.sector-image-story p {
  max-width: 650px;
  color: #e2e7e9;
}

.sector-final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.sector-final-image {
  overflow: hidden;
  border-radius: 20px;
}

.sector-final-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.sector-final article {
  min-height: 390px;
  padding: 48px;
  border: 1px solid #dce2e4;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 23, 26, 0.06);
}

.sector-final article h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.sector-final .domestic-sector {
  grid-column: 1 / -1;
  min-height: 0;
  display: grid;
  grid-template-columns: 0.75fr 1.15fr auto;
  gap: 48px;
  align-items: center;
  color: #fff;
  background: #26343f;
  border-color: #26343f;
}

.domestic-sector .eyebrow,
.domestic-sector h2,
.domestic-sector p {
  margin: 0;
}

.domestic-sector .text-link {
  white-space: nowrap;
}

.gallery-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: #151b1f;
}

.gallery-hero-reel {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
}

.gallery-hero-track {
  display: flex;
  width: max-content;
  height: calc(100% - 28px);
  padding-block: 14px;
  animation: gallery-hero-scroll 55s linear infinite;
  will-change: transform;
}

.gallery-hero-track img {
  display: block;
  width: auto;
  height: 100%;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  margin-right: 12px;
  border-radius: 10px;
  background: #20282d;
}

@keyframes gallery-hero-scroll {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.gallery-section {
  background: #f5f5f3;
}

.gallery-toolbar {
  max-width: 760px;
  margin-bottom: 42px;
}

.gallery-toolbar h2 {
  margin-bottom: 0;
}

.gallery-page-grid {
  display: block;
  columns: 3 300px;
  column-gap: 18px;
}

.gallery-image-button {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  overflow: hidden;
  break-inside: avoid;
  border: 0;
  border-radius: 10px;
  background: #20282d;
  box-shadow: 0 8px 24px rgba(17, 23, 26, 0.1);
  cursor: zoom-in;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-image-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(17, 23, 26, 0.18);
}

.gallery-image-button:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 4px;
}

.gallery-image-button img {
  display: block;
  width: 100%;
  height: auto;
  object-position: center;
  border-radius: inherit;
}

.gallery-lightbox {
  width: min(1100px, calc(100% - 32px));
  max-width: none;
  height: min(780px, calc(100dvh - 32px));
  max-height: none;
  padding: 52px 70px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #0b0f11;
  color: #fff;
}

.gallery-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(5px);
}

.gallery-lightbox[open] {
  display: grid;
  place-items: center;
}

.gallery-lightbox > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(11, 15, 17, 0.82);
  color: #fff;
  font: inherit;
  font-size: 1.35rem;
  cursor: pointer;
}

.gallery-lightbox-close {
  top: 12px;
  right: 12px;
  font-size: 1.8rem;
}

.gallery-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-prev {
  left: 12px;
}

.gallery-lightbox-next {
  right: 12px;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.contact-lines a,
.contact-lines > div {
  padding: 18px 0;
}

.quote-form {
  padding: 38px;
  border-top: 4px solid var(--yellow);
  background: #f0f2f2;
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(17, 23, 26, 0.09);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  border: 1px solid #849198;
  background: #fff;
  border-radius: 6px;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 3px solid rgba(245, 196, 0, 0.45);
  border-color: #151b1f;
}

.form-grid label > span,
.form-intro span {
  font-weight: 600;
}

.quote-band {
  padding: 68px 0;
  background: var(--yellow);
}

.quote-band .eyebrow {
  color: #4d3e00;
}

.quote-band .button.yellow {
  background: #fff;
  border-color: #fff;
}

footer {
  padding-top: 72px;
  background: #11171a;
}

.cookie-panel {
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(13, 18, 21, 0.18);
}

.footer-grid {
  gap: 52px;
}

.footer-grid h2 {
  color: var(--yellow);
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.accreditation-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 46px;
  padding: 28px 30px;
  border: 1px solid #374147;
  border-radius: 14px;
  background: #182125;
}

.accreditation-copy span,
.accreditation-copy strong {
  display: block;
}

.accreditation-copy span {
  margin-bottom: 5px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.accreditation-copy strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
}

.accreditation-logos {
  display: flex;
  align-items: stretch;
  gap: 14px;
}

.accreditation-logo {
  display: grid;
  place-items: center;
  width: 158px;
  min-height: 82px;
  padding: 10px 16px;
  border-radius: 9px;
  background: #fff;
}

.accreditation-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
}

.footer-base {
  border-color: #374147;
}

@media (max-width: 700px) {
  .accreditation-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .accreditation-logos {
    width: 100%;
  }

  .accreditation-logo {
    flex: 1;
    width: auto;
  }
}

@media (max-width: 420px) {
  .accreditation-logos {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.services-hero {
  min-height: 500px;
  background: url("/assets/img/road-lines.jpg") center 54% / cover no-repeat;
}

.services-hero h1 {
  max-width: 850px;
}

.services-index .page-hero {
  background: #333b40 url("/assets/img/services-hero-road-team.png") center 62% / cover no-repeat;
}

.sectors-page .page-hero {
  background: url("/assets/img/sectors-hero-clear.png") center / cover no-repeat;
}

.projects-page .page-hero {
  background: url("/assets/img/hero-road-marking.jpg") center 55% / cover no-repeat;
}

.service-anti-skid-surfacing .page-hero {
  background: url("/assets/img/hero-anti-skid-road.jpg") center 48% / cover no-repeat;
}

.service-car-park-painting .page-hero {
  background: url("/assets/img/car-park-markings.jpg") center 58% / cover no-repeat;
}

.service-factory-floors .page-hero {
  background: url("/assets/img/hero-warehouse.jpg") center 52% / cover no-repeat;
}

.service-line-removal-maintenance .page-hero {
  background: url("/assets/img/hero-evening-road.jpg") center 55% / cover no-repeat;
}

.service-multi-coloured-surfacing .page-hero {
  background: url("/assets/img/hero-coloured-surfacing.jpg") center 52% / cover no-repeat;
}

.service-playgrounds .page-hero {
  background: url("/assets/img/school-markings.jpg") center 58% / cover no-repeat;
}

.service-sports-grounds-courts .page-hero {
  background: url("/assets/img/hero-sports-court.jpg") center 54% / cover no-repeat;
}

.service-temporary-road-systems .page-hero {
  background: url("/assets/img/temporary-road-systems-hover.png") center 70% / cover no-repeat;
}

.service-traffic-calming-systems .page-hero {
  background: url("/assets/img/wafer-road-marking.jpg") center 52% / cover no-repeat;
}

.service-white-lining .page-hero {
  background: url("/assets/img/hero-road-intersection.jpg") center 54% / cover no-repeat;
}

.about-page .page-hero {
  background: url("/assets/img/about-team-hero.jpg") center 54% / cover no-repeat;
}

.contact-page .page-hero {
  background: url("/assets/img/quote-planning-hero.jpg") center 52% / cover no-repeat;
}

.privacy-page .page-hero,
.cookie-page .page-hero {
  background: url("/assets/img/hero-evening-road.jpg") center 55% / cover no-repeat;
}

.thank-you-page .page-hero {
  background: url("/assets/img/hero-road-marking.jpg") center 55% / cover no-repeat;
}

.services-intro {
  padding: 96px 0;
  background: #fff;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 82px;
  align-items: stretch;
}

.services-intro-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #eef0f1;
  box-shadow: var(--shadow);
}

.services-intro-image::before {
  display: none;
}

.services-intro-image img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  border-radius: 24px;
  box-shadow: none;
}

.services-intro-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.services-intro-copy > p {
  max-width: 580px;
  font-size: 1.08rem;
}

.service-promises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-promises span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 14px 18px 0;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.service-promises span::before {
  content: "✓";
  flex: 0 0 1.15em;
  color: #8a6f00;
  line-height: 1;
  text-align: center;
}

.service-group {
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.service-group.pale-group {
  background: var(--pale);
}

.service-group-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 100px;
  align-items: start;
}

.service-group header {
  position: sticky;
  top: 125px;
}

.group-number {
  display: block;
  margin-bottom: 36px;
  color: #c8cdd0;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}

.service-group header h2 {
  max-width: 480px;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
}

.service-group header p {
  max-width: 470px;
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 12px;
  border-top: 0;
}

.service-list a {
  display: grid;
  grid-template-columns: 1fr 52px;
  align-items: center;
  height: 112px;
  padding: 20px 0 20px 22px;
  border: 1px solid #dce1e3;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 24px rgba(17, 23, 26, 0.04);
  text-decoration: none;
  transition: background 0.18s ease, padding 0.18s ease;
}

.service-list a:hover {
  padding-left: 30px;
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 14px 34px rgba(17, 23, 26, 0.1);
}

.service-list small,
.service-list strong {
  display: block;
}

.service-list small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-list strong {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.service-list i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-style: normal;
  font-weight: 900;
}

.services-closing {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #11171a;
  color: #fff;
  border-radius: 0;
  box-shadow: none;
}

.services-closing-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  align-items: center;
}

.services-closing img {
  width: calc(100% + 80px);
  height: 100%;
  min-height: 520px;
  margin-left: -80px;
  object-fit: cover;
}

.services-closing-grid > div {
  max-width: 760px;
  padding: 80px 0;
}

.services-closing p {
  max-width: 560px;
  color: #d7dde0;
}

@media (max-width: 900px) {
  :root {
    --wrap: min(100% - 36px, 1200px);
  }

  nav {
    top: 84px;
    gap: 0;
    padding: 10px 18px 18px;
  }

  nav a {
    padding: 13px 4px 13px 20px;
  }

  nav a:not(.nav-cta)::after {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    transform-origin: center;
  }

  nav a:hover::after {
    transform: translateY(-50%) scale(1);
  }

  nav a.is-current:not(.nav-cta)::after {
    transform: translateY(-50%) scale(1);
  }

  nav .nav-cta {
    padding-left: 20px;
  }

  .hero {
    min-height: 610px;
    background-position: 59% center;
  }

  .hero-copy {
    padding: 92px 0 102px;
  }

  .gallery-page-grid {
    columns: 2 280px;
  }

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

  .detail-aside {
    position: static;
  }

  .gallery-preview {
    box-shadow: 12px 12px 0 var(--yellow);
  }

  .services-intro-grid,
  .service-group-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-intro-image {
    aspect-ratio: 4 / 3;
  }

  .sector-lead-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sector-intro .wrap,
  .sector-intro .wrap > div {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sector-intro-simple .wrap,
  .sector-intro-simple .wrap > div {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sector-lines article > .wrap {
    grid-template-columns: 48px minmax(220px, 0.7fr) 1fr;
    gap: 20px;
  }

  .sector-note .wrap {
    grid-template-columns: 1fr 1.4fr;
    gap: 24px 40px;
    padding-block: 34px;
  }

  .sector-note .button {
    grid-column: 2;
    justify-self: start;
  }

  .sector-explorer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .sector-index button,
  .sector-index button:first-child {
    min-height: 68px;
    padding: 10px 12px;
    border: 1px solid #465158;
    border-radius: 8px;
  }

  .sector-stage {
    min-height: 590px;
  }

  .sector-capabilities article {
    grid-template-columns: 54px minmax(200px, 0.7fr) minmax(240px, 1fr) 48px;
    gap: 18px;
  }

  .sector-final .domestic-sector {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-group header {
    position: static;
  }

  .services-closing-grid {
    grid-template-columns: 1fr;
  }

  .gallery-toolbar {
    align-items: center;
  }

  .services-closing img {
    width: 100%;
    min-height: 380px;
    margin: 0;
  }

  .services-closing-grid > div {
    padding: 64px 0;
  }
}

@media (max-width: 620px) {
  :root {
    --wrap: min(100% - 28px, 1200px);
  }

  .topbar-inner {
    min-height: 34px;
  }

  .nav-row {
    min-height: 70px;
  }

  .brand-logo {
    height: 50px;
  }

  .site-header.is-compact .brand-logo {
    height: 46px;
  }

  .brand-light .brand-logo {
    height: 90px;
  }

  nav {
    top: 70px;
  }

  .hero {
    min-height: 610px;
    background-position: 63% center;
  }

  .hero::after {
    background: rgba(0, 0, 0, 0.4);
  }

  .hero-copy {
    padding: 72px 0 82px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3rem);
  }

  .hero-proof {
    display: grid;
  }

  .section {
    padding: 68px 0;
  }

  .service-card,
  .values article,
  .sector-cards article {
    min-height: 0;
  }

  .page-hero {
    min-height: 340px;
    padding: 80px 0 58px;
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 11vw, 2.75rem);
  }

  .area-panel {
    padding: 34px 24px;
  }

  .area-panel::after {
    opacity: 0.18;
  }

  .quote-form {
    width: 100%;
    min-width: 0;
    padding: 24px 18px;
  }

  .contact-page .contact-grid {
    gap: 40px;
  }

  .contact-page .page-hero {
    min-height: 300px;
    padding: 64px 0 50px;
  }

  .contact-page .page-hero p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.55;
  }

  .contact-page .contact-section {
    padding: 46px 0 58px;
  }

  .contact-page .contact-grid > *,
  .contact-page .form-grid > * {
    min-width: 0;
  }

  .contact-page .quote-form {
    order: 1;
    padding: 25px 18px 22px;
    border-top-width: 5px;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(17, 23, 26, 0.1);
  }

  .contact-page .contact-grid > div {
    order: 2;
    padding: 26px 22px;
    border-top: 4px solid var(--yellow);
    border-radius: 12px;
    background: #f4f5f4;
  }

  .contact-page .contact-grid > div > h2 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 9vw, 2.5rem);
  }

  .contact-page .contact-lines strong,
  .contact-page footer a,
  .contact-page footer p {
    overflow-wrap: anywhere;
  }

  .contact-page .form-grid {
    gap: 18px;
  }

  .contact-page .form-intro {
    padding-bottom: 18px;
    margin-bottom: 22px;
    border-bottom: 1px solid #d1d6d7;
  }

  .contact-page .form-intro span {
    font-size: 1.08rem;
  }

  .contact-page .form-intro p {
    margin-top: 5px;
  }

  .contact-page .form-grid label > span {
    margin-bottom: 7px;
    font-size: 0.9rem;
  }

  .contact-page .form-grid input,
  .contact-page .form-grid select,
  .contact-page .form-grid textarea {
    max-width: 100%;
    min-height: 52px;
    padding: 12px 13px;
    border-color: #77858c;
    border-radius: 7px;
    font-size: 16px;
  }

  .contact-page .form-grid textarea {
    min-height: 150px;
  }

  .contact-page .check {
    gap: 12px;
    line-height: 1.45;
  }

  .contact-page .check input {
    flex: 0 0 22px;
    width: 22px !important;
    min-height: 22px !important;
    margin-top: 1px;
  }

  .contact-page .check span {
    min-width: 0;
    margin-bottom: 0;
  }

  .contact-page .turnstile-slot,
  .contact-page .form-status {
    overflow-wrap: anywhere;
  }

  .contact-page .turnstile-slot {
    padding: 14px;
    border-style: solid;
    border-color: #d1d6d7;
    border-radius: 7px;
  }

  .contact-page .form-actions .button {
    min-height: 54px;
    border-radius: 7px;
  }

  .contact-page .contact-lines {
    margin: 24px 0;
    border-top: 0;
  }

  .contact-page .contact-lines a,
  .contact-page .contact-lines > div {
    padding: 14px 0;
    border-color: #d1d6d7;
  }

  .contact-page .contact-lines small {
    margin-bottom: 2px;
  }

  .services-hero {
    min-height: 450px;
  }

  .sectors-hero {
    min-height: 450px;
  }

  .sectors-hero-simple {
    min-height: 440px;
  }

  .sector-lines article > .wrap {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding-block: 26px;
  }

  .sector-lines article > .wrap > p {
    grid-column: 2 / -1;
  }

  .sector-note .wrap {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 44px;
  }

  .sector-note .button {
    grid-column: auto;
  }

  .sector-lead-copy ul {
    grid-template-columns: 1fr;
  }

  .sector-capabilities {
    padding: 30px 0;
  }

  .sector-explorer {
    padding: 62px 0;
  }

  .sector-index {
    grid-template-columns: 1fr;
  }

  .sector-index button {
    min-height: 62px;
  }

  .sector-stage {
    min-height: 560px;
    border-radius: 16px;
  }

  .sector-stage article > div:last-child {
    padding: 32px 24px;
  }

  .sector-stage h2 {
    font-size: 2.4rem;
  }

  .sector-proof .wrap {
    grid-template-columns: 1fr 1fr;
  }

  .sector-capabilities article {
    grid-template-columns: 42px 1fr 46px;
    gap: 15px;
    padding: 30px 0;
  }

  .sector-capabilities article > p {
    grid-column: 2 / -1;
  }

  .sector-capabilities article > a {
    grid-column: 3;
    grid-row: 1;
  }

  .sector-image-story {
    min-height: 590px;
  }

  .sector-image-story .wrap {
    padding-bottom: 54px;
  }

  .sector-final-grid {
    grid-template-columns: 1fr;
  }

  .sector-final article {
    min-height: 0;
    padding: 32px 26px;
  }

  .sector-final .domestic-sector {
    grid-column: auto;
  }

  .services-intro {
    padding: 68px 0;
  }

  .services-intro-grid {
    gap: 42px;
  }

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

  .service-promises span {
    border-bottom: 1px solid var(--line);
  }

  .service-group {
    padding: 66px 0;
  }

  .group-number {
    margin-bottom: 24px;
    font-size: 3.5rem;
  }

  .service-list a {
    height: auto;
    min-height: 98px;
    padding-left: 0;
  }

  .service-list a:hover {
    padding-left: 10px;
  }

  .services-closing img {
    min-height: 300px;
  }

  .gallery-toolbar {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .gallery-page-grid {
    columns: 1;
  }

  .gallery-lightbox {
    width: calc(100% - 16px);
    height: calc(100dvh - 16px);
    padding: 56px 10px 70px;
  }

  .gallery-lightbox-nav {
    top: auto;
    bottom: 10px;
    transform: none;
  }

  .gallery-lightbox-prev {
    left: calc(50% - 54px);
  }

  .gallery-lightbox-next {
    right: calc(50% - 54px);
  }

  .trust-set > div {
    width: 245px;
    padding-inline: 46px 24px;
  }

  .trust-set > div::before {
    left: 24px;
  }
}

/* Motion is progressive: content remains fully visible until JavaScript opts in. */
.motion-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-order, 0) * 70ms);
}

.motion-ready .scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .gallery-image-button.scroll-reveal {
  opacity: 0;
  transform: translateY(44px) scale(0.965);
  clip-path: inset(7% 0 0 0 round 10px);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease;
  transition-delay: calc(var(--reveal-order, 0) * 70ms);
}

.motion-ready .gallery-image-button.scroll-reveal img {
  transform: scale(1.045);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .gallery-image-button.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  clip-path: inset(0 round 10px);
}

.motion-ready .gallery-image-button.scroll-reveal.is-visible img {
  transform: scale(1);
}

.motion-ready .gallery-image-button.scroll-reveal.is-visible:hover {
  transform: translateY(-3px) scale(1);
}

.motion-ready .hero-copy,
.motion-ready .page-hero .wrap {
  opacity: 0;
  transform: translateY(20px);
}

.motion-started .hero-copy,
.motion-started .page-hero .wrap {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.72s 0.08s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s 0.08s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header,
.nav-row,
.brand-mark,
.brand strong {
  transition:
    min-height 0.25s ease,
    width 0.25s ease,
    height 0.25s ease,
    font-size 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-compact {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.site-header.is-compact .nav-row {
  min-height: 68px;
}

.site-header.is-compact .brand-mark {
  width: 39px;
  height: 39px;
}

.site-header.is-compact .brand-logo {
  height: 52px;
}

.site-header.is-compact .brand strong {
  font-size: 1.25rem;
}

.button,
.nav-cta {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.button:active,
.nav-cta:active {
  transform: translateY(0);
}

.gallery-preview,
.services-intro-image {
  overflow: hidden;
}

.service-list a i {
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.service-list a:hover i {
  transform: translateX(4px);
  background: var(--ink);
  color: #fff;
}

.service-card,
.values article,
.sector-cards article,
.project-grid article {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.values article:hover,
.sector-cards article:hover,
.project-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-hero-track {
    animation: none;
  }

  .trust-track {
    width: 100%;
    animation: none;
  }

  .trust-set {
    width: 100%;
    flex-wrap: wrap;
  }

  .trust-set[aria-hidden="true"] {
    display: none;
  }

  .trust-set > div {
    flex: 1 1 260px;
  }

  .motion-ready .scroll-reveal,
  .motion-ready .hero-copy,
  .motion-ready .page-hero .wrap {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .motion-ready .gallery-image-button.scroll-reveal {
    clip-path: none;
  }

  .motion-ready .gallery-image-button.scroll-reveal img {
    transform: none;
    transition: none;
  }

  .site-header,
  .nav-row,
  .brand-mark,
  .brand strong,
  .button,
  .nav-cta,
  .gallery-preview img,
  .services-intro-image img,
  .services-closing-grid > img,
  .service-list a i,
  .service-card,
  .values article,
  .sector-cards article,
  .project-grid article {
    transition: none;
  }
}
