@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&family=Noto+Serif+SC:wght@600;700&display=swap");

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Noto Sans SC", system-ui, sans-serif;
  color: #eef5f1;
  background:
    radial-gradient(circle at 12% 0%, rgba(184, 212, 205, 0.14), transparent 28rem),
    radial-gradient(circle at 80% 12%, rgba(133, 158, 177, 0.16), transparent 34rem),
    linear-gradient(180deg, #070909 0%, #111817 48%, #0a0d0e 100%);
  -webkit-font-smoothing: antialiased;
}

body.lock {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 80px;
}

.hero {
  min-height: auto;
}

.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 6px 0 28px;
}

.topbar a,
.series-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(238, 245, 241, 0.14);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(238, 245, 241, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.topbar a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-grid {
  min-height: min(720px, calc(100vh - 116px));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(20px, 4vh, 42px) 0 clamp(34px, 6vh, 64px);
}

.hero-copy {
  max-width: 520px;
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(216, 230, 224, 0.5);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(4.4rem, 13vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0;
  color: #f7fbf8;
}

.series-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 36px 0 0;
}

.stats div {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(238, 245, 241, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.stats dt {
  color: rgba(238, 245, 241, 0.42);
  font-size: 0.74rem;
  font-weight: 700;
}

.stats dd {
  margin: 4px 0 0;
  color: #f4f8f5;
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #030404;
  border: 1px solid rgba(238, 245, 241, 0.12);
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.56),
    0 0 0 10px rgba(255, 255, 255, 0.025);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.24));
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.story-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 74px;
}

.story-card {
  position: relative;
  min-height: 210px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(238, 245, 241, 0.16);
  background: #050606;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.story-card:hover {
  transform: translateY(-3px);
  border-color: rgba(218, 239, 231, 0.34);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.36);
}

.story-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.82);
  transform: scale(1.02);
  transition: transform 0.24s ease, filter 0.24s ease;
}

.story-card:nth-child(2) img,
.story-card:nth-child(3) img,
.story-card:nth-child(4) img {
  object-position: center top;
}

.story-card:hover img {
  filter: saturate(1) brightness(0.92);
  transform: scale(1.055);
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 34%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), transparent 58%);
}

.story-card span {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 18px;
}

.story-card small {
  color: rgba(238, 245, 241, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
}

.story-card b {
  color: #fff;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.1;
}

.gallery {
  display: grid;
  gap: 72px;
}

.story-beat {
  display: grid;
  gap: 20px;
  scroll-margin-top: 28px;
}

.story-head {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
}

.story-no {
  color: rgba(238, 245, 241, 0.42);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.story-title {
  margin: 0;
  color: #f6fbf7;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.story-note {
  color: rgba(238, 245, 241, 0.48);
  font-size: 0.9rem;
  font-weight: 700;
}

.frames {
  display: grid;
  gap: clamp(14px, 2.2vw, 24px);
}

.shot {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #050606;
  border: 1px solid rgba(238, 245, 241, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.shot button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
}

.shot figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  color: rgba(238, 245, 241, 0.48);
  font-size: 0.78rem;
  font-weight: 700;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 58px 72px;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox.open {
  display: flex;
}

.lightbox-frame {
  margin: 0;
  max-width: min(100%, 1500px);
  max-height: 100%;
  display: grid;
  gap: 12px;
}

.lightbox-frame img {
  max-width: 100%;
  max-height: calc(100vh - 132px);
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.lightbox-frame figcaption {
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 0.9rem;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.04);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 48px;
  height: 80px;
  margin-top: -40px;
  border-radius: 999px;
  font-size: 3rem;
  line-height: 1;
}

.lightbox-nav.prev {
  left: 18px;
}

.lightbox-nav.next {
  right: 18px;
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 42px;
  }

  .hero-copy {
    max-width: none;
  }

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

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1160px);
    padding-top: 16px;
  }

  .topbar {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 24px;
  }

  .topbar a,
  .series-tags span {
    white-space: nowrap;
  }

  h1 {
    font-size: 4rem;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual,
  .shot {
    border-radius: 16px;
  }

  .story-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 50px;
  }

  .story-card {
    min-height: 180px;
  }

  .story-head {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .gallery {
    gap: 56px;
  }

  .lightbox {
    padding: 54px 10px 42px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 16px;
    width: 44px;
    height: 44px;
    margin-top: 0;
    font-size: 2rem;
  }
}
