:root {
  color-scheme: dark;
  --ink: #f7f4ec;
  --muted: #d4cec0;
  --smoke: #a9aaa4;
  --night: #11140f;
  --coal: #181b18;
  --olive: #667256;
  --moss: #394230;
  --rust: #b76234;
  --line: rgba(247, 244, 236, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--night);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 4vw, 56px);
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.brand-mark::before {
  position: absolute;
  inset: 4px 2px auto;
  height: 2px;
  background: currentColor;
  content: "";
}

.brand-mark::after {
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rust);
  content: "";
}

.nav-links {
  display: flex;
  gap: 18px;
  color: rgba(247, 244, 236, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(20px, 6vw, 72px) 64px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/assets/hero-cargo-apparel.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 9, 6, 0.9), rgba(7, 9, 6, 0.5) 42%, rgba(7, 9, 6, 0.08)),
    linear-gradient(0deg, rgba(17, 20, 15, 0.98), rgba(17, 20, 15, 0.05) 42%);
}

.hero-content {
  width: min(690px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(4.25rem, 6.4rem, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  width: min(540px, 100%);
  margin: 24px 0 28px;
  color: rgba(247, 244, 236, 0.9);
  font-size: clamp(1.25rem, 1.45rem, 1.45rem);
}

.hero-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(247, 244, 236, 0.62);
  border-radius: 999px;
  background: rgba(17, 20, 15, 0.44);
  backdrop-filter: blur(8px);
  font-weight: 900;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--rust);
  box-shadow: 0 0 0 6px rgba(183, 98, 52, 0.18);
}

.utility-section,
.drop-section {
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(54px, 7vw, 96px) clamp(20px, 6vw, 72px);
}

.utility-section {
  grid-template-columns: minmax(0, 0.84fr) minmax(300px, 1.16fr);
  align-items: start;
  background: var(--night);
  border-top: 1px solid rgba(247, 244, 236, 0.08);
}

.section-copy {
  max-width: 520px;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 3.4rem, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy p,
.drop-section p {
  margin: 20px 0 0;
  color: var(--smoke);
  font-size: 1.04rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.feature {
  min-height: 220px;
  padding: 24px;
  background: var(--coal);
}

.feature-number {
  color: var(--rust);
  font-size: 0.82rem;
  font-weight: 900;
}

h3 {
  margin: 44px 0 12px;
  font-size: 1.25rem;
}

.feature p {
  margin: 0;
  color: var(--smoke);
}

.drop-section {
  min-height: 40vh;
  align-content: center;
  background:
    linear-gradient(90deg, rgba(57, 66, 48, 0.82), rgba(17, 20, 15, 0.94)),
    var(--moss);
}

.drop-section h2,
.drop-section p {
  width: min(760px, 100%);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 6vw, 72px);
  border-top: 1px solid rgba(247, 244, 236, 0.1);
  background: #0c0e0b;
  color: rgba(247, 244, 236, 0.68);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero {
    min-height: 86svh;
  }

  .hero-media {
    background-position: 58% center;
  }

  .utility-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 16px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 84svh;
    padding-top: 104px;
    padding-bottom: 42px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 9, 6, 0.92), rgba(7, 9, 6, 0.52) 58%, rgba(7, 9, 6, 0.18)),
      linear-gradient(0deg, rgba(17, 20, 15, 0.98), rgba(17, 20, 15, 0.05) 52%);
  }

  h1 {
    font-size: clamp(3.25rem, 3.8rem, 3.8rem);
  }

  .hero-copy {
    font-size: 1.08rem;
  }

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

  .feature {
    min-height: 170px;
  }

  h3 {
    margin-top: 32px;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  h1 {
    font-size: 2.85rem;
  }

  .site-footer {
    flex-direction: column;
  }
}
