/* ============ HOME PAGE ============ */

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 4vw 40px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: -20% 0;
  will-change: transform;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) contrast(1.15) brightness(0.55);
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(10,10,10,0.6) 70%, #0a0a0a 100%),
    linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.5) 50%, #0a0a0a 100%);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  animation: fade-in 1s var(--ease-out) 1.6s backwards;
}

.hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.hero-h1 {
  font-size: clamp(80px, 17vw, 300px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  text-align: center;
}
.hero-h1 .line {
  display: block;
  overflow: hidden;
}
.hero-h1 .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: line-in 1.2s var(--ease-out) forwards;
}
.hero-h1 .line:nth-child(1) > span { animation-delay: 1.5s; }
.hero-h1 .line:nth-child(2) > span { animation-delay: 1.65s; }
.hero-h1 .line:nth-child(3) > span { animation-delay: 1.8s; }
.hero-h1 .line:nth-child(4) > span { animation-delay: 1.95s; }
.hero-h1 .line.accent > span { color: var(--accent); font-style: italic; }
@keyframes line-in {
  to { transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding-top: 40px;
  animation: fade-in 1s var(--ease-out) 2.4s backwards;
}
.hero-foot-left { display: flex; flex-direction: column; gap: 16px; }
.hero-foot-right { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; max-width: 380px; justify-self: end; }
.hero-foot-right p { font-size: 14px; line-height: 1.5; color: var(--fg-dim); }

.scroll-ind {
  width: 1px;
  height: 60px;
  background: var(--line-2);
  position: relative;
  overflow: hidden;
}
.scroll-ind::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: var(--accent);
  animation: scroll-ind 2s var(--ease) infinite;
}
@keyframes scroll-ind {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(340%); }
}

.hero-sideticker {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--fg-mute);
  white-space: nowrap;
}
.hero-sideticker.left {
  left: 24px;
  top: 50%;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: left center;
}
.hero-sideticker.right {
  right: 24px;
  top: 50%;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: right center;
}

/* MANIFESTO */
.manifesto { padding: 160px 0 120px; }
.manifesto-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 22ch;
  margin: 0 auto;
  text-align: center;
  text-wrap: balance;
}
.manifesto-divider {
  height: 1px;
  background: var(--line);
  margin-top: 120px;
  transform-origin: left;
}
.manifesto-divider.reveal { transform: scaleX(0); transition: transform 1.4s var(--ease); }
.manifesto-divider.reveal.in { transform: scaleX(1); }

/* SECTION HEAD */
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 80px;
  gap: 40px;
}
.section-title {
  font-size: clamp(56px, 9vw, 160px);
  line-height: 0.88;
  margin-top: 16px;
}

/* DROPS */
.drops { padding: 120px 0; }
.drops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.drop-card {
  background: var(--bg);
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background .4s var(--ease);
}
.drop-card:hover { background: var(--bg-elev); }
.drop-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: #0f0f0f;
}
.drop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2);
  transition: transform 1s var(--ease-out), filter .5s var(--ease);
}
.drop-card:hover .drop-card-img img { transform: scale(1.06); filter: grayscale(0); }
.drop-card-img img.alt {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.drop-card:hover .drop-card-img img.alt { opacity: 1; }

.drop-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: var(--accent);
  color: #000;
  z-index: 2;
}
.drop-tag.core { background: var(--fg); }

.drop-quick {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  transform: translateY(calc(100% + 16px));
  background: var(--fg);
  color: #000;
  padding: 14px 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: transform .5s var(--ease);
  white-space: nowrap;
  z-index: 2;
}
.drop-card:hover .drop-quick { transform: translateY(0); }

.drop-card-info {
  padding: 20px 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.drop-card-name {
  font-size: 14px;
  line-height: 1.3;
  max-width: 60%;
}
.drop-card-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.drop-card-price {
  font-family: var(--font-mono);
  font-size: 13px;
}

/* PHILOSOPHY (sticky scroll) */
.philosophy {
  padding: 160px 0;
  position: relative;
}
.philo-sticky {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 300vh;
  position: relative;
}
.philo-images {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  align-self: start;
}
.philo-img {
  position: absolute;
  inset: 10% 8%;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.8s var(--ease), transform 1.2s var(--ease-out);
}
.philo-img.active {
  opacity: 1;
  transform: scale(1);
}
.philo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.1);
}
.philo-text {
  display: flex;
  flex-direction: column;
  padding: 0 4vw 0 6vw;
}
.philo-step {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 80px 0;
  max-width: 540px;
}
.philo-step h3 {
  font-size: clamp(60px, 8vw, 140px);
  line-height: 0.9;
}
.philo-step p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-dim);
  max-width: 420px;
}

/* LOOKBOOK */
.lookbook-teaser { padding: 120px 0; }
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.look-card {
  display: block;
  position: relative;
  aspect-ratio: 3/4;
}
.look-card.tall { grid-row: span 1; }
.lookbook-grid .look-card:nth-child(even) { transform: translateY(48px); }
.look-card .img-zoom {
  width: 100%;
  height: 100%;
}
.look-card .img-zoom img {
  filter: grayscale(0.4) brightness(0.9);
  transition: transform 1.2s var(--ease-out), filter .6s var(--ease);
}
.look-card:hover .img-zoom img { filter: grayscale(0) brightness(1); transform: scale(1.04); }
.look-meta {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.15em;
  z-index: 2;
}

/* STATS */
.stats {
  padding: 140px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}
.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: -24px;
  width: 1px;
  height: 40px;
  background: var(--accent);
}
.stat-num {
  font-size: clamp(80px, 9vw, 160px);
  line-height: 0.9;
}

/* NEWSLETTER */
.newsletter { padding: 160px 0; position: relative; }
.news-inner { text-align: center; max-width: 800px; margin: 0 auto; }
.news-title {
  font-size: clamp(60px, 9vw, 160px);
  line-height: 0.88;
  margin-bottom: 24px;
}
.news-sub {
  color: var(--fg-dim);
  font-size: 16px;
  margin-bottom: 48px;
}
.news-form {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.news-form input {
  flex: 1 1 360px;
  max-width: 480px;
  padding: 18px 24px;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  outline: none;
  transition: border-color .3s var(--ease);
}
.news-form input:focus { border-color: var(--accent); }
.news-form input::placeholder { color: var(--fg-mute); letter-spacing: 0.15em; }
.news-done {
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--accent);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.news-done.show { opacity: 1; }

/* responsive */
@media (max-width: 1024px) {
  .drops-grid { grid-template-columns: repeat(2, 1fr); }
  .lookbook-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .philo-sticky { grid-template-columns: 1fr; min-height: auto; }
  .philo-images { position: relative; height: 60vh; }
  .hero-sideticker { display: none; }
}
@media (max-width: 768px) {
  .hero-foot { grid-template-columns: 1fr; }
  .hero-foot-right { justify-self: start; }
  .section-head { grid-template-columns: 1fr; }
  .drops-grid { grid-template-columns: 1fr; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
