* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #111;
  color: #f4f4f0;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6vw;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.brand {
  font-weight: 900;
  letter-spacing: 0.12em;
}

.nav nav {
  display: flex;
  gap: 22px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav a {
  text-decoration: none;
  color: #e8e8df;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 6vw 60px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.95), rgba(0,0,0,0.55), rgba(0,0,0,0.15)),
url("heropic.jpg") center/cover;
}

.hero-content {
  max-width: 850px;
  position: relative;
}

.eyebrow {
  color: #b7ff6a;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.82rem;
}

h1 {
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.86;
  margin: 18px 0;
  text-transform: uppercase;
  letter-spacing: -0.08em;
}

h2 {
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  line-height: 0.95;
  margin: 10px 0 20px;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

.tagline {
  font-size: clamp(1.2rem, 3vw, 2rem);
  max-width: 700px;
  color: #ededdf;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.primary {
  background: #b7ff6a;
  color: #101010;
}

.secondary {
  border: 2px solid #f4f4f0;
  color: #f4f4f0;
}

.section {
  padding: 90px 6vw;
}

.section-intro {
  color: #cfcfc7;
  font-size: 1.2rem;
  max-width: 700px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  margin-top: 35px;
}

.product-card {
  background: #1b1b1b;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.product-info {
  padding: 28px;
}

.product-info h3 {
  font-size: 1.7rem;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.product-info p {
  color: #cfcfc7;
  line-height: 1.55;
}

.dark-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #0b0b0b;
}

.big-text {
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.8;
  padding: 30px;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: #b7ff6a;
}

.crew {
  background: #181818;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.crew-member {
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px;
  text-align: center;
  border-radius: 18px;
}

.crew-member img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 4px solid #b7ff6a;
  display: block;
  margin: 0 auto;
}

.crew-member h3 {
  color: #b7ff6a;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin: 18px 0 8px;
}

.crew-member p {
  color: #d7d7d0;
  line-height: 1.4;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.story p:last-child {
  font-size: 1.35rem;
  line-height: 1.65;
  color: #e2e2d8;
}

.gallery {
  background: #0c0c0c;
}

.gallery-strip img {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
}

.contact {
  text-align: center;
  background: #20235b;
}

.contact a:not(.btn) {
  color: #b7ff6a;
  font-weight: 900;
}

footer {
  padding: 30px 6vw;
  color: #aaa;
  background: #080808;
  text-align: center;
}

main {
  max-width: 1400px;
  margin: 0 auto;
}

.shop,
.crew,
.story,
.contact {
  max-width: 1200px;
  margin: 0 auto;
}

.product-grid {
  grid-template-columns: 1fr;
  max-width: 850px;
}

.crew-grid {
  grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.crew-member {
  max-width: 260px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .nav {
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }

  .nav nav {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.78rem;
  }

  .product-grid,
  .story {
    grid-template-columns: 1fr;
  }

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

  .product-card img {
    height: 300px;
  }
}

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

  h1 {
    font-size: 3.6rem;
  }
}
