:root {
  --ink: #171717;
  --muted: #626262;
  --surface: #ffffff;
  --surface-soft: #f6f4ef;
  --surface-band: #f0f2f4;
  --line: #dfdfdf;
  --red: #c13224;
  --red-dark: #992218;
  --navy: #12263a;
  --shadow: 0 18px 50px rgba(12, 22, 32, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-row {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 118px;
  height: auto;
  background: #ffffff;
  padding: 8px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(10, 16, 24, 0.08);
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-tag {
  font-size: 0.88rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 0.98rem;
}

.site-nav a.is-active::after,
.site-nav a:not(.nav-cta):hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
}

.nav-cta {
  padding: 12px 18px;
  color: #fff;
  background: var(--red);
  border-radius: 10px;
  box-shadow: 0 12px 22px rgba(193, 50, 36, 0.22);
}

.nav-cta:hover {
  background: var(--red-dark);
}

.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.mobile-menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-btn.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #101820;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 16, 24, 0.82) 0%, rgba(10, 16, 24, 0.6) 42%, rgba(10, 16, 24, 0.18) 100%),
    linear-gradient(180deg, rgba(18, 38, 58, 0.22) 0%, rgba(18, 38, 58, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-copy {
  max-width: 670px;
  color: #fff;
  padding: 92px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow-dark {
  color: var(--red);
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.55rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 590px;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

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

.btn-accent {
  background: var(--red);
  color: #fff;
}

.btn-accent:hover {
  background: var(--red-dark);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-small {
  min-height: 44px;
  padding: 0 18px;
}

.section {
  padding: 78px 0;
}

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

.section-heading h2,
.recruiting-copy h2,
.fleet-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.services-section {
  background:
    radial-gradient(circle at top left, rgba(193, 50, 36, 0.05), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8f7f3 100%);
}

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

.service-item {
  padding: 28px 20px 18px;
  text-align: center;
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border: 1px solid rgba(193, 50, 36, 0.2);
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
}

.service-icon span {
  width: 34px;
  height: 22px;
  border: 2px solid var(--red);
  border-radius: 4px;
  position: relative;
}

.service-icon span::before,
.service-icon span::after {
  content: "";
  position: absolute;
  bottom: -9px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--red);
  border-radius: 50%;
}

.service-icon span::before {
  left: 2px;
}

.service-icon span::after {
  right: 2px;
}

.service-item h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.service-item p {
  color: var(--muted);
}

.info-band {
  background: linear-gradient(180deg, #f5f7f8 0%, #eef2f4 100%);
}

.info-band-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.company-card,
.career-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.company-card {
  padding: 28px;
}

.company-card-logo {
  width: 132px;
  margin-bottom: 18px;
  background: #ffffff;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(10, 16, 24, 0.08);
  object-fit: contain;
}

.company-card h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.company-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.company-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.company-list li {
  color: var(--ink);
}

.company-list a {
  color: var(--red);
}

.recruiting-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 8px;
}

.recruiting-copy p:last-child {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

.career-card {
  padding: 28px;
}

.career-card h3 {
  margin-bottom: 16px;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.career-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.career-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.career-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.fleet-section {
  background: #fff;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: start;
}

.fleet-copy p:last-child {
  margin-top: 16px;
  color: var(--muted);
  max-width: 640px;
  font-size: 1.08rem;
}

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

.stat-box {
  min-height: 150px;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8f7f3 0%, #fff 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.stat-box strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.stat-box span {
  color: var(--muted);
}

.contact-section {
  background: linear-gradient(180deg, #f7f8fa 0%, #f1f3f4 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
}

.contact-panel,
.contact-form {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}

.contact-panel {
  padding: 30px;
}

.contact-panel p {
  color: var(--muted);
}

.contact-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.contact-lines {
  display: grid;
  gap: 18px;
  margin: 26px 0 30px;
}

.contact-line span {
  display: block;
  margin-bottom: 5px;
  font-size: 0.84rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-line a,
.contact-line p {
  font-size: 1.12rem;
  font-weight: 700;
}

.contact-line a {
  color: var(--red);
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form {
  padding: 30px;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.form-grid label.full-width {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 14px 15px;
  color: var(--ink);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: rgba(193, 50, 36, 0.5);
  box-shadow: 0 0 0 4px rgba(193, 50, 36, 0.12);
}

.btn-submit {
  margin-top: 20px;
  width: 100%;
}

.site-footer {
  background: #10151b;
  color: rgba(255, 255, 255, 0.88);
  padding: 34px 0;
}

.footer-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.footer-row strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.footer-copy {
  text-align: right;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 18px;
    font-size: 0.94rem;
  }

  .services-grid,
  .info-band-grid,
  .fleet-grid,
  .contact-grid,
  .footer-row {
    grid-template-columns: 1fr;
  }

  .fleet-stats {
    grid-template-columns: 1fr 1fr;
  }

  .footer-copy,
  .footer-links {
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width: 880px) {
  .mobile-menu-btn {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    width: 100%;
    padding: 10px 0;
  }

  .site-nav a.is-active::after,
  .site-nav a:not(.nav-cta):hover::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-copy {
    text-align: center;
    margin: 0 auto;
    padding: 84px 0 76px;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .header-row {
    min-height: 78px;
  }

  .brand-logo {
    width: 92px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .brand-tag {
    font-size: 0.75rem;
  }

  .section {
    padding: 62px 0;
  }

  .services-grid,
  .fleet-stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 2.28rem;
  }

  .hero-text {
    font-size: 1rem;
  }
}
