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

:root {
  --ink: #17151c;
  --paper: #fffaf7;
  --soft-pink: #ffdce7;
  --hot-pink: #ff4f83;
  --line: rgba(23, 21, 28, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 215, 231, .7), transparent 24rem),
    var(--paper);
  font-family: "DM Sans", "Noto Sans SC", sans-serif;
}

a { color: inherit; text-decoration: none; }
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  padding: 0 clamp(24px, 6vw, 88px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 250, 247, .8);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(15px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}
.brand-mark {
  width: 42px;
  height: 35px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 50%;
  font-size: 11px;
  letter-spacing: -.03em;
}
nav { display: flex; gap: 32px; font-size: 14px; font-weight: 600; }
nav a { padding: 27px 0 23px; border-bottom: 3px solid transparent; }
nav a:hover, nav a.active { color: var(--hot-pink); border-color: var(--hot-pink); }

.group-home {
  min-height: 790px;
  padding: 145px clamp(24px, 8vw, 120px) 90px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  overflow: hidden;
}
.group-home h1 {
  margin: 0;
  font-size: clamp(88px, 12vw, 170px);
  line-height: .78;
  letter-spacing: -.09em;
}
.group-home h1 span {
  display: block;
  margin-left: .38em;
  color: var(--hot-pink);
  font-family: Georgia, serif;
  font-size: .82em;
  font-style: italic;
  font-weight: 400;
}
.group-home-lead { margin: 48px 0 12px; font-size: clamp(21px, 2.2vw, 30px); font-weight: 900; }
.group-home-text { max-width: 570px; color: #625d68; line-height: 1.9; }
.group-avatar {
  position: relative;
  min-height: 560px;
  margin: 0;
  display: grid;
  place-items: center;
}
.avatar-halo {
  position: absolute;
  width: min(37vw, 510px);
  aspect-ratio: 1;
  background: var(--soft-pink);
  border: 1px solid var(--ink);
  border-radius: 47% 53% 42% 58% / 55% 44% 56% 45%;
  box-shadow: 24px 22px 0 #bde2ff;
  transform: rotate(7deg);
}
.avatar-frame {
  position: relative;
  z-index: 2;
  width: min(30vw, 410px);
  aspect-ratio: 1;
  padding: 12px;
  overflow: hidden;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 24px 55px rgba(118,72,90,.2);
}
.avatar-frame img { display: block; width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.group-avatar figcaption {
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: 8%;
  min-width: 185px;
  padding: 14px 18px;
  display: grid;
  color: white;
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--hot-pink);
  transform: rotate(3deg);
}
.group-avatar figcaption span { color: #ffc0d3; font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.group-avatar figcaption strong { margin: 3px 0; font-family: Georgia, serif; font-size: 22px; font-style: italic; }
.group-avatar figcaption small { color: rgba(255,255,255,.68); font-size: 10px; }

.hero {
  min-height: 830px;
  padding: 150px clamp(24px, 8vw, 120px) 90px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  overflow: hidden;
}
.event-feature {
  min-height: 760px;
  padding: 85px clamp(24px, 5vw, 76px) 75px;
  background: var(--paper);
}
.compact-title { font-size: clamp(58px, 7vw, 104px) !important; }
.event-facts { display: flex; flex-wrap: wrap; gap: 7px; margin: 24px 0 0; }
.event-facts span { padding: 7px 10px; border: 1px solid var(--ink); border-radius: 99px; font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.event-kicker {
  width: fit-content;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  transform: rotate(-1deg);
}
.event-kicker b { padding: 0 8px; color: var(--hot-pink); }
.eyebrow {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
}
.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(62px, 8vw, 120px);
  line-height: .9;
  letter-spacing: -.065em;
}
.hero h1 span {
  display: block;
  margin-top: 12px;
  margin-left: .05em;
  color: var(--hot-pink);
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: .53em;
  letter-spacing: .02em;
}
.hero-lead { margin: 42px 0 12px; font-size: clamp(20px, 2vw, 28px); font-weight: 900; }
.hero-text { max-width: 540px; color: #625d68; line-height: 1.9; }
.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 26px;
  padding: 15px 22px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s, background .2s;
}
.primary-button:hover { transform: translateY(-3px); background: var(--hot-pink); }
.primary-button span { font-size: 18px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; }
.text-button { margin-top: 26px; font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--ink); }
.weibo-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  transition: transform .2s ease, color .2s ease, background-color .2s ease;
}
.weibo-link:hover { transform: translateY(-2px); }
.weibo-link span { font-size: 16px; }
.group-weibo-link {
  margin-top: 26px;
  padding: 10px 14px;
  color: #fff;
  background: #e84b4b;
  border: 1px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.group-weibo-link:hover { color: #fff; background: #cf3434; }

.hero-art {
  position: relative;
  min-height: 600px;
  margin: 0;
  display: grid;
  place-items: center;
}
.poster-backdrop {
  position: absolute;
  width: min(32vw, 440px);
  aspect-ratio: 3 / 4;
  background: #8dccff;
  border: 1px solid var(--ink);
  box-shadow: 28px 28px 0 var(--soft-pink);
  transform: rotate(5deg);
}
.poster-frame {
  position: relative;
  z-index: 2;
  width: min(30vw, 405px);
  aspect-ratio: 690 / 920;
  padding: 9px;
  background: white;
  border: 1px solid var(--ink);
  box-shadow: 0 25px 55px rgba(38, 67, 98, .22);
  transform: rotate(-3deg);
  transition: transform .4s ease;
}
.hero-art:hover .poster-frame { transform: rotate(-1deg) translateY(-6px); }
.poster-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.poster-frame-tall { aspect-ratio: 690 / 976; }
.hero-art figcaption {
  position: absolute;
  z-index: 4;
  right: -2%;
  bottom: 8%;
  min-width: 190px;
  padding: 15px 19px;
  display: grid;
  color: white;
  background: var(--ink);
  border: 1px solid white;
  box-shadow: 6px 6px 0 var(--hot-pink);
  transform: rotate(3deg);
}
.hero-art figcaption span { color: #a9d8ff; font-size: 9px; font-weight: 700; letter-spacing: .2em; }
.hero-art figcaption strong { margin: 4px 0 1px; font-size: 20px; letter-spacing: .04em; }
.hero-art figcaption small { color: rgba(255,255,255,.7); font-size: 10px; }
.poster-event-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 11px;
  padding-top: 10px;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.28);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
}
.poster-event-link b {
  color: #a9d8ff;
  font-size: 15px;
  transition: transform .2s ease;
}
.poster-event-link:hover b { transform: translate(2px, -2px); }
.poster-tape {
  position: absolute;
  z-index: 3;
  width: 92px;
  height: 24px;
  background: rgba(255, 247, 181, .78);
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
}
.tape-one { top: 7%; left: 21%; transform: rotate(-14deg); }
.tape-two { right: 14%; bottom: 9%; transform: rotate(-12deg); }
.spark { position: absolute; z-index: 3; font-size: 46px; color: var(--hot-pink); }
.spark-one { top: 2%; right: 7%; }.spark-two { bottom: 5%; left: 2%; }

.event-marquee,
.group-marquee {
  padding: 15px 0;
  overflow: hidden;
  color: white;
  background: var(--hot-pink);
  border-block: 1px solid var(--ink);
  transform: rotate(-1deg) scale(1.01);
}
.event-marquee > div,
.group-marquee > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .13em;
  animation: marquee 22s linear infinite;
}
.event-marquee i,
.group-marquee i { font-style: normal; color: var(--ink); }
.group-marquee { background: var(--ink); border-color: var(--hot-pink); }
.group-marquee i { color: var(--hot-pink); }

.members-section { padding: 110px clamp(24px, 8vw, 120px) 130px; background: #19171e; color: white; }
.group-intro {
  display: grid;
  grid-template-columns: 1fr auto 2fr;
  align-items: start;
  gap: clamp(24px, 5vw, 80px);
  margin-bottom: 125px;
  padding-bottom: 90px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.group-intro .intro-number {
  margin: -20px 0 0;
  color: #ff8eaf;
  font-family: Georgia, serif;
  font-size: clamp(82px, 11vw, 155px);
  font-style: italic;
  line-height: 1;
}
.group-intro h2 { margin: 0 0 28px; font-size: clamp(38px, 5vw, 68px); line-height: 1.08; letter-spacing: -.045em; }
.group-intro h2 em { color: #ff8eaf; font-family: Georgia, serif; font-weight: 400; }
.group-intro div > p { max-width: 620px; color: #aaa5ae; line-height: 1.9; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 65px;
}
.section-heading h2 { margin: 0; font-size: clamp(42px, 6vw, 78px); line-height: 1.02; letter-spacing: -.045em; }
.section-heading h2 em { color: #ff8eaf; font-family: Georgia, serif; font-weight: 400; }
.section-heading > p { max-width: 270px; color: #aaa5ae; line-height: 1.7; }
.member-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.member-card {
  --member: #fff;
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 390px;
  color: var(--ink);
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  outline: none;
  transition: transform .3s, box-shadow .3s;
}
.member-card:hover, .member-card:focus { transform: translateY(-8px); box-shadow: 0 22px 50px rgba(0,0,0,.3); }
.member-card.blue { --member: #64aaf2; }.member-card.pink { --member: #ff82ad; }
.member-card.red { --member: #f04c61; }.member-card.purple { --member: #9a5ee8; }
.portrait-wrap { position: relative; min-height: 390px; overflow: hidden; background: var(--member); }
.portrait-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 78%, rgba(0,0,0,.28)); pointer-events: none; }
.portrait-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.96); transition: transform .5s, filter .5s; }
.member-card:hover img { transform: scale(1.05); filter: saturate(1.12); }
.number { position: absolute; z-index: 2; top: 16px; left: 18px; font-size: 13px; font-weight: 700; }
.color-label { position: absolute; z-index: 2; bottom: 18px; left: 18px; color: white; font-size: 11px; font-weight: 700; letter-spacing: .2em; }
.member-info { padding: clamp(28px, 3.2vw, 48px) clamp(24px, 3vw, 42px); display: flex; flex-direction: column; justify-content: center; }
.role { margin: 0 0 13px; color: var(--member); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.member-info h3 { margin: 0 0 24px; font-size: clamp(31px, 3vw, 46px); line-height: 1; }
.member-info h3 span { display: block; margin-top: 9px; color: #8c8790; font-family: Georgia, serif; font-size: .6em; font-style: italic; font-weight: 400; }
.member-info > p:not(.role) { margin: 0; color: #65606a; font-size: 14px; line-height: 1.8; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 25px; }
.tags span { padding: 6px 10px; border: 1px solid #dedbe0; border-radius: 99px; font-size: 11px; }
.member-weibo-link {
  margin-top: 22px;
  padding-bottom: 5px;
  color: var(--member);
  border-bottom: 2px solid var(--member);
}
.member-weibo-link:hover { color: #17151c; }

.records-section { padding: 110px clamp(24px, 6vw, 92px) 130px; background: var(--soft-pink); }
.support-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 55px;
}
.support-heading h2 { margin: 0; font-size: clamp(48px, 7vw, 88px); letter-spacing: -.06em; }
.support-heading > p { max-width: 390px; margin: 0 0 10px; color: #705d65; line-height: 1.8; }
.event-archive {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 8px;
  box-shadow: 14px 14px 0 rgba(23,21,28,.1);
  transition: box-shadow .25s ease, transform .25s ease;
}
.event-archive + .event-archive { margin-top: 24px; }
.event-archive:not(.is-collapsed) {
  box-shadow: 14px 14px 0 rgba(23,21,28,.1);
}
.event-archive.is-collapsed {
  box-shadow: 7px 7px 0 rgba(23,21,28,.09);
}
.event-archive-purple { --archive-accent: #8155bd; }
.event-archive-purple .archive-label { background: #4f376f; }
.event-archive-purple .event-marquee { background: #8155bd; }
.event-archive-purple .event-marquee i { color: #f9dd65; }
.event-archive-purple .poster-backdrop { background: #b99ae2; box-shadow: 28px 28px 0 #efe3ff; }
.event-archive-purple .hero-art figcaption { box-shadow: 6px 6px 0 #8155bd; }
.event-archive-purple .video-heading span { color: #8155bd; }
.event-archive-purple .primary-button:hover { background: #8155bd; }
.event-archive-purple .video-card:hover { background-color: #8155bd; }
.event-archive-ayakaya06 { --archive-accent: #c486cf; }
.event-archive-ayakaya06 .archive-label { background: #694b7d; }
.event-archive-ayakaya06 .event-marquee { background: #c486cf; }
.event-archive-ayakaya06 .event-marquee i { color: #fff0a7; }
.event-archive-ayakaya06 .poster-backdrop { background: #f0cf76; box-shadow: 28px 28px 0 #b9ddf2; }
.event-archive-ayakaya06 .hero-art figcaption { box-shadow: 6px 6px 0 #c486cf; }
.event-archive-ayakaya06 .video-heading span { color: #a75eb4; }
.event-archive-ayakaya06 .primary-button:hover { background: #a75eb4; }
.event-archive-ayakaya06 .video-card:hover { background-color: #80508d; }
.event-archive-pika17 { --archive-accent: #d9ff00; }
.event-archive-pika17 .archive-label { background: #17191c; }
.event-archive-pika17 .event-marquee { background: #17191c; }
.event-archive-pika17 .event-marquee i { color: #d9ff00; }
.event-archive-pika17 .poster-backdrop { background: #d9ff00; box-shadow: 28px 28px 0 #72c8ff; }
.event-archive-pika17 .hero-art figcaption { box-shadow: 6px 6px 0 #d9ff00; }
.event-archive-pika17 .video-heading span { color: #9ebd00; }
.event-archive-pika17 .primary-button:hover { color: #17191c; background: #d9ff00; }
.event-archive-pika17 .video-card:hover { background-color: #17191c; }
.event-archive-mini3 { --archive-accent: #b65343; }
.event-archive-mini3 .archive-label { background: #3a201d; }
.event-archive-mini3 .event-marquee { background: #7f342c; }
.event-archive-mini3 .event-marquee i { color: #f2b17f; }
.event-archive-mini3 .poster-backdrop { background: #c96f56; box-shadow: 28px 28px 0 #d9e7a1; }
.event-archive-mini3 .hero-art figcaption { box-shadow: 6px 6px 0 #b65343; }
.event-archive-mini3 .video-heading span { color: #b65343; }
.event-archive-mini3 .primary-button:hover { background: #b65343; }
.event-archive-mini3 .video-card:hover { background-color: #7f342c; }
.event-archive-pajama { --archive-accent: #65c9f1; }
.event-archive-pajama .archive-label { background: #e886bd; }
.event-archive-pajama .event-marquee { background: #65c9f1; }
.event-archive-pajama .event-marquee i { color: #fff; }
.event-archive-pajama .poster-backdrop { background: #77d8ff; box-shadow: 28px 28px 0 #ffd0e8; }
.event-archive-pajama .hero-art figcaption { box-shadow: 6px 6px 0 #65c9f1; }
.event-archive-pajama .primary-button:hover { background: #e886bd; }
.event-archive-bside { --archive-accent: #ed7fba; }
.event-archive-bside .archive-label { background: #8d4770; }
.event-archive-bside .event-marquee { background: #ed7fba; }
.event-archive-bside .event-marquee i { color: #fff1a8; }
.event-archive-bside .poster-backdrop { background: #f2a9cf; box-shadow: 28px 28px 0 #bcecf0; }
.event-archive-bside .hero-art figcaption { box-shadow: 6px 6px 0 #ed7fba; }
.event-archive-bside .video-heading span { color: #d95f9e; }
.event-archive-bside .primary-button:hover { background: #d95f9e; }
.event-archive-bside .video-card:hover { background-color: #c85693; }
.event-archive-violet-deep { --archive-accent: #583279; }
.event-archive-violet-deep .archive-label { background: #321d46; }
.event-archive-violet-deep .event-marquee { background: #583279; }
.event-archive-violet-deep .event-marquee i { color: #ffdf6f; }
.event-archive-violet-deep .poster-backdrop { background: #8d6caf; box-shadow: 28px 28px 0 #e5daf2; }
.event-archive-violet-deep .hero-art figcaption { box-shadow: 6px 6px 0 #583279; }
.event-archive-violet-deep .video-heading span { color: #583279; }
.event-archive-violet-deep .primary-button:hover { background: #583279; }
.event-archive-violet-deep .video-card:hover { background-color: #583279; }
.event-archive-lilac { --archive-accent: #7654a6; }
.event-archive-lilac .archive-label { background: #463260; }
.event-archive-lilac .event-marquee { background: #7654a6; }
.event-archive-lilac .event-marquee i { color: #ffe47c; }
.event-archive-lilac .poster-backdrop { background: #aa91cf; box-shadow: 28px 28px 0 #eee5f8; }
.event-archive-lilac .hero-art figcaption { box-shadow: 6px 6px 0 #7654a6; }
.event-archive-lilac .video-heading span { color: #7654a6; }
.event-archive-lilac .primary-button:hover { background: #7654a6; }
.event-archive-lilac .video-card:hover { background-color: #7654a6; }
.event-archive-anniversary { --archive-accent: #a85b92; }
.event-archive-anniversary .archive-label { background: #673458; }
.event-archive-anniversary .event-marquee { background: #a85b92; }
.event-archive-anniversary .event-marquee i { color: #ffe2ef; }
.event-archive-anniversary .poster-backdrop { background: #d6a9cf; box-shadow: 28px 28px 0 #f7e5cf; }
.event-archive-anniversary .hero-art figcaption { box-shadow: 6px 6px 0 #a85b92; }
.event-archive-anniversary .video-heading span { color: #a85b92; }
.event-archive-anniversary .primary-button:hover { background: #a85b92; }
.event-archive-anniversary .video-card:hover { background-color: #873f72; }
.event-archive-pika { --archive-accent: #00bfc8; }
.event-archive-pika .archive-label { background: #17191c; }
.event-archive-pika .event-marquee { background: #17191c; }
.event-archive-pika .event-marquee i { color: #00e1df; }
.event-archive-pika .poster-backdrop { background: #08cfd2; box-shadow: 28px 28px 0 #ffe100; }
.event-archive-pika .hero-art figcaption { box-shadow: 6px 6px 0 #00bfc8; }
.event-archive-pika .video-heading span { color: #00aeb7; }
.event-archive-pika .primary-button:hover { background: #00aeb7; }
.event-archive-pika .video-card:hover { background-color: #17191c; }
.event-archive-pika15 { --archive-accent: #f39bc4; }
.event-archive-pika15 .archive-label { background: #17191c; }
.event-archive-pika15 .event-marquee { background: #17191c; }
.event-archive-pika15 .event-marquee i { color: #ffb1d4; }
.event-archive-pika15 .poster-backdrop { background: #ffacd1; box-shadow: 28px 28px 0 #ffe39a; }
.event-archive-pika15 .hero-art figcaption { box-shadow: 6px 6px 0 #f39bc4; }
.event-archive-pika15 .primary-button:hover { background: #f39bc4; }
.event-archive-spring { --archive-accent: #8460ad; }
.event-archive-spring .archive-label { background: #4a3564; }
.event-archive-spring .event-marquee { background: #8460ad; }
.event-archive-spring .event-marquee i { color: #ffe480; }
.event-archive-spring .poster-backdrop { background: #b39bd0; box-shadow: 28px 28px 0 #eee6f7; }
.event-archive-spring .hero-art figcaption { box-shadow: 6px 6px 0 #8460ad; }
.event-archive-spring .video-heading span { color: #8460ad; }
.event-archive-spring .primary-button:hover { background: #8460ad; }
.event-archive-spring .video-card:hover { background-color: #8460ad; }
.event-archive-cosplay { --archive-accent: #5d3f84; }
.event-archive-cosplay .archive-label { background: #322348; }
.event-archive-cosplay .event-marquee { background: #5d3f84; }
.event-archive-cosplay .event-marquee i { color: #ffdf72; }
.event-archive-cosplay .poster-backdrop { background: #9173bd; box-shadow: 28px 28px 0 #e5daf3; }
.event-archive-cosplay .hero-art figcaption { box-shadow: 6px 6px 0 #5d3f84; }
.event-archive-cosplay .video-heading span { color: #5d3f84; }
.event-archive-cosplay .primary-button:hover { background: #5d3f84; }
.event-archive-cosplay .video-card:hover { background-color: #5d3f84; }
.event-archive-orchid { --archive-accent: #70458f; }
.event-archive-orchid .archive-label { background: #3e2852; }
.event-archive-orchid .event-marquee { background: #70458f; }
.event-archive-orchid .event-marquee i { color: #ffe27a; }
.event-archive-orchid .poster-backdrop { background: #9d7abd; box-shadow: 28px 28px 0 #eadff4; }
.event-archive-orchid .hero-art figcaption { box-shadow: 6px 6px 0 #70458f; }
.event-archive-orchid .video-heading span { color: #70458f; }
.event-archive-orchid .primary-button:hover { background: #70458f; }
.event-archive-orchid .video-card:hover { background-color: #70458f; }
.event-archive-lavender { --archive-accent: #7656a9; }
.event-archive-lavender .archive-label { background: #44305f; }
.event-archive-lavender .event-marquee { background: #7656a9; }
.event-archive-lavender .event-marquee i { color: #ffe27a; }
.event-archive-lavender .poster-backdrop { background: #ad97d4; box-shadow: 28px 28px 0 #eee6fa; }
.event-archive-lavender .hero-art figcaption { box-shadow: 6px 6px 0 #7656a9; }
.event-archive-lavender .video-heading span { color: #7656a9; }
.event-archive-lavender .primary-button:hover { background: #7656a9; }
.event-archive-lavender .video-card:hover { background-color: #7656a9; }
.event-archive-violet { --archive-accent: #65449a; }
.event-archive-violet .archive-label { background: #382951; }
.event-archive-violet .event-marquee { background: #65449a; }
.event-archive-violet .event-marquee i { color: #f9dd65; }
.event-archive-violet .poster-backdrop { background: #9c82cc; box-shadow: 28px 28px 0 #e7dcfa; }
.event-archive-violet .hero-art figcaption { box-shadow: 6px 6px 0 #65449a; }
.event-archive-violet .video-heading span { color: #65449a; }
.event-archive-violet .primary-button:hover { background: #65449a; }
.event-archive-violet .video-card:hover { background-color: #65449a; }
.archive-label {
  padding: 17px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: white;
  background: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}
.archive-label-meta {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.archive-toggle {
  flex: 0 0 auto;
  min-width: 112px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 999px;
  font: inherit;
  letter-spacing: .1em;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}
.archive-toggle:hover {
  color: var(--ink);
  background: #fff;
  transform: translateY(-1px);
}
.archive-toggle-icon {
  font-size: 15px;
  line-height: 1;
  transition: transform .25s ease;
}
.archive-toggle[aria-expanded="true"] .archive-toggle-icon { transform: rotate(180deg); }
.archive-content[hidden] { display: none; }
.event-archive .event-marquee { transform: none; }
.event-day-archive {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 420px);
  gap: clamp(26px, 4vw, 52px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(36px, 4.5vw, 58px) clamp(28px, 6vw, 88px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,245,250,.94)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(129,85,189,.07) 34px 35px);
  border-bottom: 1px solid var(--ink);
}
.event-day-archive-text-only {
  display: block;
  max-width: none;
  padding-inline: clamp(28px, 8vw, 130px);
}
.event-day-archive-text-only .event-day-notes { max-width: 680px; }
.event-day-notes h2 {
  margin: 5px 0 22px;
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: -.055em;
}
.event-day-details { margin: 0; }
.event-day-details > div {
  padding: 15px 0;
  border-top: 1px solid #cfc6d6;
}
.event-day-details > div:last-child { border-bottom: 1px solid #cfc6d6; }
.event-day-details dt {
  margin-bottom: 9px;
  color: #716879;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}
.event-day-details dd {
  margin: 0;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 900;
}
.day-archive-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 10px;
  color: var(--archive-accent, var(--hot-pink));
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  vertical-align: middle;
}
.day-archive-link:hover { text-decoration: underline; }
.attendance-colors { display: flex; gap: 8px; align-items: center; }
.attendance-colors span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: #fff;
  border: 1px solid #d7d0da;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 2px 2px 0 rgba(23,21,28,.12);
}
.event-day-photo {
  position: relative;
  width: min(100%, 420px);
  justify-self: end;
  margin: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--ink);
  box-shadow: 12px 12px 0 var(--archive-accent, var(--hot-pink));
  transform: rotate(.8deg);
}
.event-day-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.event-day-photo-wide img { aspect-ratio: 3 / 2; }
.event-day-photo figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 16px;
  padding: 15px 7px 5px;
}
.event-day-photo figcaption span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--archive-accent, var(--hot-pink));
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  writing-mode: vertical-rl;
}
.event-day-photo figcaption strong { font-size: 16px; }
.event-day-photo figcaption small { color: #7a727e; font-size: 11px; }
.video-heading {
  padding: 78px clamp(24px, 5vw, 76px) 42px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}
.video-heading > div { display: flex; align-items: center; gap: 18px; }
.video-heading span { color: var(--hot-pink); font-family: Georgia, serif; font-size: 78px; font-style: italic; line-height: .8; }
.video-heading div p { margin: 0; font-size: 11px; font-weight: 700; letter-spacing: .18em; line-height: 1.5; }
.video-heading > p { max-width: 420px; margin: 0; color: #6f6873; font-size: 14px; line-height: 1.8; }
.video-grid { padding: 0 clamp(24px, 5vw, 76px) 76px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.video-grid-four { grid-template-columns: repeat(4, 1fr); }
.video-card {
  position: relative;
  min-height: 300px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: white;
  background:
    linear-gradient(145deg, transparent 25%, rgba(255,255,255,.09)),
    var(--ink);
  border-radius: 5px;
  overflow: hidden;
  transition: transform .25s, background .25s;
}
.video-card:nth-child(4n + 2) { background-color: #25212c; }
.video-card:nth-child(4n + 3) { background-color: #201d28; }
.video-card:nth-child(4n) { background-color: #2b2530; }
.video-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  top: 48px;
  left: 50%;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  transform: translateX(-50%);
}
.video-card:hover { transform: translateY(-7px); background-color: var(--hot-pink); }
.video-index { position: absolute; top: 22px; left: 22px; font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.play-icon {
  position: absolute;
  z-index: 1;
  top: 90px;
  left: 50%;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  font-size: 27px;
  transform: translateX(-50%);
}
.video-card strong {
  position: relative;
  min-height: 2.65em;
  display: flex;
  align-items: end;
  overflow-wrap: anywhere;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.3;
}
.video-card small {
  position: relative;
  margin-top: 9px;
  color: rgba(255,255,255,.65);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
}
.event-empty-note {
  margin: 0;
  padding: 34px clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #5f5667;
  background: rgba(255,255,255,.72);
  border-top: 1px solid #d7d0da;
}
.event-empty-note span {
  color: var(--archive-accent, var(--hot-pink));
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}
.event-empty-note p { margin: 0; line-height: 1.8; }
.hankiri-section {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  padding: clamp(42px, 5vw, 72px) clamp(28px, 6vw, 88px);
  background:
    linear-gradient(135deg, rgba(255,246,251,.96), rgba(245,251,255,.94)),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(243,155,196,.08) 32px 33px);
  border-top: 1px solid #d7d0da;
}
.hankiri-photo {
  position: sticky;
  top: 90px;
  margin: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--ink);
  box-shadow: 12px 12px 0 var(--archive-accent, var(--hot-pink));
  transform: rotate(-.8deg);
}
.hankiri-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hankiri-photo figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 16px;
  padding: 15px 7px 5px;
}
.hankiri-photo figcaption span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--archive-accent, var(--hot-pink));
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  writing-mode: vertical-rl;
}
.hankiri-photo figcaption strong { font-size: 16px; }
.hankiri-photo figcaption small { color: #7a727e; font-size: 11px; }
.hankiri-note {
  padding: clamp(24px, 3vw, 38px);
  background: rgba(255,255,255,.74);
  border: 1px solid #d7d0da;
  box-shadow: 8px 8px 0 rgba(23,21,28,.06);
}
.hankiri-note h2 {
  margin: 5px 0 22px;
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: -.055em;
}
.hankiri-copy {
  color: #4f4654;
  font-size: 15px;
  line-height: 2.05;
}
.hankiri-copy p { margin: 0; }
.hankiri-copy p + p { margin-top: 16px; }
footer {
  padding: 26px clamp(24px, 6vw, 88px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}
.icp-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(20, 18, 26, .3);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.icp-link:hover {
  color: var(--pink);
  border-color: var(--pink);
}

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 900px) {
  .group-home { grid-template-columns: 1fr; padding-top: 130px; }
  .group-avatar { min-height: 500px; margin-top: 35px; }
  .avatar-halo { width: 410px; }
  .avatar-frame { width: 340px; }
  .hero { grid-template-columns: 1fr; padding-top: 130px; }
  .event-feature { padding-top: 80px; }
  .hero-art { min-height: 620px; margin-top: 45px; }
  .poster-backdrop { width: 390px; }
  .poster-frame { width: 360px; }
  .hero-art figcaption { right: 8%; }
  .member-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid-four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .site-header { height: 64px; }
  nav { gap: 15px; font-size: 12px; }
  nav a { padding: 22px 0 18px; }
  .brand > span:last-child { display: none; }
  .group-home { min-height: auto; padding-top: 115px; }
  .group-home h1 { font-size: 82px; }
  .group-avatar { min-height: 400px; }
  .avatar-halo { width: min(84vw, 330px); box-shadow: 15px 15px 0 #bde2ff; }
  .avatar-frame { width: min(70vw, 275px); padding: 8px; }
  .group-avatar figcaption { right: 1%; bottom: 3%; min-width: 165px; }
  .hero { min-height: auto; padding-top: 115px; }
  .event-feature { padding: 65px 20px 55px; }
  .hero h1 { font-size: 72px; }
  .hero-art { min-height: 520px; }
  .poster-backdrop { width: min(82vw, 330px); box-shadow: 17px 17px 0 var(--soft-pink); }
  .poster-frame { width: min(78vw, 310px); }
  .hero-art figcaption { right: 3%; bottom: 4%; min-width: 165px; }
  .tape-one { left: 10%; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 24px; }
  .support-heading { display: block; }
  .support-heading > p { margin-top: 20px; }
  .records-section { padding-inline: 14px; }
  .archive-label {
    padding: 14px 16px;
    align-items: stretch;
    gap: 12px;
  }
  .archive-label-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .archive-toggle {
    min-width: 100px;
    align-self: center;
  }
  .event-day-archive { grid-template-columns: 1fr; gap: 30px; padding: 38px 20px; }
  .event-day-archive-text-only { display: block; }
  .event-day-photo {
    width: min(100%, 390px);
    justify-self: center;
    transform: none;
    box-shadow: 8px 8px 0 var(--archive-accent, var(--hot-pink));
  }
  .video-heading { display: block; padding-top: 60px; }
  .video-heading > p { margin-top: 25px; }
  .event-empty-note { display: block; }
  .event-empty-note p { margin-top: 12px; }
  .hankiri-section {
    grid-template-columns: 1fr;
    padding: 38px 20px;
  }
  .hankiri-photo {
    position: relative;
    top: auto;
    justify-self: center;
    width: min(100%, 390px);
    transform: none;
    box-shadow: 8px 8px 0 var(--archive-accent, var(--hot-pink));
  }
  .video-grid { grid-template-columns: 1fr; }
  .video-grid-four { grid-template-columns: 1fr; }
  .video-card { min-height: 250px; }
  .member-card { grid-template-columns: 1fr; }
  .portrait-wrap { aspect-ratio: 2 / 3; min-height: 0; }
  footer { gap: 12px; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
