:root {
  color-scheme: light;
  --ink: #080808;
  --muted: #696969;
  --line: #e8e5df;
  --paper: #ffffff;
  --soft: #f6f4ef;
  --green: #0b3b2e;
  --pink: #ef4d86;
  --orange: #e98721;
  --shadow: 0 24px 70px rgba(8, 8, 8, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(8, 8, 8, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: block;
  width: clamp(138px, 14vw, 190px);
}

.brand img,
.site-footer img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 34px);
  color: #171717;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(26px, 5vw, 72px);
  min-height: calc(100svh - 76px);
  padding: clamp(34px, 6vw, 88px) clamp(18px, 5vw, 72px) clamp(20px, 4vw, 48px);
  overflow: hidden;
}

.hero-copy {
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(4rem, 7vw, 6.2rem);
  font-weight: 950;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 5.8rem);
  font-weight: 940;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-text {
  max-width: 600px;
  margin: 28px 0 0;
  color: #343434;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 550;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 15px 22px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(8, 8, 8, 0.14);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.hero-visual {
  position: relative;
  isolation: isolate;
  height: clamp(520px, 70svh, 760px);
  min-height: 0;
  background:
    linear-gradient(140deg, rgba(11, 59, 46, 0.12), transparent 38%),
    linear-gradient(0deg, #f1eee8, #fbfaf7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: 8%;
  z-index: -1;
  border: 1px solid rgba(8, 8, 8, 0.08);
  content: "";
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.drop-badge {
  position: absolute;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  width: clamp(118px, 15vw, 164px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.86);
  color: #fff;
  text-align: center;
}

.drop-badge span {
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drop-badge strong {
  color: var(--pink);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
}

.strip span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  font-size: clamp(0.82rem, 1.8vw, 1.15rem);
  font-weight: 900;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.strip span:nth-child(2) {
  color: var(--pink);
}

.strip span:nth-child(3) {
  color: #9bd9c8;
}

.strip span:last-child {
  border-right: 0;
  color: #ffc36e;
}

.intro,
.collection,
.lookbook,
.order {
  padding: clamp(62px, 9vw, 130px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 6vw, 96px);
  align-items: end;
}

.intro p:not(.eyebrow),
.order p {
  margin: 0;
  color: #3b3b3b;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 540;
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1px;
  background: var(--ink);
}

.feature {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #f5f3ef;
}

.feature-large {
  min-height: 760px;
}

.feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.feature:hover img {
  transform: scale(1.025);
}

.feature div {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.feature h2 {
  max-width: 8ch;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product {
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto;
  min-height: 100%;
  border: 1px solid var(--line);
  background: #f8f7f4;
  overflow: hidden;
}

.product img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.product-info {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.product-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lookbook {
  background: var(--soft);
}

.lookbook .section-heading {
  align-items: start;
}

.lookbook h2 {
  max-width: 980px;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.lookbook-grid img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--line);
}

.lookbook-grid img:nth-child(2) {
  height: 680px;
}

.order {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  background:
    linear-gradient(90deg, rgba(239, 77, 134, 0.1), transparent 36%),
    linear-gradient(135deg, #fff, #f8f5ee);
  border-block: 1px solid var(--line);
}

.order h2 {
  max-width: 900px;
  margin-bottom: 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.site-footer img {
  width: min(220px, 48vw);
  filter: invert(1);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
  }

  .hero,
  .intro,
  .feature-grid,
  .order {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 11ch;
  }

  .hero-visual,
  .feature,
  .feature-large {
    min-height: 560px;
  }

  .hero-visual {
    height: auto;
  }

  .strip,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .lookbook-grid img,
  .lookbook-grid img:nth-child(2) {
    height: auto;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.68rem;
  }

  .hero {
    padding-top: 30px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4rem);
  }

  h2 {
    font-size: clamp(2.1rem, 13vw, 4rem);
  }

  .hero-visual,
  .feature,
  .feature-large {
    min-height: 450px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .strip span {
    min-height: 56px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .section-heading {
    display: block;
  }

  .product {
    grid-template-rows: auto auto;
  }

  .site-footer {
    display: grid;
  }

  .site-footer p {
    text-align: left;
  }
}
