:root {
  --paper: #faf8f5;
  --ink: #262220;
  --ink-soft: #766c65;
  --line: #e4ddd4;
  --accent: #7a6a52;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 300;
}

/* full-viewport oculus hero */
.sky-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  overflow: hidden;
}

.sky-hero .oculus {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #fff2c2 0%,
    #ffb347 16%,
    #ff7a5c 34%,
    #e0426b 50%,
    #93357a 66%,
    #3d2c78 82%,
    #14103b 100%
  );
  background-size: 100% 300%;
  animation: sky-shift 26s ease-in-out infinite;
}

@keyframes sky-shift {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 0% 100%; }
}

.sky-hero-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 90vw;
  padding: 0 1.5rem;
  color: #fffdf9;
}

.sky-hero h1 {
  font-size: clamp(5rem, 23vw, 15rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 2.5rem;
  line-height: 1.35;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.subtitle {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  opacity: 0.9;
  margin: 0 auto;
}

/* main sequence — each moment is its own typographic beat */
main {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.moment {
  text-align: center;
}

.moment-where {
  margin: 9rem auto 11rem;
}

.place {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 400;
  margin: 0;
}

.when {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0.75rem 0 0;
}

/* the list — escalating weight and size, one word at a time */
.moment-list {
  margin: 12rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.list-item {
  margin: 0;
  font-size: 2rem;
  font-weight: 400;
}

/* art moment + the personal turn — one section, matching beats */
.moment-art {
  margin: 13rem auto;
}

.section-line {
  max-width: 30ch;
  margin: 0 auto 2.5rem;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
}

.section-line:last-child {
  margin-bottom: 0;
}

.emphasis {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(
    90deg,
    #ffb347 0%,
    #ff7a5c 25%,
    #e0426b 50%,
    #93357a 75%,
    #3d2c78 100%
  );
  background-size: 300% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: emphasis-shift 8s ease-in-out infinite alternate;
}

@keyframes emphasis-shift {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 0%; }
}

/* essentials — quiet, small, functional after the emotional peak */
.moment-essentials {
  margin: 12rem auto 10rem;
}

.detail-word {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink-soft);
  margin: 0;
}
