/* AM Logistics visual refinements */
.nav-shell { position: relative; }
.brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  width: 238px;
  height: 100%;
}
.brand img { width: 238px; transform: none; }
.site-nav { order: -1; margin: 0 auto 0 0; gap: 22px; }
.site-nav a { font-size: 16.5px; font-weight: 800; letter-spacing: .045em; }
.nav-cta {
  margin-left: auto;
  background: var(--orange);
  color: var(--ink);
  min-width: 150px;
  text-align: center;
  transition: background .25s, color .25s;
}
.nav-cta span { color: var(--ink); }
.nav-cta:hover { background: var(--ink); color: var(--orange); }
.nav-cta:hover span { color: var(--orange); }
.mobile-nav-actions { display: none; }

.hero { height: min(790px, calc(100svh - var(--header))); min-height: 650px; }
.hero-slide {
  background-image: radial-gradient(circle at 75% 43%, rgba(19, 59, 83, .56), transparent 34%), linear-gradient(110deg, #061725 0%, #071b2c 58%, #0a2437 100%);
}
.hero-content { position: relative; z-index: 2; padding-bottom: 78px; }
.hero h1, .hero h2 { font-size: clamp(52px, 5.4vw, 80px); max-width: 720px; }
.hero-copy { max-width: 560px; margin-top: 24px; }
.hero-actions { margin-top: 32px; }
.hero-art {
  position: absolute;
  z-index: 3;
  right: -1.5%;
  bottom: 9%;
  width: min(55vw, 860px);
  pointer-events: none;
  filter: drop-shadow(0 30px 26px rgba(0, 0, 0, .42));
  transform: translateX(50px) scale(.98);
  transform-origin: right bottom;
  opacity: 0;
  transition: opacity .8s .22s ease, transform .95s .22s ease;
}
.hero-slide.active .hero-art { opacity: 1; transform: none; }
.hero-art img { width: 100%; height: auto; }
.hero-art-ship { width: min(57vw, 900px); bottom: 10%; }
.hero-art-cargo { width: min(55vw, 870px); bottom: 8%; }
.hero-art-truck { width: min(58vw, 920px); bottom: 8%; }
.hero-proof { z-index: 2; width: min(720px, 52vw); min-height: 145px; }
.hero-proof div { padding: 26px 30px; }
.hero-proof strong { white-space: nowrap; font-size: 27px; }
.hero-proof span { font-size: 10px; }
.hero-controls { z-index: 4; bottom: 35px; }

.service-card {
  min-height: 420px;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
}
.service-card::before { display: none; }
.service-card::after { background: linear-gradient(180deg, rgba(7, 26, 43, .04) 10%, rgba(7, 26, 43, .97) 92%); }
.service-card > div { position: relative; z-index: 2; margin-top: auto; }
.service-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}
.service-card:hover, .service-card:focus-visible {
  z-index: 4;
  transform: translateY(-7px) scale(1.018);
  box-shadow: 0 20px 48px rgba(255, 117, 0, .3), 0 0 0 1px rgba(255, 117, 0, .65);
  outline: none;
}
.service-card:hover .service-image, .service-card:focus-visible .service-image { transform: scale(1.065); }
.profile-download-card {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 46px;
  background: #273d4d;
  color: #fff;
}
.profile-download-card > div { max-width: 360px; text-align: left; }
.profile-download-card h3 { margin: 0 0 18px; font: 500 38px/1.05 Oswald, sans-serif; text-transform: uppercase; }
.profile-download-card > div > p:not(.eyebrow) { margin: 0 0 28px; color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.65; }
.profile-download-card .button { min-width: 210px; }

.about-content h2 { font-size: clamp(36px, 3.7vw, 52px); }

.purpose-intro {
  grid-template-columns: 1.7fr .8fr;
  align-items: end;
  gap: 80px;
}
.purpose-intro-main .eyebrow { margin-bottom: 26px; }
.purpose-intro-main h2 { margin-bottom: 0; }
.purpose-intro > p { max-width: 390px; margin: 0 0 8px; }
.purpose-card > span { font-size: 15px; }
.values-card > span {
  font: 500 32px/1 Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.values-card ul { margin: 34px 0 0; }
.values-card li { padding: 14px 0; font-size: 14px; }

.contact-form {
  background: rgba(8, 31, 48, .78);
  color: #fff;
  border: 1px solid rgba(255, 117, 0, .9);
  box-shadow: inset 0 0 0 1px rgba(255, 117, 0, .12), 0 24px 70px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.contact-form label { color: #fff; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  margin-top: 7px;
  padding: 13px 14px;
  color: #fff;
  background: rgba(4, 21, 34, .42);
  border: 1px solid rgba(255, 117, 0, .78);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255, 255, 255, .58); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(255, 117, 0, .18);
}
.contact-form select option { color: #fff; background: var(--navy); }
.contact-form .form-note { color: rgba(255, 255, 255, .56); }
.contact-form .form-status { color: #ffc28f; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.service-dialog {
  width: min(1040px, calc(100vw - 40px));
  max-width: none;
  padding: 0;
  overflow: hidden;
  background: #fff;
}
.dialog-layout { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 560px; }
.dialog-image { min-height: 560px; background: var(--navy); }
.dialog-image img { width: 100%; height: 100%; object-fit: cover; }
.dialog-content { padding: 64px 58px; display: flex; flex-direction: column; align-items: flex-start; }
.dialog-content h2 { font-size: clamp(42px, 5vw, 64px); }
.dialog-copy { font-size: 16px; line-height: 1.75; }
.dialog-cta { margin-top: 32px; margin-bottom: 4px; }
.dialog-close { z-index: 2; color: var(--ink); background: rgba(255,255,255,.92); width: 42px; height: 42px; }

.sticky-contact {
  position: fixed;
  z-index: 90;
  left: 18px;
  top: 56%;
  transform: translateY(-50%);
  display: grid;
  box-shadow: 0 15px 35px rgba(0,0,0,.2);
}
.sticky-contact a {
  width: 58px;
  min-height: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: var(--orange);
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,.16);
  transition: background .2s, color .2s;
}
.sticky-contact a:hover { background: var(--ink); color: var(--orange); }
.sticky-contact span { font-size: 20px; line-height: 1; }
.sticky-contact strong { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.go-top {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .22);
  font-size: 24px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.go-top:hover { transform: translateY(-4px); background: var(--ink); color: var(--orange); }

.footer-brand { display: block; background: transparent; width: 225px; padding: 0; }
.footer-brand img { width: 100%; height: auto; }
.footer-address { color: rgba(255,255,255,.58); font-style: normal; font-size: 12px; line-height: 1.7; }
.footer-address a { color: var(--orange-soft); }
.footer-contact { display: grid; gap: 7px; margin-top: 14px; }
.footer-contact a { display: flex; align-items: center; gap: 9px; }
.footer-contact span { display: inline-grid; place-items: center; width: 24px; height: 24px; border: 1px solid rgba(255,117,0,.5); color: var(--orange); }

@media (max-width: 1100px) {
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 13px; }
  .hero-art { right: -10%; width: 62vw; }
  .hero-proof { width: 58vw; }
}

@media (max-width: 980px) {
  .brand { width: 210px; z-index: 103; }
  .brand img { width: 210px; }
  .site-nav {
    z-index: 101;
    order: initial;
    margin: 0;
    min-height: 100dvh;
    padding: 110px 34px 44px;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    background: #fff !important;
    opacity: 1;
    backdrop-filter: none;
  }
  .site-nav > a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 4px;
    border-bottom: 1px solid rgba(7, 26, 43, .12);
    color: var(--navy);
    font-size: 18px;
    font-weight: 800;
  }
  .site-nav > a::after { bottom: 0; }
  .mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
    padding-top: 34px;
  }
  .mobile-nav-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 54px;
    padding: 12px;
    background: var(--orange);
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
  }
  .mobile-nav-actions a:hover { background: var(--navy); color: var(--orange); }
  .nav-cta { display: none; }
  .hero h1, .hero h2 { font-size: clamp(52px, 8vw, 72px); }
  .hero-art { right: -15%; bottom: 18%; width: 68vw; opacity: .46; }
  .hero-slide.active .hero-art { opacity: .46; }
  .hero-proof { width: 100%; max-width: 620px; }
  .dialog-layout { grid-template-columns: 1fr; }
  .dialog-image { min-height: 300px; height: 300px; }
  .dialog-content { padding: 42px; min-height: 440px; }
  .purpose-intro { grid-template-columns: 1.45fr .75fr; gap: 45px; }
}

@media (max-width: 680px) {
  .brand { left: 16px; transform: translateY(-50%); width: 184px; }
  .brand img { width: 184px; }
  .menu-toggle { margin-left: auto; }
  .site-nav { padding-inline: 22px; }
  .hero { min-height: 1020px; }
  .hero-content { padding-top: 86px; }
  .hero h1, .hero h2 { font-size: 50px; }
  .hero-art { right: -30%; bottom: 24%; width: 100vw; opacity: .28; }
  .hero-slide.active .hero-art { opacity: .28; }
  .hero-controls {
    left: 50%;
    bottom: 308px;
    width: auto;
    transform: translateX(-50%);
  }
  .hero-proof {
    width: 100%;
    max-width: none;
    min-height: 285px;
    grid-template-columns: 1fr;
  }
  .hero-proof div {
    min-height: 95px;
    justify-content: center;
    padding: 18px 24px;
    border-left: 0;
    border-top: 1px solid var(--line);
    text-align: center;
  }
  .hero-proof div:last-child { display: flex; }
  .hero-proof strong { min-width: 118px; font-size: 22px; text-align: right; }
  .hero-proof span { min-width: 125px; text-align: left; }
  .sticky-contact { left: 8px; top: auto; bottom: 18px; transform: none; grid-template-columns: 1fr 1fr; }
  .sticky-contact a { width: 52px; min-height: 52px; }
  .go-top { right: 8px; bottom: 18px; width: 52px; height: 52px; }
  .dialog-image { height: 230px; min-height: 230px; }
  .dialog-content { padding: 34px 24px; }
  .footer-brand { width: 210px; }
  .purpose-intro { display: block; }
  .purpose-intro > p { margin-top: 28px; }
}
