:root {
  --ink: #071a26;
  --ink-soft: #0d2634;
  --ink-muted: #183543;
  --paper: #f5f1e9;
  --white: #fffdf8;
  --muted: #71808a;
  --line: rgba(7, 26, 38, 0.14);
  --coral: #ff6245;
  --coral-dark: #dc452d;
  --mint: #a8d7c7;
  --shell: min(1240px, calc(100vw - 48px));
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

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

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

body.menu-open {
  overflow: hidden;
}

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

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

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

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

img,
svg {
  display: block;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(7, 26, 38, 0.96);
  box-shadow: 0 10px 30px rgba(2, 15, 22, 0.16);
  backdrop-filter: blur(14px);
}

.site-header.menu-active {
  background: var(--ink);
  box-shadow: 0 10px 30px rgba(2, 15, 22, 0.16);
}

.header-inner {
  display: flex;
  height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  color: var(--white);
}

.brand-mark {
  width: 37px;
  height: 37px;
}

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

.brand-type strong {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand-type span {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.38em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 38px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
}

.header-phone svg {
  width: 16px;
  fill: var(--coral);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 0 24px;
  border: 1px solid var(--coral);
  border-radius: 6px;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 10px 30px rgba(255, 98, 69, 0.16);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--white);
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  gap: 0;
  padding-inline: 18px;
  border-radius: 5px;
  font-size: 12px;
}

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

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

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

.hero-media {
  background: url("assets/vango-hero.webp") 58% 50% / cover no-repeat;
  transform: scale(1.015);
  animation: hero-in 1.3s cubic-bezier(.2, .8, .2, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 20, 29, 0.98) 0%, rgba(4, 20, 29, 0.8) 37%, rgba(4, 20, 29, 0.18) 68%, rgba(4, 20, 29, 0.13) 100%),
    linear-gradient(0deg, rgba(4, 20, 29, 0.8) 0%, transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 700px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 345px;
  gap: 9vw;
  padding-top: 82px;
  padding-bottom: 42px;
}

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

.eyebrow,
.kicker {
  margin: 0 0 24px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow > span {
  width: 20px;
  height: 2px;
  background: var(--coral);
}

.hero h1,
.section h2,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(54px, 6.9vw, 104px);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.hero h1 em {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-intro {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  color: var(--coral);
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

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

.route-card {
  align-self: end;
  margin-bottom: 48px;
  padding: 22px 22px 19px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  background: rgba(7, 26, 38, 0.78);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.route-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-card-top strong {
  margin-left: auto;
  color: var(--white);
  font-size: 12px;
}

.live-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #76e0b6;
  box-shadow: 0 0 0 5px rgba(118, 224, 182, 0.12);
  animation: pulse 2s infinite;
}

.route-line {
  display: flex;
  height: 56px;
  align-items: center;
  margin-top: 5px;
}

.route-start,
.route-end {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.route-end {
  border-color: var(--coral);
  background: var(--coral);
}

.route-dashes {
  height: 1px;
  flex: 1;
  border-top: 1px dashed rgba(255, 255, 255, 0.3);
}

.route-line svg {
  width: 43px;
  margin-inline: 7px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.route-labels {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.hero-proof {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(7, 26, 38, 0.88);
  backdrop-filter: blur(12px);
}

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

.proof-grid > div {
  display: grid;
  min-height: 120px;
  align-content: center;
  padding: 20px 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.proof-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.proof-grid strong {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.proof-grid span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 130px 0;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10vw;
}

.section h2 {
  font-size: clamp(44px, 5.2vw, 74px);
}

.section-heading > p {
  max-width: 470px;
  margin: 0 0 8px;
  color: #586874;
  font-size: 17px;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  margin-top: 68px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 460px;
  flex-direction: column;
  padding: 34px 32px 38px;
  border-right: 1px solid var(--line);
  transition: background 220ms ease, transform 220ms ease;
}

.service-card:first-child {
  border-left: 1px solid var(--line);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.62);
  transform: translateY(-5px);
}

.service-featured {
  color: var(--white);
  background: var(--ink) !important;
}

.service-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-featured .service-number {
  color: var(--coral);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-top: 52px;
  fill: none;
  stroke: var(--coral);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-copy {
  margin-top: auto;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(27px, 2.4vw, 36px);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.service-card p {
  margin: 20px 0 27px;
  color: #61717c;
  font-size: 14px;
  line-height: 1.7;
}

.service-featured p {
  color: rgba(255, 255, 255, 0.62);
}

.service-featured .text-link {
  color: var(--white);
}

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

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(340px, 0.86fr) 1.14fr;
  gap: clamp(60px, 9vw, 130px);
}

.coverage-visual {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--ink-soft);
  background-size: 42px 42px;
}

.coverage-visual::after {
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(255, 98, 69, 0.11);
  filter: blur(2px);
  content: "";
}

.map-caption {
  position: absolute;
  z-index: 3;
  top: 34px;
  left: 34px;
  display: grid;
}

.map-caption span {
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.map-caption strong {
  margin-top: 4px;
  font-size: 20px;
}

.uk-route {
  position: absolute;
  top: 76px;
  left: 50%;
  width: 88%;
  height: 76%;
  transform: translateX(-50%);
}

.map-outline {
  fill: rgba(168, 215, 199, 0.08);
  stroke: rgba(168, 215, 199, 0.32);
  stroke-width: 2;
}

.map-route-under {
  fill: none;
  stroke: rgba(255, 98, 69, 0.14);
  stroke-linecap: round;
  stroke-width: 16;
}

.map-route {
  fill: none;
  stroke: var(--coral);
  stroke-dasharray: 4 10;
  stroke-linecap: round;
  stroke-width: 3;
}

.map-point {
  fill: var(--ink);
  stroke: var(--white);
  stroke-width: 4;
}

.map-city {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-city span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}

.city-one {
  bottom: 132px;
  left: 26%;
}

.city-two {
  top: 170px;
  right: 18%;
}

.map-status {
  position: absolute;
  z-index: 3;
  right: 27px;
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(7, 26, 38, 0.76);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.light-kicker {
  color: var(--coral);
}

.about h2 {
  max-width: 700px;
  font-size: clamp(43px, 5vw, 69px);
}

.about-lead {
  max-width: 650px;
  margin: 30px 0 46px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 18px;
  line-height: 1.75;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.benefit {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 26px 24px 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.benefit:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.benefit:nth-child(even) {
  padding-left: 24px;
}

.benefit > span {
  color: var(--coral);
  font-size: 10px;
  font-weight: 850;
}

.benefit h3 {
  margin: -5px 0 8px;
  font-size: 17px;
}

.benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.6;
}

.process {
  background: #eae4d9;
}

.process-heading {
  max-width: 910px;
}

.process-list {
  display: grid;
  margin: 72px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.process-list li {
  min-height: 270px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.process-list li:first-child {
  border-left: 1px solid var(--line);
}

.process-list li > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-size: 10px;
  font-weight: 800;
}

.process-list h3 {
  margin: 70px 0 13px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.process-list p {
  margin: 0;
  color: #64717a;
  font-size: 13px;
  line-height: 1.65;
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 45px;
  padding: 27px 30px;
  color: var(--white);
  background: var(--ink);
}

.callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
}

.callout a {
  display: flex;
  align-items: center;
  gap: 44px;
  font-weight: 800;
}

.callout a span {
  color: var(--coral);
}

.contact {
  color: var(--white);
  background: var(--ink-soft);
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  gap: clamp(60px, 8vw, 120px);
}

.contact h2 {
  max-width: 600px;
  font-size: clamp(48px, 5.3vw, 72px);
}

.contact-intro > p:not(.kicker) {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.75;
}

.contact-options {
  display: grid;
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-options a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--coral);
  background: rgba(255, 98, 69, 0.1);
}

.contact-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.contact-icon svg path:first-child:not(:last-child) {
  fill: none;
}

.contact-options a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.contact-options small,
.contact-options strong {
  display: block;
}

.contact-options small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-options strong {
  font-size: 15px;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 36px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.19);
}

.form-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-head span:last-child {
  color: var(--muted);
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

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

.quote-form label {
  display: grid;
  gap: 7px;
}

.quote-form label > span {
  color: #4e5c64;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 51px;
  padding: 13px 14px;
  border: 1px solid #d8d7d1;
  border-radius: 5px;
  outline: none;
  color: var(--ink);
  background: #faf8f3;
  font-size: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 98, 69, 0.12);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #97a0a4;
}

.form-submit {
  width: 100%;
  margin-top: 3px;
}

.form-note {
  margin: -5px 0 0;
  color: #79858c;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.form-note.success {
  color: #167753;
  font-weight: 700;
}

.site-footer {
  padding: 78px 0 30px;
  color: var(--white);
  background: #04131c;
}

.footer-top {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-style: italic;
  line-height: 1.4;
}

.footer-up {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--coral);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding: 54px 0;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 12px;
}

.footer-label {
  margin-bottom: 8px;
  color: var(--coral) !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span:not(.footer-label) {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 25px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1.015); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(118, 224, 182, 0.1); }
  50% { box-shadow: 0 0 0 8px rgba(118, 224, 182, 0); }
}

.legal-body {
  background: var(--white);
}

.legal-header {
  background: var(--ink);
}

.legal-header .header-inner {
  height: 76px;
}

.legal-hero {
  padding: 170px 0 80px;
  color: var(--white);
  background: var(--ink);
}

.legal-hero h1 {
  font-size: clamp(48px, 6vw, 82px);
}

.legal-hero p {
  margin: 22px 0 0;
  color: rgba(255,255,255,.55);
}

.legal-content {
  width: min(780px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 80px 0 110px;
}

.legal-content h2 {
  margin: 46px 0 12px;
  font-size: 24px;
  letter-spacing: -.025em;
}

.legal-content p,
.legal-content li {
  color: #52626c;
  line-height: 1.75;
}

.legal-content a {
  color: var(--coral-dark);
  text-decoration: underline;
}

@media (max-width: 1060px) {
  .desktop-nav,
  .header-phone {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-content {
    grid-template-columns: 1fr 290px;
    gap: 45px;
  }

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

  .service-card:first-child {
    grid-row: span 2;
  }

  .service-card:last-child {
    border-top: 1px solid var(--line);
  }

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

  .coverage-visual {
    min-height: 600px;
  }

  .contact-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
  }

  .contact-intro .kicker,
  .contact-intro h2,
  .contact-intro > p {
    grid-column: 1;
  }

  .contact-options {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin-top: 0;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(calc(100% - 32px), 640px);
  }

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

  .header-inner {
    height: 72px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 11px;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--white);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-active .menu-toggle span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

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

  .menu-active .menu-toggle span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: calc(100dvh - 72px);
    padding: 36px max(24px, calc((100vw - 640px) / 2));
    flex-direction: column;
    overflow-y: auto;
    color: var(--white);
    background-color: #071a26;
    isolation: isolate;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition: transform 180ms ease, visibility 0s linear 180ms;
  }

  .menu-active .mobile-menu {
    pointer-events: auto;
    transform: none;
    visibility: visible;
    transition-delay: 0s;
  }

  .mobile-menu > a:not(.mobile-phone) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.04em;
  }

  .mobile-menu > a span {
    color: var(--coral);
    font-size: 10px;
    letter-spacing: .1em;
  }

  .mobile-phone {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    border-radius: 5px;
    background: var(--coral);
    font-size: 13px;
    font-weight: 800;
  }

  .hero {
    min-height: 790px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(4, 20, 29, .96), rgba(4, 20, 29, .52)), linear-gradient(0deg, rgba(4, 20, 29, .9), transparent 60%);
  }

  .hero-content {
    display: flex;
    min-height: 650px;
    align-items: flex-end;
    padding-top: 130px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(50px, 13.5vw, 73px);
  }

  .hero-intro {
    max-width: 550px;
    font-size: 16px;
  }

  .route-card {
    display: none;
  }

  .hero-proof {
    position: relative;
  }

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

  .proof-grid > div {
    min-height: 94px;
    padding: 18px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
  }

  .proof-grid > div:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, .11);
  }

  .proof-grid strong {
    font-size: 18px;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    display: block;
  }

  .section h2 {
    font-size: clamp(42px, 11.2vw, 62px);
  }

  .section-heading > p {
    margin-top: 28px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .service-card,
  .service-card:first-child {
    min-height: 400px;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    grid-row: auto;
  }

  .service-card:first-child {
    border-top: 0;
  }

  .service-card h3 {
    font-size: 32px;
  }

  .about-grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .coverage-visual {
    width: 100%;
    min-height: 580px;
  }

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

  .benefit:nth-child(odd),
  .benefit:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
  }

  .process-list li:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .process-list li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .contact-intro {
    display: block;
  }

  .contact-options {
    margin-top: 44px;
  }

  .contact-grid {
    gap: 58px;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
  }

  .footer-top > p {
    display: none;
  }

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-type strong {
    font-size: 16px;
  }

  .hero {
    min-height: 770px;
  }

  .hero-content {
    min-height: 610px;
    padding-bottom: 48px;
  }

  .hero-media {
    background-position: 68% center;
  }

  .hero h1 {
    font-size: clamp(44px, 13.1vw, 61px);
  }

  .hero h1 br {
    display: none;
  }

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

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

  .proof-grid strong {
    font-size: 16px;
  }

  .proof-grid span {
    font-size: 8px;
  }

  .service-card {
    min-height: 380px;
    padding: 28px 24px 32px;
  }

  .coverage-visual {
    min-height: 500px;
  }

  .map-caption {
    top: 24px;
    left: 24px;
  }

  .uk-route {
    top: 70px;
    width: 104%;
  }

  .city-two {
    right: 10%;
  }

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

  .process-list li,
  .process-list li:nth-child(3) {
    min-height: 230px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .process-list li:first-child {
    border-top: 0;
  }

  .process-list h3 {
    margin-top: 52px;
  }

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

  .callout a {
    width: 100%;
    justify-content: space-between;
  }

  .quote-form {
    gap: 16px;
    padding: 26px 20px;
  }

  .form-head span:last-child {
    display: none;
  }

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

  .contact-options strong {
    font-size: 13px;
  }

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

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

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
