:root {
  --ink: #101114;
  --ink-soft: #3c4047;
  --muted: #6b7280;
  --line: #dfe3e8;
  --paper: #ffffff;
  --mist: #f5f7f9;
  --silver: #eceff3;
  --cyan: #0d8f9e;
  --green: #35785f;
  --amber: #b8742d;
  --shadow: 0 24px 70px rgba(16, 17, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(13, 143, 158, 0.36);
  outline-offset: 3px;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  height: 68px;
  padding: 0 16px 0 14px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(16, 17, 20, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: color 180ms ease, background 180ms ease, border 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(16, 17, 20, 0.08);
  box-shadow: 0 12px 35px rgba(16, 17, 20, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.28));
}

.brand-name {
  display: block;
  overflow: hidden;
  max-width: 13em;
  text-overflow: ellipsis;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: background 160ms ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  background: rgba(16, 17, 20, 0.06);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  transition: transform 180ms ease;
}

.nav-toggle span + span {
  margin-top: 5px;
}

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

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

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  background: #111;
}

.hero-image,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.78) 0%, rgba(8, 10, 13, 0.42) 42%, rgba(8, 10, 13, 0.08) 78%),
    linear-gradient(0deg, rgba(8, 10, 13, 0.22), rgba(8, 10, 13, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1120px, calc(100% - 40px));
  min-height: 88svh;
  margin: 0 auto;
  padding: 96px 0 44px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

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

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: 72px;
  line-height: 1.03;
  font-weight: 800;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 54px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(16, 17, 20, 0.18);
}

.hero .button-dark {
  color: var(--ink);
  background: #fff;
}

.button-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 12px;
  margin: 0;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.hero-metrics dt {
  margin-bottom: 2px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-metrics dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.band-light {
  background: var(--mist);
}

.band-silver {
  background: var(--silver);
}

.intro {
  padding: 76px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 54px;
  align-items: end;
}

h2 {
  margin-bottom: 0;
  font-size: 44px;
  line-height: 1.12;
  font-weight: 800;
}

.intro-grid p:last-child,
.contact-copy {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.services,
.pricing,
.contact {
  padding: 96px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 780px;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.plan-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.service-number,
.plan-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  margin-bottom: 54px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.service-card h3,
.plan-card h3,
.process-list h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.service-card p,
.plan-card li,
.process-list p,
.price-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.visual-story {
  padding: 26px 0;
}

.image-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 18px;
}

.image-panel {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #d9dde2;
  box-shadow: var(--shadow);
}

.image-panel-large {
  min-height: 560px;
}

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

.image-panel figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  color: #fff;
  border-radius: 8px;
  background: rgba(16, 17, 20, 0.58);
  backdrop-filter: blur(18px);
}

.image-panel span {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 800;
}

.price-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.price-strip div {
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.price-strip span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.price-strip strong {
  display: block;
  font-size: 24px;
  line-height: 1.2;
}

.freight-card {
  margin: 18px 0 14px;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 247, 249, 0.96), rgba(255, 255, 255, 0.98)),
    var(--paper);
  box-shadow: 0 18px 55px rgba(16, 17, 20, 0.08);
}

.freight-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 28px 22px;
  border-bottom: 1px solid var(--line);
}

.freight-kicker {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.freight-header h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
}

.freight-unit {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.freight-scroll {
  max-height: 720px;
  overflow: auto;
  overscroll-behavior: contain;
}

.freight-scroll:focus-visible {
  outline: 3px solid rgba(13, 143, 158, 0.28);
  outline-offset: -3px;
}

.freight-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.freight-table th,
.freight-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(223, 227, 232, 0.9);
  text-align: center;
}

.freight-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: #fff;
  background: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.freight-table thead th:first-child {
  left: 0;
  z-index: 3;
  text-align: left;
}

.freight-table tbody tr:nth-child(even) {
  background: rgba(236, 239, 243, 0.5);
}

.freight-table tbody tr:hover {
  background: rgba(13, 143, 158, 0.08);
}

.freight-table tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
  text-align: left;
}

.freight-table tbody tr:nth-child(even) th {
  background: #f4f7f9;
}

.freight-table tbody tr:hover th {
  background: #edf7f8;
}

.freight-table tbody td {
  color: #163f65;
  font-size: 16px;
  font-weight: 800;
}

.freight-note {
  margin: 0;
  padding: 16px 28px 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.plan-card {
  position: relative;
  min-height: 360px;
}

.plan-featured {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

.plan-featured .plan-label {
  color: #80d7df;
}

.plan-featured li {
  color: rgba(255, 255, 255, 0.76);
}

.plan-price {
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.plan-featured .plan-price {
  color: rgba(255, 255, 255, 0.74);
}

.plan-price span {
  color: var(--ink);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.plan-featured .plan-price span {
  color: #fff;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 18px;
}

.plan-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.plan-featured li::before {
  background: #80d7df;
}

.price-note {
  margin-top: 18px;
}

.process {
  padding: 96px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 60px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 116px;
  margin-bottom: 0;
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #fff;
  border-radius: 8px;
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.contact {
  background: var(--ink);
  color: #fff;
}

.contact .section-kicker {
  color: #80d7df;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 58px;
  align-items: start;
}

.contact-copy {
  max-width: 580px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  outline: 0;
}

.quote-form select {
  color-scheme: dark;
}

.quote-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.quote-form input:focus,
.quote-form select:focus {
  border-color: #80d7df;
  box-shadow: 0 0 0 3px rgba(128, 215, 223, 0.18);
}

.form-button {
  grid-column: 1 / -1;
  min-height: 50px;
  color: var(--ink);
  background: #fff;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: #80d7df;
  font-size: 14px;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.68);
  background: #07080a;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 980px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 36px;
  }

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

  .plans,
  .intro-grid,
  .image-grid,
  .process-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    height: 62px;
    width: min(100% - 20px, 1120px);
  }

  .brand {
    gap: 9px;
    font-size: 17px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    max-width: calc(100vw - 145px);
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 17, 20, 0.08);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(16, 17, 20, 0.12);
    backdrop-filter: blur(18px);
  }

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

  .site-nav a {
    justify-content: center;
    height: 44px;
  }

  .hero,
  .hero-content {
    min-height: 86svh;
  }

  .hero-content {
    width: min(100% - 28px, 1120px);
    padding: 96px 0 34px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 10, 13, 0.84), rgba(8, 10, 13, 0.44)),
      linear-gradient(0deg, rgba(8, 10, 13, 0.22), rgba(8, 10, 13, 0));
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 30px;
  }

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

  .hero-metrics {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .hero-metrics div {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 8px;
    align-items: end;
    padding: 12px 14px;
  }

  .hero-metrics dt {
    font-size: 24px;
  }

  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .intro,
  .services,
  .pricing,
  .process,
  .contact {
    padding: 64px 0;
  }

  .service-grid,
  .price-strip,
  .plans,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .freight-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 18px 18px;
  }

  .freight-header h3 {
    font-size: 24px;
  }

  .freight-table {
    min-width: 640px;
  }

  .freight-scroll {
    max-height: 560px;
  }

  .freight-table th,
  .freight-table td {
    padding: 11px 12px;
  }

  .freight-note {
    padding: 14px 18px 18px;
  }

  .service-card,
  .plan-card {
    min-height: auto;
  }

  .service-number,
  .plan-label {
    margin-bottom: 34px;
  }

  .image-panel,
  .image-panel-large {
    min-height: 360px;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

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

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