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

:root {
  --text: #1f1f1f;
  --muted: #5f5f5f;
  --white: #ffffff;
  --black: #111111;
  --accent-dark: #5c0c0c;
  --accent-red: #8f1a1a;
  --bg-light: #f5f5f5;
  --border-light: rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.10);
  --shadow-strong: 0 16px 40px rgba(0, 0, 0, 0.18);
  --radius: 8px;
  --nav-height: 84px;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

/* NAVBAR */

.navbar {
  position: absolute; /* allows navbar to scroll away with hero */
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;

  background: transparent;
  border-bottom: none;

  transition: opacity 0.25s ease;
}

.nav-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;

  transition: opacity 0.2s ease, transform 0.15s ease;
}

.nav-links a:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}

/* BUTTONS */
.btn-primary,
.btn-secondary,
.btn-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 5;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.btn-primary {
  padding: 14px 28px;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  background: #000000;
}

.btn-secondary {
  padding: 14px 28px;
  background: #000000;
  color: var(--white);
  font-weight: 600;
  border-radius: 6px;
}

.btn-secondary:hover {
  background: #222222;
  transform: translateY(-2px);
}

.btn-phone {
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn-phone:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-height);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.08)
  );
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  color: var(--white);
}

.hero-logo {
  width: min(560px, 92vw);
  margin-bottom: 18px;
  display: block;
}

.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  max-width: 620px;
  opacity: 0.95;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* WHO SECTION */
.who {
  display: flex;
  align-items: center;
  gap: 70px;
  padding: 100px 10%;
  background: var(--bg-light);
}

.who-left,
.who-right {
  flex: 1;
}

.who-left h2 {
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.who-left p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
}

.who-bullets {
  list-style: none;
}

.who-bullets li {
  margin-bottom: 14px;
  font-weight: 700;
}

.who-right img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

/* OWNERS SECTION */
.owners {
  display: flex;
  align-items: stretch;
  min-height: 520px;
}

.owners-left {
  flex: 1;
  padding: 90px 80px;
  background: linear-gradient(130deg, var(--accent-dark), var(--accent-red));
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.owners-left h2 {
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-size: 22px;
}

.owners-left p {
  margin-bottom: 25px;
  opacity: 0.94;
}

.owners-left ul {
  list-style: none;
  margin-bottom: 25px;
}

.owners-left li {
  margin-bottom: 10px;
  font-weight: 700;
}

.owner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.owners-right {
  flex: 0 0 420px;
  min-height: auto;
}

.owners-right img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* FREIGHT */
.freight {
  display: flex;
  gap: 70px;
  padding: 100px 10%;
  background: var(--white);
}

.freight-left {
  width: 40%;
  min-width: 280px;
}

.freight-left h2 {
  margin-bottom: 8px;
  letter-spacing: 1px;
  font-size: 22px;
}

.freight-left h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.freight-left p {
  color: var(--muted);
  margin-bottom: 25px;
}

.freight-icons {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.freight-icons div {
  text-align: center;
  width: 88px;
}

.freight-icons img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: 0 auto 8px;
}

.freight-icons p {
  font-size: 12px;
  color: #555555;
  margin: 0;
}

.freight-gallery {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.freight-gallery img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.freight-gallery img:hover {
  transform: scale(1.03);
}

/* FOOTER */
footer {
  background: #5a0f0f;
  color: var(--white);
  padding: 70px 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-left img {
  width: 220px;
}

.footer-center {
  text-align: center;
  max-width: 420px;
}

.footer-center h2 {
  margin-bottom: 8px;
}

.footer-center p {
  opacity: 0.92;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
}

.footer-contact a {
  color: var(--white);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ACCESSIBILITY */
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

/* ANIMATIONS */
@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav-container {
    padding: 0 24px;
  }

  .hero-overlay {
    padding: 80px 24px;
  }

  .who,
  .freight {
    gap: 40px;
    padding: 80px 6%;
  }

  .owners-left {
    padding: 70px 48px;
  }
}

@media (max-width: 900px) {
  .navbar {
    height: auto;
    min-height: var(--nav-height);
  }

  .nav-container {
    padding: 16px 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    gap: 18px;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-overlay {
    align-items: flex-start;
    text-align: left;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .who,
  .owners,
  .freight {
    flex-direction: column;
  }

  .who-right,
  .owners-right,
  .freight-left,
  .freight-gallery {
    width: 100%;
  }

  .owners-right {
    min-height: 340px;
  }

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

  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-center {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 92vh;
  }

  .hero-overlay {
    padding: 48px 20px 36px;
  }

  .hero-title {
    font-size: clamp(38px, 11vw, 58px);
  }

  .hero-sub {
    font-size: 18px;
  }

  .hero-buttons,
  .owner-buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary,
  .btn-phone {
    width: 100%;
    text-align: center;
  }

  .who,
  .freight {
    padding: 64px 20px;
  }

  .owners-left {
    padding: 64px 20px;
  }

  .freight-gallery {
    grid-template-columns: 1fr;
  }

  .footer-left img {
    width: 180px;
  }
}