@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap");


/* =========================================================
   ROOT
========================================================= */

:root {
  --font-heading: "Zen Maru Gothic", sans-serif;
  --font-body: "M PLUS Rounded 1c", sans-serif;

  --pink-50: #fff9fb;
  --pink-100: #fff1f6;
  --pink-200: #fbdde8;
  --pink-300: #f7c4d6;
  --pink-400: #ef9fbb;
  --pink-500: #e77ca5;
  --pink-600: #cf5f8c;

  --rose: #b94f78;
  --cream: #fffaf3;

  --ink: #684f5b;
  --muted: #9a7f8a;

  --line: rgba(190, 111, 143, 0.18);
  --white: #fff;

  --shadow: 0 22px 70px rgba(184, 91, 127, 0.12);
}


/* =========================================================
   BASE
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--pink-50);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

h1,
h2,
h3,
.hero-copy,
.section-heading__en {
  font-family: var(--font-heading);
}

.site-shell {
  overflow: clip;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* =========================================================
   HEADER
========================================================= */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;

  min-height: 84px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 10px clamp(20px, 4vw, 64px);

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    min-height 0.35s ease;
}

.header.is-scrolled {
  min-height: 70px;

  background: rgba(255, 249, 251, 0.9);
  backdrop-filter: blur(18px);

  box-shadow: 0 8px 30px rgba(175, 99, 129, 0.08);
}

.header__brand {
  width: 150px;
  overflow: hidden;
  border-radius: 22px;
}

.header__brand img {
  width: 100%;
  height: 62px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.3vw, 34px);
}

.nav a {
  position: relative;
  color: var(--rose);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -9px;
  height: 1px;
  background: var(--pink-500);

  transition:
    left 0.25s ease,
    right 0.25s ease;
}

.nav a:hover::after,
.nav a.is-active::after {
  left: 0;
  right: 0;
}

.menu-button {
  display: none;
}


/* =========================================================
   COMMON
========================================================= */

.section {
  position: relative;
  padding: 110px 0;
}

.section-heading__en {
  display: block;
  margin-bottom: 9px;

  color: var(--pink-600);

  font-size: clamp(34px, 6vw, 70px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;

  opacity: 0.82;
}

.section-heading h2 {
  margin: 0;

  color: var(--rose);

  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.section-heading--center {
  margin-bottom: 48px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;

  color: var(--rose);

  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.22em;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  min-height: 100svh;

  display: grid;
  place-items: center;

  isolation: isolate;
  overflow: hidden;

  background: linear-gradient(
    180deg,
    #fff9fb 0%,
    #fce3ec 100%
  );
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.24)
    ),
    url("./assets/melty_hero.png");

  background-size: cover;
  background-position: center;

  filter: saturate(0.92);
  transform: scale(1.03);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(255, 255, 255, 0.48),
      transparent 36%
    ),
    radial-gradient(
      circle at 18% 22%,
      rgba(255, 255, 255, 0.68),
      transparent 23%
    ),
    radial-gradient(
      circle at 80% 18%,
      rgba(255, 236, 244, 0.62),
      transparent 27%
    );
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;

  background: linear-gradient(
    90deg,
    rgba(255, 250, 252, 0.25),
    rgba(255, 255, 255, 0.03) 42%,
    rgba(255, 250, 252, 0.25)
  );
}

.hero__content {
  width: min(760px, calc(100% - 36px));
  padding-top: 80px;
  text-align: center;
}

.hero__logo-wrap {
  width: min(620px, 92vw);
  margin: 0 auto 18px;
}

.hero__logo {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(0.95);
}

.hero__copy {
  margin: 6px 0 2px;

  color: #bc587f;

  font-size: clamp(24px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero__subcopy {
  margin: 0 0 24px;

  color: #8e7280;

  font-size: clamp(13px, 1.5vw, 16px);
  letter-spacing: 0.08em;
}

.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin: 0 auto 22px;
  padding: 9px 18px;

  border: 1px solid rgba(192, 94, 132, 0.2);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.68);

  color: var(--rose);

  font-family: var(--font-heading);
  font-size: 14px;
}

.hero__status::before {
  content: "♡";
}

.hero__ornament {
  position: absolute;
  z-index: -1;

  color: rgba(214, 114, 153, 0.25);

  font-family: var(--font-heading);

  animation: float 5s ease-in-out infinite;
}

.hero__ornament--left {
  left: 9vw;
  top: 35%;
  font-size: 52px;
}

.hero__ornament--right {
  right: 11vw;
  top: 28%;
  font-size: 44px;
  animation-delay: -2s;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;

  transform: translateX(-50%);

  display: grid;
  justify-items: center;
  gap: 8px;

  color: rgba(124, 83, 101, 0.65);

  font-size: 10px;
  letter-spacing: 0.2em;
}

.hero__scroll i {
  position: relative;

  width: 1px;
  height: 48px;

  overflow: hidden;

  background: rgba(159, 100, 126, 0.28);
}

.hero__scroll i::after {
  content: "";

  position: absolute;
  inset: -50% 0 auto;

  height: 55%;

  background: var(--pink-500);

  animation: scrollLine 2.2s ease-in-out infinite;
}


/* =========================================================
   BUTTON
========================================================= */

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  min-width: 220px;

  padding: 13px 26px;

  border-radius: 999px;

  font-family: var(--font-heading);
  letter-spacing: 0.08em;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.button--primary {
  border: 1px solid rgba(207, 95, 140, 0.35);

  background: #fff;
  color: var(--rose);

  box-shadow: 0 12px 32px rgba(187, 88, 127, 0.1);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(187, 88, 127, 0.16);
}


/* =========================================================
   ABOUT
========================================================= */

.section--intro {
  background: linear-gradient(
    180deg,
    #fff 0%,
    #fff9fb 100%
  );
}

.split-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.paper-card {
  position: relative;

  padding: clamp(34px, 5vw, 60px);

  border: 1px solid var(--line);
  border-radius: 32px;

  background: rgba(255, 255, 255, 0.82);

  box-shadow: var(--shadow);
}

.paper-card::before,
.paper-card::after {
  content: "";

  position: absolute;
  top: 18px;

  width: 76px;
  height: 20px;

  background: rgba(244, 191, 211, 0.55);
}

.paper-card::before {
  left: -16px;
  transform: rotate(-8deg);
}

.paper-card::after {
  right: -16px;
  transform: rotate(8deg);
}

.mini-crown {
  color: var(--pink-500);
  font-size: 24px;
}

.lead {
  color: var(--rose);

  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
}


/* =========================================================
   NEWS
========================================================= */

.section--news {
  background: var(--pink-100);
}

.news-list {
  width: min(900px, 100%);
  margin-inline: auto;

  border-top: 1px solid var(--line);
}

.news-item {
  display: grid;
  grid-template-columns: 130px 70px 1fr;
  gap: 20px;
  align-items: center;

  padding: 24px 12px;

  border-bottom: 1px solid var(--line);
}

.news-item time {
  color: var(--muted);
  font-size: 13px;
}

.news-item a {
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.news-item a:hover {
  color: var(--pink-600);
  transform: translateX(3px);
}

.pill {
  display: inline-flex;
  justify-content: center;

  padding: 3px 10px;

  border-radius: 999px;

  background: #fff;
  color: var(--pink-600);

  font-size: 10px;
  letter-spacing: 0.08em;
}

.news-item--placeholder {
  opacity: 0.58;
}


/* =========================================================
   MEMBER
========================================================= */

.section--members {
  padding: 120px 0 130px;

  background:
    radial-gradient(
      circle at 14% 15%,
      rgba(255, 255, 255, 0.96),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 75%,
      rgba(247, 196, 214, 0.34),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      #fff9fb 0%,
      #fff1f6 55%,
      #fff9fb 100%
    );
}

.member-selection-grid {
  display: grid;
  grid-template-columns:
    minmax(270px, 0.72fr)
    minmax(0, 1.55fr);

  gap: clamp(26px, 4vw, 52px);
  align-items: stretch;

  margin-top: 54px;
}


/* =========================================================
   CONFIRMED MEMBER
========================================================= */

.confirmed-member {
  position: relative;

  display: flex;
  flex-direction: column;

  padding: 18px;

  overflow: hidden;

  border: 1px solid rgba(207, 95, 140, 0.16);
  border-radius: 34px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.96),
    rgba(255, 244, 248, 0.92)
  );

  box-shadow: 0 20px 65px rgba(181, 91, 126, 0.12);
}

.confirmed-member::before {
  content: "";

  position: absolute;
  inset: 9px;

  pointer-events: none;

  border: 1px solid rgba(231, 124, 165, 0.18);
  border-radius: 27px;
}

.confirmed-member__label {
  position: absolute;
  z-index: 4;
  top: 30px;
  left: 30px;

  display: flex;
  align-items: center;
  gap: 8px;
}

.confirmed-member__label span {
  padding: 5px 10px;

  border-radius: 99px;

  background: rgba(255, 255, 255, 0.88);
  color: var(--pink-600);

  font-size: 9px;
  letter-spacing: 0.15em;
}

.confirmed-member__label strong {
  padding: 5px 11px;

  border-radius: 99px;

  background: var(--pink-500);
  color: #fff;

  font-size: 10px;
  font-weight: 500;
}

.confirmed-member__photo-wrap {
  position: relative;

  width: 100%;
  aspect-ratio: 4 / 5;

  overflow: hidden;

  border-radius: 25px;

  background: linear-gradient(
    160deg,
    #fff,
    #fde6ee
  );
}

.confirmed-member__photo {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;

  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.confirmed-member:hover .confirmed-member__photo {
  transform: scale(1.025);
}

.member-decoration {
  position: absolute;

  pointer-events: none;

  color: rgba(231, 124, 165, 0.7);

  font-family: var(--font-heading);

  animation: float 5s ease-in-out infinite;
}

.member-decoration--heart {
  right: 18px;
  top: 20%;
  font-size: 31px;
}

.member-decoration--sparkle {
  left: 18px;
  bottom: 16%;
  font-size: 21px;
  animation-delay: -2s;
}

.confirmed-member__content {
  position: relative;

  padding: 24px 15px 18px;

  text-align: center;
}

.confirmed-member__role {
  margin: 0 0 2px;

  color: var(--pink-500);

  font-size: 9px;
  letter-spacing: 0.2em;
}

.confirmed-member__content h3 {
  margin: 4px 0 0;

  color: var(--rose);

  font-family: var(--font-heading);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.confirmed-member__en {
  margin: -2px 0 15px;

  color: #bc849b;

  font-size: 10px;
  letter-spacing: 0.18em;
}

.confirmed-member__message {
  max-width: 290px;
  margin: 0 auto;

  color: #846876;

  font-size: 12px;
  line-height: 1.9;
}


/* =========================================================
   FINAL SELECTION PHOTO
========================================================= */

.final-members {
  position: relative;

  display: flex;
  flex-direction: column;

  min-width: 0;

  padding: clamp(20px, 3vw, 30px);

  border: 1px solid rgba(207, 95, 140, 0.15);
  border-radius: 34px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.94),
    rgba(255, 246, 249, 0.88)
  );

  box-shadow: 0 20px 65px rgba(181, 91, 126, 0.12);
}

.final-members::after {
  content: "♡";

  position: absolute;
  right: 24px;
  bottom: 15px;

  color: rgba(231, 124, 165, 0.13);

  font-size: 100px;
  line-height: 1;
}

.final-members__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 20px;
}

.final-members__en {
  margin: 0;

  color: var(--pink-500);

  font-size: 10px;
  letter-spacing: 0.2em;
}

.final-members__heading h3 {
  margin: 0;

  color: var(--rose);

  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 35px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.final-members__badge {
  flex: none;

  padding: 8px 16px;

  border: 1px solid rgba(207, 95, 140, 0.2);
  border-radius: 99px;

  background: var(--pink-100);
  color: var(--pink-600);

  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.final-members__photo-wrap {
  position: relative;

  width: 100%;

  overflow: hidden;

  border-radius: 24px;

  background: #fbe4ed;
}

.final-members__photo-wrap::before {
  content: "";

  position: absolute;
  z-index: 2;
  inset: 0;

  pointer-events: none;

  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: inherit;
}

.final-members__photo {
  width: 100%;
  aspect-ratio: 16 / 9;

  object-fit: cover;

  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.final-members:hover .final-members__photo {
  transform: scale(1.015);
}

.final-members__bottom {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;

  margin-top: 24px;
}

.final-members__bottom > div > span {
  display: block;

  color: var(--pink-500);

  font-size: 10px;
  letter-spacing: 0.16em;
}

.final-members__bottom p {
  margin: 5px 0 0;

  color: #846876;

  font-size: 13px;
}

.final-members__link {
  flex: none;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 11px 18px;

  border: 1px solid rgba(207, 95, 140, 0.22);
  border-radius: 99px;

  background: rgba(255, 255, 255, 0.74);
  color: var(--pink-600);

  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.12em;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.final-members__link:hover {
  transform: translateY(-2px);

  background: #fff;

  box-shadow: 0 10px 25px rgba(190, 90, 130, 0.12);
}


/* =========================================================
   CONCEPT
========================================================= */

.section--concept {
  background: linear-gradient(
    135deg,
    #fffaf7,
    #fff2f6
  );
}

.concept-copy--center {
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: center;
}

.concept-copy--center > p {
  margin-top: 22px;

  font-size: 15px;
  line-height: 2.2;
}

.concept-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;

  margin-top: 36px;
}

.concept-tags span {
  padding: 7px 14px;

  border: 1px solid var(--line);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.55);
  color: var(--rose);

  font-size: 12px;
  letter-spacing: 0.1em;
}


/* =========================================================
   FINALISTS
========================================================= */

.section--audition {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(255, 255, 255, 0.95),
      transparent 26%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(246, 188, 210, 0.28),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #fff 0%,
      #fff4f8 45%,
      #fff9fb 100%
    );
}

.section--audition::before {
  content: "♡";

  position: absolute;
  left: -50px;
  top: 120px;

  color: rgba(231, 124, 165, 0.07);

  font-family: var(--font-heading);
  font-size: 300px;

  transform: rotate(-15deg);

  pointer-events: none;
}

.section--audition::after {
  content: "♡";

  position: absolute;
  right: -55px;
  bottom: 80px;

  color: rgba(231, 124, 165, 0.07);

  font-family: var(--font-heading);
  font-size: 260px;

  transform: rotate(14deg);

  pointer-events: none;
}

.audition-card {
  position: relative;
  z-index: 2;

  padding:
    clamp(48px, 6vw, 82px)
    clamp(20px, 4vw, 54px);

  text-align: center;

  border: 1px solid rgba(207, 95, 140, 0.14);
  border-radius: 44px;

  background: rgba(255, 255, 255, 0.72);

  box-shadow: 0 25px 80px rgba(184, 91, 127, 0.1);
}

.audition-card::before {
  content: "";

  position: absolute;
  inset: 10px;

  border: 1px solid rgba(231, 124, 165, 0.12);
  border-radius: 36px;

  pointer-events: none;
}

.audition-card > .eyebrow,
.audition-card > h2,
.audition-card__lead,
.audition-members {
  position: relative;
  z-index: 2;
}

.audition-card > h2 {
  margin: 0 0 18px;

  color: var(--rose);

  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: 0.07em;
}

.audition-card__lead {
  width: min(720px, 100%);
  margin: 0 auto;

  color: #876b78;

  font-size: 14px;
  line-height: 2;
}

.audition-members {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: clamp(18px, 2.7vw, 32px);

  margin-top: clamp(42px, 6vw, 68px);
}

.audition-member {
  position: relative;

  min-width: 0;

  overflow: hidden;

  padding: 10px 10px 18px;

  border: 1px solid rgba(207, 95, 140, 0.16);
  border-radius: 28px;

  background: rgba(255, 255, 255, 0.9);

  box-shadow: 0 12px 40px rgba(184, 91, 127, 0.09);

  transition:
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.35s ease;
}

.audition-member:hover {
  transform: translateY(-7px);

  box-shadow: 0 22px 55px rgba(184, 91, 127, 0.16);
}

.audition-member::before {
  content: "♡";

  position: absolute;
  z-index: 4;
  top: 20px;
  right: 20px;

  display: grid;
  place-items: center;

  width: 33px;
  height: 33px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.76);
  color: var(--pink-500);

  font-size: 17px;

  backdrop-filter: blur(5px);
}

.audition-member__photo {
  position: relative;

  width: 100%;
  aspect-ratio: 2 / 3;

  overflow: hidden;

  border-radius: 21px;

  background: var(--pink-100);
}

.audition-member__photo::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  box-shadow:
    inset 0 0 0 1px
    rgba(255, 255, 255, 0.35);
}

.audition-member__photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;

  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.audition-member:hover .audition-member__photo img {
  transform: scale(1.025);
}

.audition-member__body {
  padding: 18px 8px 0;
}

.audition-member__body h3 {
  margin: 0;

  color: var(--rose);

  font-family: var(--font-heading);
  font-size: clamp(21px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.audition-member__x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  min-width: 82px;

  margin-top: 12px;
  padding: 7px 15px;

  border: 1px solid rgba(207, 95, 140, 0.17);
  border-radius: 999px;

  background: var(--pink-50);
  color: var(--pink-600);

  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.audition-member__x:hover {
  transform: translateY(-2px);

  background: var(--pink-500);
  color: #fff;

  box-shadow: 0 7px 20px rgba(207, 95, 140, 0.18);
}

.audition-member__x-icon {
  font-size: 13px;
  line-height: 1;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  padding: 70px 0 24px;

  background: #f3c7d7;
  color: #7b5967;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer__brand img {
  width: 180px;
  height: 95px;

  object-fit: contain;

  mix-blend-mode: multiply;
}

.footer__brand p {
  margin: 4px 0 0;
  font-size: 12px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;

  font-size: 12px;
}

.footer__links a {
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.footer__links a:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}

.copyright {
  margin: 42px 0 0;

  text-align: center;

  font-size: 10px;
  letter-spacing: 0.08em;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);

  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-14px) rotate(3deg);
  }
}

@keyframes scrollLine {
  0% {
    top: -60%;
  }

  65%,
  100% {
    top: 110%;
  }
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 860px) {

  .header {
    min-height: 72px;
    padding-inline: 18px;
  }

  .header__brand {
    width: 118px;
  }

  .header__brand img {
    height: 50px;
  }

  .menu-button {
    position: relative;
    z-index: 52;

    display: grid;
    gap: 5px;

    padding: 10px;

    border: 0;

    background: transparent;
  }

  .menu-button span:not(.sr-only) {
    display: block;

    width: 25px;
    height: 1px;

    background: var(--rose);

    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 51;

    display: grid;
    place-content: center;
    gap: 26px;

    background: rgba(255, 247, 250, 0.96);
    backdrop-filter: blur(16px);

    opacity: 0;
    pointer-events: none;

    transition: opacity 0.3s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    font-size: 18px;
    text-align: center;
  }

  .hero__content {
    padding-top: 64px;
  }

  .hero__logo-wrap {
    width: min(520px, 88vw);
  }

  .hero__scroll {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading__en {
    font-size: 48px;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .member-selection-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .confirmed-member {
    width: min(430px, 100%);
    margin-inline: auto;
  }

  .final-members__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-members__link {
    align-self: flex-start;
  }

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

  .audition-card {
    padding: 50px 24px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

  .container {
    width: min(calc(100% - 28px), 1120px);
  }

  .hero {
    min-height: 100svh;
  }

  .hero__content {
    width: calc(100% - 28px);
  }

  .hero__copy {
    font-size: clamp(22px, 8vw, 34px);
    line-height: 1.55;
  }

  .hero__subcopy {
    font-size: 13px;
  }

  .hero__status {
    font-size: 12px;
  }

  .section--members {
    padding: 82px 0;
  }

  .member-selection-grid {
    margin-top: 34px;
  }

  .confirmed-member,
  .final-members {
    border-radius: 25px;
  }

  .confirmed-member {
    padding: 12px;
  }

  .confirmed-member__photo-wrap {
    border-radius: 19px;
  }

  .confirmed-member__label {
    top: 22px;
    left: 22px;
  }

  .final-members {
    padding: 16px;
  }

  .final-members__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .final-members__photo-wrap {
    border-radius: 18px;
  }

  .final-members__photo {
    aspect-ratio: 4 / 3;
  }

  .audition-card {
    padding: 42px 12px 32px;
    border-radius: 28px;
  }

  .audition-card::before {
    inset: 6px;
    border-radius: 23px;
  }

  .audition-card__lead br {
    display: none;
  }

  .audition-members {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 36px;
  }

  .audition-member {
    padding: 6px 6px 14px;
    border-radius: 20px;
  }

  .audition-member__photo {
    border-radius: 16px;
  }

  .audition-member__body {
    padding: 12px 4px 0;
  }

  .audition-member__body h3 {
    font-size: 18px;
    letter-spacing: 0.03em;
  }

  .audition-member__x {
    min-width: 66px;
    margin-top: 8px;
    padding: 5px 11px;
    font-size: 10px;
  }

  .audition-member::before {
    top: 13px;
    right: 13px;

    width: 27px;
    height: 27px;

    font-size: 14px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

}