:root {
  --paper: #f7f6f2;
  --paper-deep: #efeee8;
  --white: #fff;
  --ink: #132634;
  --muted: #60707a;
  --line: #d9ddd9;
  --navy: #0d2c3c;
  --navy-soft: #163e51;
  --blue-pale: #e8f0f2;
  --accent: #b95835;
  --accent-pale: #f1e3db;
  --max-width: 1260px;
  --shadow: 0 18px 55px rgba(15, 40, 51, 0.11);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 30px;
  font-size: clamp(3.4rem, 6vw, 6.7rem);
  font-weight: 500;
}

h1 em {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4vw, 4.35rem);
  font-weight: 500;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.container {
  width: min(calc(100% - 64px), var(--max-width));
  margin-inline: auto;
}

.hero-grid > *,
.split-layout > *,
.execution-grid > *,
.reach-grid > *,
.company-grid > *,
.faq-grid > *,
.contact-shell > *,
.service-grid > *,
.process-grid > * {
  min-width: 0;
}

.section {
  padding: 132px 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
}

.skip-link:focus {
  transform: none;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--navy);
  border-radius: 2px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.75rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.text-link span {
  color: var(--accent);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 78px;
  border-bottom: 1px solid transparent;
  background: rgba(247, 246, 242, 0.88);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(15, 40, 51, 0.05);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

.brand-mark {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-size: 1.05rem;
  letter-spacing: 0.14em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.26em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.desktop-nav a {
  color: #3f535e;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.desktop-nav a:hover {
  color: var(--accent);
}

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

.hero {
  min-height: 835px;
  padding: 126px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  min-height: 650px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 54px 12px 34px 0;
}

.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-copy .eyebrow span {
  width: 26px;
  height: 1px;
  background: var(--accent);
}

.hero-intro {
  max-width: 590px;
  margin-bottom: 34px;
  color: #465c67;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 570px;
  margin-top: 62px;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  display: grid;
  gap: 4px;
  padding: 18px 16px 0 0;
}

.hero-facts span {
  color: #73818a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-facts strong {
  font-size: 0.96rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  height: 660px;
}

.hero-visual::before {
  position: absolute;
  inset: 0 0 0 -11%;
  z-index: 1;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(247, 246, 242, 0.74) 23%, transparent 49%);
  content: "";
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% center;
}

.hero-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  width: min(340px, calc(100% - 56px));
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.hero-note strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  margin-top: 5px;
  border-radius: 50%;
  background: #4a8b74;
  box-shadow: 0 0 0 4px rgba(74, 139, 116, 0.13);
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.trust-list p {
  margin: 0;
  color: #52656f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-list span {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 50%;
  background: var(--accent);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.42fr;
  align-items: start;
  gap: 90px;
}

.section-heading p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.03rem;
}

.sticky-heading {
  position: sticky;
  top: 125px;
}

.sticky-heading .text-link {
  margin-top: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 285px;
  padding: 38px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.service-card > span {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #9ba5aa;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  border: 1px solid #d8c0b5;
  background: var(--accent-pale);
}

.service-icon svg {
  width: 24px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.execution {
  padding: 0;
  background: var(--white);
}

.execution-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 725px;
}

.execution-image {
  position: relative;
  min-height: 725px;
  margin-left: calc((100vw - min(calc(100vw - 64px), var(--max-width))) / -2);
}

.execution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% center;
}

.image-label {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  max-width: 390px;
  padding: 24px 28px;
  background: var(--paper);
}

.image-label span {
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.image-label strong {
  font-size: 0.92rem;
}

.execution-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 72px 80px;
}

.execution-copy > p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
}

.check-list {
  display: grid;
  margin: 26px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.check-list li > span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
}

.check-list strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.check-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.process {
  background: var(--navy);
  color: var(--white);
}

.centered-heading {
  max-width: 710px;
  margin: 0 auto 76px;
  text-align: center;
}

.centered-heading p:not(.eyebrow) {
  margin-inline: auto;
  color: #aebbc1;
}

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

.process-grid article {
  min-height: 270px;
  padding-right: 32px;
}

.step-number {
  color: #d9a38f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.step-line {
  position: relative;
  height: 1px;
  margin: 28px 0 34px;
  background: #3c5966;
}

.step-line::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.process-grid h3 {
  margin-bottom: 17px;
  letter-spacing: -0.015em;
}

.process-grid p {
  margin: 0;
  color: #aebbc1;
  font-size: 0.86rem;
}

.reach {
  background: var(--paper-deep);
}

.reach-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 78px;
}

.reach-copy > p:not(.eyebrow, .fine-print) {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.03rem;
}

.reach-points {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid #d0d4d0;
}

.reach-points div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  padding: 17px 0;
  border-bottom: 1px solid #d0d4d0;
}

.reach-points strong {
  font-size: 0.83rem;
}

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

.fine-print {
  margin: 22px 0 0;
  color: #7c898f;
  font-size: 0.72rem;
}

.network-map {
  border: 1px solid #d6dad6;
  background: rgba(255, 255, 255, 0.5);
}

.network-map svg {
  width: 100%;
}

.map-land {
  fill: #eef0ec;
  stroke: #c7cfcc;
  stroke-width: 1.2;
}

.map-routes {
  fill: none;
  stroke: var(--accent);
  stroke-dasharray: 4 5;
  stroke-width: 1.3;
}

.map-points {
  fill: var(--paper);
  stroke: var(--accent);
  stroke-width: 2;
}

.map-hub circle:first-child {
  fill: rgba(185, 88, 53, 0.16);
}

.map-hub circle:last-child {
  fill: var(--accent);
}

.network-map text {
  fill: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.network-map text:last-child {
  fill: var(--muted);
  font-size: 7px;
}

.compliance {
  background: var(--white);
}

.compliance-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 52px;
  padding: 72px;
  border: 1px solid #c8d7dc;
  background: var(--blue-pale);
}

.compliance-symbol {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--white);
}

.compliance-symbol svg {
  width: 64px;
  fill: none;
  stroke: var(--navy-soft);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.compliance-card h2 {
  max-width: 840px;
}

.compliance-card > div:last-child > p:not(.eyebrow, .compliance-note) {
  max-width: 900px;
  color: #405a66;
  font-size: 1.03rem;
}

.compliance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 24px;
}

.compliance-tags span {
  padding: 8px 12px;
  border: 1px solid #bbccd2;
  background: rgba(255, 255, 255, 0.55);
  color: #344f5c;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.compliance-note {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid #c4d4d9;
  color: #5c717a;
  font-size: 0.76rem;
}

.company {
  background: var(--paper);
}

.company-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.company-copy .lead {
  margin-bottom: 24px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.45;
}

.company-copy > p:not(.lead) {
  max-width: 650px;
  color: var(--muted);
}

.company-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 48px 0 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.company-details div {
  padding: 21px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-details dt {
  margin-bottom: 5px;
  color: #7b898f;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.company-details dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.faq {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 100px;
}

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

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0;
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.accordion summary span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.accordion summary span::before,
.accordion summary span::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.accordion summary span::after {
  transform: rotate(90deg);
}

.accordion details[open] summary span::after {
  display: none;
}

.accordion details p {
  max-width: 690px;
  margin: -6px 48px 26px 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.contact {
  padding-bottom: 80px;
  background: var(--paper);
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 80px;
  padding: 76px;
  background: var(--navy);
  color: var(--white);
}

.contact-copy {
  padding-right: 20px;
}

.contact-copy > p:not(.eyebrow) {
  color: #b5c0c5;
}

.contact-copy address {
  margin: 50px 0 20px;
  color: #dfe5e7;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.7;
}

.contact-copy address span {
  display: block;
  margin-bottom: 8px;
  color: #82969f;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.light-link {
  color: var(--white);
}

.enquiry-form {
  display: grid;
  gap: 18px;
  padding: 38px;
  background: var(--white);
  color: var(--ink);
}

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

.enquiry-form label {
  display: grid;
  gap: 8px;
}

.enquiry-form label > span {
  color: #62747d;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #d6dcda;
  border-radius: 0;
  outline: none;
  background: #fbfbf9;
  color: var(--ink);
}

.enquiry-form textarea {
  min-height: 110px;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: #52717f;
  box-shadow: 0 0 0 3px rgba(82, 113, 127, 0.1);
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 11px !important;
}

.consent input {
  width: 16px;
  min-height: 16px;
  margin: 3px 0 0;
  accent-color: var(--accent);
}

.consent span {
  font-size: 0.67rem !important;
  font-weight: 500 !important;
  line-height: 1.55;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.button-light {
  width: 100%;
  margin-top: 2px;
}

.form-note,
.form-status {
  margin: -4px 0 0;
  color: #7b898f;
  font-size: 0.66rem;
  line-height: 1.45;
}

.form-status {
  min-height: 1em;
  color: #367258;
  font-weight: 600;
}

.site-footer {
  padding: 70px 0 28px;
  border-top: 1px solid var(--line);
  background: #f0efe9;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.7fr 1fr 0.8fr;
  align-items: start;
  gap: 70px;
  padding-bottom: 62px;
}

.footer-main > p {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.5;
}

.footer-main nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
}

.footer-main nav a {
  color: #53656e;
  font-size: 0.75rem;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid #d4d7d3;
}

.footer-bottom p {
  margin: 0;
  color: #718087;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
}

.enquiry-dialog {
  width: min(680px, calc(100% - 32px));
  padding: 42px;
  border: 0;
  box-shadow: 0 24px 90px rgba(9, 30, 40, 0.28);
  color: var(--ink);
}

.enquiry-dialog::backdrop {
  background: rgba(9, 30, 40, 0.58);
  backdrop-filter: blur(3px);
}

.enquiry-dialog h2 {
  font-size: 2.25rem;
}

.enquiry-dialog > p:not(.eyebrow) {
  color: var(--muted);
}

.enquiry-dialog pre {
  overflow: auto;
  max-height: 280px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 17px;
  }

  .hero-grid {
    grid-template-columns: minmax(390px, 0.92fr) minmax(440px, 1.08fr);
  }

  .split-layout {
    gap: 56px;
  }

  .execution-copy {
    padding-left: 55px;
  }

  .contact-shell {
    gap: 48px;
    padding: 58px;
  }
}

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

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: grid;
    place-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--ink);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 78px 0 0;
    z-index: 99;
    display: none;
    align-content: start;
    padding: 38px 32px;
    background: var(--paper);
  }

  .mobile-menu.open {
    display: grid;
  }

  .mobile-menu a:not(.button) {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.15rem;
  }

  .mobile-menu .button {
    margin-top: 28px;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

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

  .hero-copy {
    padding: 34px 0 48px;
  }

  .hero-visual {
    height: 580px;
  }

  .hero-visual::before {
    display: none;
  }

  .split-layout,
  .execution-grid,
  .reach-grid,
  .company-grid,
  .faq-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }

  .execution-grid {
    width: 100%;
  }

  .execution-image {
    min-height: 600px;
    margin-left: 0;
  }

  .execution-copy {
    padding: 80px 32px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 0;
  }

  .reach-grid,
  .company-grid,
  .faq-grid {
    gap: 52px;
  }

  .network-map {
    max-width: 760px;
  }

  .compliance-card {
    grid-template-columns: 1fr;
  }

  .contact-shell {
    gap: 48px;
  }

  .contact-copy {
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 36px), var(--max-width));
  }

  .section {
    padding: 88px 0;
  }

  .site-header {
    height: 68px;
  }

  .mobile-menu {
    inset: 68px 0 0;
  }

  h1 {
    font-size: clamp(3.05rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
  }

  .hero {
    padding-top: 88px;
  }

  .hero-copy {
    padding-top: 28px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

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

  .hero-facts {
    margin-top: 48px;
  }

  .hero-facts div {
    padding-right: 6px;
  }

  .hero-facts strong {
    font-size: 0.8rem;
  }

  .hero-visual {
    height: 460px;
    margin-inline: -18px;
  }

  .hero-visual img {
    object-position: 61% center;
  }

  .hero-note {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .trust-list {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .trust-list p {
    padding: 0 3px;
  }

  .split-layout {
    gap: 46px;
  }

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

  .service-card {
    min-height: 245px;
    padding: 30px 28px;
  }

  .execution-image {
    min-height: 480px;
  }

  .execution-image img {
    object-position: 47% center;
  }

  .image-label {
    right: 18px;
    left: 18px;
  }

  .execution-copy {
    padding: 72px 18px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .process-grid article {
    min-height: auto;
    padding-right: 0;
  }

  .centered-heading {
    margin-bottom: 58px;
    text-align: left;
  }

  .centered-heading p:not(.eyebrow) {
    margin-left: 0;
  }

  .reach-points div {
    grid-template-columns: 90px 1fr;
  }

  .network-map {
    overflow: hidden;
  }

  .network-map svg {
    width: 135%;
    max-width: none;
    transform: translateX(-15%);
  }

  .compliance-card {
    gap: 36px;
    padding: 38px 26px;
  }

  .compliance-symbol {
    width: 82px;
    height: 82px;
  }

  .compliance-symbol svg {
    width: 46px;
  }

  .company-details {
    grid-template-columns: 1fr;
  }

  .accordion summary {
    font-size: 0.88rem;
  }

  .contact {
    padding-bottom: 0;
  }

  .contact-shell {
    width: 100%;
    padding: 62px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .enquiry-form {
    padding: 28px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .enquiry-dialog {
    padding: 36px 22px 26px;
  }
}

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

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