:root {
  /* Logo-matched brand blue #203070 */
  --brand: #203070;
  --brand-deep: #141e45;
  --brand-mid: #2a3d86;
  --brand-bright: #3a52a8;
  --silver: #9aa3b0;
  --steel: #7a8290;
  --mist: #e8ecf3;
  --snow: #f3f5f9;
  --ink: #12151d;
  --muted: #5a6270;
  --line: rgba(20, 32, 70, 0.12);
  --accent: #203070;
  --accent-bright: #2a3d86;
  --pine: var(--brand);
  --pine-deep: var(--brand-deep);
  --moss: var(--brand-mid);
  --amber: var(--brand);
  --amber-bright: var(--brand-bright);
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--snow);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
ul { list-style: none; }

.concept-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--brand);
  color: #f4f6fb;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.45rem 1rem;
}

.site-header {
  position: fixed;
  top: 1.8rem; left: 0; right: 0;
  z-index: 90;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.is-scrolled,
.site-header.on-page {
  background: rgba(20, 30, 69, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1;
  color: white;
}
.brand-logo {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.35rem 0.45rem;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-top: 0.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.is-active { color: white; }
.nav-links a.nav-core {
  color: #c5d0f0;
  font-weight: 700;
}
.nav-links a.nav-core:hover,
.nav-links a.nav-core.is-active { color: white; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.05rem;
  background: white;
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: #e8ecf8; transform: translateY(-1px); }

.menu-toggle {
  display: none;
  width: 2.4rem; height: 2.4rem;
  color: white;
  align-items: center;
  justify-content: center;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 1.3rem; height: 2px;
  background: currentColor;
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.hero {
  display: flex;
  flex-direction: column;
  color: white;
  background: #0f1738;
  padding: 5.4rem 0 0;
}
.hero.page-hero {
  padding-top: 5.1rem;
}
.hero-media {
  position: relative;
  width: 100%;
  background: #0f1738;
  line-height: 0;
}
.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  transform: none !important;
  animation: none !important;
}
.hero-media::after {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.5rem 2.75rem;
}
.hero-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 12ch;
  opacity: 1;
  transform: none;
  animation: none;
}
.hero-brand span { display: block; color: #9eb0e8; }
.hero-copy {
  margin-top: 1rem;
  max-width: 38rem;
  opacity: 1;
  transform: none;
  animation: none;
}
.hero-copy h1,
.hero-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.55rem;
}
.hero-copy p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  max-width: 34rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
  opacity: 1;
  transform: none;
  animation: none;
}
.crumb {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}
.crumb a { color: rgba(255, 255, 255, 0.88); }
.crumb a:hover { color: #b7c5ef; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: white; }
.btn-primary:hover { background: var(--brand-bright); }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.45); color: white; }
.btn-ghost:hover { border-color: white; background: rgba(255, 255, 255, 0.08); }
.btn-dark {
  background: var(--brand);
  color: white;
}
.btn-dark:hover { background: var(--brand-deep); }
.btn-outline {
  border: 1px solid var(--brand);
  color: var(--brand);
}
.btn-outline:hover { background: var(--brand); color: white; }

.section { padding: clamp(3.5rem, 7vw, 5.75rem) 1.5rem; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.7rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 16ch;
  margin-bottom: 0.9rem;
}
.section-lede {
  color: var(--muted);
  max-width: 38rem;
  font-size: 1.05rem;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.paths { background: var(--snow); }
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.path {
  position: relative;
  min-height: 26rem;
  overflow: hidden;
  color: white;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: transform 0.35s var(--ease);
}
.path:hover { transform: translateY(-4px); }
.path img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
  transition: none;
}
.path:hover img { transform: none; }
.path::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 30, 69, 0.05) 20%, rgba(20, 30, 69, 0.88) 100%);
}
.path-index {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  color: #b7c5ef;
  margin-bottom: 0.55rem;
}
.path h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.path p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  max-width: 24rem;
}
.path-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b7c5ef;
}

.rentals-spotlight {
  background: var(--brand-deep);
  color: white;
  position: relative;
  overflow: hidden;
}
.rentals-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(58, 82, 168, 0.35), transparent 34%),
    radial-gradient(circle at 8% 78%, rgba(32, 48, 112, 0.45), transparent 40%);
  pointer-events: none;
}
.rentals-spotlight .section-inner { position: relative; }
.rentals-spotlight .section-kicker { color: #b7c5ef; }
.rentals-spotlight .section-lede { color: rgba(255, 255, 255, 0.74); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.25rem;
}
.fleet-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.fleet-card:hover {
  border-color: rgba(158, 176, 232, 0.55);
  transform: translateY(-2px);
}
.fleet-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.fleet-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.fleet-card span {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b7c5ef;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.25rem;
}
.industry-item {
  background: white;
  padding: 1.35rem 1.25rem;
  border-left: 3px solid var(--brand);
}
.industry-item h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.industry-item p {
  color: var(--muted);
  font-size: 0.94rem;
}

.why {
  background: var(--mist);
}
.why-list {
  display: grid;
  gap: 0;
  margin-top: 2rem;
}
.why-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}
.why-list li:last-child { border-bottom: 1px solid var(--line); }
.why-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brand);
  letter-spacing: 0.04em;
  line-height: 1;
  padding-top: 0.15rem;
}
.why-list strong { display: block; margin-bottom: 0.2rem; }
.why-list span { color: var(--muted); font-size: 0.94rem; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media {
  min-height: 22rem;
  overflow: hidden;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  min-height: 22rem;
}

.proof { background: white; }
.proof-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: stretch;
}
.quote blockquote {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.45;
  color: var(--brand-deep);
  font-weight: 500;
  max-width: 36rem;
}
.quote cite {
  display: block;
  margin-top: 1.15rem;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-mid);
}
.hours {
  background: var(--mist);
  padding: 1.5rem;
  border-left: 4px solid var(--brand);
  align-self: start;
}
.hours h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.hours dl { display: grid; gap: 0.7rem; }
.hours dt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}
.hours dd { font-weight: 600; margin-bottom: 0.2rem; }

.contact {
  background:
    linear-gradient(120deg, rgba(20, 30, 69, 0.88), rgba(32, 48, 112, 0.78)),
    url("../assets/hero-frontier.jpg") center/cover;
  color: white;
}
.contact-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: end;
}
.contact .section-kicker { color: #b7c5ef; }
.contact .section-lede { color: rgba(255, 255, 255, 0.78); }
.contact-details { display: grid; gap: 1.1rem; }
.contact-details strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.3rem;
}
.phone-xl {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.03em;
  line-height: 1;
}

.content-list {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.65rem;
}
.content-list li {
  padding-left: 1rem;
  position: relative;
  color: var(--muted);
}
.content-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65rem;
  width: 0.4rem; height: 0.4rem;
  background: var(--brand);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.detail-card {
  background: white;
  padding: 1.4rem;
  border-top: 3px solid var(--brand);
}
.detail-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.detail-card p { color: var(--muted); font-size: 0.95rem; }

.series-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  margin-top: 2.25rem;
}
.series-card {
  background: white;
  padding: 1.5rem;
  min-height: 11rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 4px solid var(--brand);
}
.series-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.series-card p { color: var(--muted); margin: 0.55rem 0 1rem; }

.site-footer {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.62);
  padding: 2rem 1.5rem 2.4rem;
  font-size: 0.85rem;
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 1.5rem;
}
.footer-grid h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 0.75rem;
}
.footer-grid a {
  display: block;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.68);
}
.footer-grid a:hover { color: #b7c5ef; }
.footer-note {
  max-width: 1180px;
  margin: 1.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

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

@media (max-width: 980px) {
  .brand-logo { height: 34px; }
  .brand-sub { display: none; }
  .path-grid,
  .fleet-grid,
  .industry-grid,
  .series-grid,
  .detail-grid,
  .split,
  .proof-grid,
  .contact-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .path { min-height: 20rem; }
  .nav-links {
    position: fixed;
    inset: 4.8rem 1rem auto;
    background: rgba(20, 30, 69, 0.96);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    gap: 1rem;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .nav-cta { display: none; }
}

@media (max-width: 640px) {
  .fleet-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-brand, .hero-copy, .hero-actions { animation: none; opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}


.option-block {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.option-block.alt { background: var(--mist); }
.option-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.option-row.reverse { direction: rtl; }
.option-row.reverse > * { direction: ltr; }
.option-media {
  overflow: hidden;
  background: #0f1738;
  min-height: 16rem;
}
.option-media img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  max-height: 26rem;
  object-fit: cover;
  object-position: center;
  display: block;
}
.option-copy h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0.35rem 0 0.75rem;
}
.option-copy p {
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1rem;
}
@media (max-width: 980px) {
  .option-row,
  .option-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}
