@font-face {
  font-family: "Archivo Black";
  src: url("assets/fonts/archivo-black.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/instrument-sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/instrument-sans-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/instrument-sans-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/instrument-sans-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Mono";
  src: url("assets/fonts/dm-mono-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Mono";
  src: url("assets/fonts/dm-mono-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --asphalt: #102630;
  --mirror: #43c5d5;
  --steel: #b9c8ce;
  --white: #f7fafb;
  --coral: #f0664a;
  --rubber: #081418;
  --ink: #16272e;
  --muted: #5d6d73;
  --line: #d8e2e5;
  --shell: min(1180px, calc(100vw - 40px));
  --shadow: 0 24px 70px rgba(4, 18, 23, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 15px;
  background: var(--white);
  color: var(--rubber);
  font-weight: 700;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  background: rgba(8, 20, 24, 0.96);
  border-bottom: 1px solid rgba(185, 200, 206, 0.24);
  box-shadow: 0 8px 30px rgba(1, 10, 13, 0.16);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  width: 58px;
  height: 42px;
}

.brand span {
  display: grid;
}

.brand strong {
  color: var(--white);
  font-family: "Archivo Black", sans-serif;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 3px;
  color: var(--steel);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 30px);
}

.site-nav > a {
  color: #eef7f8;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav > a:hover {
  color: var(--mirror);
}

.nav-actions,
.footer-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-call {
  background: var(--coral);
  color: #190b08;
  border-color: var(--coral);
}

.button-call:hover {
  background: #ff8067;
  border-color: #ff8067;
}

.button-book {
  background: transparent;
  color: var(--white);
  border-color: rgba(247, 250, 251, 0.45);
}

.button-book:hover {
  background: rgba(247, 250, 251, 0.1);
  border-color: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  padding-top: 78px;
  overflow: hidden;
  background: var(--asphalt);
  color: var(--white);
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
  padding-block: 72px 68px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #327b85;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  display: inline-block;
  margin-right: 12px;
  background: currentColor;
  vertical-align: middle;
}

.eyebrow-light {
  color: var(--mirror);
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(58px, 7.6vw, 116px);
}

.hero h1 span {
  color: var(--mirror);
}

.hero-lede {
  max-width: 610px;
  margin: 28px 0 30px;
  color: #dce8ea;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.cta-pair {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.button-large {
  min-height: 65px;
  display: grid;
  justify-items: start;
  padding: 12px 20px;
  font-size: 16px;
}

.button-kicker {
  display: block;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.72;
  text-transform: uppercase;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--steel);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  list-style: none;
  text-transform: uppercase;
}

.hero-points li::before {
  content: "•";
  margin-right: 8px;
  color: var(--coral);
}

.mirror-frame {
  position: relative;
  margin: 0;
  padding: 18px 18px 48px;
  background: var(--steel);
  border-radius: 49% 42% 47% 52% / 52% 44% 56% 48%;
  box-shadow: 0 38px 80px rgba(0, 8, 12, 0.44), inset 0 0 0 2px rgba(255, 255, 255, 0.42);
  transform: rotate(-1.2deg);
}

.mirror-frame::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -80px;
  bottom: 40px;
  width: 130px;
  height: 38px;
  background: var(--steel);
  border-radius: 0 22px 22px 0;
  transform: rotate(8deg);
}

.mirror-image {
  height: clamp(390px, 47vw, 560px);
  overflow: hidden;
  border: 8px solid var(--rubber);
  border-radius: 48% 40% 46% 51% / 50% 43% 55% 47%;
  background: var(--rubber);
}

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

.mirror-frame figcaption {
  position: absolute;
  right: 14%;
  bottom: 16px;
  left: 14%;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #263c44;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  line-height: 1.3;
  text-transform: uppercase;
}

.mirror-pin {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--coral);
  border-radius: 50%;
}

.route-band {
  background: var(--mirror);
  color: var(--rubber);
}

.route-grid {
  min-height: 150px;
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 24px;
  padding-block: 24px;
}

.route-label {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  line-height: 1.05;
  text-transform: uppercase;
}

.route-line {
  grid-column: 2;
  grid-row: 1;
  height: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 5%;
  background: var(--rubber);
}

.route-line span {
  width: 16px;
  height: 16px;
  background: var(--coral);
  border: 4px solid var(--rubber);
  border-radius: 50%;
}

.route-grid ol {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-grid li {
  min-width: 130px;
  padding: 13px 18px;
  background: var(--mirror);
  text-align: center;
}

.route-grid li span,
.route-grid li small {
  display: block;
}

.route-grid li span {
  font-family: "Archivo Black", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
}

.route-grid li small {
  margin-top: 4px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(88px, 10vw, 150px);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 55px;
}

.section h2,
.final-cta h2 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
}

.section-heading > p:last-child,
.split-heading > p,
.faq-intro > p:last-child {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

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

.service-card {
  min-width: 0;
  overflow: hidden;
  background: #e8eff1;
  border: 1px solid #d5e0e3;
  border-radius: 8px;
}

.service-card-dark {
  background: var(--asphalt);
  color: var(--white);
  border-color: var(--asphalt);
}

.service-card-accent {
  background: #d9f3f5;
  border-color: #b6e1e5;
}

.service-image {
  height: 280px;
  overflow: hidden;
  background: #c4d0d4;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card:first-child .service-image img {
  object-position: center 61%;
}

.service-card:nth-child(2) .service-image img {
  object-position: center 55%;
}

.service-copy {
  padding: 30px;
}

.service-tag {
  margin: 0 0 20px;
  color: #357b84;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card-dark .service-tag {
  color: var(--mirror);
}

.service-copy h3,
.checkpoint-list h3,
.inspection-list h3 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.service-copy > p:not(.service-tag) {
  margin: 18px 0;
}

.service-card-dark .service-copy > p,
.service-card-dark .service-copy li {
  color: #cfdddf;
}

.service-copy ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(71, 95, 104, 0.28);
  list-style: none;
}

.service-copy li {
  position: relative;
  padding-left: 17px;
  color: #41575f;
  font-size: 14px;
}

.service-copy li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 2px;
  background: var(--coral);
}

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

.process-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(45px, 8vw, 110px);
}

.process-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: #c5d3d6;
  font-size: 19px;
}

.process-photo {
  height: 300px;
  margin-top: 44px;
  overflow: hidden;
  border-radius: 50% 46% 48% 52% / 48% 51% 49% 52%;
  border: 8px solid #253941;
}

.process-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkpoint-list {
  display: grid;
  align-content: start;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #30434a;
}

.checkpoint-list li {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 25px;
  padding: 33px 0;
  border-bottom: 1px solid #30434a;
}

.checkpoint-number {
  color: var(--mirror);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checkpoint-list p {
  margin: 12px 0 0;
  color: #b9c9cd;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 60px;
}

.inspection-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

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

.inspection-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.inspection-list article > span {
  color: var(--coral);
  font-family: "DM Mono", monospace;
  font-size: 11px;
}

.inspection-list h3 {
  font-size: 20px;
}

.inspection-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.inspection-collage {
  position: relative;
  min-height: 590px;
}

.collage-main {
  width: 82%;
  height: 490px;
  margin-left: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.collage-inset {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 54%;
  height: 250px;
  object-fit: cover;
  border: 10px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.inspection-collage > p {
  position: absolute;
  top: 23px;
  left: -35px;
  margin: 0;
  padding: 14px 18px;
  background: var(--mirror);
  color: var(--rubber);
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  line-height: 1.05;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.photo-mile {
  padding: 20px;
  background: var(--steel);
}

.photo-track {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
  gap: 12px;
}

.photo-track figure {
  height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--asphalt);
}

.photo-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-track figure:nth-child(3) img {
  object-position: center 58%;
}

.stock-note {
  max-width: 1180px;
  margin: 14px auto 0;
  color: #344a53;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  line-height: 1.4;
  text-transform: uppercase;
}

.faq {
  background: #e9f1f3;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(45px, 8vw, 110px);
}

.faq-list {
  border-top: 1px solid #bdcdd1;
}

.faq-list details {
  border-bottom: 1px solid #bdcdd1;
}

.faq-list summary {
  position: relative;
  padding: 26px 50px 26px 0;
  cursor: pointer;
  font-family: "Archivo Black", sans-serif;
  font-size: 21px;
  line-height: 1.2;
  list-style: none;
  text-transform: uppercase;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 0;
  color: var(--coral);
  font-family: "DM Mono", monospace;
  font-size: 28px;
  font-weight: 400;
}

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

.faq-list details p {
  max-width: 680px;
  margin: -5px 0 28px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 100px;
  background: var(--asphalt);
  color: var(--white);
}

.final-cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: center;
  gap: 70px;
}

.final-cta p:not(.eyebrow) {
  color: #c3d2d5;
  font-size: 20px;
}

.final-route {
  position: absolute;
  z-index: -1;
  top: -70px;
  right: 170px;
  bottom: -70px;
  width: 5px;
  background: var(--mirror);
  transform: rotate(14deg);
  opacity: 0.28;
}

.final-route span {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 24px;
  background: var(--coral);
  border: 6px solid var(--asphalt);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.final-route span:nth-child(1) { top: 16%; }
.final-route span:nth-child(2) { top: 50%; }
.final-route span:nth-child(3) { top: 84%; }

.cta-pair-vertical {
  display: grid;
}

.button-book-light {
  border-color: rgba(255, 255, 255, 0.6);
}

.site-footer {
  padding: 58px 0 30px;
  background: var(--rubber);
  color: var(--steel);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr 1fr;
  gap: 60px;
  align-items: start;
}

.brand-footer strong {
  color: var(--white);
}

.footer-grid > div:first-child > p {
  max-width: 380px;
  font-size: 14px;
}

.footer-grid nav {
  display: grid;
  gap: 9px;
}

.footer-grid nav a {
  font-size: 14px;
  text-decoration: none;
}

.footer-grid nav a:hover {
  color: var(--mirror);
}

.footer-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid #25373e;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.mobile-sticky {
  display: none;
}

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

.reveal-delay {
  transition-delay: 0ms;
}

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

@media (max-width: 1080px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    height: calc(100vh - 78px);
    display: none;
    align-content: start;
    align-items: stretch;
    gap: 0;
    padding: 35px 20px;
    overflow-y: auto;
    background: rgba(8, 20, 24, 0.99);
  }

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

  .site-nav > a {
    padding: 17px 0;
    border-bottom: 1px solid #263a42;
    font-family: "Archivo Black", sans-serif;
    font-size: 24px;
    text-transform: uppercase;
  }

  .nav-actions {
    display: grid;
    margin-top: 30px;
  }

  .nav-actions .button {
    min-height: 56px;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

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

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(54px, 8vw, 84px);
  }

  .cta-pair {
    display: grid;
  }

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

  .service-card {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
  }

  .service-image {
    height: 100%;
    min-height: 340px;
  }

  .process-grid,
  .inspection-grid {
    gap: 55px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 30px, 620px);
  }

  body {
    padding-bottom: 66px;
    font-size: 16px;
  }

  .brand small {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 58px 54px;
  }

  .hero-copy {
    order: 1;
  }

  .mirror-frame {
    order: 2;
    width: 94%;
    margin: 4px auto 0;
  }

  .mirror-frame::after {
    right: -42px;
    width: 70px;
  }

  .mirror-image {
    height: 370px;
  }

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

  .hero-lede {
    font-size: 18px;
  }

  .route-grid {
    min-height: 200px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .route-label {
    text-align: center;
  }

  .route-line,
  .route-grid ol {
    grid-column: 1;
    grid-row: 2;
  }

  .route-grid li {
    min-width: 0;
    padding-inline: 6px;
  }

  .route-grid li small {
    display: none;
  }

  .section {
    padding-block: 85px;
  }

  .section h2,
  .final-cta h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

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

  .service-card {
    display: block;
  }

  .service-image {
    height: 270px;
    min-height: 0;
  }

  .service-copy {
    padding: 26px;
  }

  .process-grid,
  .split-heading,
  .inspection-grid,
  .faq-grid,
  .final-cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-photo {
    height: 260px;
  }

  .checkpoint-list li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .split-heading {
    gap: 0;
  }

  .inspection-collage {
    min-height: 460px;
  }

  .collage-main {
    width: 90%;
    height: 370px;
  }

  .collage-inset {
    height: 190px;
    border-width: 7px;
  }

  .inspection-collage > p {
    left: 0;
  }

  .photo-mile {
    padding: 10px;
  }

  .photo-track {
    grid-template-columns: 1fr 1fr;
  }

  .photo-track figure {
    height: 250px;
  }

  .photo-track figure:first-child {
    grid-column: 1 / -1;
  }

  .final-cta {
    padding-block: 82px;
  }

  .final-cta-grid {
    gap: 35px;
  }

  .footer-actions {
    display: grid;
    justify-content: stretch;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-sticky {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    height: 66px;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    border-top: 1px solid #101f24;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
  }

  .mobile-sticky a {
    display: grid;
    place-content: center;
    background: var(--coral);
    color: #1d0b08;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
  }

  .mobile-sticky a:last-child {
    background: var(--rubber);
    color: var(--white);
  }

  .mobile-sticky span {
    margin-bottom: 3px;
    font-family: "DM Mono", monospace;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.08em;
    opacity: 0.72;
    text-transform: uppercase;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 52px;
  }

  .brand strong {
    font-size: 15px;
  }

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

  .mirror-image {
    height: 320px;
  }

  .hero-points {
    display: grid;
  }

  .route-grid ol {
    gap: 0;
  }

  .route-grid li span {
    font-size: 12px;
  }

  .photo-track figure {
    height: 190px;
  }
}

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

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

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