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

:root {
  --black: #0b0b0b;
  --gold: #c8a25d;
  --white: #ffffff;
  --cream: #f4f1ea;
  --text: #242424;
  --muted: #666666;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

.container {
  width: min(1180px, 86%);
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 50;
  padding: 22px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 300px;
  height: auto;
  display: block;
}

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

.nav a {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .06em;
}

.nav a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 14px 24px;
}

/* HERO */

.hero {
  min-height: 880px;
  margin-top: 0;
  color: var(--white);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,.90) 0%, rgba(0,0,0,.58) 45%, rgba(0,0,0,.15) 100%),
    url("assets/hero-beverage-logistics.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-inner {
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 680px;
  padding-top: 170px;
}

.eyebrow {
  color: var(--white);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  margin-bottom: 18px;
}

.gold {
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(44px, 5.2vw, 70px);
  line-height: 1.02;
  margin-bottom: 28px;
}

.hero h1::after,
.section-heading h2::after,
.about-left h2::after,
.cta h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  background: var(--gold);
  margin-top: 24px;
}

.hero p {
  max-width: 630px;
  font-size: 18px;
  color: rgba(255,255,255,.86);
  margin-bottom: 36px;
}

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

.btn {
  display: inline-block;
  padding: 15px 28px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.7);
}

/* ABOUT */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.about-left {
  padding: 130px 8vw 110px 7vw;
}

.about-left h2,
.section-heading h2,
.cta h2 {
  color: var(--black);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.12;
  margin-bottom: 30px;
}

.about-left p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 17px;
}

.about-right {
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,.04), rgba(0,0,0,.18)),
    url("assets/about-warehouse.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-badge {
  position: absolute;
  left: 70px;
  bottom: 70px;
  background: var(--black);
  color: var(--white);
  width: 340px;
  padding: 38px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}

.about-badge span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.about-badge h3 {
  margin: 12px 0 20px;
  font-size: 22px;
}

.about-badge ul {
  list-style: none;
}

.about-badge li {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 13px 0;
  color: rgba(255,255,255,.82);
}

/* SECTIONS */

.section {
  padding: 95px 0;
}

.section-heading {
  max-width: 720px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.center h2::after {
  margin-left: auto;
  margin-right: auto;
}

.services {
  background: var(--cream);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 58px;
}

.service-card {
  background: var(--white);
  padding: 44px 36px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 42px rgba(0,0,0,.06);
}

.service-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
}

.service-card h3 {
  margin: 22px 0 14px;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: .04em;
}

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

.service-icon,
.why-icon {
  display: block;
  color: var(--gold);
  font-size: 42px;
  margin-bottom: 22px;
}

.why-icon {
  font-size: 36px;
  margin-bottom: 18px;
}

/* WHY */

.why {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.why-grid div {
  padding-left: 24px;
  border-left: 1px solid rgba(0,0,0,.14);
}

.why-grid h3 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 14px;
}

.why-grid p {
  color: var(--muted);
  font-size: 15px;
}

/* BEVERAGES */

.beverages {
  background: var(--black);
  padding: 95px 0;
}

.dark h2 {
  color: var(--white);
}

.beverage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.bev {
  height: 250px;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.bev::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.10), rgba(0,0,0,.72));
}

.bev span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.bev span::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  background: var(--gold);
  margin-top: 9px;
}

.bev-1 {
  background-image: url("assets/Wine.png");
}

.bev-2 {
  background-image: url("assets/spirits.png");
}

.bev-3 {
  background-image: url("assets/Beer.png");
}

.bev-4 {
  background-image: url("assets/SoftDrink.png");
}

.bev-5 {
  background-image: url("assets/premium.png");
}

/* CTA */

.cta {
  color: var(--white);
  padding: 82px 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.55)),
    url("assets/cta-world-map.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta h2 {
  color: var(--white);
  max-width: 700px;
}

.cta p {
  color: rgba(255,255,255,.78);
  max-width: 620px;
}

/* FOOTER */

.footer {
  background: #060606;
  color: var(--white);
  padding: 38px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 34px;
  align-items: center;
}

.footer img {
  width: 245px;
  display: block;
}

.footer p {
  color: rgba(255,255,255,.65);
}

.footer a {
  color: var(--gold);
}

/* MOBILE */

@media (max-width: 991px) {

  .container {
    width: 100%;
    padding-left: 26px;
    padding-right: 26px;
  }

  .site-header {
    padding: 28px 0;
  }

  .header-inner {
    justify-content: center;
  }

  .nav {
    display: none;
  }

  .logo img {
    width: 300px;
    max-width: 86vw;
  }

  .hero {
    min-height: 100vh;
    align-items: flex-start;
    padding-top: 180px;
    padding-bottom: 72px;
    background:
      linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.62)),
      url("assets/hero-beverage-logistics.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .hero-content {
    padding-top: 0;
    max-width: 100%;
  }

  .eyebrow {
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: .09em;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .hero p {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-left {
    padding: 72px 26px 48px;
  }

  .about-left h2,
  .section-heading h2,
  .cta h2 {
    font-size: 34px;
  }

  .about-right {
    min-height: 460px;
  }

  .about-badge {
    left: 26px;
    right: 26px;
    bottom: 26px;
    width: auto;
  }

  .section,
  .beverages {
    padding: 72px 0;
  }

  .service-grid,
  .why-grid,
  .beverage-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 38px 28px;
  }

  .why-grid div {
    padding-left: 20px;
  }

  .bev {
    height: 320px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer img {
    width: 235px;
  }
}