*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at top, #241b3a 0%, #050309 60%, #020107 100%);
  color: #f6f5ff;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Intro stack */

.intro {
  text-align: center;
  padding: 72px 20px 40px;
  max-width: 720px;
  margin: 0 auto;
}

.intro-line {
  opacity: 0;
  transform: translateY(18px);
  animation-name: fadeUp;
  animation-duration: 0.9s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

/* Slower, staggered delays for intro lines */
.eyebrow.intro-line { animation-delay: 1.0s; }
.title.intro-line   { animation-delay: 2.0s; }
.subtitle.intro-line{ animation-delay: 3.0s; }
.blurb.intro-line   { animation-delay: 4.0s; }

.eyebrow {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 16px;
  color: rgba(246, 245, 255, 0.7);
}

.title {
  font-size: clamp(28px, 5vw, 34px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}

.subtitle {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(246, 245, 255, 0.76);
}

.blurb {
  max-width: 620px;
  margin: 18px auto 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(246, 245, 255, 0.84);
}

/* Content and cards */

.content {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 64px;
  padding: 0 18px 32px;
}

/* Hero section appears only after intro has finished + ~3s pause */
.hero-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(24px);
  animation-name: fadeUp;
  animation-duration: 1.1s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-delay: 7.2s; /* intro finishes ~5s, then ~2.2s of quiet before heroes show */
}

.hero-card {
  background: radial-gradient(circle at top left, #27203f 0%, #090712 58%, #05030c 100%);
  border-radius: 24px;
  padding: 18px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

/* Collections */

.collection {
  margin-top: 56px;
}

.collection-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246, 245, 255, 0.65);
  margin: 0 0 18px 6px;
}

.look-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.look-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.look-card {
  background: radial-gradient(circle at top left, #26203b 0%, #070510 56%, #020107 100%);
  border-radius: 24px;
  padding: 18px;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s ease-out,
    transform 0.85s ease-out;
}

.look-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

/* Scroll reveal state */
.look-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */

.site-footer {
  margin-top: auto;
  padding: 24px 20px 32px;
  text-align: center;
  font-size: 11px;
  color: rgba(246, 245, 255, 0.7);
}

.footer-main {
  margin: 0 0 4px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-small {
  margin: 0;
  font-size: 9px;
  letter-spacing: 0.16em;
}

/* Animation keyframes */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Layout tweaks for wider screens */

@media (min-width: 720px) {
  .intro {
    padding-top: 96px;
  }

  .hero-section {
    margin-top: 56px;
  }

  .look-grid {
    gap: 32px;
  }

  .look-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Respect reduced motion preferences */

@media (prefers-reduced-motion: reduce) {
  .intro-line,
  .hero-section,
  .look-card {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
