:root {
  --ink: #071b35;
  --navy: #0a2a58;
  --blue: #155da3;
  --sky: #a9d3f2;
  --red: #cf0c3b;
  --cream: #f3f0e8;
  --paper: #fbfaf6;
  --white: #fff;
  --muted: #5b6776;
  --line: #cfd5dc;
  --shadow: 0 24px 70px rgba(7, 27, 53, .14);
  --radius: 4px;
  --container: min(1180px, calc(100% - 48px));
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { touch-action: manipulation; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Space Grotesk", Arial, sans-serif;
  line-height: .98;
  letter-spacing: -.045em;
}
.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; top: 10px; left: 10px; z-index: 1000; padding: 10px 16px;
  color: var(--white); background: var(--red); transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #f3c94f; outline-offset: 4px; }
.section { width: var(--container); margin-inline: auto; padding: 130px 0; }
.eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
  color: var(--sky); font-family: "Space Grotesk", sans-serif; font-size: .78rem;
  font-weight: 700; letter-spacing: .14em; line-height: 1.2; text-transform: uppercase;
}
.eyebrow > span { width: 28px; height: 3px; background: var(--red); }
.eyebrow-dark { color: var(--blue); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: 88px;
  color: var(--white); border-bottom: 1px solid rgba(255,255,255,.18);
  transition: background .25s var(--ease), box-shadow .25s var(--ease), height .25s var(--ease);
}
.site-header.is-scrolled {
  height: 76px; color: var(--ink); background: rgba(251,250,246,.96);
  border-color: rgba(7,27,53,.11); box-shadow: 0 8px 30px rgba(7,27,53,.08);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: var(--container); height: 100%; margin: auto; display: flex; align-items: center; gap: 42px;
}
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; min-width: 230px; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong {
  font: 700 1.3rem/1 "Space Grotesk", sans-serif; letter-spacing: -.035em;
}
.brand-copy span { margin-top: 5px; font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  position: relative; padding: 10px 0; font-size: .82rem; font-weight: 700; letter-spacing: .03em;
}
.site-nav a::after {
  content: ""; position: absolute; inset: auto 0 2px; height: 2px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform .2s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-phone { display: grid; padding: 8px 0 8px 18px; border-left: 1px solid currentColor; line-height: 1.1; }
.header-phone span { margin-bottom: 5px; font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.header-phone strong { font: 700 .93rem/1 "Space Grotesk", sans-serif; }
.menu-toggle { display: none; }

.hero {
  position: relative; min-height: 780px; height: max(780px, 100dvh);
  display: grid; place-items: center; overflow: hidden; color: var(--white); background: var(--navy);
}
.geo-grid {
  position: absolute; inset: 0; opacity: .3;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, black, transparent 82%);
}
.geo-grid::before {
  content: ""; position: absolute; width: 440px; height: 440px; top: -120px; left: 42%;
  border: 90px solid rgba(21,93,163,.52); transform: rotate(45deg);
}
.hero::after {
  content: ""; position: absolute; right: -135px; bottom: -135px; width: 310px; height: 310px;
  border: 52px solid var(--red); transform: rotate(45deg);
}
.hero-inner {
  position: relative; z-index: 2; width: var(--container); padding: 138px 0 92px;
  display: grid; grid-template-columns: .87fr 1.13fr; align-items: center; gap: 78px;
}
.hero-copy { position: relative; z-index: 3; }
.hero h1 { max-width: 650px; margin-bottom: 27px; font-size: clamp(4rem, 6.7vw, 7.2rem); font-weight: 600; }
.hero h1 em, .route-title h2 em, .quote-intro h2 em { color: var(--sky); font-style: normal; }
.hero-lede { max-width: 560px; margin-bottom: 34px; color: #d8e4f1; font-size: 1.1rem; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 26px; }
.button {
  min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 30px;
  padding: 13px 22px; border: 0; border-radius: var(--radius);
  font: 700 .8rem/1 "Space Grotesk", sans-serif; letter-spacing: .04em; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.button-primary { color: var(--white); background: var(--red); box-shadow: 6px 6px 0 rgba(255,255,255,.18); }
.button-primary:hover { background: #ad072f; transform: translate(-2px,-2px); box-shadow: 9px 9px 0 rgba(255,255,255,.18); }
.button-primary:active { transform: translate(0); box-shadow: 3px 3px 0 rgba(255,255,255,.18); }
.button-text { padding-inline: 2px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.55); border-radius: 0; }
.button-text:hover { color: var(--sky); }
.hero-proof {
  max-width: 500px; display: grid; grid-template-columns: repeat(3,1fr); margin-top: 62px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2);
}
.hero-proof > div { display: flex; align-items: flex-start; gap: 10px; }
.hero-proof strong { color: var(--sky); font: 700 1.05rem/1 "Space Grotesk", sans-serif; }
.hero-proof span { font-size: .67rem; font-weight: 600; letter-spacing: .04em; line-height: 1.35; text-transform: uppercase; }
.hero-visual { position: relative; padding: 40px 8px 28px 36px; }
.photo-frame {
  position: relative; z-index: 1; overflow: hidden; aspect-ratio: 1.05; border: 1px solid rgba(255,255,255,.35);
  box-shadow: 22px 22px 0 var(--blue), var(--shadow);
  clip-path: polygon(0 0, 100% 0, 100% 82%, 82% 100%, 0 100%);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 56% center; }
.photo-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 55%, rgba(7,27,53,.48)); }
.route-chip {
  position: absolute; z-index: 3; width: 150px; padding: 11px 14px; color: var(--ink); background: var(--paper);
  border-left: 4px solid var(--red); box-shadow: 0 10px 24px rgba(7,27,53,.2); line-height: 1.15;
}
.route-chip span { display: block; margin-bottom: 4px; color: var(--muted); font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.route-chip strong { font: 700 .82rem/1 "Space Grotesk", sans-serif; }
.route-chip-a { left: -4px; bottom: 28%; }
.route-chip-b { right: -15px; top: 22%; }
.route-line {
  position: absolute; z-index: 2; left: 104px; right: 78px; top: 51%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--white) 0 7px, transparent 7px 14px);
  transform: rotate(-22deg);
}
.route-line::before, .route-line::after { content: ""; position: absolute; top: -5px; width: 12px; height: 12px; border-radius: 50%; background: var(--red); }
.route-line::before { left: 0; }.route-line::after { right: 0; }
.hero-stamp {
  position: absolute; z-index: 4; right: 4px; bottom: -10px; width: 112px; height: 112px;
  display: grid; place-content: center; text-align: center; color: var(--white); background: var(--red);
  clip-path: polygon(50% 0,61% 11%,77% 5%,83% 21%,100% 24%,94% 41%,100% 53%,88% 64%,90% 81%,72% 84%,63% 100%,49% 91%,34% 100%,27% 84%,10% 79%,14% 63%,0 52%,9% 38%,3% 23%,20% 18%,27% 3%,42% 10%);
  transform: rotate(8deg);
}
.hero-stamp span { font-size: .57rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hero-stamp strong { font: 700 1.1rem/1 "Space Grotesk", sans-serif; }
.scroll-cue {
  position: absolute; z-index: 3; bottom: 24px; left: 50%; display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.7); font-size: .63rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.scroll-cue i { width: 44px; height: 1px; background: currentColor; }

.trust-strip { overflow: hidden; color: var(--white); background: var(--red); }
.trust-track {
  min-height: 64px; width: var(--container); margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 22px;
}
.trust-track p { margin: 0; font: 700 .7rem/1 "Space Grotesk", sans-serif; letter-spacing: .11em; text-transform: uppercase; white-space: nowrap; }
.trust-track i { width: 7px; height: 7px; background: var(--sky); transform: rotate(45deg); }

.section-head { display: grid; grid-template-columns: 1fr .66fr; align-items: end; gap: 70px; margin-bottom: 60px; }
.section-head h2, .about-copy h2 { margin-bottom: 0; font-size: clamp(3rem, 5vw, 5.7rem); }
.section-head > p { max-width: 500px; margin: 0 0 7px; color: var(--muted); font-size: 1.04rem; }
.service-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: auto auto; gap: 16px; }
.service-card {
  position: relative; min-height: 295px; overflow: hidden; color: var(--ink); background: var(--cream);
  border: 1px solid rgba(7,27,53,.12); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(7,27,53,.11); }
.service-feature { grid-row: span 2; display: grid; grid-template-rows: 1.12fr .88fr; min-height: 606px; }
.service-image { position: relative; overflow: hidden; }
.service-image img, .service-photo > img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.service-card:hover img { transform: scale(1.025); }
.service-image .service-index { position: absolute; top: 18px; left: 18px; color: var(--white); background: var(--red); }
.service-copy { position: relative; z-index: 1; padding: 31px; }
.service-index {
  width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 42px;
  color: var(--blue); border: 1px solid currentColor; font: 700 .65rem/1 "Space Grotesk", sans-serif;
}
.service-feature .service-copy { display: flex; flex-direction: column; align-items: flex-start; }
.service-feature .service-copy .service-index { display: none; }
.mini-label { margin-bottom: 16px; color: var(--red); font-size: .65rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.service-card h3 { margin-bottom: 16px; font-size: 1.65rem; }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: .88rem; line-height: 1.65; }
.service-card a { margin-top: auto; padding-top: 18px; color: var(--blue); font-size: .76rem; font-weight: 700; border-bottom: 1px solid var(--blue); }
.service-red { color: var(--white); background: var(--red); border-color: var(--red); }
.service-red p, .service-blue p { color: rgba(255,255,255,.78); }
.service-red .service-index, .service-blue .service-index { color: var(--white); }
.service-photo { display: grid; grid-template-columns: .45fr .55fr; grid-column: span 2; }
.service-photo > img { min-height: 295px; }
.service-blue { color: var(--white); background: var(--blue); border-color: var(--blue); }
.storage-mark { position: absolute; right: -32px; top: 10px; width: 165px; height: 165px; opacity: .22; transform: rotate(45deg); }
.storage-mark span { position: absolute; border: 2px solid var(--white); }
.storage-mark span:nth-child(1) { inset: 0; }.storage-mark span:nth-child(2) { inset: 24px; }.storage-mark span:nth-child(3) { inset: 48px; }

.route-section { position: relative; overflow: hidden; color: var(--white); background: var(--navy); }
.route-inner {
  width: var(--container); margin: auto; padding: 130px 0 100px; display: grid;
  grid-template-columns: .85fr 1.15fr; gap: 110px;
}
.route-title h2, .quote-intro h2 { margin: 0; font-size: clamp(3.3rem, 5.8vw, 6.4rem); }
.steps { margin: 4px 0 0; padding: 0; list-style: none; }
.steps li {
  position: relative; display: grid; grid-template-columns: 60px 1fr; gap: 25px; padding: 0 0 42px; margin-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.steps li:last-child { margin-bottom: 0; }
.steps li > span {
  width: 48px; height: 48px; display: grid; place-items: center; color: var(--sky);
  border: 1px solid rgba(169,211,242,.58); font: 700 .68rem/1 "Space Grotesk", sans-serif;
}
.steps h3 { margin: 0 0 10px; font-size: 1.3rem; letter-spacing: -.02em; }
.steps p { max-width: 550px; margin: 0; color: #b8c7d9; font-size: .91rem; }
.area-line {
  position: relative; z-index: 2; min-height: 88px; display: flex; align-items: center; justify-content: center; gap: 30px;
  padding: 18px 24px; color: var(--ink); background: var(--sky); font: 700 .67rem/1.2 "Space Grotesk", sans-serif;
  letter-spacing: .1em; text-transform: uppercase;
}
.area-line i { width: 38px; height: 1px; background: var(--blue); }

.about { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 100px; }
.about-media { position: relative; padding: 0 35px 42px 0; }
.about-photo { position: relative; height: 620px; overflow: hidden; background: var(--cream); }
.about-photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(7,27,53,.13); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.about-media::before {
  content: ""; position: absolute; width: 180px; height: 180px; right: 0; bottom: 0;
  border: 25px solid var(--sky); transform: rotate(45deg);
}
.about-note {
  position: absolute; right: 3px; bottom: 24px; width: 165px; padding: 18px; color: var(--white); background: var(--red);
  box-shadow: 8px 8px 0 rgba(7,27,53,.16);
}
.about-note strong { display: block; font: 700 1.2rem/1 "Space Grotesk", sans-serif; }
.about-note span { display: block; margin-top: 7px; font-size: .64rem; font-weight: 700; letter-spacing: .08em; line-height: 1.4; text-transform: uppercase; }
.about-copy h2 { max-width: 720px; }
.about-intro { max-width: 680px; margin: 32px 0 40px; color: var(--muted); font-size: 1.05rem; }
blockquote { margin: 0; padding: 32px 0 32px 35px; border-left: 5px solid var(--red); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
blockquote p { margin-bottom: 18px; font: 600 1.45rem/1.35 "Space Grotesk", sans-serif; letter-spacing: -.025em; }
blockquote footer { color: var(--blue); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
blockquote footer span { margin-left: 10px; color: var(--muted); font-weight: 500; }
.quality-row { display: grid; grid-template-columns: 145px 1fr; gap: 28px; margin-top: 35px; }
.quality-row strong { font: 700 .82rem/1.25 "Space Grotesk", sans-serif; text-transform: uppercase; }
.quality-row p { margin: 0; color: var(--muted); font-size: .84rem; }

.quote-section {
  position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; padding: 125px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white); background: var(--blue);
}
.quote-section::before {
  content: ""; position: absolute; inset: 0; opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px);
  background-size: 62px 62px; mask-image: linear-gradient(90deg, black, transparent 65%);
}
.quote-intro, .quote-form { position: relative; z-index: 1; }
.quote-intro > p:not(.eyebrow) { max-width: 510px; margin: 32px 0 42px; color: #d4e1ee; }
.direct-contact { display: grid; gap: 13px; }
.direct-contact a { display: grid; padding-left: 16px; border-left: 3px solid var(--red); }
.direct-contact span { margin-bottom: 5px; color: var(--sky); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.direct-contact strong { font: 600 1rem/1.2 "Space Grotesk", sans-serif; }
.quote-form { padding: 38px; color: var(--ink); background: var(--paper); box-shadow: 18px 18px 0 var(--navy); }
.form-progress { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.form-progress span { font: 700 1.1rem/1 "Space Grotesk", sans-serif; }
.form-progress strong { color: var(--blue); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 20px; }
.field label, legend { display: block; margin-bottom: 8px; font-size: .7rem; font-weight: 700; letter-spacing: .055em; }
.field label span { color: var(--muted); font-weight: 500; }
.field input {
  width: 100%; height: 50px; padding: 10px 13px; color: var(--ink); background: var(--white);
  border: 1px solid #b8c0ca; border-radius: 2px; transition: border-color .2s, box-shadow .2s;
}
.field input:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,93,163,.18); }
fieldset { min-width: 0; margin: 0 0 20px; padding: 0; border: 0; }
.choice-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.choice-grid label { cursor: pointer; }
.choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.choice-grid span {
  min-height: 48px; display: grid; place-items: center; padding: 8px; background: var(--white);
  border: 1px solid #b8c0ca; font-size: .67rem; font-weight: 700; text-align: center; transition: .2s var(--ease);
}
.choice-grid input:checked + span { color: var(--white); background: var(--navy); border-color: var(--navy); }
.choice-grid input:focus-visible + span { outline: 3px solid #f3c94f; outline-offset: 2px; }
.form-submit { width: 100%; box-shadow: 5px 5px 0 rgba(7,27,53,.18); }
.form-note, .form-status { margin: 13px 0 0; color: var(--muted); font-size: .68rem; text-align: center; }
.form-status { color: var(--blue); font-weight: 700; }

.site-footer { color: var(--white); background: var(--ink); }
.footer-top {
  width: var(--container); min-height: 240px; margin: auto; display: grid; grid-template-columns: 190px 1fr auto;
  align-items: center; gap: 70px;
}
.footer-brand img { width: 150px; height: 150px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-top > p { max-width: 440px; margin: 0; color: #aebccd; }
.footer-call { display: grid; padding-left: 22px; border-left: 4px solid var(--red); }
.footer-call span { margin-bottom: 8px; color: var(--sky); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-call strong { font: 700 1.55rem/1 "Space Grotesk", sans-serif; }
.footer-bottom {
  width: var(--container); margin: auto; padding: 25px 0 32px; display: flex; justify-content: space-between; gap: 25px;
  color: #8fa0b3; border-top: 1px solid rgba(255,255,255,.13); font-size: .65rem;
}
.footer-bottom a:hover { color: var(--white); }
.mobile-actions { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  :root { --container: min(100% - 40px, 920px); }
  .site-nav { gap: 19px; }.header-phone { display: none; }
  .hero { height: auto; min-height: 820px; }
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 38px; }
  .hero h1 { font-size: clamp(3.8rem, 7vw, 5.2rem); }
  .hero-proof { gap: 10px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-feature { grid-row: span 2; }
  .service-photo { grid-column: span 1; grid-template-columns: 1fr; }
  .service-photo > img { height: 240px; min-height: 0; }
  .service-blue { grid-column: span 2; }
  .route-inner { gap: 60px; }
  .about { gap: 55px; }.about-photo { height: 560px; }
  .quote-section { gap: 48px; padding-inline: 32px; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --container: calc(100% - 32px); }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .section { padding: 88px 0; }
  .site-header, .site-header.is-scrolled { height: 70px; }
  .site-header { color: var(--ink); background: rgba(251,250,246,.98); border-color: rgba(7,27,53,.1); }
  .header-inner { gap: 12px; }
  .brand { min-width: auto; }.brand img { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 1.07rem; }.brand-copy span { font-size: .54rem; }
  .menu-toggle {
    width: 48px; height: 48px; display: grid; place-content: center; gap: 7px; padding: 0;
    color: var(--ink); background: transparent; border: 0; cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; background: currentColor; transition: .2s var(--ease); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav {
    position: fixed; inset: 70px 0 auto; display: grid; gap: 0; padding: 10px 16px 22px;
    color: var(--ink); background: var(--paper); box-shadow: 0 18px 30px rgba(7,27,53,.14);
    visibility: hidden; opacity: 0; transform: translateY(-10px); transition: .2s var(--ease);
  }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .site-nav a { min-height: 48px; display: flex; align-items: center; padding: 8px 4px; border-bottom: 1px solid var(--line); }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding: 114px 0 100px; gap: 48px; }
  .hero h1 { font-size: clamp(3.35rem, 16vw, 5.3rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 8px; }
  .button { min-height: 52px; }.button-text { justify-content: flex-start; }
  .hero-proof { margin-top: 42px; gap: 12px; }
  .hero-proof > div { display: grid; gap: 6px; }
  .hero-visual { padding: 20px 12px 20px 0; }
  .photo-frame { aspect-ratio: 1.25; box-shadow: 12px 12px 0 var(--blue); }
  .route-chip { width: 128px; padding: 9px 11px; }
  .route-chip-a { left: -4px; bottom: 22%; }.route-chip-b { right: -4px; top: 5%; }
  .route-line { left: 84px; right: 55px; }.hero-stamp { right: -5px; bottom: -24px; width: 90px; height: 90px; }
  .scroll-cue { display: none; }
  .trust-track { width: max-content; min-height: 56px; padding: 0 18px; gap: 20px; animation: marquee 24s linear infinite; }
  .trust-track p { font-size: .61rem; }
  .section-head { grid-template-columns: 1fr; gap: 25px; margin-bottom: 42px; }
  .section-head h2, .about-copy h2 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-feature { min-height: 570px; }
  .service-blue { grid-column: auto; }.service-photo { grid-column: auto; }
  .route-inner { grid-template-columns: 1fr; gap: 60px; padding: 90px 0 65px; }
  .route-title h2, .quote-intro h2 { font-size: clamp(3rem, 13vw, 4.8rem); }
  .steps li { grid-template-columns: 50px 1fr; gap: 18px; }
  .area-line { justify-content: flex-start; overflow-x: auto; gap: 18px; }
  .area-line span { white-space: nowrap; }
  .about { grid-template-columns: 1fr; gap: 65px; }
  .about-photo { height: 510px; }
  .about-media { padding-right: 22px; }
  .about-note { right: -4px; }
  .quality-row { grid-template-columns: 1fr; gap: 10px; }
  .quote-section { grid-template-columns: 1fr; gap: 55px; padding: 90px 16px; }
  .quote-form { padding: 24px 18px; box-shadow: 8px 8px 0 var(--navy); }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-progress { align-items: flex-start; gap: 8px; flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; gap: 25px; padding: 60px 0; }
  .footer-brand img { width: 115px; height: 115px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .mobile-actions {
    position: fixed; z-index: 45; inset: auto 0 0; height: calc(64px + env(safe-area-inset-bottom));
    display: grid; grid-template-columns: 1fr 1fr; padding-bottom: env(safe-area-inset-bottom); background: var(--paper);
    box-shadow: 0 -8px 24px rgba(7,27,53,.14);
  }
  .mobile-actions a { display: grid; place-items: center; font: 700 .75rem/1 "Space Grotesk", sans-serif; letter-spacing: .06em; }
  .mobile-actions a:first-child { color: var(--white); background: var(--navy); }
  .mobile-actions a:last-child { color: var(--white); background: var(--red); }
}

@keyframes marquee { to { transform: translateX(-28%); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
