* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: Georgia, serif;
  font-weight: 400;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

section {
  padding: 6rem 0;
}

/* HERO */
.hero {
  height: 62vh;
  background: url("./images/hero.jpg") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-text {
  position: relative;
  padding-left: 5%;
  color: #fff;
}

.hero-text h1 {
  font-size: 3rem;
}

/* GALLERY */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid img {
  width: 100%;
}

/* COLLECTIONS */
.collections {
  background: #f6f6f6;
}

.block {
  margin-top: 4rem;
}

.block img {
  width: 100%;
  margin: 1.5rem 0;
}

/* AUTO-SCROLL PANTS */
.pants-slider {
  overflow: hidden;
  width: 100%;
  margin: 2.5rem 0;
}

.pants-track {
  display: flex;
  width: calc(300px * 10);
  animation: pantsScroll 32s linear infinite;
}

.pants-track img {
  width: 300px;
  margin-right: 2rem;
  flex-shrink: 0;
}

@keyframes pantsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* INDUSTRY CONTEXT */
.affiliation {
  background: #f7dede;
}

.affiliation h2 {
  margin-bottom: 2rem;
}

.affiliation p {
  max-width: 720px;
}

/* CTA BUTTON */
.cta-wrapper {
  margin-top: 3rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid #111;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.35s ease;
}

.cta-button:hover {
  background: #111;
  color: #fff;
}

/* SECONDARY LINK */
.secondary-link {
  margin-top: 2rem;
}

.secondary-link a {
  color: #111;
  text-decoration: underline;
}

/* CONTACT */
.contact {
  background: #111;
  color: #fff;
}

.contact a {
  color: #fff;
  text-decoration: none;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 3rem 0;
  font-size: 0.85rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }
}
