:root {
  --ink: #000000;
  --ink-soft: #0d0e10;
  --menu-bg: #111216;
  --paper: #ffffff;
  --text: #f5f6f8;
  --muted: #b9bdc6;
  --body-text: #1d2026;
  --header-expanded: 80px;
  --header-compact: 65px;
  --hero-height: 480px;
  --page-gutter: clamp(24px, 4vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body-text);
  background: var(--paper);
  font-family: Manrope, Inter, "Segoe UI", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid #27c7ff;
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-expanded);
  color: var(--text);
  background: var(--menu-bg);
  transition: height 260ms ease, box-shadow 260ms ease;
}

.site-header.is-compact {
  height: var(--header-compact);
  box-shadow: 0 8px 28px rgb(0 0 0 / 0.28);
}

.nav-shell {
  position: relative;
  z-index: 42;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 var(--page-gutter);
  overflow: visible;
}

.brand {
  position: absolute;
  z-index: 43;
  top: 0;
  left: var(--page-gutter);
  display: block;
  width: min(448px, 33vw);
  transition: width 260ms ease, top 260ms ease;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header.is-compact .brand {
  top: 0;
  width: min(253px, 28vw);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 58px);
  padding-left: min(448px, 33vw);
}

.desktop-nav a {
  position: relative;
  padding: 16px 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 7px;
  height: 3px;
  background: linear-gradient(90deg, #18bfff, #23dc88, #ffe23b, #ff2f89);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  z-index: 2;
  height: var(--hero-height);
  overflow: hidden;
  color: var(--text);
  background: var(--ink);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  visibility: hidden;
  opacity: 0;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: min(1200px, 100vw);
  height: 480px;
  object-fit: contain;
  object-position: right top;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(760px, 58vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 22px 0 62px var(--page-gutter);
  text-shadow: 0 2px 18px rgb(0 0 0 / 0.85);
}

.hero-eyebrow,
.section-eyebrow {
  margin: 0 0 13px;
  color: #37d4f7;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-slide:nth-child(1) .hero-eyebrow {
  color: #24c8ff;
}

.hero-slide:nth-child(2) .hero-eyebrow {
  color: #ff365f;
}

.hero-slide:nth-child(3) .hero-eyebrow {
  color: #a970ff;
}

.hero-slide:nth-child(4) .hero-eyebrow {
  color: #ffb31f;
}

.hero-slide:nth-child(5) .hero-eyebrow {
  color: #35d68a;
}

.hero-slide:nth-child(6) .hero-eyebrow {
  color: #ff3b9d;
}

.hero-slide:nth-child(7) .hero-eyebrow {
  color: #48d6d1;
}

.hero-copy h1,
.hero-copy h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy > p:not(.hero-eyebrow) {
  max-width: 590px;
  margin: 20px 0 0;
  color: #e6e7eb;
  font-size: 19px;
  line-height: 1.55;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #fff;
  background:
    linear-gradient(var(--ink-soft), var(--ink-soft)) padding-box,
    linear-gradient(90deg, #18bfff, #24dd8a, #ffe23a, #ff2f89) border-box;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.hero-cta span {
  font-size: 21px;
  transition: transform 180ms ease;
}

.hero-cta:hover span {
  transform: translateX(4px);
}

.hero-controls {
  position: absolute;
  z-index: 5;
  right: var(--page-gutter);
  bottom: 34px;
  display: flex;
  gap: 10px;
}

.hero-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid rgb(255 255 255 / 0.42);
  border-radius: 50%;
  color: #fff;
  background: rgb(0 0 0 / 0.45);
  font-size: 22px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.hero-controls button:hover {
  border-color: #fff;
  background: rgb(0 0 0 / 0.78);
}

.hero-divider {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 0;
  pointer-events: none;
}

.hero-divider img {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 100vw;
  height: auto;
  transform: translate(-50%, -58%);
}

.service-preview {
  position: relative;
  z-index: 1;
  min-height: 560px;
  padding: 112px var(--page-gutter) 90px;
  background: #fff;
}

.section-inner {
  width: min(1460px, 100%);
  margin: 0 auto;
}

.section-eyebrow {
  color: #e71b78;
  text-align: center;
}

.service-preview h2 {
  margin: 0 0 38px;
  color: #12141a;
  font-size: 34px;
  line-height: 1.15;
  text-align: center;
  letter-spacing: 0;
}

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

.service-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e0e2e7;
  border-radius: 6px;
  color: #14161b;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgb(18 24 40 / 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgb(18 24 40 / 0.13);
}

.service-tile img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
}

.service-tile span {
  display: block;
  padding: 20px 52px 0 18px;
  font-size: 16px;
  font-weight: 800;
}

.service-tile p {
  margin: 0;
  padding: 12px 52px 28px 18px;
  color: #5a5f69;
  font-size: 14px;
  line-height: 1.55;
}

.service-tile::after {
  content: "\2192";
  position: absolute;
  right: 18px;
  bottom: 20px;
  color: #252830;
  font-size: 21px;
  line-height: 1;
  transition: transform 180ms ease, color 180ms ease;
}

.service-tile:hover::after,
.service-tile:focus-visible::after {
  color: #e71b78;
  transform: translateX(4px);
}

.service-hero {
  position: relative;
  z-index: 2;
  height: 350px;
  overflow: hidden;
  color: #fff;
  background: #000;
}

.service-hero-image {
  position: absolute;
  top: 50%;
  right: 0;
  width: min(1200px, 100vw);
  height: auto;
  object-fit: contain;
  object-position: right top;
  transform: translateY(-50%);
}

.service-hero-image.hero-five-two {
  width: min(875px, 72.92vw);
}

.service-hero-image.hero-three-two {
  width: min(525px, 43.75vw);
}

.service-hero-copy {
  position: relative;
  z-index: 3;
  width: min(720px, 58vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 0 30px var(--page-gutter);
  text-shadow: 0 2px 18px rgb(0 0 0 / 0.8);
}

.service-hero-copy .hero-eyebrow {
  color: #ff365f;
}

.service-hero-copy h1 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: 45px;
  line-height: 1.02;
  letter-spacing: 0;
}

.service-hero-copy > p:not(.hero-eyebrow) {
  max-width: 560px;
  margin: 14px 0 0;
  color: #e4e5e9;
  font-size: 17px;
  line-height: 1.45;
}

.service-hero-copy .hero-cta {
  margin-top: 20px;
}

.service-content {
  background: #fff;
}

.service-intro,
.service-band-inner,
.service-columns,
.service-note,
.related-services,
.service-enquiry {
  width: min(1320px, calc(100% - (2 * var(--page-gutter))));
  margin: 0 auto;
}

.service-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
  padding: 112px 0 94px;
}

.text-left {
  text-align: left;
}

.service-intro h2,
.service-copy-block h2,
.service-note h2,
.related-services h2,
.service-enquiry h2 {
  margin: 0;
  color: #14161b;
  font-size: 36px;
  line-height: 1.16;
  letter-spacing: 0;
}

.service-intro > p {
  margin: 27px 0 0;
  color: #4c515b;
  font-size: 19px;
  line-height: 1.75;
}

.service-band {
  padding: 82px 0;
  color: #17191e;
  background: #f1f2f4;
}

.service-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(55px, 9vw, 150px);
  align-items: center;
}

.section-kicker {
  margin: 0 0 12px;
  color: #3ed5f1;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-copy-block h2 {
  color: #17191e;
}

.service-copy-block > p:last-child {
  max-width: 590px;
  margin: 20px 0 0;
  color: #50555f;
  font-size: 17px;
  line-height: 1.7;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #cdd1d7;
}

.service-list li {
  position: relative;
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 14px 16px 14px 31px;
  border-bottom: 1px solid #cdd1d7;
  color: #24272d;
  font-weight: 650;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  width: 12px;
  height: 3px;
  background: linear-gradient(90deg, #1bc7ff, #31df8a, #ffe13a, #ff337f);
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 94px 0;
  border-bottom: 1px solid #dedfe3;
}

.service-column {
  min-height: 225px;
  padding: 0 clamp(24px, 4vw, 60px);
  border-right: 1px solid #dedfe3;
}

.service-column:first-child {
  padding-left: 0;
}

.service-column:last-child {
  padding-right: 0;
  border-right: 0;
}

.service-number {
  display: block;
  margin-bottom: 32px;
  color: #ec267c;
  font-size: 15px;
  font-weight: 850;
}

.service-column h2 {
  margin: 0;
  color: #16181d;
  font-size: 24px;
  line-height: 1.2;
}

.service-column p {
  margin: 17px 0 0;
  color: #5a5f69;
  font-size: 16px;
  line-height: 1.65;
}

.service-note {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 130px);
  padding: 92px 0;
}

.service-note > div:last-child {
  padding-top: 23px;
}

.service-note > div:last-child p {
  margin: 0 0 18px;
  color: #50555f;
  font-size: 17px;
  line-height: 1.7;
}

.related-services {
  padding: 88px 0 96px;
  border-top: 1px solid #dedfe3;
}

.related-services > .section-eyebrow,
.related-services > h2 {
  text-align: center;
}

.related-services h2 {
  margin-bottom: 38px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.related-grid a {
  overflow: hidden;
  border: 1px solid #dfe1e5;
  border-radius: 6px;
  color: #17191e;
  background: #fff;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.related-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgb(18 24 40 / 0.12);
}

.related-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.related-grid span {
  display: block;
  padding: 19px 20px 21px;
  font-weight: 800;
}

.service-enquiry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 68px 0;
  color: #17191e;
  background: #fff;
  border-top: 1px solid #dedfe3;
}

.service-enquiry h2 {
  color: #17191e;
  font-size: 34px;
}

.dark-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 14px 19px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #17191e;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #18bfff, #24dd8a, #ffe23a, #ff2f89) border-box;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.page-hero {
  position: relative;
  z-index: 2;
  min-height: 260px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #18191d;
}

.page-hero-inner {
  width: min(1320px, calc(100% - (2 * var(--page-gutter))));
  margin: 0 auto;
  padding: 58px 0 72px;
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 48px;
  line-height: 1.04;
  letter-spacing: 0;
}

.page-hero p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
  color: #d7d9df;
  font-size: 18px;
  line-height: 1.6;
}

.page-content {
  width: min(1320px, calc(100% - (2 * var(--page-gutter))));
  margin: 0 auto;
  padding: 105px 0 95px;
}

.page-content > section + section {
  margin-top: 90px;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 130px);
}

.content-split h2,
.gallery-section h2,
.contact-section h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.16;
}

.content-split p,
.contact-section p {
  margin: 0 0 18px;
  color: #50555f;
  font-size: 17px;
  line-height: 1.72;
}

.value-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #dedfe3;
  border: 1px solid #dedfe3;
}

.value-grid article,
.contact-grid article {
  min-height: 190px;
  padding: 30px;
  background: #fff;
}

.value-grid h3,
.contact-grid h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.value-grid p,
.contact-grid p {
  margin: 0;
  color: #5a5f69;
  line-height: 1.65;
}

.contact-grid a,
.address-link {
  color: #24272d;
  font-weight: 750;
  text-decoration-color: #e71b78;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact-grid a:hover,
.address-link:hover {
  color: #e71b78;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid #e0e2e7;
  border-radius: 6px;
  background: #fff;
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 18px 20px;
  font-weight: 800;
}

.temporary-tile-image {
  object-fit: contain !important;
  background: #111216;
}

.map-embed {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid #dedfe3;
  border-radius: 6px;
  background: #f1f2f4;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}

.map-embed > a {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  border-radius: 4px;
  color: #fff;
  background: rgb(17 18 22 / 0.92);
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 4px 16px rgb(0 0 0 / 0.22);
}

.map-embed > a span {
  margin-left: 10px;
  font-size: 20px;
  transition: transform 180ms ease;
}

.map-embed > a:hover {
  color: #ff4ca0;
}

.map-embed > a:hover span {
  transform: translateX(4px);
}

.site-footer {
  color: #9da1aa;
  background: #08090b;
  text-align: center;
}

.footer-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #18bfff, #24dd8a, #ffe23a, #ff2f89);
}

.site-footer p {
  margin: 0;
  padding: 13px 20px 15px;
  font-size: 12px;
}

@media (max-width: 1100px) {
  :root {
    --header-expanded: 80px;
  }

  .brand {
    width: min(314px, 44vw);
  }

  .desktop-nav {
    gap: 25px;
    padding-left: min(314px, 44vw);
  }

  .hero-copy {
    width: 64vw;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 48px;
  }

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

  .service-hero-copy {
    width: 64vw;
  }

  .service-hero-copy h1 {
    font-size: 40px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-expanded: 80px;
    --header-compact: 65px;
  }

  .site-header {
    position: sticky;
  }

  .nav-shell {
    padding: 0 20px;
  }

  .brand,
  .site-header.is-compact .brand {
    top: 0;
    left: 18px;
    width: min(80vw, 520px);
  }

  .site-header.is-compact .brand {
    width: min(64vw, 300px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 45;
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 220ms ease, opacity 160ms ease;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 40;
    inset: 0;
    display: block;
    visibility: hidden;
    background: #08090b;
    transform: translateX(100%);
    transition: transform 280ms ease, visibility 280ms ease;
  }

  .mobile-menu.is-open {
    visibility: visible;
    transform: translateX(0);
  }

  .mobile-menu-links {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 30px;
    padding: 125px 30px 50px;
  }

  .mobile-menu a {
    position: relative;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-menu a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9px;
    width: 58px;
    height: 3px;
    background: linear-gradient(90deg, #18bfff, #24dd8a, #ffe23a, #ff2f89);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
  }

  .mobile-menu a:hover::after,
  .mobile-menu a:focus-visible::after {
    transform: scaleX(1);
  }

  .hero {
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  .hero-slides {
    position: relative;
    height: auto;
  }

  .hero-slide {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    display: grid;
    grid-template-rows: auto auto;
    background: var(--ink);
  }

  .hero-slide.is-active {
    position: relative;
  }

  .hero-image {
    position: relative;
    grid-row: 2;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero-copy {
    grid-row: 1;
    width: 100%;
    height: auto;
    min-height: 330px;
    padding: 46px 24px 42px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 42px;
  }

  .hero-copy > p:not(.hero-eyebrow) {
    max-width: 520px;
    font-size: 17px;
  }

  .hero-controls {
    right: 20px;
    bottom: 18px;
  }

  .hero-controls button {
    width: 42px;
    height: 42px;
  }

  .hero-divider img {
    transform: translate(-50%, -55%);
  }

  .service-preview {
    padding: 76px 20px 70px;
  }

  .service-preview h2 {
    font-size: 30px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .service-hero {
    height: auto;
    display: grid;
    grid-template-rows: auto auto;
  }

  .service-hero-image {
    position: relative;
    grid-row: 2;
    top: auto;
    width: 100%;
    height: auto;
    transform: none;
  }

  .service-hero-image.hero-five-two {
    width: 100%;
  }

  .service-hero-image.hero-three-two {
    width: 100%;
  }

  .service-hero-copy {
    grid-row: 1;
    width: 100%;
    min-height: 315px;
    padding: 42px 24px 45px;
  }

  .service-hero-copy h1 {
    font-size: 38px;
  }

  .service-intro,
  .service-band-inner,
  .service-note {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-intro {
    padding: 82px 0 65px;
  }

  .service-intro h2,
  .service-copy-block h2,
  .service-note h2,
  .related-services h2 {
    font-size: 30px;
  }

  .service-intro > p {
    margin-top: 0;
    font-size: 17px;
  }

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

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

  .service-columns {
    grid-template-columns: 1fr;
    padding: 65px 0;
  }

  .service-column,
  .service-column:first-child,
  .service-column:last-child {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid #dedfe3;
  }

  .service-column:last-child {
    border-bottom: 0;
  }

  .service-number {
    margin-bottom: 18px;
  }

  .service-note {
    padding: 65px 0;
  }

  .service-note > div:last-child {
    padding-top: 0;
  }

  .related-services {
    padding: 65px 0 70px;
  }

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

  .service-enquiry {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 55px 24px;
  }

  .page-hero {
    min-height: 230px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .page-content {
    padding: 80px 0 70px;
  }

  .content-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .content-split h2,
  .gallery-section h2,
  .contact-section h2 {
    font-size: 30px;
  }

  .value-grid,
  .contact-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-copy {
    min-height: 360px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 37px;
  }

  .hero-cta {
    font-size: 14px;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
