:root {
  --ink: #151515;
  --ink-soft: #3e403b;
  --paper: #f8f8f4;
  --white: #ffffff;
  --line: #d9ddd2;
  --lime: #c9f24a;
  --teal: #007a76;
  --copper: #c65f32;
  --mist: #eef2ed;
  --charcoal: #20211f;
  --shadow: 0 24px 60px rgba(21, 21, 21, 0.16);
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Sora", "Manrope", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 16px 36px;
  color: var(--white);
  background: rgba(15, 15, 15, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(248, 248, 244, 0.92);
  border-color: rgba(21, 21, 21, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.72;
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.86;
  transition: opacity 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.nav-cta {
  padding: 0 16px;
  color: var(--ink);
  background: var(--lime);
}

.nav-cta svg,
.button svg,
.service-card svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  color: var(--white);
  background: var(--charcoal);
}

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

.hero-media span {
  background-image: var(--bg);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: heroImageFade 24s infinite;
}

.hero-media span:nth-child(2) {
  animation-delay: 8s;
}

.hero-media span:nth-child(3) {
  animation-delay: 16s;
}

.hero-media::after {
  content: "";
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.86),
    rgba(10, 10, 10, 0.48) 58%,
    rgba(10, 10, 10, 0.72)
  );
}

@keyframes heroImageFade {
  0%,
  100% {
    opacity: 0;
    transform: scale(1.04);
  }

  8%,
  34% {
    opacity: 1;
  }

  42% {
    opacity: 0;
    transform: scale(1.11);
  }
}

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

  .hero-media span:first-child {
    opacity: 1;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.28;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 52px;
  width: min(1180px, calc(100% - 48px));
  min-height: inherit;
  margin: 0 auto;
  padding: 142px 0 72px;
  align-items: end;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.route-copy h2,
.enquiry h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.98;
  font-weight: 850;
}

.hero h1 {
  max-width: 760px;
  font-size: 5.5rem;
}

.hero-slogan {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.48rem;
  font-weight: 850;
  line-height: 1.25;
}

.hero-lede {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.34rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-width: 182px;
  padding: 0 20px;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.route-console {
  align-self: end;
  padding: 24px;
  color: var(--white);
  background: rgba(21, 21, 21, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.console-topline,
.console-flow,
.console-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.console-topline {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.console-topline span:last-child {
  color: var(--ink);
  background: var(--lime);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
}

.console-flow {
  min-height: 86px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 800;
}

.console-flow svg {
  width: 18px;
}

.console-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.console-list div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.console-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.console-list dt,
.console-list dd {
  margin: 0;
}

.console-list dt {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.console-list dd {
  max-width: 190px;
  text-align: right;
  font-weight: 750;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, calc(100% - 48px));
  margin: -50px auto 0;
  position: relative;
  z-index: 3;
  background: var(--white);
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.metric {
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric span {
  display: block;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 880;
  line-height: 1;
}

.metric p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0;
}

.intro {
  padding-top: 120px;
  padding-bottom: 96px;
}

.intro-grid,
.section-heading,
.route-inner,
.enquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 58px;
  align-items: start;
}

.section h2,
.route-copy h2,
.enquiry h2 {
  font-size: 3.45rem;
}

.intro-grid p,
.section-heading p,
.route-copy p,
.enquiry-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.78;
}

.intro-grid p {
  padding-top: 8px;
}

.network,
.deliverables,
.qualification,
.categories,
.standards,
.feedback,
.faq {
  border-top: 1px solid var(--line);
}

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

.office-grid,
.service-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.deliverables-grid,
.criteria-grid,
.category-grid,
.feedback-grid {
  display: grid;
  gap: 18px;
}

.deliverables-grid {
  grid-template-columns: 1.15fr repeat(3, minmax(0, 0.75fr));
}

.deliverable-card,
.criteria-item,
.category-card,
.feedback-card,
.trust-panel,
.faq-list details {
  background: var(--white);
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 8px;
}

.deliverable-card {
  min-height: 310px;
  padding: 26px;
}

.deliverable-lead {
  color: var(--white);
  background: var(--charcoal);
}

.deliverable-card > span,
.process-step span {
  color: var(--copper);
  font-size: 0.86rem;
  font-weight: 850;
}

.deliverable-lead h3,
.deliverable-card h3,
.criteria-item h3,
.category-card h3,
.trust-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.deliverable-card > span + h3 {
  margin-top: 18px;
}

.deliverable-card p,
.criteria-item p,
.category-card p,
.trust-panel p,
.faq-list p {
  color: var(--ink-soft);
  line-height: 1.62;
}

.deliverable-lead p,
.deliverable-lead .check-list {
  color: rgba(255, 255, 255, 0.78);
}

.deliverable-card p {
  margin: 14px 0 0;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.52;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--lime);
  border-radius: 999px;
  transform: translateY(-50%);
}

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

.criteria-item {
  min-height: 180px;
  padding: 24px;
}

.criteria-item span {
  display: block;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 850;
}

.criteria-item p {
  margin: 14px 0 0;
}

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

.office-card,
.service-card,
.process-step {
  background: var(--white);
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.office-card img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
}

.office-content {
  padding: 24px;
}

.office-content > span,
.route-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: var(--teal);
  background: rgba(0, 122, 118, 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 820;
}

.office-content h3,
.service-card h3,
.process-step h3,
.route-details h3 {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.2;
}

.office-content p,
.service-card p,
.process-step p,
.route-details p,
.route-details li {
  color: var(--ink-soft);
  line-height: 1.6;
}

.office-content p,
.service-card p,
.process-step p {
  margin: 12px 0 0;
}

.office-contact {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-style: normal;
}

.office-contact a,
.office-contact div {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.office-contact a {
  transition: color 160ms ease;
}

.office-contact a:hover,
.office-contact a:focus-visible {
  color: var(--teal);
}

.office-contact svg {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--teal);
  stroke-width: 2.2;
}

.services {
  width: 100%;
  padding-left: max(24px, calc((100% - 1180px) / 2));
  padding-right: max(24px, calc((100% - 1180px) / 2));
  background: var(--mist);
}

.services .section-heading {
  width: 100%;
}

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

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

.service-card svg {
  width: 34px;
  height: 34px;
  color: var(--copper);
}

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

.category-card {
  min-height: 248px;
  padding: 26px;
}

.category-card svg {
  width: 32px;
  height: 32px;
  color: var(--teal);
  stroke-width: 2;
}

.category-card h3 {
  margin-top: 22px;
}

.category-card p {
  margin: 12px 0 0;
}

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

.feedback-card {
  min-height: 342px;
  padding: 28px;
}

.feedback-card svg {
  width: 32px;
  height: 32px;
  color: var(--copper);
  stroke-width: 2;
}

.feedback-card blockquote {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 760;
  line-height: 1.45;
}

.feedback-card p {
  margin: 22px 0 0;
  padding-top: 18px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  line-height: 1.58;
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: 34px;
  margin-top: 18px;
  padding: 34px;
  background: var(--charcoal);
  color: var(--white);
}

.trust-panel p,
.trust-panel .check-list {
  color: rgba(255, 255, 255, 0.74);
}

.trust-panel p {
  margin: 14px 0 0;
}

.route-studio {
  color: var(--white);
  background: var(--charcoal);
}

.route-inner {
  align-items: center;
}

.route-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 24px;
}

.route-panel {
  padding: 22px;
  background: #f5f5ef;
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.route-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  background: #e4e8df;
  border-radius: 8px;
}

.route-tab {
  min-height: 44px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
}

.route-tab.is-active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 6px 18px rgba(21, 21, 21, 0.08);
}

.route-map {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 136px;
  margin-top: 18px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-node {
  display: inline-flex;
  min-width: 116px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 8px;
  font-weight: 850;
  text-align: center;
}

.map-destination {
  background: var(--ink);
  color: var(--white);
}

.map-line {
  position: relative;
  display: block;
  height: 2px;
  background: var(--line);
}

.map-line::before,
.map-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--copper);
  border-radius: 999px;
  transform: translateY(-50%);
}

.map-line::before {
  left: 18%;
}

.map-line::after {
  right: 18%;
}

.route-details {
  margin-top: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.route-details p:not(.route-label) {
  margin: 14px 0 0;
}

.route-details ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 20px;
}

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

.process-step {
  min-height: 270px;
  padding: 26px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 0 24px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 820;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  font-weight: 850;
}

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

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  max-width: 880px;
}

.enquiry {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 96px;
  padding: 54px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}

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

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

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

.enquiry-form span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 760;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  outline: none;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--lime);
}

.enquiry-form select option {
  color: var(--ink);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--lime);
  font-weight: 750;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(24px, calc((100% - 1180px) / 2));
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--ink-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink-soft);
}

.footer-links a {
  display: grid;
  gap: 4px;
  min-width: 128px;
}

.footer-links strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.footer-links span {
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 24px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero-inner,
  .intro-grid,
  .section-heading,
  .route-inner,
  .enquiry {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
  }

  .hero-inner {
    padding-top: 132px;
    align-items: center;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .route-console {
    max-width: 520px;
  }

  .metrics,
  .office-grid,
  .service-grid,
  .process-grid,
  .deliverables-grid,
  .criteria-grid,
  .category-grid,
  .feedback-grid {
    grid-template-columns: 1fr 1fr;
  }

  .deliverable-lead {
    grid-column: 1 / -1;
  }

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

  .metrics {
    margin-top: 0;
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .section h2,
  .route-copy h2,
  .enquiry h2 {
    font-size: 2.75rem;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 72px;
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    top: 72px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-inner,
  .section,
  .metrics,
  .enquiry {
    width: min(100% - 32px, 1180px);
  }

  .hero-inner {
    gap: 34px;
    padding-bottom: 54px;
  }

  .route-console {
    display: none;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .hero-slogan {
    font-size: 1.2rem;
  }

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

  .metrics,
  .office-grid,
  .service-grid,
  .process-grid,
  .deliverables-grid,
  .criteria-grid,
  .category-grid,
  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .deliverable-card,
  .criteria-item,
  .category-card,
  .feedback-card,
  .process-step {
    min-height: auto;
  }

  .trust-panel {
    padding: 26px;
  }

  .faq-list summary {
    min-height: 64px;
    padding: 0 18px;
    font-size: 1rem;
  }

  .faq-list p {
    padding: 0 18px 20px;
  }

  .metric,
  .metric:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-top: 0;
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .intro {
    padding-top: 86px;
  }

  .section h2,
  .route-copy h2,
  .enquiry h2 {
    font-size: 2.2rem;
    line-height: 1.05;
  }

  .route-tabs {
    grid-template-columns: 1fr;
  }

  .route-map {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .map-line {
    width: 2px;
    height: 70px;
    justify-self: center;
  }

  .map-line::before,
  .map-line::after {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }

  .map-line::before {
    top: 24%;
  }

  .map-line::after {
    top: 76%;
  }

  .map-node {
    width: 100%;
  }

  .enquiry {
    gap: 34px;
    margin-bottom: 58px;
    padding: 28px;
  }

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