.fashion-page {
  margin: 0;
  background: #f7f4ef;
  color: #181715;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.fashion-header,
.fashion-footer {
  min-height: 64px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.fashion-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  color: #fff;
  mix-blend-mode: difference;
}

.fashion-brand {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fashion-nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fashion-hero {
  min-height: 100svh;
  display: grid;
  place-items: end start;
  position: relative;
  overflow: hidden;
  padding: 7rem 4vw 4rem;
}

.fashion-hero__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.08)),
    linear-gradient(120deg, #191613 0 35%, #d7c6b0 35% 54%, #f3eee7 54% 72%, #2a2926 72% 100%);
}

.fashion-hero__image::before,
.fashion-hero__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 22vw;
  min-width: 190px;
  height: 78vh;
  background: linear-gradient(180deg, #f6f0e7, #9b8266);
}

.fashion-hero__image::before {
  left: 46vw;
  clip-path: polygon(28% 0, 72% 0, 100% 100%, 0 100%);
}

.fashion-hero__image::after {
  left: 66vw;
  background: linear-gradient(180deg, #21201e, #b9a489);
  clip-path: polygon(20% 0, 78% 0, 92% 100%, 8% 100%);
}

.fashion-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: #fff;
}

.fashion-hero__content p,
.fashion-kicker,
.fashion-intro p {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.fashion-hero__content h1 {
  color: #fff;
  font-size: clamp(2.4rem, 7vw, 6.8rem);
  line-height: 0.96;
  max-width: 11ch;
}

.fashion-hero__content a,
.fashion-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.84rem;
}

.fashion-section,
.fashion-split,
.fashion-contact {
  padding: clamp(3rem, 8vw, 7rem) 4vw;
}

.fashion-intro {
  max-width: 900px;
}

.fashion-intro h2,
.fashion-split h2 {
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.fashion-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #d8d0c3;
}

.fashion-product {
  background: #f7f4ef;
  padding-bottom: 1.2rem;
}

.fashion-product h3,
.fashion-product p {
  padding: 0 1rem;
}

.fashion-product h3 {
  margin: 1rem 0 0.25rem;
}

.fashion-product p {
  color: #67615a;
  line-height: 1.6;
  margin: 0;
}

.fashion-photo {
  min-height: 48vw;
  max-height: 620px;
  background: #ddd2c3;
}

.fashion-photo--one {
  background: linear-gradient(180deg, #eee3d1 0 18%, #ffffff 18% 46%, #bba58b 46% 100%);
}

.fashion-photo--two {
  background: linear-gradient(180deg, #2f2d2a 0 16%, #ebe2d6 16% 100%);
}

.fashion-photo--three {
  background: linear-gradient(180deg, #e8dfd2 0 20%, #93775b 20% 78%, #2b2926 78% 100%);
}

.fashion-photo--four {
  background: radial-gradient(circle at 50% 42%, #6e543d 0 24%, transparent 25%), linear-gradient(180deg, #f5efe7, #cdbca9);
}

.fashion-split {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 360px);
  gap: 2rem;
  align-items: center;
  background: #191715;
  color: #fff;
}

.fashion-split h2 {
  color: #fff;
  max-width: 760px;
}

.phone-preview {
  aspect-ratio: 9/16;
  border: 10px solid #ede7dd;
  border-radius: 28px;
  background: #f7f4ef;
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.phone-preview div {
  background: linear-gradient(135deg, #2a2926, #c8b9a6);
}

.phone-preview span {
  display: block;
  background: #d8d0c3;
  min-height: 34px;
}

.fashion-contact {
  text-align: center;
}

.fashion-contact p {
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 1.06;
  margin: 0 auto 1.2rem;
  max-width: 760px;
}

.fashion-footer {
  color: #67615a;
  border-top: 1px solid #d8d0c3;
}

@media (max-width: 960px) {
  .fashion-header {
    color: #181715;
    background: rgba(247, 244, 239, 0.92);
    mix-blend-mode: normal;
  }

  .fashion-nav {
    gap: 0.7rem;
    font-size: 0.72rem;
  }

  .fashion-hero {
    min-height: 92svh;
    padding-top: 6rem;
  }

  .fashion-hero__content h1 {
    max-width: 12ch;
  }

  .fashion-products,
  .fashion-split {
    grid-template-columns: 1fr;
  }

  .fashion-photo {
    min-height: 118vw;
  }

  .fashion-footer {
    align-items: flex-start;
  }
}
