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

body {
  background: #000;
  color: #f2f2f2;
  font-family: 'Syne', sans-serif;
}

/* Static */

#static-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}

/* Sections */

section {
  min-height: 100vh;
  padding: 10vh 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hero */

.title {
  font-size: clamp(4rem, 12vw, 14rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.05em;
}

.tagline {
  margin-top: 1rem;
  font-size: 1rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* Headers */

h2 {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 3rem;
}

/* Text */

p {
  max-width: 700px;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* SHOP */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
}

.product {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-img {
  height: 60vh;
  background: #111;
  transition: transform 0.5s ease;
}

.product-img:hover {
  transform: scale(1.04);
}

.product h3 {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.product p {
  opacity: 0.6;
}

/* Inversion */

.invert {
  background: #f2f2f2;
  color: #000;
}

/* Footer */

footer {
  padding: 4rem 6vw;
  font-size: 0.8rem;
  opacity: 0.4;
}
