@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-latin-variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin-variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-latin-variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --ink: #071522;
  --navy: #061a2b;
  --navy-2: #082b48;
  --cobalt: #084e91;
  --royal: #0877c9;
  --blue: #159ee4;
  --sky: #62c7f1;
  --ice: #dff4fc;
  --mist: #eef7fb;
  --cloud: #f7fafc;
  --white: #ffffff;
  --slate: #536776;
  --line: #c9dae4;
  --field-border: #7b909e;
  --focus-ring: var(--cobalt);
  --display: "Montserrat", "Arial Narrow", sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --shadow-lg: 0 35px 90px rgba(6, 26, 43, 0.22);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 4px;
  --image-radius: 14px;
  --container: 1240px;
  --page-gutter: clamp(20px, 2.4vw, 30px);
  --measure: 62ch;
  --measure-narrow: 52ch;
  --text-xs: clamp(0.78rem, 0.75rem + 0.1vw, 0.84rem);
  --text-sm: clamp(0.88rem, 0.84rem + 0.15vw, 0.96rem);
  --text-base: clamp(1rem, 0.97rem + 0.14vw, 1.08rem);
  --text-lead: clamp(1.08rem, 1.02rem + 0.3vw, 1.28rem);
  --text-h3: clamp(1.35rem, 1.22rem + 0.65vw, 1.78rem);
  --text-h2: clamp(2rem, 1.55rem + 2.25vw, 3.7rem);
  --section-space: clamp(76px, 8vw, 116px);
  --content-gap: clamp(48px, 6.5vw, 90px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cloud);
  font-family: var(--body);
  font-size: var(--text-base);
  font-weight: 430;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  font-kerning: normal;
  font-optical-sizing: auto;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::after {
  position: fixed;
  z-index: 24;
  inset: 0;
  content: "";
  background: rgba(3, 17, 28, 0.62);
}

.page-transition {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(98, 199, 241, 0.3), transparent 27%),
    linear-gradient(118deg, var(--navy) 0%, var(--cobalt) 58%, var(--royal) 100%);
  pointer-events: none;
  transform: translate3d(100%, 0, 0);
  transition: transform 360ms var(--ease-out);
}

.page-transition::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 84px 84px;
}

.page-transition__brand {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 28px;
  text-align: center;
}

.page-transition__brand::before {
  width: 54px;
  height: 3px;
  margin-bottom: 7px;
  content: "";
  background: var(--sky);
}

.page-transition__brand strong {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.045em;
}

.page-transition__brand span {
  color: #d9f1fb;
  font-size: 0.6rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.is-leaving .page-transition {
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.page-transition.is-entering {
  animation: page-wipe-reveal 540ms 45ms var(--ease-out) both;
  will-change: transform;
}

.page-home {
  background: var(--white);
}

::selection {
  color: var(--white);
  background: var(--royal);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  backface-visibility: hidden;
}

.hero-collage figure > img,
.split__media > img,
.project-shot > img,
.gallery-item > img,
.lightbox > img {
  width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

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

button,
summary {
  cursor: pointer;
}

button,
a {
  touch-action: manipulation;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0.52em;
  font-family: var(--display);
  font-weight: 630;
  line-height: 1.06;
  letter-spacing: -0.038em;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.2rem, 5.8vw, 6.15rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
}

h2 {
  max-width: 18ch;
  font-size: var(--text-h2);
  line-height: 1.06;
}

h3 {
  font-size: var(--text-h3);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

p {
  max-width: var(--measure);
  margin-bottom: 1.25em;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

li,
address {
  overflow-wrap: break-word;
}

strong,
b {
  font-weight: 720;
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

.topbar,
.hero,
.section--dark,
.side-panel,
.site-footer,
.cookie-banner,
.mobile-contact-bar {
  --focus-ring: var(--sky);
}

.enquiry-panel {
  --focus-ring: var(--cobalt);
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 750;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.skip-link:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--cobalt);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 19px;
  color: var(--cobalt);
  font-size: var(--text-xs);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.145em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: none;
}

.lead {
  max-width: var(--measure-narrow);
  color: #354d5e;
  font-size: var(--text-lead);
  line-height: 1.6;
}

.topbar {
  position: relative;
  z-index: 30;
  color: #d9effb;
  background: linear-gradient(100deg, var(--navy) 0%, var(--navy-2) 54%, var(--cobalt) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--text-xs);
  font-weight: 680;
  letter-spacing: 0.04em;
}

.topbar__inner,
.topbar__contact {
  display: flex;
  align-items: center;
}

.topbar__inner {
  min-height: 39px;
  justify-content: space-between;
}

.topbar__contact {
  gap: 25px;
  font-style: normal;
}

.topbar a {
  text-decoration: none;
}

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

.topbar__email {
  color: #72cef4;
}

.topbar__location {
  color: #72cef4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 25;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(8, 78, 145, 0.1);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--sky), var(--cobalt) 48%, var(--royal));
  pointer-events: none;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 12px 35px rgba(6, 26, 43, 0.1);
}

.site-header__inner {
  display: flex;
  min-height: 93px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.site-logo {
  flex: 0 1 252px;
}

.site-logo img {
  width: 252px;
  height: auto;
}

.site-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 3px;
  font-size: var(--text-xs);
  font-weight: 730;
  line-height: 1.35;
  letter-spacing: 0.012em;
}

.site-nav::before {
  display: none;
}

.site-nav > a {
  position: relative;
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: 0 10px;
  border-radius: 7px;
  text-decoration: none;
  list-style: none;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"] {
  color: var(--cobalt);
  background: var(--mist);
}

.site-nav .nav-cta {
  min-height: 49px;
  margin-left: 5px;
  padding-inline: 20px;
  color: var(--white);
  background: linear-gradient(115deg, var(--cobalt), var(--royal));
  box-shadow: 0 10px 25px rgba(8, 119, 201, 0.19);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: var(--white);
  background: linear-gradient(115deg, var(--cobalt), var(--royal));
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 0;
  color: var(--navy);
  background: var(--mist);
  border-radius: 7px;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-toggle:hover {
  color: var(--white);
  background: var(--cobalt);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.button-row--center {
  justify-content: center;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 7px;
  font-size: var(--text-xs);
  font-weight: 790;
  line-height: 1.25;
  letter-spacing: 0.035em;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  transition: color 170ms ease, background 170ms ease, border-color 170ms ease, transform 170ms ease, box-shadow 170ms ease;
}

.button::before {
  position: absolute;
  top: -110%;
  left: -35%;
  width: 28%;
  height: 320%;
  content: "";
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: rotate(20deg);
  transition: left 520ms var(--ease-out), opacity 160ms ease;
}

.button::after {
  margin-left: 14px;
  content: "→";
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 180ms var(--ease-out);
}

.button:hover {
  background: var(--cobalt);
  border-color: var(--cobalt);
  box-shadow: 0 15px 30px rgba(6, 26, 43, 0.18);
  transform: translateY(-2px);
}

.button:hover::before {
  left: 112%;
  opacity: 1;
}

.button:hover::after {
  transform: translateX(3px);
}

.button:active {
  box-shadow: none;
  transform: translateY(0) scale(0.985);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  pointer-events: none;
  box-shadow: none;
  transform: none;
}

.button:disabled::before,
.button[aria-disabled="true"]::before {
  display: none;
}

.button[data-state="loading"] {
  cursor: wait;
}

.button[data-state="loading"]::before {
  display: none;
}

.button[data-state="loading"]::after {
  width: 15px;
  height: 15px;
  content: "";
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: button-spinner 700ms linear infinite;
}

.button--accent {
  color: var(--navy);
  background: linear-gradient(110deg, var(--sky), #a8e6fb);
  border-color: var(--sky);
  box-shadow: 0 16px 36px rgba(21, 158, 228, 0.24);
}

.button--accent:hover {
  color: var(--white);
  background: linear-gradient(110deg, var(--cobalt), var(--royal));
  border-color: var(--royal);
}

.button--outline {
  color: currentColor;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.44);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--cobalt);
  font-size: var(--text-sm);
  font-weight: 790;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.text-link::after {
  margin-left: 12px;
  content: "↗";
  font-size: 1rem;
  transition: transform 150ms ease;
}

.text-link:hover::after {
  transform: translate(3px, -3px);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero--home {
  min-height: 720px;
  background:
    radial-gradient(circle at 84% 15%, rgba(98, 199, 241, 0.27), transparent 29%),
    radial-gradient(circle at 16% 92%, rgba(8, 119, 201, 0.38), transparent 30%),
    linear-gradient(123deg, #04111e 0%, var(--navy-2) 53%, #075f9e 100%);
}

.hero-home__gridlines {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, black, transparent 80%);
}

.hero-home__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: var(--content-gap);
  padding-block: 72px 84px;
}

.hero--home .hero__content {
  max-width: 660px;
}

.hero--home .eyebrow,
.section--dark .eyebrow,
.hero--internal .eyebrow {
  color: var(--sky);
}

.hero--home h1 {
  max-width: 9.2ch;
  margin-bottom: 24px;
  font-size: clamp(2.85rem, 1.65rem + 5vw, 6.15rem);
}

.hero__intro {
  max-width: 51ch;
  margin-bottom: 0;
  color: #d3e5ee;
  font-size: var(--text-lead);
  line-height: 1.62;
}

.hero-collage {
  --hero-main-width: 88%;
  position: relative;
  align-self: stretch;
  min-height: 630px;
}

.hero-collage figure {
  position: absolute;
  overflow: hidden;
  margin: 0;
  box-shadow: var(--shadow-lg);
}

.hero-collage img {
  width: 100%;
  height: 100%;
}

.hero-collage__main > img {
  position: relative;
  z-index: 0;
  object-position: center top;
  animation: home-main-photo-drift 8s ease-in-out 1s infinite alternate;
}

.hero-collage__main {
  z-index: 2;
  top: 4%;
  right: 0;
  width: var(--hero-main-width);
  height: 69%;
  border: 8px solid rgba(255, 255, 255, 0.09);
  border-radius: 4px 30px 4px 4px;
}

.hero--internal {
  min-height: 610px;
  display: flex;
  align-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 44% 96%, rgba(8, 119, 201, 0.3), transparent 32%),
    linear-gradient(122deg, #04111e, var(--navy-2) 62%, #074d82);
}

.hero--internal::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 58%;
  content: "";
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 82px 82px;
}

.hero--internal .hero__content {
  position: relative;
  z-index: 2;
  width: min(590px, 46%);
  margin-left: max(var(--page-gutter), calc((100% - var(--container)) / 2));
  padding-block: 82px;
}

.hero--internal h1 {
  max-width: 10.5ch;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 1.85rem + 3.25vw, 5.25rem);
}

.hero-internal__media {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: max(var(--page-gutter), calc((100vw - var(--container)) / 2));
  width: min(42vw, 590px);
  aspect-ratio: 5 / 4;
  margin: 0;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px 26px 4px 4px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-50%);
}

.hero-internal__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: internal-photo-drift 10s ease-in-out 1s infinite alternate;
}
.page-building-services .hero-internal__media img { object-position: 48% bottom; }
.page-home-improvements .hero-internal__media img { object-position: 52% bottom; }
.page-property-maintenance .hero-internal__media img { object-position: 68% bottom; }
.page-roofing .hero-internal__media img { object-position: 64% bottom; }
.page-gallery .hero-internal__media img { object-position: 52% bottom; }
.page-contact .hero-internal__media img { object-position: 58% bottom; }

.trust-bar {
  position: relative;
  z-index: 5;
  color: var(--white);
  background: linear-gradient(100deg, var(--cobalt), var(--royal) 55%, #086db7);
  box-shadow: 0 16px 45px rgba(8, 78, 145, 0.18);
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-item {
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 102px;
  padding: 23px clamp(18px, 3vw, 42px);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item > strong {
  position: relative;
  width: max-content;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 520;
  line-height: 1;
  letter-spacing: -0.06em;
}

.trust-item > strong::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, var(--white), var(--sky));
  box-shadow: 0 0 12px rgba(98, 199, 241, 0.5);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
}

.trust-item span {
  min-width: 0;
  color: var(--white);
  font-size: var(--text-xs);
  line-height: 1.5;
  letter-spacing: 0.012em;
}

.trust-item b {
  display: block;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1rem, 0.96rem + 0.15vw, 1.08rem);
  font-weight: 620;
  letter-spacing: -0.015em;
}

.section {
  position: relative;
  padding-block: var(--section-space);
  background: var(--white);
}

.section--paper {
  background:
    linear-gradient(rgba(8, 78, 145, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 78, 145, 0.035) 1px, transparent 1px),
    var(--mist);
  background-size: 80px 80px;
}

.section--dark {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(21, 158, 228, 0.2), transparent 27%),
    linear-gradient(126deg, var(--navy) 0%, var(--navy-2) 68%, #073f6e 100%);
}

.section--dark p,
.section--dark .lead {
  color: #c5d9e4;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(38px, 4.5vw, 58px);
}

.section-heading > :last-child {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.83fr);
  align-items: center;
  gap: var(--content-gap);
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  position: relative;
  min-width: 0;
  aspect-ratio: 1.15 / 1;
}

.split__media::before {
  position: absolute;
  z-index: 0;
  top: -18px;
  right: -18px;
  width: 56%;
  height: 58%;
  content: "";
  background: linear-gradient(140deg, var(--sky), var(--royal));
  border-radius: 2px 18px 2px 2px;
}

.split--reverse .split__media::before {
  right: auto;
  left: -18px;
  background: linear-gradient(140deg, var(--royal), var(--cobalt));
}

.split__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 3px 18px 3px 3px;
  box-shadow: var(--shadow-lg);
  transition: filter 500ms ease;
}

.split--signature {
  --signature-copy-travel: 16px;
}

.split--signature .split__media {
  aspect-ratio: 1.06 / 1;
}

.split__media--portrait {
  width: min(88%, 540px);
  justify-self: center;
  aspect-ratio: 0.86 / 1;
}

.split__media--portrait img {
  object-position: center 54%;
}

.split__media--kitchen img {
  object-position: center 48%;
}

.split__media--roofing img {
  object-position: center 45%;
}

.split__content {
  min-width: 0;
}

.split__content > :last-child {
  margin-bottom: 0;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.check-list li {
  position: relative;
  grid-column: span 2;
  padding: 14px 12px 14px 27px;
  border-bottom: 1px solid var(--line);
  font-size: var(--text-sm);
  font-weight: 650;
}

.check-list li:nth-child(n + 4) {
  grid-column: span 3;
}

.check-list li::before {
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--cobalt);
  content: "↗";
  font-weight: 800;
}

.project-showcase {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 16%, rgba(98, 199, 241, 0.17), transparent 26%),
    linear-gradient(118deg, #04131f, var(--navy-2));
}

.project-showcase::after {
  position: absolute;
  right: -110px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  content: "";
  border: 85px solid rgba(98, 199, 241, 0.07);
  border-radius: 50%;
}

.project-showcase__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: var(--content-gap);
  margin-bottom: 48px;
}

.project-showcase__intro .eyebrow {
  color: var(--sky);
}

.project-showcase__intro h2 {
  margin-bottom: 0;
}

.project-showcase__intro p {
  margin-bottom: 5px;
  color: #bdd1dc;
}

.project-showcase__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.45fr 0.7fr;
  grid-template-rows: 275px 275px;
  gap: 14px;
}

.project-shot {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px;
  text-decoration: none;
}

.project-shot--wide {
  grid-row: 1 / span 2;
}

.project-shot--wide img {
  object-position: center bottom;
  animation: project-photo-drift 11s ease-in-out 700ms infinite alternate;
}

.project-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 300ms ease, transform 650ms var(--ease-out);
}

.project-shot--tall img {
  object-position: center 54%;
}

.project-shot:is(:hover, :focus-visible) img {
  opacity: 0.88;
  transform: scale(1.035);
}

.project-shot:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: -5px;
}

.project-showcase__link {
  align-self: end;
  justify-self: end;
  margin: 0 0 6px;
  color: var(--sky);
}

#enquire:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: -4px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(290px, 0.62fr);
  align-items: start;
  gap: clamp(48px, 7vw, 106px);
}

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

.content-layout__main h3:not(:first-child) {
  margin-top: 38px;
}

.content-card {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 0 12px 12px 0;
}

.content-card h3 {
  margin-bottom: 10px;
}

.content-card p {
  margin-bottom: 0;
}

.side-panel {
  position: sticky;
  top: 132px;
  padding: 38px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(98, 199, 241, 0.24), transparent 35%),
    var(--navy-2);
  border-radius: 4px 20px 4px 4px;
  box-shadow: var(--shadow-lg);
}

.side-panel p {
  color: #c5d9e4;
}

.side-panel a:not(.button) {
  color: var(--sky);
  font-weight: 750;
}

.side-panel .button {
  width: 100%;
  margin-top: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(48px, 6.5vw, 92px);
}

.contact-list {
  display: grid;
  gap: 0;
  max-width: 500px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  font-style: normal;
}

.contact-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 19px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 260ms var(--ease-out), border-color 220ms ease;
}

.contact-item:hover {
  padding-left: 8px;
  border-color: var(--sky);
}

.contact-item__icon {
  display: inline-grid;
  min-width: 54px;
  height: 28px;
  margin-top: 7px;
  padding-inline: 8px;
  place-items: center;
  color: var(--white);
  background: var(--cobalt);
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.contact-item h3 {
  margin: 2px 0 7px;
  font-size: 1.16rem;
}

.contact-item p {
  margin-bottom: 0;
}

.contact-item a {
  color: var(--cobalt);
  font-weight: 680;
}

.enquiry-panel {
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border-top: 7px solid;
  border-image: linear-gradient(90deg, var(--cobalt), var(--sky)) 1;
  border-radius: 0 0 16px 16px;
  box-shadow: var(--shadow-lg);
}

.enquiry-panel h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 1.48rem + 2.6vw, 2.85rem);
}

.form-required-note {
  margin: 14px 0 0;
  color: var(--slate);
  font-size: var(--text-xs);
  font-weight: 650;
  line-height: 1.5;
}

.form-noscript {
  margin: 22px 0 0;
  padding: 16px 18px;
  color: var(--navy-2);
  background: var(--ice);
  border-left: 4px solid var(--cobalt);
  border-radius: 4px;
  font-size: var(--text-sm);
  line-height: 1.6;
}

.form-noscript a {
  color: var(--cobalt);
  font-weight: 760;
}

html:not(.js) [data-enquiry-form] {
  display: none;
}

.field-required {
  margin-left: 0.16em;
  color: #a63131;
  font-weight: 800;
}

.form-required-note .field-required {
  margin-left: 0;
}

.section--dark .form-required-note {
  color: #d3e5ee;
}

.section--dark .field-required {
  color: var(--sky);
}

.section--dark .enquiry-panel .form-required-note {
  color: var(--slate);
}

.section--dark .enquiry-panel .field-required {
  color: #a63131;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.field {
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field--honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-2);
  font-size: var(--text-xs);
  font-weight: 790;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  display: block;
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: var(--cloud);
  border: 1px solid var(--field-border);
  border-radius: 6px;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.field input,
.field select {
  height: 55px;
  padding: 0 15px;
}

.field select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--cobalt) 50%),
    linear-gradient(135deg, var(--cobalt) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 24px,
    calc(100% - 14px) 24px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field textarea {
  min-height: 142px;
  padding: 14px 15px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  background: var(--white);
  border-color: var(--cobalt);
  box-shadow: 0 0 0 4px rgba(8, 78, 145, 0.14);
}

.check-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: var(--slate);
  font-size: var(--text-xs);
  line-height: 1.6;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--royal);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-actions .button {
  min-width: 158px;
  white-space: nowrap;
}

.enquiry-panel .form-actions > [data-form-status] {
  min-width: min(260px, 100%);
  flex: 1 1 auto;
  min-height: 1.5em;
  margin: 0;
  color: #06477f;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.5;
}

.enquiry-panel .form-actions > [data-form-status]:empty {
  display: none;
}

.enquiry-panel .form-actions > [data-form-status][data-state="error"] {
  color: #a63131;
}

.turnstile-slot:empty {
  display: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  min-height: 330px;
  grid-column: span 4;
  padding: 0;
  overflow: hidden;
  background: var(--navy);
  border: 0;
  border-radius: 5px 15px 5px 5px;
  text-align: left;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(10) {
  grid-column: span 8;
}

.gallery-item:nth-child(5),
.gallery-item:nth-child(6),
.gallery-item:nth-child(8) {
  min-height: 500px;
  grid-row: span 2;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 250ms ease, transform 650ms var(--ease-out);
}

.gallery-item:nth-child(5) img,
.gallery-item:nth-child(6) img,
.gallery-item:nth-child(8) img {
  object-position: center 48%;
}

.gallery-item:nth-child(10) img {
  object-position: center bottom;
}

.gallery-item::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--navy);
  content: "+";
  background: var(--sky);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 0.92;
  transform: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-item:hover img {
  opacity: 0.76;
  transform: scale(1.035);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: rotate(90deg);
}

.lightbox {
  --focus-ring: var(--sky);
  width: min(94vw, 1180px);
  max-height: 92vh;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 45px 120px rgba(0, 0, 0, 0.55);
}

.lightbox[open] {
  animation: lightbox-enter 280ms var(--ease-out) both;
}

.lightbox[open]::backdrop {
  animation: backdrop-enter 220ms ease both;
}

.lightbox::backdrop {
  background: rgba(2, 9, 16, 0.86);
  backdrop-filter: blur(7px);
}

.lightbox > img {
  width: 100%;
  height: min(68dvh, 720px);
  object-fit: contain;
  background: #020b12;
}

.lightbox__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  font-size: var(--text-xs);
}

.lightbox__actions {
  display: flex;
  gap: 7px;
}

.lightbox__nav,
.lightbox__close {
  min-height: 44px;
  padding: 9px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  font-size: var(--text-xs);
  font-weight: 700;
}

.lightbox__nav:hover,
.lightbox__close:hover {
  color: var(--navy);
  background: var(--sky);
}

.legal-content,
.thank-you {
  max-width: 860px;
}

.legal-content {
  padding: clamp(34px, 6vw, 68px);
  background: var(--white);
  border-top: 6px solid var(--blue);
  border-radius: 0 0 16px 16px;
  box-shadow: var(--shadow-lg);
}

.legal-content > h1 {
  max-width: 12ch;
  margin-bottom: 30px;
  color: var(--navy);
  font-size: clamp(2.7rem, 2.05rem + 3.25vw, 4.85rem);
}

.legal-content > h2 {
  max-width: 100%;
  margin-top: 50px;
  margin-bottom: 15px;
  color: var(--navy-2);
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.notice {
  margin: 30px 0;
  padding: 22px 25px;
  background: var(--ice);
  border-left: 4px solid var(--blue);
  border-radius: 0 8px 8px 0;
}

.notice p:last-child {
  margin-bottom: 0;
}

.thank-you {
  display: grid;
  width: min(calc(100% - (var(--page-gutter) * 2)), 860px);
  min-height: 62vh;
  margin-inline: auto;
  place-items: center;
  padding-block: 80px;
}

.thank-you__card {
  width: 100%;
  padding: clamp(35px, 7vw, 75px);
  background: var(--white);
  border-top: 7px solid var(--blue);
  border-radius: 0 0 16px 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.thank-you__card h1 {
  max-width: 11ch;
  margin-inline: auto;
  color: var(--navy);
  font-size: clamp(2.45rem, 1.75rem + 3.5vw, 5.15rem);
}

.thank-you__card p {
  margin-inline: auto;
}

.thank-you__icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  place-items: center;
  color: var(--navy);
  background: var(--sky);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 2rem;
}

.site-footer {
  color: #b9cdd8;
  background:
    radial-gradient(circle at 7% 0%, rgba(21, 158, 228, 0.14), transparent 24%),
    #03111c;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.55fr repeat(2, minmax(160px, 0.72fr));
  gap: clamp(40px, 7vw, 90px);
  padding-block: 70px 56px;
}

.site-footer__main--four {
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(130px, 0.62fr));
  gap: clamp(30px, 4.5vw, 64px);
}

.site-footer h2 {
  margin: 8px 0 22px;
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand img {
  width: 238px;
  padding: 13px;
  background: var(--white);
  border-radius: 4px;
}

.footer-brand p {
  max-width: 42ch;
  margin: 25px 0 0;
  font-size: var(--text-sm);
}

.footer-links,
.service-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: var(--text-sm);
  line-height: 1.55;
}

.footer-links a,
.footer-contact a,
.footer-legal a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-legal a:hover {
  color: var(--sky);
}

.footer-contact {
  font-size: var(--text-sm);
  font-style: normal;
  line-height: 1.75;
}

.site-footer__bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 20px;
  color: #78909d;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--text-xs);
  line-height: 1.55;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
}

.footer-legal a,
.footer-legal button {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
}

.footer-legal button {
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
}

.footer-legal button:hover {
  color: var(--sky);
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  width: min(calc(100% - 44px), 820px);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  padding: 26px;
  color: var(--white);
  background: rgba(6, 26, 43, 0.98);
  border: 1px solid rgba(98, 199, 241, 0.3);
  border-radius: 9px;
  box-shadow: var(--shadow-lg);
}

.cookie-banner h2 {
  margin-bottom: 7px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.cookie-banner p {
  margin: 0;
  color: #bdd0db;
  font-size: var(--text-xs);
  line-height: 1.55;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
}

.cookie-banner .button {
  min-height: 44px;
  padding-inline: 16px;
  font-size: var(--text-xs);
}

.cookie-banner .button::after {
  display: none;
}

.mobile-contact-bar {
  display: none;
}

/* Motion is progressively enabled by JavaScript so content remains visible without it. */
.motion-enabled .hero__content > * {
  opacity: 0;
  transform: translateY(24px);
}

.motion-enabled body.is-loaded .hero__content > * {
  animation: hero-copy-enter 760ms var(--ease-out) both;
}

.motion-enabled body.is-loaded .hero__content > :nth-child(2) {
  animation-delay: 70ms;
}

.motion-enabled body.is-loaded .hero__content > :nth-child(3) {
  animation-delay: 140ms;
}

.motion-enabled body.is-loaded .hero__content > :nth-child(4) {
  animation-delay: 210ms;
}

.motion-enabled body.is-loaded .hero__content > :nth-child(5) {
  animation-delay: 280ms;
}

.motion-enabled body.is-loaded .hero__content > :nth-child(6) {
  animation-delay: 350ms;
}

.motion-enabled .hero-collage__main {
  opacity: 0;
}

.motion-enabled .hero-internal__media {
  opacity: 0;
}

.motion-enabled body.is-loaded .hero-collage__main {
  animation: hero-image-enter 950ms 170ms var(--ease-out) both;
}

.motion-enabled body.is-loaded .hero-internal__media {
  animation: internal-hero-image-enter 900ms 210ms var(--ease-out) both;
}

.motion-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 720ms var(--ease-out) var(--reveal-delay, 0ms),
    transform 720ms var(--ease-out) var(--reveal-delay, 0ms);
}

.motion-enabled [data-reveal="media"] {
  transform: none;
}

.motion-enabled .project-shot[data-reveal="media"],
.motion-enabled .gallery-item[data-reveal="media"] {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
}

.motion-enabled [data-reveal="left"] {
  transform: translateX(-28px);
}

.motion-enabled [data-reveal="right"] {
  transform: translateX(28px);
}

.motion-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.motion-enabled .trust-item[data-attention="trust"].is-visible > strong {
  animation: trust-number-attention 620ms var(--ease-out) var(--attention-delay, 0ms) both;
}

.motion-enabled .trust-item[data-attention="trust"].is-visible > strong::after {
  animation: trust-number-rule 620ms var(--ease-out) var(--attention-delay, 0ms) both;
}

.motion-enabled .split--signature .split__media[data-attention="signature-media"],
.motion-enabled .split--signature .split__content[data-attention="signature-copy"] {
  opacity: 1;
  transform: none;
  transition: none;
}

.motion-enabled .split--signature .split__media[data-attention="signature-media"]::before {
  transform: scaleX(0);
  transform-origin: right center;
}

.motion-enabled .split--signature .split__media[data-attention="signature-media"] img {
  clip-path: inset(0 100% 0 0);
}

.motion-enabled .split--signature .split__media[data-attention="signature-media"].is-visible::before {
  animation: signature-frame-enter 520ms var(--ease-out) both;
}

.motion-enabled .split--signature .split__media[data-attention="signature-media"].is-visible img {
  animation: signature-photo-enter 780ms 120ms cubic-bezier(0.65, 0, 0.35, 1) both;
}

.motion-enabled .split--signature .split__content[data-attention="signature-copy"] > * {
  opacity: 0;
  transform: translateY(var(--signature-copy-travel));
}

.motion-enabled .split--signature .split__content[data-attention="signature-copy"].is-visible > * {
  animation: signature-copy-enter 520ms var(--ease-out) both;
}

.motion-enabled .split--signature .split__content[data-attention="signature-copy"].is-visible > :nth-child(1) {
  animation-delay: 320ms;
}

.motion-enabled .split--signature .split__content[data-attention="signature-copy"].is-visible > :nth-child(2) {
  animation-delay: 400ms;
}

.motion-enabled .split--signature .split__content[data-attention="signature-copy"].is-visible > :nth-child(3) {
  animation-delay: 480ms;
}

.motion-enabled .split--signature .split__content[data-attention="signature-copy"].is-visible > :nth-child(4) {
  animation-delay: 560ms;
}

@media (min-width: 701px) {
  .motion-enabled body.is-loaded .project-showcase.is-motion-active::after {
    animation: project-ring-drift 4.4s var(--ease-out) both;
  }

}

.cookie-banner:not([hidden]) {
  animation: toast-enter 360ms var(--ease-out) both;
}

@media (hover: hover) and (pointer: fine) {
  .split__media:hover img {
    filter: saturate(1.04) contrast(1.015);
  }

  .contact-item:hover .contact-item__icon {
    transform: rotate(-5deg) scale(1.06);
  }

  .contact-item__icon {
    transition: transform 320ms var(--ease-out);
  }

}

@keyframes hero-copy-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-image-enter {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
  }
}

@keyframes home-main-photo-drift {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.055) translate3d(-0.7%, -0.45%, 0); }
}

@keyframes internal-photo-drift {
  from { transform: scale(1.01); }
  to { transform: scale(1.055); }
}

@keyframes project-photo-drift {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-0.6%, -0.5%, 0); }
}

@keyframes internal-hero-image-enter {
  from {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
  }
}

@keyframes project-ring-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-16px, -10px, 0) scale(1.025); }
}

@keyframes trust-number-attention {
  0% { opacity: 0.55; transform: translateY(10px) scale(0.86); }
  58% { opacity: 1; transform: translateY(-2px) scale(1.06); }
  100% { opacity: 1; transform: none; }
}

@keyframes trust-number-rule {
  0% { opacity: 0; transform: scaleX(0); }
  28%, 72% { opacity: 1; }
  100% { opacity: 0; transform: scaleX(1); }
}

@keyframes signature-frame-enter {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

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

@keyframes signature-copy-enter {
  from { opacity: 0; transform: translateY(var(--signature-copy-travel)); }
  to { opacity: 1; transform: none; }
}

@keyframes button-spinner {
  to { transform: rotate(1turn); }
}

@keyframes lightbox-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes backdrop-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes toast-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes page-wipe-reveal {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-100%, 0, 0); }
}

@media (max-width: 1180px) {
  .site-header {
    background: var(--white);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header__inner {
    min-height: 83px;
  }

  .site-logo,
  .site-logo img {
    width: 220px;
    flex-basis: 220px;
  }

  html.js .nav-toggle {
    display: block;
  }

  html.js .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  html.js .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  html.js .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  html.js .site-nav {
    --focus-ring: var(--sky);
    position: fixed;
    z-index: 40;
    top: var(--nav-panel-top, 122px);
    right: 0;
    bottom: 0;
    display: block;
    width: min(410px, 91vw);
    padding: 26px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    color: var(--white);
    background: linear-gradient(155deg, var(--navy) 0%, var(--navy-2) 100%);
    box-shadow: -25px 30px 65px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    -webkit-overflow-scrolling: touch;
    font-size: 0.9rem;
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
  }

  html.js .site-nav::before {
    display: block;
    margin-bottom: 14px;
    padding-bottom: 13px;
    color: var(--sky);
    content: "Menu";
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  html.js .site-header.is-scrolled .site-nav {
    top: var(--nav-panel-top, 83px);
  }

  html.js .nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  html.js .site-nav > a {
    display: flex;
    min-height: 58px;
    padding: 0 8px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
  }

  html.js .site-nav > a:hover,
  html.js .site-nav > a[aria-current="page"] {
    color: var(--sky);
    background: transparent;
  }

  html.js .site-nav > a:not(.nav-cta)[aria-current="page"] {
    padding-left: 16px;
    border-left: 3px solid var(--sky);
  }

  html.js .site-nav .nav-cta {
    margin: 22px 0 0;
    justify-content: center;
    color: var(--navy);
    background: var(--sky);
    border-radius: 6px;
  }

  html:not(.js) .site-header__inner {
    min-height: 0;
    flex-wrap: wrap;
    gap: 10px 24px;
    padding-block: 13px;
  }

  html:not(.js) .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px;
    font-size: 0.8rem;
  }

  html:not(.js) .site-nav > a {
    min-height: 44px;
  }

  html:not(.js) .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero--home,
  .hero-home__grid {
    min-height: 660px;
  }

  .hero-home__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.86fr);
    gap: 40px;
  }

  .hero-collage {
    min-height: 560px;
  }

  .site-footer__main {
    grid-template-columns: minmax(230px, 1.4fr) repeat(2, minmax(120px, 0.65fr));
    gap: 35px;
  }

  .site-footer__main--four {
    grid-template-columns: minmax(230px, 1.4fr) repeat(3, minmax(110px, 0.65fr));
  }
}

@media (max-width: 900px) {
  .hero-home__grid {
    grid-template-columns: 1fr;
    padding-block: 78px 70px;
  }

  .hero--home .hero__content {
    max-width: 720px;
  }

  .hero--home h1 {
    max-width: 9.6ch;
  }

  .hero-collage {
    --hero-main-width: 83%;
    min-height: 565px;
  }

  .hero--internal {
    display: block;
    min-height: 0;
  }

  .hero--internal .hero__content {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
    margin-inline: auto;
    padding-block: 62px 46px;
  }

  .hero--internal h1 {
    max-width: 12ch;
  }

  .hero--internal::before {
    width: 100%;
  }

  .hero-internal__media {
    position: relative;
    top: auto;
    right: auto;
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
    height: auto;
    aspect-ratio: 16 / 9;
    margin-inline: auto;
    border: 0;
    border-radius: var(--image-radius);
    box-shadow: 0 18px 42px rgba(2, 15, 27, 0.24);
    transform: none;
  }

  .trust-item {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 120px;
  }

  .trust-item > strong::after {
    bottom: -4px;
  }

  .split,
  .contact-grid,
  .content-layout,
  .project-showcase__intro {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 58px;
  }

  .split__media,
  .split--reverse .split__media {
    order: 0;
  }

  .split__media {
    width: min(100%, 680px);
  }

  .split__media--portrait {
    width: min(100%, 560px);
    justify-self: start;
  }

  .split__content {
    max-width: 680px;
  }

  .project-showcase__intro {
    gap: 20px;
  }

  .project-showcase__link {
    justify-self: start;
  }

  .side-panel {
    position: relative;
    top: auto;
    max-width: 580px;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(10) {
    grid-column: span 6;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 700px) {
  :root {
    --section-space: 66px;
  }

  html {
    scroll-padding-top: 78px;
  }

  html.js body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  .topbar {
    display: none;
  }

  .site-header__inner {
    min-height: 66px;
    gap: 14px;
  }

  .site-logo,
  .site-logo img {
    width: 148px;
    flex-basis: 148px;
  }

  html.js .site-nav,
  html.js .site-header.is-scrolled .site-nav {
    top: var(--nav-panel-top, 72px);
    right: 0;
    left: 0;
    bottom: calc(64px + env(safe-area-inset-bottom));
    width: 100%;
    padding: 20px max(20px, env(safe-area-inset-right)) 24px max(20px, env(safe-area-inset-left));
    border-left: 0;
    font-size: 0.92rem;
    overscroll-behavior: contain;
  }

  html.js .nav-toggle {
    width: 44px;
    height: 44px;
    padding: 10px;
  }

  html.js .site-nav > a {
    min-height: 58px;
  }

  html.js .site-nav .nav-cta {
    min-height: 54px;
    margin-top: 24px;
  }

  html:not(.js) .site-header__inner {
    padding-block: 10px 14px;
  }

  html:not(.js) .site-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding-bottom: 2px;
  }

  html:not(.js) .site-nav > a {
    min-height: 44px;
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
  }

  html:not(.js) .site-nav .nav-cta {
    margin: 0;
  }

  .eyebrow {
    margin-bottom: 15px;
    letter-spacing: 0.12em;
  }

  .hero--home h1 {
    max-width: 9.5ch;
    line-height: 0.98;
  }

  .hero-home__grid {
    gap: 40px;
    padding-block: 54px 48px;
  }

  .hero__intro {
    font-size: 1.05rem;
    line-height: 1.62;
  }

  .hero .button-row {
    margin-top: 24px;
  }

  .hero-collage {
    --hero-main-width: 93%;
    min-height: 380px;
  }

  .hero-collage__main {
    height: 72%;
    border-width: 5px;
    border-radius: 3px 20px 3px 3px;
  }

  .hero--internal h1 {
    max-width: 12ch;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .button {
    min-height: 52px;
    padding-inline: 20px;
  }

  .motion-enabled [data-reveal="left"],
  .motion-enabled [data-reveal="right"] {
    transform: translateY(26px);
  }

  .trust-bar__inner {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 0;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 15px;
    padding: 17px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .trust-item > strong {
    min-width: 38px;
    font-size: 1.6rem;
  }

  .trust-item span {
    font-size: var(--text-xs);
  }

  .section {
    padding-block: var(--section-space);
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .split,
  .contact-grid,
  .content-layout {
    gap: 42px;
  }

  .split--signature {
    --signature-copy-travel: 12px;
  }

  .split__media::before {
    top: -9px;
    right: -9px;
  }

  .split--reverse .split__media::before {
    left: -9px;
  }

  .split__media {
    aspect-ratio: 4 / 3;
  }

  .split--signature .split__media {
    aspect-ratio: 4 / 3;
  }

  .split__media--portrait {
    width: min(88%, 465px);
    aspect-ratio: 3 / 4;
  }

  .split__media--kitchen,
  .split__media--roofing {
    aspect-ratio: 4 / 3;
  }

  .project-showcase__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .project-shot,
  .project-shot--wide,
  .project-shot--tall {
    min-height: 245px;
    grid-row: auto;
  }

  .project-shot--wide {
    min-height: 305px;
  }

  .check-list {
    grid-template-columns: 1fr;
    margin-block: 24px;
  }

  .check-list li {
    grid-column: 1;
    padding-block: 13px;
  }

  .check-list li:nth-child(n + 4) {
    grid-column: 1;
  }

  .content-card {
    padding: 23px 21px;
  }

  .side-panel {
    max-width: none;
    padding: 27px;
  }

  .contact-list {
    margin-top: 30px;
  }

  .contact-item {
    gap: 14px;
    padding-block: 18px;
  }

  .contact-item:hover {
    padding-left: 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .field,
  .field--full {
    grid-column: 1;
  }

  .field input,
  .field textarea,
  .field select {
    font-size: 16px;
  }

  .field label {
    font-size: var(--text-xs);
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }

  .enquiry-panel {
    padding: 27px 21px 30px;
    border-top-width: 5px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(8),
  .gallery-item:nth-child(10) {
    min-height: 270px;
    grid-column: 1;
    grid-row: auto;
  }

  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(8) {
    min-height: 365px;
  }

  .site-footer__main {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 24px;
    padding-block: 54px 42px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .site-footer__main--four > :last-child {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    padding-block: 22px 28px;
  }

  .cookie-banner {
    right: 10px;
    bottom: calc(74px + env(safe-area-inset-bottom));
    left: 10px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 17px;
    max-height: calc(100dvh - 96px - env(safe-area-inset-bottom));
    padding: 20px;
    overflow-y: auto;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: calc(64px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    grid-template-columns: 1fr 1fr;
    background: var(--navy);
    box-shadow: 0 -8px 25px rgba(6, 26, 43, 0.18);
  }

  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 790;
    letter-spacing: 0.04em;
    text-decoration: none;
  }

  .mobile-contact-bar a:last-child {
    color: var(--navy);
    background: linear-gradient(110deg, var(--sky), #a8e6fb);
  }

  .page-transition::before {
    background-size: 60px 60px;
  }

  .page-transition__brand strong {
    font-size: 2rem;
  }

  .legal-content {
    padding: 30px 22px 36px;
    border-top-width: 5px;
  }

  .thank-you {
    width: min(calc(100% - (var(--page-gutter) * 2)), 860px);
    padding-block: 58px;
  }

  .thank-you__card {
    padding: 34px 24px;
  }

  .site-header__inner > .button {
    min-height: 44px;
    padding-inline: 11px;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .site-header__inner > .button::after {
    display: none;
  }

  .contact-item a,
  .footer-contact a {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 460px) {
  .site-logo,
  .site-logo img {
    width: 138px;
    flex-basis: 138px;
  }

  .site-header__inner {
    gap: 10px;
  }

  .utility-page .site-header__inner {
    gap: 8px;
  }

  .utility-page .site-logo,
  .utility-page .site-logo img {
    width: 122px;
    flex-basis: 122px;
  }

  .hero-collage {
    min-height: 325px;
  }

  .hero-collage__main {
    height: 74%;
  }

  .hero--internal {
    min-height: 0;
  }

  .side-panel {
    padding: 25px;
  }

  .enquiry-panel {
    padding: 25px 20px 29px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .site-footer__main--four {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .site-footer__main > div:nth-child(2) {
    grid-column: auto;
  }

  .site-footer__main > div:last-child {
    grid-column: auto;
  }

  .site-footer__main--four > :last-child {
    grid-column: auto;
  }

  .cookie-banner__actions {
    grid-template-columns: 1fr;
  }

  .lightbox__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .lightbox > img {
    height: min(56dvh, 520px);
  }

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

/* Keep every photographic surface consistently rounded across all pages. */
.hero-collage figure,
.hero-internal__media,
.split__media img,
.project-shot,
.gallery-item,
.lightbox {
  border-radius: var(--image-radius);
}

/* Homepage concept: an architectural, image-led composition inspired by
   contemporary construction editorial design. All rules remain scoped to the
   homepage so the approved internal pages stay unchanged. */
.page-home {
  --home-canvas: #eeece8;
  --home-paper: #f8f7f3;
  --home-panel: #11191f;
  --home-line: rgba(7, 21, 34, 0.12);
  background:
    linear-gradient(rgba(8, 119, 201, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 119, 201, 0.09) 1px, transparent 1px),
    var(--home-canvas);
  background-size: 86px 86px;
}

.page-home .topbar,
.page-home .site-header,
.page-home .hero--home,
.page-home .trust-bar,
.page-home .home-story,
.page-home .home-services,
.page-home .project-showcase,
.page-home .home-enquiry {
  width: min(calc(100% - (var(--page-gutter) * 2)), 1400px);
  margin-inline: auto;
}

.page-home .topbar {
  margin-top: 18px;
  background: var(--home-panel);
  border: 0;
  border-radius: 12px 12px 0 0;
}

.page-home .topbar__inner {
  min-height: 42px;
}

.page-home .site-header {
  top: 12px;
  margin-bottom: 18px;
  color: var(--white);
  background: rgba(17, 25, 31, 0.98);
  border: 0;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 18px 45px rgba(7, 21, 34, 0.14);
  backdrop-filter: blur(18px);
}

.page-home .site-header.is-scrolled {
  top: 0;
  background: rgba(17, 25, 31, 0.96);
  box-shadow: 0 18px 45px rgba(7, 21, 34, 0.24);
}

.page-home .site-header__inner {
  min-height: 88px;
}

.page-home .site-header::after {
  right: 18px;
  left: 18px;
  background: linear-gradient(90deg, var(--sky), var(--royal));
}

.page-home .site-logo {
  display: grid;
  width: 225px;
  flex-basis: 225px;
  place-items: center;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.page-home .site-logo img {
  width: 198px;
}

.page-home .site-nav {
  color: var(--white);
}

.page-home .site-nav > a {
  color: #d7e2e8;
}

.page-home .site-nav > a:hover,
.page-home .site-nav > a[aria-current="page"] {
  color: var(--sky);
  background: rgba(255, 255, 255, 0.06);
}

.page-home .site-nav .nav-cta,
.page-home .site-nav .nav-cta[aria-current="page"] {
  color: var(--navy);
  background: var(--sky);
  border-color: var(--sky);
  box-shadow: 0 10px 26px rgba(21, 158, 228, 0.24);
}

.page-home .hero--home {
  min-height: 760px;
  isolation: isolate;
  background: var(--home-panel);
  border-radius: 12px;
  box-shadow: 0 28px 75px rgba(7, 21, 34, 0.2);
}

.page-home .hero-home__gridlines {
  display: none;
}

.page-home .hero-home__grid {
  z-index: 1;
  min-height: 760px;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 104px clamp(34px, 5vw, 72px) 94px;
}

.page-home .hero--home .hero__content {
  position: relative;
  z-index: 4;
  max-width: 625px;
}

.page-home .hero__content > h1 {
  max-width: 8.2ch;
  margin-bottom: 30px;
  font-size: clamp(4.25rem, 3rem + 4vw, 7.1rem);
  font-weight: 610;
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.page-home .hero__intro {
  max-width: 47ch;
  color: #d5e3e9;
  font-size: clamp(1.06rem, 1rem + 0.25vw, 1.24rem);
}

.page-home .hero .button-row {
  margin-top: 34px;
}

.page-home .hero .button {
  min-height: 60px;
  border-radius: 4px;
}

.page-home .hero-collage {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-height: 0;
  pointer-events: none;
}

.page-home .hero-collage::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 21, 34, 0.98) 0%, rgba(7, 21, 34, 0.91) 36%, rgba(7, 21, 34, 0.35) 67%, rgba(7, 21, 34, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 21, 34, 0.32), transparent 45%);
}

.page-home .hero-collage__main {
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.page-home .hero-collage__main > img {
  object-position: 61% center;
  filter: saturate(0.88) contrast(1.04);
}

.page-home .trust-bar {
  margin-block: 16px 20px;
  padding-block: 0;
  overflow: hidden;
  color: var(--ink);
  background: transparent;
  border-radius: 12px;
  box-shadow: none;
}

.page-home .trust-bar > .container {
  width: 100%;
  max-width: none;
}

.page-home .trust-bar__inner {
  gap: 1px;
  background: var(--home-line);
  border: 0;
}

.page-home .trust-item,
.page-home .trust-item:last-child {
  min-height: 126px;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 0;
  padding: 24px clamp(24px, 3vw, 42px);
  color: var(--ink);
  background: linear-gradient(145deg, #fbfaf7, #f1f0ec);
  border: 0;
}

.page-home .trust-item span {
  display: grid;
  gap: 5px;
  color: #4a5c68;
  font-size: var(--text-sm);
}

.page-home .trust-item b {
  color: var(--ink);
  font-size: clamp(1.18rem, 1.05rem + 0.4vw, 1.48rem);
}

.page-home .home-story,
.page-home .home-services,
.page-home .project-showcase,
.page-home .home-enquiry {
  overflow: hidden;
  border-radius: 12px;
}

.page-home .home-story {
  padding-block: clamp(64px, 6vw, 88px);
  background:
    radial-gradient(circle at 12% 16%, rgba(98, 199, 241, 0.1), transparent 31%),
    linear-gradient(145deg, #fbfaf7 0%, var(--home-paper) 58%, #eeece7 100%);
  box-shadow: 0 22px 54px rgba(7, 21, 34, 0.13);
}

.page-home .home-story .split {
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.72fr);
  align-items: stretch;
}

.page-home .home-story .split__media {
  min-height: 590px;
  aspect-ratio: auto;
}

.page-home .home-story .split__media::before {
  top: -22px;
  right: -22px;
  width: 47%;
  height: 48%;
  background: linear-gradient(145deg, var(--blue), var(--royal));
  border-radius: 0;
}

.page-home .home-story .split__media img {
  border-radius: 3px;
  object-position: center bottom;
}

.page-home .home-story .split__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-block: 34px;
}

.page-home .home-story h2,
.page-home .home-services h2,
.page-home .project-showcase h2,
.page-home .home-enquiry .contact-grid > :first-child h2 {
  font-size: clamp(2.7rem, 2.1rem + 2.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.page-home .home-story .button {
  color: var(--white);
  background: var(--home-panel);
  border-color: var(--home-panel);
}

.page-home .home-services {
  margin-top: 20px;
  padding-block: clamp(64px, 6vw, 88px);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 14%, rgba(98, 199, 241, 0.11), transparent 28%),
    linear-gradient(135deg, #11191f 0%, #101c25 58%, #092c47 100%);
  box-shadow: 0 24px 58px rgba(7, 21, 34, 0.2);
}

.page-home .home-services .section-heading {
  max-width: 850px;
  margin-bottom: clamp(48px, 6vw, 78px);
}

.page-home .home-services .section-heading h2,
.page-home .home-services .content-layout__main h3 {
  color: var(--white);
}

.page-home .home-services .content-layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.62fr);
  gap: clamp(42px, 6vw, 88px);
}

.page-home .home-services .content-layout__main > p {
  max-width: 66ch;
  color: #bccbd2;
}

.page-home .home-services .check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 40px;
  border: 0;
}

.page-home .home-services .check-list li,
.page-home .home-services .check-list li:nth-child(n + 4) {
  min-height: 58px;
  grid-column: auto;
  display: flex;
  align-items: center;
  padding: 13px 20px 13px 42px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.page-home .home-services .check-list li:nth-child(5) {
  grid-column: 1;
}

.page-home .home-services .check-list li::before {
  top: 50%;
  left: 17px;
  color: var(--sky);
  transform: translateY(-50%);
}

.page-home .home-services .side-panel {
  position: relative;
  top: 0;
  align-self: center;
  padding: clamp(34px, 4vw, 52px);
  color: var(--navy);
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.25), transparent 28%),
    linear-gradient(145deg, #70cdf3 0%, var(--sky) 52%, #46b9eb 100%);
  border-radius: 3px;
  box-shadow: none;
}

.page-home .home-services .side-panel h3,
.page-home .home-services .side-panel p {
  color: var(--navy);
}

.page-home .home-services .side-panel .button {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.page-home .project-showcase {
  margin-top: 20px;
  padding-block: clamp(64px, 6vw, 88px);
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 12%, rgba(21, 158, 228, 0.09), transparent 28%),
    linear-gradient(145deg, #fbfaf7 0%, var(--home-paper) 55%, #eeece7 100%);
}

.page-home .project-showcase::after {
  display: none;
}

.page-home .project-showcase .container {
  position: relative;
  z-index: 1;
}

.page-home .project-showcase__intro {
  margin-bottom: 54px;
}

.page-home .project-showcase__intro .eyebrow {
  color: var(--cobalt);
}

.page-home .project-showcase__intro h2 {
  color: var(--ink);
}

.page-home .project-showcase__link {
  color: var(--cobalt);
}

.page-home .project-showcase__grid {
  grid-template-columns: 1.14fr 0.93fr 0.93fr;
  grid-template-rows: none;
  gap: 14px;
  background: transparent;
  border: 0;
}

.page-home .project-shot {
  border-radius: 0;
}

.page-home .service-card {
  display: flex;
  min-height: 440px;
  align-items: flex-end;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 24px 52px rgba(7, 21, 34, 0.18);
}

.page-home .service-card__media {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.page-home .service-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(4, 18, 30, 0.05) 18%, rgba(4, 18, 30, 0.36) 54%, rgba(4, 18, 30, 0.94) 100%),
    linear-gradient(90deg, rgba(4, 18, 30, 0.26), transparent 60%);
  transition: background 320ms ease;
}

.page-home .service-card__media img {
  object-position: center;
}

.page-home .service-card__content {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  align-content: end;
  justify-items: start;
  gap: 18px;
  padding: clamp(24px, 2.4vw, 34px);
}

.page-home .service-card__content h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 1.18rem + 0.75vw, 2rem);
  line-height: 1.05;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.32);
}

.page-home .service-card__cta {
  width: fit-content;
  min-height: 46px;
  padding: 11px 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.page-home .service-card:is(:hover, :focus-visible) {
  color: var(--white);
  transform: translateY(-4px);
}

.page-home .service-card:is(:hover, :focus-visible) .service-card__media::after {
  background:
    linear-gradient(180deg, rgba(4, 18, 30, 0.02) 18%, rgba(4, 18, 30, 0.28) 54%, rgba(4, 18, 30, 0.9) 100%),
    linear-gradient(90deg, rgba(4, 18, 30, 0.2), transparent 60%);
}

.page-home .service-card:is(:hover, :focus-visible) .service-card__cta {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.page-home .home-enquiry {
  margin-block: 20px;
  padding-block: clamp(44px, 4vw, 58px);
  background:
    radial-gradient(circle at 86% 12%, rgba(98, 199, 241, 0.14), transparent 29%),
    linear-gradient(125deg, var(--navy) 0%, #082f50 62%, #075786 100%);
}

.page-home .home-enquiry .contact-grid {
  grid-template-columns: minmax(350px, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  gap: clamp(46px, 5vw, 72px);
}

.page-home .home-enquiry__contact {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.page-home .home-enquiry__contact h2 {
  max-width: 10ch;
  margin-bottom: 28px;
  font-size: clamp(2.65rem, 2.2rem + 1.7vw, 4rem);
  line-height: 0.98;
}

.page-home .home-contact-details {
  max-width: 410px;
  font-style: normal;
}

.page-home .home-contact-details dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.page-home .home-contact-details dl > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding-block: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.page-home .home-contact-details dt {
  color: var(--sky);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-home .home-contact-details dd {
  margin: 0;
  color: #d7e3e9;
  font-size: 0.96rem;
  line-height: 1.5;
}

.page-home .home-contact-details dd a {
  display: block;
  width: fit-content;
  color: var(--white);
  text-decoration-color: rgba(98, 199, 241, 0.65);
  text-underline-offset: 4px;
}

.page-home .home-enquiry .enquiry-panel {
  padding: clamp(28px, 3.5vw, 42px);
  border-top: 0;
  border-left: 6px solid var(--sky);
  border-radius: 0;
  box-shadow: 0 26px 70px rgba(2, 13, 22, 0.3);
}

/* Compact enquiry panel shared by the full-width internal page sections. */
.site-enquiry {
  padding-block: clamp(44px, 4vw, 58px);
  background:
    radial-gradient(circle at 86% 12%, rgba(98, 199, 241, 0.14), transparent 29%),
    linear-gradient(125deg, var(--navy) 0%, #082f50 62%, #075786 100%);
}

.site-enquiry .contact-grid {
  grid-template-columns: minmax(350px, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  gap: clamp(46px, 5vw, 72px);
}

.site-enquiry__contact {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.site-enquiry__contact h2 {
  max-width: 10ch;
  margin-bottom: 28px;
  font-size: clamp(2.65rem, 2.2rem + 1.7vw, 4rem);
  line-height: 0.98;
}

.site-contact-details {
  max-width: 410px;
  font-style: normal;
}

.site-contact-details dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.site-contact-details dl > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding-block: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-contact-details dt {
  color: var(--sky);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-contact-details dd {
  margin: 0;
  color: #d7e3e9;
  font-size: 0.96rem;
  line-height: 1.5;
}

.site-contact-details dd a {
  display: block;
  width: fit-content;
  color: var(--white);
  text-decoration-color: rgba(98, 199, 241, 0.65);
  text-underline-offset: 4px;
}

.site-enquiry .enquiry-panel {
  padding: clamp(28px, 3.5vw, 42px);
  border-top: 0;
  border-left: 6px solid var(--sky);
  border-radius: 0;
  box-shadow: 0 26px 70px rgba(2, 13, 22, 0.3);
}

.site-enquiry .form-grid {
  margin-top: 0;
}

.page-home .site-footer {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .page-home .site-logo,
  .page-home .site-logo img {
    flex-basis: auto;
  }

  .page-home .site-logo {
    width: 205px;
  }

  .page-home .site-logo img {
    width: 180px;
  }

  .page-home .nav-toggle span {
    background: var(--white);
  }

  html.js .page-home .site-nav {
    color: var(--white);
    background: var(--home-panel);
  }
}

@media (max-width: 900px) {
  .site-enquiry .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-home .hero--home,
  .page-home .hero-home__grid {
    min-height: 720px;
  }

  .page-home .hero-home__grid {
    padding-block: 82px;
  }

  .page-home .hero--home .hero__content {
    max-width: 590px;
  }

  .page-home .hero-collage__main > img {
    object-position: 64% center;
  }

  .page-home .home-story .split,
  .page-home .home-services .content-layout,
  .page-home .home-enquiry .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-home .home-story .split__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .page-home .home-story .split__content {
    padding-block: 10px 0;
  }

  .page-home .home-services .side-panel {
    top: auto;
  }
}

@media (max-width: 700px) {
  .site-enquiry {
    padding-block: 42px;
  }

  .site-enquiry__contact h2 {
    max-width: 9ch;
    font-size: clamp(2.45rem, 10vw, 3.25rem);
  }

  .site-contact-details {
    max-width: none;
  }

  .site-enquiry .enquiry-panel {
    padding: 22px 20px 24px;
    border-left-width: 4px;
  }

  .page-home .topbar {
    display: none;
  }

  .page-home .site-header {
    top: 10px;
    margin-top: 12px;
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .page-home .site-header.is-scrolled {
    top: 0;
  }

  .page-home .site-header__inner {
    min-height: 72px;
    padding-inline: 12px;
  }

  .page-home .site-logo {
    width: 148px;
    padding: 0;
  }

  .page-home .site-logo img {
    width: 132px;
  }

  .page-home .nav-toggle {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.28);
  }

  html.js .page-home .site-nav,
  html.js .page-home .site-header.is-scrolled .site-nav {
    top: var(--nav-panel-top, 94px);
    right: var(--page-gutter);
    left: var(--page-gutter);
    width: auto;
    border-radius: 10px;
    transform: none;
  }

  html.js .page-home.nav-open .site-nav {
    transform: none;
  }

  .page-home .hero--home,
  .page-home .hero-home__grid {
    min-height: 790px;
  }

  .page-home .hero-home__grid {
    padding: 60px 22px 54px;
  }

  .page-home .hero__content > h1 {
    max-width: 7.7ch;
    margin-bottom: 24px;
    font-size: clamp(3.15rem, 13vw, 3.75rem);
    line-height: 0.91;
  }

  .page-home .hero__intro {
    max-width: 29ch;
    font-size: 1rem;
  }

  .page-home .hero .button-row {
    max-width: 290px;
    margin-top: 28px;
  }

  .page-home .hero .button {
    min-height: 54px;
  }

  .page-home .hero-collage__main > img {
    object-position: 60% center;
  }

  .page-home .hero-collage::after {
    background:
      linear-gradient(180deg, rgba(7, 21, 34, 0.88) 0%, rgba(7, 21, 34, 0.76) 52%, rgba(7, 21, 34, 0.48) 100%),
      linear-gradient(90deg, rgba(7, 21, 34, 0.72), transparent);
  }

  .page-home .trust-bar {
    margin-block: 10px 18px;
    padding-block: 0;
  }

  .page-home .trust-bar__inner {
    grid-template-columns: 1fr;
  }

  .page-home .trust-item,
  .page-home .trust-item:last-child {
    min-height: 104px;
    grid-template-columns: 1fr;
    align-items: center;
    align-content: center;
    gap: 0;
    padding: 22px;
  }

  .page-home .trust-item b {
    font-size: 1.08rem;
  }

  .page-home .home-story,
  .page-home .home-services,
  .page-home .project-showcase,
  .page-home .home-enquiry {
    border-radius: 10px;
  }

  .page-home .home-story,
  .page-home .home-services,
  .page-home .project-showcase,
  .page-home .home-enquiry {
    padding-block: 54px;
  }

  .page-home .home-story .split__media {
    aspect-ratio: 4 / 3;
  }

  .page-home .home-story .split__media::before {
    top: -10px;
    right: -10px;
  }

  .page-home .home-story h2,
  .page-home .home-services h2,
  .page-home .project-showcase h2,
  .page-home .home-enquiry .contact-grid > :first-child h2 {
    font-size: clamp(2.45rem, 10vw, 3.25rem);
  }

  .page-home .home-services .check-list {
    grid-template-columns: 1fr;
  }

  .page-home .home-services .check-list li,
  .page-home .home-services .check-list li:nth-child(n + 4),
  .page-home .home-services .check-list li:nth-child(5) {
    min-height: 66px;
    grid-column: 1;
  }

  .page-home .home-services .side-panel {
    padding: 28px 24px;
  }

  .page-home .project-showcase__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .page-home .service-card {
    min-height: 360px;
  }

  .page-home .project-shot,
  .page-home .project-shot--wide,
  .page-home .project-shot--tall {
    min-height: 235px;
  }

  .page-home .project-shot--wide {
    min-height: 310px;
  }

  .page-home .home-enquiry__contact h2 {
    max-width: 9ch;
  }

  .page-home .home-contact-details {
    max-width: none;
  }

  .page-home .home-enquiry .enquiry-panel {
    padding: 22px 20px 24px;
    border-left-width: 4px;
  }

  .page-home .home-enquiry {
    padding-block: 42px;
  }
}

@media (max-width: 460px) {
  .page-home .hero--home,
  .page-home .hero-home__grid {
    min-height: 760px;
  }

  .page-home .hero__content > h1 {
    font-size: clamp(2.85rem, 13vw, 3.35rem);
  }

}

@media (prefers-reduced-motion: reduce), print {
  .site-header::after {
    display: none;
  }

  .motion-enabled .trust-item[data-attention="trust"].is-visible > strong {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .motion-enabled .trust-item[data-attention="trust"].is-visible > strong::after {
    animation: none;
  }

  .motion-enabled .split--signature .split__media[data-attention="signature-media"]::before,
  .motion-enabled .split--signature .split__media[data-attention="signature-media"].is-visible::before {
    animation: none;
    transform: none;
  }

  .motion-enabled .split--signature .split__media[data-attention="signature-media"] img,
  .motion-enabled .split--signature .split__media[data-attention="signature-media"].is-visible img {
    animation: none;
    clip-path: inset(0);
  }

  .motion-enabled .split--signature .split__content[data-attention="signature-copy"] > *,
  .motion-enabled .split--signature .split__content[data-attention="signature-copy"].is-visible > * {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-delay: 0ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }

  .motion-enabled .hero__content > *,
  .motion-enabled .hero-collage__main,
  .motion-enabled .hero-internal__media,
  .motion-enabled [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .page-transition {
    display: none;
  }

  .button[data-state="loading"]::after {
    animation: none;
  }

  .hero-collage img,
  .hero-internal__media img,
  .project-shot img {
    animation: none !important;
    transform: none !important;
  }
}

@media print {
  .page-transition,
  .mobile-contact-bar,
  .cookie-banner {
    display: none;
  }

  .motion-enabled body.is-loaded .hero__content > *,
  .motion-enabled body.is-loaded .hero-collage__main,
  .motion-enabled body.is-loaded .hero-internal__media,
  .motion-enabled [data-reveal] {
    opacity: 1;
    animation: none;
    transform: none;
    transition: none;
  }

  .motion-enabled body.is-loaded .project-showcase.is-motion-active::after {
    animation: none;
  }
}
