* { box-sizing: border-box; }

:root {
  --paper: #F5F1E8;
  --ink: #484338;
  --muted: rgba(72, 67, 56, 0.62);
  --c-j: #E55A30;
  --c-a: #3FB2B2;
  --c-m: #8AB82D;
  --c-w: #484338;
  --c-o: #D44A8E;
  --c-r: #5278D6;
  --c-d: #F59A30;
  --c-s: #D6E635;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 20px 56px;
  overflow-wrap: break-word;
}

/* HERO */

.hero {
  text-align: center;
}

.wordmark {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 28px;
}

.l-j { color: var(--c-j); }
.l-a { color: var(--c-a); }
.l-m { color: var(--c-m); }
.l-w { color: var(--c-w); }
.l-o { color: var(--c-o); }
.l-r { color: var(--c-r); }
.l-d { color: var(--c-d); }
.l-s { color: var(--c-s); }

.hook {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}

.lede {
  font-size: 17px;
  font-weight: 500;
  margin: 0 auto 28px;
  max-width: 460px;
  color: var(--muted);
}

.play-badge {
  display: inline-block;
}

.play-badge img {
  height: 72px;
  width: auto;
  display: block;
}

.hero-fan {
  position: relative;
  height: 480px;
  margin: 44px auto 0;
  max-width: 420px;
}

.hero-fan img {
  position: absolute;
  width: 210px;
  border-radius: 22px;
  border: 2px solid var(--ink);
  cursor: zoom-in;
}

.fan-center {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 2;
}

.fan-left {
  left: 0;
  top: 36px;
  transform: rotate(-7deg);
  z-index: 1;
}

.fan-right {
  right: 0;
  top: 36px;
  transform: rotate(7deg);
  z-index: 1;
}

/* MOOD */

.mood {
  text-align: center;
  padding: 72px 0 8px;
}

.mood p {
  font-size: 22px;
  line-height: 1.45;
  max-width: 560px;
  margin: 0 auto;
}

.mood strong {
  font-weight: 800;
}

/* GALLERY */

.gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 36px 0 20px;
  -webkit-overflow-scrolling: touch;
}

.gallery .shot {
  flex: 0 0 auto;
  scroll-snap-align: center;
  padding: 0;
  border: none;
  background: none;
  border-radius: 18px;
  cursor: zoom-in;
}

.gallery img {
  width: 240px;
  display: block;
  border-radius: 18px;
  border: 2px solid var(--ink);
}

/* LANGUAGES */

.languages {
  text-align: center;
  padding: 40px 0 16px;
}

.languages p {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

/* BOTTOM CTA */

.cta-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 56px 0 8px;
}

.app-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
}

/* FOOTER */

footer {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  padding: 48px 0 0;
}

footer a {
  color: inherit;
}

/* LIGHTBOX */

.lightbox {
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(14, 12, 10, 0.92);
  overflow: hidden;
}

.lightbox[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox::backdrop {
  background: rgba(14, 12, 10, 0.92);
}

.lightbox img {
  max-width: calc(100% - 48px);
  max-height: calc(100% - 48px);
  width: auto;
  height: auto;
  border-radius: 12px;
  cursor: zoom-out;
}

.lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(245, 241, 232, 0.16);
  color: #F5F1E8;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

body:has(.lightbox[open]) {
  overflow: hidden;
}

/* DESKTOP */

@media (min-width: 880px) {
  main {
    padding: 64px 32px 80px;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 56px;
    align-items: center;
    text-align: left;
  }

  .hero-text { min-width: 0; }

  .wordmark {
    font-size: 72px;
    margin-bottom: 36px;
  }

  .hook {
    font-size: 40px;
  }

  .lede {
    font-size: 19px;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-fan {
    height: 560px;
    max-width: none;
    margin-top: 0;
  }

  .hero-fan img {
    width: 240px;
  }

  .fan-left { left: 8px; top: 44px; }
  .fan-right { right: 8px; top: 44px; }

  .mood {
    padding-top: 104px;
  }

  .mood p {
    font-size: 28px;
    max-width: 680px;
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    overflow-x: visible;
    padding-top: 48px;
  }

  .gallery img {
    width: 100%;
  }

  .languages {
    padding-top: 48px;
  }

  .languages p {
    font-size: 19px;
    max-width: 640px;
  }

  .cta-bottom {
    padding-top: 88px;
  }

  footer {
    padding-top: 64px;
  }
}
