:root {
  --cream: #f6f1eb;
  --ink: #171719;
  --red: #ff292e;
  --line: rgba(23, 23, 25, 0.18);
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  margin: 0;
  background: var(--cream);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  mix-blend-mode: difference;
  color: #fff;
  pointer-events: none;
}

.site-header a {
  pointer-events: auto;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 700 12px/1 "Manrope", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mini-mark {
  position: relative;
  display: block;
  width: 25px;
  height: 20px;
}

.mini-mark i {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: currentColor;
}

.mini-mark i:first-child {
  left: 6px;
  top: 0;
}

.mini-mark i:nth-child(2) {
  left: 0;
  bottom: 0;
}

.mini-mark i:last-child {
  right: 0;
  bottom: 0;
}

.sound-off {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sound-off span {
  padding-left: 8px;
  font-size: 16px;
}

.page-dots {
  position: fixed;
  right: 28px;
  top: 50%;
  z-index: 30;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
  mix-blend-mode: difference;
}

.page-dots a {
  width: 7px;
  height: 7px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: background 250ms ease, transform 250ms ease;
}

.page-dots a.active {
  background: #fff;
  transform: scale(1.5);
}

.panel {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  scroll-snap-align: start;
}

.hero {
  display: grid;
  place-items: center;
  background: var(--cream);
}

.hero-logo-wrap {
  position: relative;
  z-index: 2;
  width: min(78vw, 630px);
  aspect-ratio: 1;
}

.hero-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: contrast(1.02);
}

.hero-orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}

.orbit-one {
  width: min(80vw, 720px);
  aspect-ratio: 1.7;
  transform: rotate(-13deg);
}

.orbit-two {
  width: min(60vw, 560px);
  aspect-ratio: 1;
  border-color: rgba(255, 41, 46, 0.18);
  animation-duration: 24s;
  animation-direction: reverse;
}

@keyframes orbit {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue b {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 15px;
}

.manifesto {
  display: grid;
  align-content: center;
  padding: clamp(80px, 9vw, 140px);
  color: var(--cream);
  background: var(--ink);
}

.moon-disc {
  position: absolute;
  top: 50%;
  right: -7vw;
  width: min(60vw, 780px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
  box-shadow: 0 0 100px rgba(255, 41, 46, 0.16);
}

.eyebrow {
  position: relative;
  z-index: 2;
  margin: 0 0 20px;
  font: 700 10px/1 "Manrope", sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.moon-title {
  position: relative;
  z-index: 2;
  margin: 0;
  font: 800 clamp(88px, 18vw, 280px)/0.73 "Manrope", sans-serif;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.moon-title span {
  display: block;
}

.moon-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--cream);
  transform: translateX(0.3em);
}

.manifesto-copy {
  position: absolute;
  right: 8vw;
  bottom: 10vh;
  z-index: 3;
  margin: 0;
  font: 500 clamp(16px, 1.5vw, 24px)/1.25 "Manrope", sans-serif;
}

.edition {
  position: absolute;
  left: 32px;
  bottom: 28px;
  font-size: 9px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.collection {
  height: 100svh;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
  padding: clamp(90px, 8vw, 130px) clamp(32px, 7vw, 120px);
  background:
    radial-gradient(circle at 22% 28%, rgba(255,255,255,.8), transparent 25%),
    var(--cream);
}

.collection-copy h2 {
  margin: 0 0 30px;
  font: 800 clamp(58px, 7.5vw, 124px)/0.85 "Manrope", sans-serif;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.collection-copy > p:not(.eyebrow) {
  margin: 0 0 36px;
  color: rgba(23, 23, 25, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 14px 16px 14px 22px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform 200ms ease, background 200ms ease;
}

.pill-button span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--red);
  font-size: 17px;
}

.pill-button:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.product-card {
  position: relative;
  width: calc(100% - 25px);
  justify-self: center;
  margin: 0;
  padding: 10px;
  background: #ebe4dc;
  transform: rotate(1.5deg);
  box-shadow: 0 28px 80px rgba(23, 23, 25, 0.15);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: -16px 20px 20px -16px;
  z-index: -1;
  border: 1px solid rgba(23, 23, 25, 0.2);
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-card figcaption {
  display: flex;
  justify-content: space-between;
  padding: 13px 5px 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(.2,.7,.2,1), transform 800ms cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 800px) {
  .site-header {
    padding: 20px;
  }

  .sound-off {
    display: none;
  }

  .page-dots {
    right: 17px;
  }

  .hero-logo-wrap {
    width: min(105vw, 600px);
  }

  .manifesto {
    padding: 90px 24px;
  }

  .moon-disc {
    right: -52vw;
    width: 110vw;
  }

  .moon-title {
    font-size: clamp(76px, 27vw, 145px);
  }

  .moon-title .outline {
    transform: translateX(.1em);
  }

  .manifesto-copy {
    right: 24px;
    bottom: 12vh;
  }

  .edition {
    left: 14px;
  }

  .collection {
    grid-template-columns: 1fr;
    align-content: center;
    gap: clamp(18px, 4vh, 34px);
    padding: 72px 26px 28px;
  }

  .collection-copy h2 {
    margin-bottom: 16px;
    font-size: clamp(48px, 15vw, 78px);
  }

  .collection-copy > p:not(.eyebrow) {
    margin-bottom: 22px;
  }

  .product-card {
    width: min(calc(68vw - 25px), 375px, calc(43vh - 25px));
    justify-self: end;
    margin-bottom: 14px;
  }
}

@media (max-height: 720px) {
  .collection {
    gap: 16px;
    padding-top: 58px;
    padding-bottom: 18px;
  }

  .collection-copy h2 {
    margin-bottom: 10px;
    font-size: clamp(42px, 11vh, 70px);
  }

  .collection-copy > p:not(.eyebrow) {
    margin-bottom: 14px;
    line-height: 1.4;
  }

  .pill-button {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-orbit { animation: none; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
