:root {
  --ink: #102426;
  --ink-soft: #425556;
  --deep: #0b2e33;
  --deep-2: #123f43;
  --paper: #ffffff;
  --mist: #f2f5f3;
  --line: #d8dfdb;
  --orange: #f2632f;
  --orange-dark: #d84a1a;
  --aqua: #57c8bc;
  --radius: 6px;
  --shadow: 0 18px 50px rgba(16, 36, 38, 0.12);
  --container: 1200px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(87, 200, 188, 0.65);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  line-height: 1.16;
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--deep);
  transform: translateY(-150%);
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--deep-2);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 3px;
  background: var(--orange);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading.compact {
  display: block;
}

.section-heading h2,
.process-heading h2,
.about-content h2,
.contact-copy h2,
.corridor-copy h2 {
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 750;
}

.section-heading > p {
  max-width: 460px;
  margin-bottom: 3px;
  color: var(--ink-soft);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 750;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  transition: transform 180ms ease;
}

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

.button:hover svg {
  transform: translate(2px, -2px);
}

.button-primary {
  color: #fff;
  background: var(--orange);
}

.button-primary:hover {
  background: var(--orange-dark);
}

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

.button-dark:hover {
  background: var(--deep-2);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.text-link svg {
  width: 17px;
  height: 17px;
}

.text-link-light {
  color: #fff;
}

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

.site-header.scrolled,
.site-header.menu-active {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(16, 36, 38, 0.08);
  backdrop-filter: blur(16px);
}

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

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

.brand img {
  width: 132px;
  height: auto;
}

.site-header:not(.scrolled):not(.menu-active) .brand img {
  filter: saturate(1.5) brightness(1.3);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  padding-left: 12px;
  border-left: 1px solid currentColor;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 14px;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 10px;
  opacity: 0.7;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  padding: 30px 0;
  font-size: 14px;
  font-weight: 650;
}

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

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

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.header-phone svg {
  width: 16px;
  height: 16px;
}

.icon-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: currentColor;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-close-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-open-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-close-icon {
  display: block;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  height: calc(100svh - 96px);
  min-height: 650px;
  max-height: 780px;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

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

.hero-image {
  object-fit: cover;
  object-position: center 58%;
  animation: hero-settle 1.1s cubic-bezier(.2, .75, .2, 1) both;
}

.hero-shade {
  background: rgba(5, 34, 39, 0.7);
}

.hero-shade::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 48%;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 34, 39, 0.22);
  content: "";
}

.hero-inner {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
}

.hero-content {
  width: min(720px, 76%);
  padding-top: 44px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 68px;
  font-weight: 780;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-proof {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: min(720px, 62%);
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-proof > div {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
}

.hero-proof > div:last-child {
  border-right: 0;
}

.hero-proof strong {
  color: var(--deep);
  font-size: 22px;
  line-height: 1.2;
}

.hero-proof span {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 12px;
}

.capability-strip {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

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

.capability-inner p {
  margin: 0;
  font-weight: 700;
}

.capability-inner ul {
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-inner li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
}

.capability-inner svg {
  width: 17px;
  height: 17px;
  color: var(--orange);
}

.services-section {
  background: #fff;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-image-wrap {
  position: relative;
  height: 224px;
  overflow: hidden;
  background: var(--mist);
}

.service-image-wrap::after {
  position: absolute;
  inset: 0;
  background: rgba(11, 46, 51, 0.14);
  content: "";
  transition: background-color 220ms ease;
}

.service-card:hover .service-image-wrap::after {
  background: rgba(11, 46, 51, 0.03);
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2, .75, .2, 1);
}

.service-card:hover img {
  transform: scale(1.035);
}

.service-index {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: var(--deep);
  font-size: 12px;
  font-weight: 800;
}

.service-body {
  position: relative;
  padding: 34px;
}

.service-icon {
  position: absolute;
  top: -28px;
  left: 34px;
  z-index: 2;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: #fff;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--orange);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-body h3 {
  margin: 8px 0 14px;
  font-size: 25px;
}

.service-body > p {
  min-height: 53px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 15px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.service-tags li {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink-soft);
  background: var(--mist);
  font-size: 12px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 4px;
  color: var(--deep);
  border: 0;
  border-bottom: 1px solid var(--deep);
  background: transparent;
  cursor: pointer;
  font-weight: 750;
}

.service-link svg {
  width: 16px;
  height: 16px;
}

.corridor-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  color: #fff;
  background: var(--deep);
}

.corridor-section::before {
  position: absolute;
  top: -60px;
  right: 8%;
  width: 150px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
  transform: rotate(32deg);
}

.corridor-inner {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  align-items: center;
}

.corridor-copy h2 {
  margin-bottom: 24px;
}

.corridor-copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.route-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 42px;
}

.route-line {
  position: absolute;
  top: 53px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  background: rgba(255, 255, 255, 0.28);
}

.route-line::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 2px;
  background: var(--orange);
  content: "";
}

.route-stop {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: center;
  padding: 35px 12px 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.route-stop:nth-of-type(5) {
  border-color: rgba(87, 200, 188, 0.5);
}

.route-stop > svg {
  width: 28px;
  height: 28px;
  margin-bottom: 20px;
  color: var(--aqua);
}

.route-dot {
  position: absolute;
  top: -37px;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 3px solid var(--deep);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 2px var(--orange);
  transform: translateX(-50%);
}

.route-stop strong {
  margin-bottom: 8px;
  font-size: 15px;
}

.route-stop small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

.advantages-section {
  background: var(--mist);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.advantage-item {
  position: relative;
  padding: 42px 28px 38px;
  border-right: 1px solid var(--line);
}

.advantage-item:last-child {
  border-right: 0;
}

.advantage-item > span {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #9baaa7;
  font-size: 11px;
  font-weight: 800;
}

.advantage-item svg {
  width: 34px;
  height: 34px;
  margin-bottom: 36px;
  color: var(--orange);
  stroke-width: 1.7;
}

.advantage-item h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.advantage-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.process-section {
  padding: 100px 0;
  background: #fff;
}

.process-inner {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 90px;
  align-items: start;
}

.process-heading h2 {
  margin-bottom: 20px;
}

.process-heading > p:last-child {
  color: var(--ink-soft);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 7px;
  font-size: 20px;
}

.process-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.about-section {
  border-top: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 84px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 520px;
}

.about-media img {
  width: calc(100% - 46px);
  height: 520px;
  object-fit: cover;
}

.about-year {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 190px;
  height: 170px;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  color: #fff;
  background: var(--orange);
}

.about-year strong {
  font-size: 48px;
  line-height: 1;
}

.about-year span {
  margin-top: 12px;
  font-size: 13px;
}

.about-content h2 {
  margin-bottom: 26px;
}

.about-content > p {
  color: var(--ink-soft);
}

.about-content .about-lead {
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
}

.company-facts {
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
}

.company-facts > div {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.company-facts dt {
  color: var(--ink-soft);
  font-size: 13px;
}

.company-facts dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.contact-section {
  padding: 108px 0;
  color: #fff;
  background: var(--deep-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 22px;
}

@media (min-width: 901px) {
  .contact-copy h2 {
    white-space: nowrap;
  }
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.68);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin: 38px 0 32px;
}

.contact-methods .contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-methods .contact-method > svg {
  width: 20px;
  height: 20px;
  color: var(--aqua);
}

.contact-methods span {
  display: flex;
  flex-direction: column;
}

.contact-methods small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.contact-methods strong {
  font-size: 16px;
}

.contact-copy address {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
  font-style: normal;
}

.contact-copy address svg {
  width: 20px;
  min-width: 20px;
  color: var(--orange);
}

.quote-form {
  padding: 38px;
  color: var(--ink);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.form-heading h3 {
  margin: 4px 0 0;
  font-size: 28px;
}

.form-heading > svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.form-kicker {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
}

.call-panel-main {
  padding: 28px 0 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.call-label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
}

.call-number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--deep);
  font-size: 36px;
  font-weight: 780;
  line-height: 1.15;
}

.call-panel-main p {
  max-width: 440px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.call-service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 24px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.call-service-list li {
  padding: 12px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}

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

.call-panel-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 11px;
}

.site-footer {
  color: #d9e1df;
  background: #081f22;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 1fr 1fr;
  gap: 48px;
  padding: 72px 0 56px;
}

.brand-footer {
  min-width: 0;
  color: #fff;
}

.brand-footer img {
  filter: saturate(1.5) brightness(1.3);
}

.footer-brand p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}

.footer-links strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 13px;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.56);
}

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

.footer-qr {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.footer-qr > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-qr img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border: 4px solid #fff;
}

.footer-qr span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

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

.footer-bottom p {
  margin: 0;
}

.mobile-contact-bar {
  display: none;
}

.error-page {
  min-height: 100svh;
  background: var(--mist);
}

.error-main {
  display: flex;
  width: min(calc(100% - 48px), var(--container));
  min-height: 100svh;
  margin: 0 auto;
  flex-direction: column;
  padding: 34px 0 64px;
}

.error-brand {
  color: var(--ink);
}

.error-content {
  width: min(100%, 680px);
  margin: auto 0;
  padding: 72px 0;
}

.error-code {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 96px;
  line-height: 0.9;
}

.error-content h1 {
  margin-bottom: 18px;
  font-size: 44px;
}

.error-content > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 30px;
  color: var(--ink-soft);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(.2, .75, .2, 1);
}

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

@keyframes hero-settle {
  from { opacity: 0.4; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 20px;
  }

  .header-phone {
    display: none;
  }

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

  .section-heading h2,
  .process-heading h2,
  .about-content h2,
  .contact-copy h2,
  .corridor-copy h2 {
    font-size: 42px;
  }

  .corridor-inner {
    gap: 60px;
  }

  .contact-grid {
    gap: 48px;
  }

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

  .footer-qr {
    display: none;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 88px 0;
  }

  .desktop-nav,
  .header-actions > .button {
    display: none;
  }

  .icon-button {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    inset: 82px 0 0;
    z-index: 99;
    width: 100%;
    height: calc(100dvh - 82px);
    padding: 24px;
    color: var(--ink);
    background: #fff;
    overflow-y: auto;
  }

  .mobile-menu.open {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
    font-weight: 720;
  }

  .mobile-menu nav svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
  }

  .mobile-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 24px;
    color: var(--ink-soft);
    font-size: 13px;
  }

  .hero {
    height: calc(100svh - 70px);
    min-height: 650px;
  }

  .hero-content {
    width: 90%;
  }

  .hero-proof {
    width: 78%;
  }

  .hero-proof > div {
    min-height: 98px;
    padding: 18px;
  }

  .capability-inner {
    align-items: flex-start;
  }

  .capability-inner ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-image-wrap {
    height: 190px;
  }

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

  .corridor-inner {
    gap: 58px;
  }

  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .advantage-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .process-inner,
  .about-grid,
  .contact-grid {
    gap: 52px;
  }

  .about-media,
  .about-media img {
    min-height: 420px;
    height: 420px;
  }

  .footer-main {
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 64px;
    font-size: 15px;
  }

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

  .container {
    width: calc(100% - 32px);
  }

  .section {
    padding: 72px 0;
  }

  .header-inner {
    height: 70px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand img {
    width: 108px;
  }

  .brand-copy {
    padding-left: 8px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy small {
    display: none;
  }

  .mobile-menu {
    inset: 70px 0 64px;
    height: calc(100dvh - 134px);
  }

  .hero {
    height: calc(100svh - 64px);
    min-height: 610px;
    max-height: 720px;
  }

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

  .hero-shade {
    background: rgba(5, 34, 39, 0.72);
  }

  .hero-shade::after {
    display: none;
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 128px;
  }

  .hero-content {
    width: 100%;
    padding-top: 0;
  }

  .hero h1 {
    margin-bottom: 19px;
    font-size: 43px;
  }

  .hero-lead {
    margin-bottom: 26px;
    font-size: 16px;
  }

  .hero-actions {
    gap: 20px;
  }

  .hero .button {
    min-height: 48px;
    padding: 0 17px;
    font-size: 14px;
  }

  .hero-proof {
    right: 16px;
    bottom: 0;
    left: 16px;
    width: auto;
  }

  .hero-proof > div {
    min-width: 0;
    min-height: 84px;
    padding: 14px 10px;
  }

  .hero-proof strong {
    font-size: 15px;
  }

  .hero-proof span {
    font-size: 10px;
  }

  .capability-strip {
    padding: 22px 0;
  }

  .capability-inner {
    display: block;
  }

  .capability-inner p {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .capability-inner ul {
    gap: 10px 14px;
  }

  .capability-inner li {
    font-size: 11px;
  }

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

  .section-heading h2,
  .process-heading h2,
  .about-content h2,
  .contact-copy h2,
  .corridor-copy h2 {
    font-size: 34px;
  }

  .section-heading > p {
    font-size: 14px;
  }

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

  .service-image-wrap {
    height: 176px;
  }

  .service-body {
    padding: 28px 24px 26px;
  }

  .service-icon {
    left: 24px;
    width: 50px;
    height: 50px;
  }

  .service-body h3 {
    font-size: 22px;
  }

  .service-body > p {
    min-height: 0;
  }

  .corridor-section {
    padding: 76px 0;
  }

  .route-map {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 0 0 24px;
  }

  .route-line {
    top: 10%;
    right: auto;
    bottom: 10%;
    left: 6px;
    width: 2px;
    height: auto;
  }

  .route-line::after {
    width: 2px;
    height: 42%;
  }

  .route-stop {
    min-height: 0;
    align-items: flex-start;
    padding: 20px 20px 20px 58px;
    text-align: left;
  }

  .route-stop > svg {
    position: absolute;
    top: 24px;
    left: 20px;
    width: 22px;
    height: 22px;
  }

  .route-dot {
    top: 50%;
    left: -24px;
    transform: translate(-50%, -50%);
  }

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

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

  .advantage-item:last-child {
    border-bottom: 0;
  }

  .advantage-item {
    padding: 32px 22px;
  }

  .advantage-item svg {
    margin-bottom: 26px;
  }

  .process-section {
    padding: 72px 0;
  }

  .process-inner {
    gap: 34px;
  }

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

  .about-media,
  .about-media img {
    min-height: 330px;
    height: 330px;
  }

  .about-media img {
    width: calc(100% - 28px);
  }

  .about-year {
    width: 148px;
    height: 125px;
    padding: 20px;
  }

  .about-year strong {
    font-size: 38px;
  }

  .about-year span {
    margin-top: 8px;
    font-size: 11px;
  }

  .company-facts > div {
    grid-template-columns: 78px 1fr;
  }

  .contact-section {
    padding: 74px 0;
  }

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

  .call-number {
    font-size: 28px;
  }

  .call-panel-meta {
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 54px 0 38px;
  }

  .footer-links:first-of-type {
    display: none;
  }

  .footer-bottom {
    display: block;
    padding-bottom: 26px;
  }

  .footer-bottom p {
    margin-bottom: 6px;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: grid;
    height: 64px;
    grid-template-columns: 1fr 1fr 1.35fr;
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 -8px 24px rgba(16, 36, 38, 0.09);
  }

  .mobile-contact-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--deep);
    border-right: 1px solid var(--line);
    font-size: 10px;
    font-weight: 700;
  }

  .mobile-contact-bar svg {
    width: 18px;
    height: 18px;
  }

  .mobile-contact-bar .mobile-quote {
    color: #fff;
    border-right: 0;
    background: var(--orange);
  }

  .error-main {
    width: calc(100% - 32px);
    padding-top: 24px;
  }

  .error-content {
    padding: 50px 0;
  }

  .error-code {
    font-size: 72px;
  }

  .error-content h1 {
    font-size: 34px;
  }
}

@media (max-width: 360px) {
  .contact-copy h2 {
    font-size: 28px;
    white-space: nowrap;
  }
}

@media (max-width: 640px) and (max-height: 700px) {
  .hero {
    height: 480px;
    min-height: 480px;
  }

  .hero-inner {
    padding-top: 84px;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
  }

  .hero h1 {
    margin-bottom: 12px;
    font-size: 34px;
  }

  .hero-lead {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero .button {
    min-height: 44px;
  }

  .hero-proof > div {
    min-height: 70px;
  }
}

@media (min-width: 641px) and (max-height: 720px) {
  .hero {
    height: calc(100svh - 40px);
    min-height: 560px;
    max-height: none;
  }

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

  .hero-lead {
    margin-bottom: 24px;
    font-size: 17px;
  }

  .hero-proof > div {
    min-height: 96px;
  }
}

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

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

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