:root {
  --ink: #070509;
  --ink-soft: #110d15;
  --panel: #17111c;
  --purple: #a51cff;
  --purple-bright: #c64dff;
  --purple-deep: #58107b;
  --white: #f7f4f8;
  --muted: #aaa2b0;
  --line: rgba(255, 255, 255, 0.15);
  --page: min(88vw, 1280px);
  --display: "Barlow Condensed", sans-serif;
  --body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #000;
  background: #fff;
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, height 250ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(7, 5, 9, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 13px;
}

.wordmark-mark {
  font-family: var(--display);
  font-size: 1.9rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--purple-bright);
  transform: skewX(-5deg);
}

.wordmark-name {
  padding-left: 13px;
  border-left: 1px solid var(--line);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 42px);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
}

.site-nav a:not(.nav-login)::after {
  content: "";
  position: absolute;
  inset: auto 0 6px;
  height: 1px;
  background: var(--purple-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.nav-login {
  padding: 12px 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}

.nav-login:hover {
  color: #130618;
  background: var(--purple-bright);
  border-color: var(--purple-bright);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 0.95fr);
  align-items: center;
  padding: 110px 6vw 70px;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 52%, rgba(155, 27, 215, 0.19), transparent 34%),
    linear-gradient(110deg, #070509 0 54%, #100916 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -6vw;
  bottom: -34vh;
  width: 58vw;
  aspect-ratio: 1;
  border: 1px solid rgba(180, 52, 255, 0.23);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(162, 28, 255, 0.15);
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to right, transparent, #000 60%, transparent);
  transform: perspective(600px) rotateX(64deg) scale(1.7) translateY(25%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  top: 10%;
  right: 4%;
  width: 42vw;
  height: 70vh;
  background: rgba(146, 22, 204, 0.2);
  filter: blur(120px);
}

.speed-lines {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 31%;
  width: 35vw;
  opacity: 0.75;
}

.speed-lines span {
  display: block;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, transparent, var(--purple-bright), transparent);
  transform: skewY(-6deg);
  animation: speed 3s ease-in-out infinite;
}

.speed-lines span:nth-child(2) {
  width: 68%;
  animation-delay: -1.3s;
}

.speed-lines span:nth-child(3) {
  width: 42%;
  animation-delay: -2s;
}

@keyframes speed {
  0%,
  100% { opacity: 0.2; transform: translateX(-15%) skewY(-6deg); }
  50% { opacity: 1; transform: translateX(14%) skewY(-6deg); }
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--purple-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.7rem, 8.1vw, 9rem);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero h1 em,
.contact h2 em {
  display: block;
  color: var(--purple-bright);
  font-style: italic;
}

.hero-intro {
  max-width: 540px;
  margin: 34px 0 0;
  color: #c9c3cd;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 190px;
  min-height: 56px;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 200ms ease, color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: #0b0610;
  background: var(--purple-bright);
  box-shadow: 0 18px 48px rgba(173, 32, 241, 0.23);
}

.button-primary:hover {
  background: #d775ff;
  box-shadow: 0 22px 60px rgba(173, 32, 241, 0.35);
}

.text-link {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  color: var(--purple-bright);
  border-color: var(--purple-bright);
}

.hero-visual {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(55vw, 720px);
  margin-right: -2vw;
  animation: hero-float 7s ease-in-out infinite;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.65));
}

.hero-visual img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
}

.logo-halo {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: rgba(176, 41, 255, 0.38);
  filter: blur(55px);
}

@keyframes hero-float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.js .hero-reveal {
  opacity: 0;
  transform: translateY(26px);
  animation: enter 750ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 { animation-delay: 120ms; }
.hero-intro { animation-delay: 240ms; }
.hero-actions { animation-delay: 360ms; }

@keyframes enter {
  to { opacity: 1; transform: translateY(0); }
}

.route-label {
  position: absolute;
  z-index: 3;
  bottom: 6.5%;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.route-label strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
}

.route-label-us { right: 33%; }
.route-label-jm { right: 7%; }

.route-line {
  position: absolute;
  right: 12%;
  bottom: 8.5%;
  width: 20%;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.23);
}

.route-line i {
  display: block;
  width: 32%;
  height: 100%;
  background: var(--purple-bright);
  animation: route 3s ease-in-out infinite;
}

@keyframes route {
  from { transform: translateX(-110%); }
  to { transform: translateX(420%); }
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 6vw;
  bottom: 4vh;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #8b8490;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left center;
}

.scroll-cue i {
  width: 50px;
  height: 1px;
  background: currentColor;
}

.section {
  position: relative;
  padding: clamp(100px, 14vw, 190px) 6vw;
}

.services {
  display: grid;
  grid-template-columns: 0.78fr 1.2fr;
  gap: 9vw;
  background: var(--white);
  color: var(--ink);
}

.section-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.services .eyebrow {
  color: #7b1ba0;
}

.services h2,
.process h2,
.rates h2,
.contact h2 {
  font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: 0.86;
}

.services h2 span,
.rates h2 span {
  color: transparent;
  -webkit-text-stroke: 1px currentColor;
}

.section-heading > p:last-child {
  max-width: 470px;
  margin: 35px 0 0;
  color: #655e68;
  line-height: 1.75;
}

.service-list {
  border-top: 1px solid rgba(7, 5, 9, 0.2);
}

.service-row {
  display: grid;
  grid-template-columns: 50px 1fr 78px;
  gap: 26px;
  align-items: start;
  padding: 44px 0;
  border-bottom: 1px solid rgba(7, 5, 9, 0.2);
  transition: color 220ms ease, padding 220ms ease;
}

.service-row:hover {
  padding-left: 12px;
  color: #7413a1;
}

.service-number {
  padding-top: 9px;
  color: #7b727d;
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.service-row h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.service-row p {
  max-width: 540px;
  margin: 0;
  color: #6f6872;
  font-size: 0.95rem;
  line-height: 1.65;
}

.service-row svg {
  width: 58px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  opacity: 0.55;
  transition: transform 220ms ease, opacity 220ms ease;
}

.service-row:hover svg {
  opacity: 1;
  transform: translateX(6px) rotate(-3deg);
}

.process {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10vw;
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink-soft);
  background-size: 100% 140px;
}

.process-sticky {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-lead {
  margin-top: 30px;
  color: var(--muted);
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 30px;
  min-height: 330px;
  padding: 60px 0;
  border-top: 1px solid var(--line);
}

.process-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-steps > li > span {
  color: var(--purple-bright);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
}

.step-kicker {
  margin: 0 0 12px;
  color: #7f7585;
  font-size: 0.7rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.process-steps h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.25rem, 4vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.process-steps div > p:not(.step-kicker) {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.process-steps a {
  display: inline-block;
  margin-top: 25px;
  color: var(--purple-bright);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tracking {
  padding-top: 95px;
  padding-bottom: 95px;
  background: var(--purple);
}

.tracking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: end;
}

.tracking .eyebrow {
  color: rgba(7, 5, 9, 0.7);
}

.tracking h2 {
  color: var(--ink);
  font-size: clamp(3.5rem, 6vw, 6.8rem);
}

.tracking-form label {
  display: block;
  margin-bottom: 13px;
  color: rgba(7, 5, 9, 0.75);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tracking-control {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 2px solid var(--ink);
}

.tracking-control input {
  min-width: 0;
  padding: 17px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
}

.tracking-control input::placeholder {
  color: rgba(7, 5, 9, 0.52);
}

.tracking-control button {
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-note {
  margin: 12px 0 0;
  color: rgba(7, 5, 9, 0.65);
  font-size: 0.72rem;
}

.rates {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 8vw;
  align-items: start;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 35%, rgba(165, 28, 255, 0.14), transparent 30%),
    #0a070c;
}

.rates::before {
  content: "RFS";
  position: absolute;
  left: -0.04em;
  bottom: -0.23em;
  color: rgba(180, 42, 255, 0.04);
  font-family: var(--display);
  font-size: clamp(20rem, 42vw, 44rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.75;
  pointer-events: none;
}

.rates-intro {
  position: sticky;
  top: 120px;
  z-index: 2;
  align-self: start;
}

.rates-lead {
  max-width: 510px;
  margin: 30px 0;
  color: var(--muted);
  line-height: 1.75;
}

.rate-estimator {
  max-width: 510px;
  margin: 45px 0 26px;
  padding: 26px 0 23px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.estimator-output {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 26px;
}

.estimator-output > div:last-child {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.estimator-output div > span,
.rate-estimator > label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.estimator-output strong {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.3vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.estimator-output strong small {
  margin-right: 3px;
  color: var(--purple-bright);
  font-size: 0.4em;
}

.rate-estimator input[type="range"] {
  width: 100%;
  height: 22px;
  margin: 7px 0 0;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
}

.rate-estimator input[type="range"]::-webkit-slider-runnable-track {
  height: 2px;
  background: linear-gradient(to right, var(--purple-bright) var(--range-progress, 0%), rgba(255, 255, 255, 0.2) var(--range-progress, 0%));
}

.rate-estimator input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  margin-top: -8px;
  appearance: none;
  border: 4px solid #0a070c;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 0 1px var(--purple-bright);
}

.rate-estimator input[type="range"]::-moz-range-track {
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.rate-estimator input[type="range"]::-moz-range-progress {
  height: 2px;
  background: var(--purple-bright);
}

.rate-estimator input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 3px solid #0a070c;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 0 1px var(--purple-bright);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  color: #6f6873;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rate-note {
  max-width: 480px;
  margin: 0 0 25px;
  color: #8f8794;
  font-size: 0.78rem;
  line-height: 1.6;
}

.rate-schedule {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: clamp(32px, 4vw, 54px);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.32);
}

.rate-schedule-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--ink);
}

.rate-schedule .eyebrow {
  margin-bottom: 10px;
  color: #7b1ba0;
}

.rate-schedule h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4vw, 4.6rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.rate-schedule-heading > span {
  padding: 7px 10px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.rate-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(28px, 4vw, 62px);
}

.rate-columns table {
  width: 100%;
  border-collapse: collapse;
}

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

.rate-columns thead th {
  padding: 18px 0 12px;
  color: #776f7a;
  border-bottom: 1px solid #d0cbd2;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: left;
  text-transform: uppercase;
}

.rate-columns thead th:last-child,
.rate-columns tbody td {
  text-align: right;
}

.rate-columns tbody tr {
  border-bottom: 1px solid #ded9e0;
  transition: color 180ms ease, background 180ms ease;
}

.rate-columns tbody tr.is-selected {
  color: #7f14ac;
  background: rgba(165, 28, 255, 0.08);
}

.rate-columns tbody th,
.rate-columns tbody td {
  padding: 13px 5px;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.5vw, 1.42rem);
  font-weight: 600;
}

.rate-columns tbody th {
  text-align: left;
}

.rate-columns tbody td {
  font-weight: 700;
}

.schedule-note {
  margin: 22px 0 0;
  color: #776f7a;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
}

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

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 11vw;
  background: var(--white);
  color: var(--ink);
}

.contact .eyebrow {
  color: #7b1ba0;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 28px;
  align-content: start;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.field label {
  color: #665f69;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 0 15px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #aca5ae;
  border-radius: 0;
  outline: none;
  resize: vertical;
  transition: border-color 180ms ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--purple);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a7a1aa;
}

.quote-form .button {
  justify-self: start;
  margin-top: 10px;
}

.form-status {
  min-height: 20px;
  margin: -18px 0 0;
  color: #665f69;
  font-size: 0.78rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  padding: 80px 6vw 30px;
  background: #08060a;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 26px;
}

.footer-brand > span {
  color: var(--purple-bright);
  font-family: var(--display);
  font-size: 3.5rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.footer-brand p {
  padding-left: 24px;
  border-left: 1px solid var(--line);
  color: #8c8491;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  color: #b7b0ba;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--purple-bright);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: #716a76;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit {
  text-align: center;
}

.footer-credit a {
  color: #aaa2ad;
  text-decoration: underline;
  text-decoration-color: rgba(198, 77, 255, 0.5);
  text-underline-offset: 3px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer-credit a:hover {
  color: var(--purple-bright);
  text-decoration-color: currentColor;
}

.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    height: 72px;
  }

  .menu-toggle {
    position: relative;
    z-index: 22;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    color: white;
    background: transparent;
    border: 0;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

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

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

  .site-nav {
    position: fixed;
    z-index: 21;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 12vh 8vw;
    visibility: hidden;
    opacity: 0;
    background: rgba(7, 5, 9, 0.97);
    transform: translateY(-14px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    font-family: var(--display);
    font-size: clamp(2.4rem, 8vw, 4rem);
    font-weight: 700;
    line-height: 1;
  }

  .nav-login {
    margin-top: 20px;
    font-family: var(--body) !important;
    font-size: 0.8rem !important;
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    padding-top: 100px;
  }

  .hero-copy {
    width: 62%;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 11vw, 7rem);
  }

  .hero-visual {
    position: absolute;
    z-index: 1;
    right: -18vw;
    width: 74vw;
    opacity: 0.75;
  }

  .route-label,
  .route-line {
    display: none;
  }

  .services,
  .process,
  .contact {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .section-heading,
  .process-sticky {
    position: relative;
    top: auto;
  }

  .tracking-inner,
  .rates {
    grid-template-columns: 1fr;
  }

  .tracking-inner {
    gap: 50px;
  }

  .rates {
    gap: 70px;
  }

  .rates-intro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .wordmark-name {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-content: start;
    padding: 126px 7vw 80px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(4rem, 19vw, 6rem);
    line-height: 0.82;
  }

  .hero-intro {
    width: 87%;
    margin-top: 25px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 28px;
  }

  .hero-visual {
    right: -20vw;
    bottom: -2vh;
    width: 100vw;
    opacity: 0.55;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 95px 7vw;
  }

  .services h2,
  .process h2,
  .rates h2,
  .contact h2 {
    font-size: clamp(3.7rem, 17vw, 5.3rem);
  }

  .service-row {
    grid-template-columns: 35px 1fr;
    gap: 16px;
    padding: 35px 0;
  }

  .service-row svg {
    display: none;
  }

  .service-row h3 {
    font-size: 2.25rem;
  }

  .process {
    gap: 60px;
  }

  .process-steps li {
    grid-template-columns: 34px 1fr;
    gap: 15px;
    min-height: 0;
    padding: 45px 0;
  }

  .process-steps h3 {
    font-size: 2.4rem;
  }

  .tracking {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .tracking-control {
    grid-template-columns: 1fr;
  }

  .tracking-control button {
    padding: 17px 0;
    text-align: left;
  }

  .rate-schedule {
    margin-inline: -7vw;
    padding: 38px 7vw;
  }

  .rate-schedule-heading {
    align-items: start;
  }

  .rate-columns {
    gap: 20px;
  }

  .rate-columns tbody th,
  .rate-columns tbody td {
    padding: 12px 3px;
    font-size: 1rem;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-inline: 7vw;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-bottom {
    grid-column: auto;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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