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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f1eb;
  color: #111;
  line-height: 1.6;
}

.navbar {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7%;
  background: #111;
  color: white;
}

.logo {
  color: white;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: 1.5px;
}

.nav-links a:hover {
  opacity: .55;
}

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 80px 9%;
  background: #1b1b1b;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "P3";
  position: absolute;
  right: 4%;
  bottom: -8%;
  font-size: 28rem;
  font-weight: 900;
  color: #252525;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: .88;
  letter-spacing: -5px;
  margin-bottom: 30px;
}

.hero h1 span {
  color: #c9ff38;
}

.hero-content > p:not(.eyebrow) {
  max-width: 450px;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.button {
  display: inline-block;
  background: #c9ff38;
  color: #111;
  border: none;
  padding: 15px 24px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 1px;
  cursor: pointer;
}

.intro {
  max-width: 900px;
  margin: auto;
  padding: 110px 7%;
}

.intro h2,
.about-content h2,
.contact-info h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 25px;
}

.intro > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 25px;
}

.text-link {
  color: #111;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid #c9ff38;
}

.feature-grid,
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #111;
}

.feature-card,
.value {
  background: #e8e3da;
  padding: 55px 8%;
  min-height: 250px;
}

.feature-card h3,
.value span {
  color: #666;
  font-size: .8rem;
  letter-spacing: 2px;
}

.feature-card h2 {
  font-size: 2rem;
  margin: 25px 0 10px;
}

.value h3 {
  margin: 20px 0 10px;
}

.page-header {
  background: #111;
  color: white;
  padding: 100px 9%;
}

.page-header h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .9;
}

.about-content,
.contact-section {
  max-width: 1200px;
  margin: auto;
  padding: 100px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.about-content p {
  margin-bottom: 22px;
}

.products {
  max-width: 1250px;
  margin: auto;
  padding: 80px 5%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.product-card {
  background: white;
}

.product-image {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #d7d2c9;
  font-size: 3rem;
  line-height: .9;
  font-weight: 900;
}

.product-image.tee {
  background: #c7c7c7;
}

.product-image.pants {
  background: #aaa69e;
  color: white;
}

.product-image.cap {
  background: #222;
  color: #c9ff38;
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-size: 1.4rem;
}

.product-info p {
  color: #666;
  margin: 5px 0 15px;
}

.contact-info p:not(.eyebrow) {
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form label {
  font-weight: 700;
  margin-top: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #bbb;
  background: white;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  margin-top: 10px;
}

footer {
  background: #111;
  color: #aaa;
  padding: 30px 7%;
  text-align: center;
  font-size: .8rem;
}

@media (max-width: 750px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero {
    min-height: 65vh;
    padding: 60px 7%;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .feature-grid,
  .values,
  .about-content,
  .contact-section,
  .products {
    grid-template-columns: 1fr;
  }

  .about-content,
  .contact-section {
    gap: 35px;
  }

  .products {
    padding: 50px 7%;
  }

  .product-image {
    height: 330px;
  }
}
