/* ═══════════════════════════════════════
   Season Two — Design Tokens
═══════════════════════════════════════ */
:root {
  --pink: #ffb7d5;
  --blue: #9dd9ff;
  --purple: #d9c6ff;
  --bg: #0a0b10;
  --text: #ffffff;
  --text-secondary: #b7bcc7;
  --gradient: linear-gradient(135deg, #ffb7d5, #d9c6ff, #9dd9ff);
  --font: "Sora", sans-serif;
}

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

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

#particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

#main-content {
  position: relative;
  z-index: 1;
}

.section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

/* ═══════════════════════════════════════
   1 — Opening
═══════════════════════════════════════ */
.section--opening {
  flex-direction: column;
  padding: 0;
}

.opening-content {
  text-align: center;
  padding: 2rem;
  max-width: 640px;
}

.opening-brand {
  font-size: clamp(2.6rem, 8vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  min-height: 1.2em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.type-cursor {
  display: inline-block;
  margin-left: 2px;
  background: none;
  -webkit-text-fill-color: var(--blue);
  color: var(--blue);
  font-weight: 300;
  animation: blink 1s step-end infinite;
}

.type-cursor.is-hidden {
  opacity: 0;
  animation: none;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.opening-lines {
  margin-top: 2.5rem;
}

.opening-line {
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  font-weight: 300;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(18px);
}

.opening-line--soft {
  color: var(--text-secondary);
  margin-top: 0.35rem;
}

.scroll-btn {
  margin-top: 3.5rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.85rem 2rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
  animation: float-hint 3s ease-in-out infinite;
  animation-play-state: paused;
}

.scroll-btn.is-ready {
  animation-play-state: running;
}

.scroll-btn:hover {
  color: var(--text);
  border-color: rgba(255, 183, 213, 0.45);
  box-shadow: 0 0 28px rgba(255, 183, 213, 0.18);
}

@keyframes float-hint {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

/* ═══════════════════════════════════════
   2 — Question
═══════════════════════════════════════ */
.section--question {
  flex-direction: column;
}

.question-wrap {
  text-align: center;
  max-width: 560px;
}

.question-text {
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: 2.75rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.9rem 2.1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn--pink:hover {
  background: rgba(255, 183, 213, 0.14);
  border-color: var(--pink);
  box-shadow:
    0 0 28px rgba(255, 183, 213, 0.35),
    0 0 56px rgba(255, 183, 213, 0.12);
  transform: translateY(-2px);
}

.btn--blue:hover {
  background: rgba(157, 217, 255, 0.14);
  border-color: var(--blue);
  box-shadow:
    0 0 28px rgba(157, 217, 255, 0.35),
    0 0 56px rgba(157, 217, 255, 0.12);
  transform: translateY(-2px);
}

.btn:active {
  transform: scale(0.97);
}

/* ═══════════════════════════════════════
   Prose sections
═══════════════════════════════════════ */
.section--prose {
  align-items: center;
}

.prose {
  max-width: 520px;
  width: 100%;
  text-align: left;
}

.prose--quote {
  max-width: 560px;
}

.prose-line {
  font-size: clamp(1.35rem, 3.4vw, 2rem);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.prose-line--soft {
  color: var(--text-secondary);
  margin-top: 0.35rem;
}

.prose-line--gap {
  margin-top: 2.25rem;
}

.prose-line--emphasis {
  margin-top: 0.4rem;
  font-weight: 400;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gs-reveal {
  opacity: 0;
  transform: translateY(28px);
}

/* ═══════════════════════════════════════
   Moments — photo / video + caption below
═══════════════════════════════════════ */
.section--moment,
.section--place {
  min-height: auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
  align-items: center;
}

.moment,
.place {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.moment-frame,
.place-frame {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #12141c;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(255, 183, 213, 0.1);
}

.moment-media,
.place-media {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(72vh, 720px);
  object-fit: contain;
  object-position: center;
  background: #000;
}

.moment-video {
  aspect-ratio: 3 / 4;
  max-height: min(68vh, 680px);
  object-fit: contain;
}

.moment-caption,
.place-caption {
  position: relative;
  width: 100%;
  min-height: 7.5rem;
  text-align: center;
}

.caption-block {
  opacity: 0;
  transform: translateY(18px);
}

.caption-block--next {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
}

.caption-block p {
  font-size: clamp(1.1rem, 2.8vw, 1.45rem);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.caption-soft {
  color: var(--text-secondary);
}

.caption-gap {
  margin-top: 1rem;
}

.caption-emphasis {
  margin-top: 0.2rem;
  font-weight: 500;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.caption-emphasis--lg {
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  margin-top: 0.4rem;
}

.place {
  max-width: 440px;
}

.place-media {
  max-height: min(78vh, 780px);
}

/* ═══════════════════════════════════════
   6 — Peace
═══════════════════════════════════════ */
.section--peace {
  min-height: 220vh;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 0;
}

.peace-stack {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.peace-block {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  opacity: 0;
  pointer-events: none;
}

.peace-block p {
  font-size: clamp(1.25rem, 3.2vw, 1.8rem);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.peace-soft {
  margin-top: 1.5rem;
  color: var(--text-secondary);
}

.peace-emphasis {
  margin-top: 0.25rem;
  font-weight: 500;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════
   7 — Thanks + Finale
═══════════════════════════════════════ */
.section--thanks {
  min-height: 100vh;
  min-height: 100dvh;
}

.thanks-content {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-height: 280px;
  text-align: center;
}

.thanks-block {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(18px);
}

.thanks-block p {
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 300;
  line-height: 1.6;
}

.thanks-item {
  color: var(--text-secondary);
}

.thanks-you {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: scale(0.92);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section--finale {
  background: #f7f5f2;
  color: #1a1d26;
  min-height: 100vh;
  min-height: 100dvh;
}

.finale-text {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(16px);
}

.finale-season {
  display: inline-block;
  margin-top: 0.35rem;
  font-weight: 500;
  background: linear-gradient(135deg, #ff8fb8, #6eb8e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════
   Responsive
═══════════════════════════════════════ */
@media (max-width: 600px) {
  .section {
    padding: 3rem 1.25rem;
  }

  .section--opening,
  .section--finale {
    padding: 0;
  }

  .section--moment,
  .section--place {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 260px;
  }

  .prose {
    text-align: center;
  }

  .moment,
  .place {
    max-width: min(360px, 92vw);
  }
}
