@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=M+PLUS+Rounded+1c:wght@500;700;800;900&family=Montserrat:wght@400;700;900&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

:root {
  --ink: #21151d;
  --muted: #765f6a;
  --pink: #e94d8a;
  --pink-deep: #982555;
  --pink-soft: #fff0f6;
  --gold: #c3a05a;
  --mint: #8ed9cb;
  --cream: #fffaf6;
  --white: #fff;
  --line: rgba(152, 37, 85, .16);
  --shadow: 0 24px 70px rgba(77, 25, 53, .14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { width: 100%; overflow-x: hidden; font-family: 'Noto Sans JP', sans-serif; color: var(--ink); background: var(--cream); line-height: 1.8; font-feature-settings: "palt"; line-break: strict; overflow-wrap: break-word; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.splash {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255,255,255,.16) 0 1px, transparent 1px 26%),
    linear-gradient(135deg, #fff7fb 0%, #f9e7ff 32%, #ddecff 66%, #fff8df 100%);
  background-size: 220px 220px, 100% 100%;
  animation: splashOut 1.1s ease 2.15s forwards;
}
.splash__veil {
  position: absolute;
  inset: -18% -10%;
  background:
    linear-gradient(102deg, transparent 15%, rgba(255,255,255,.64) 32%, transparent 46%),
    linear-gradient(78deg, transparent 30%, rgba(240,90,155,.18) 43%, transparent 58%),
    linear-gradient(126deg, transparent 42%, rgba(112,155,220,.22) 52%, transparent 66%);
  filter: blur(1px);
  transform: translateX(-10%);
  animation: splashVeil 2.35s ease-in-out both;
}
.splash__stars {
  position: absolute;
  inset: 0;
  opacity: .88;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.96) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(240,90,155,.58) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(112,155,220,.62) 0 1px, transparent 2px);
  background-size: 118px 118px, 164px 164px, 226px 226px;
  background-position: 16px 18px, 82px 54px, 34px 92px;
  animation: splashStars 2.6s linear both, splashTwinkle 1.9s ease-in-out infinite;
}
.splash__ribbon {
  position: absolute;
  width: 72vw;
  height: 18vw;
  max-height: 180px;
  border-top: 2px solid rgba(240,90,155,.32);
  border-bottom: 2px solid rgba(112,155,220,.26);
  border-radius: 50%;
  opacity: .72;
  filter: blur(.2px);
}
.splash__ribbon--one {
  left: -18vw;
  top: 24%;
  transform: rotate(-13deg);
  animation: splashRibbonOne 2.5s ease-in-out both;
}
.splash__ribbon--two {
  right: -22vw;
  bottom: 22%;
  transform: rotate(14deg);
  animation: splashRibbonTwo 2.5s ease-in-out both;
}
.splash__logo {
  position: relative;
  z-index: 2;
  width: min(340px, 42vw);
  padding: 26px;
  animation: splashLogo 1.45s cubic-bezier(.2,.78,.2,1) both;
}
.splash__logo::before {
  content: '';
  position: absolute;
  inset: 12% -14%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.74), transparent);
  transform: translateX(-120%) rotate(-8deg);
  animation: splashShine 1.7s ease .35s both;
}
.splash__logo img {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter:
    drop-shadow(0 20px 38px rgba(77, 25, 53, .14))
    drop-shadow(0 0 28px rgba(255, 255, 255, .72));
}
@keyframes splashOut { to { opacity: 0; visibility: hidden; transform: scale(1.025); } }
@keyframes splashLogo {
  from { opacity: 0; transform: translateY(18px) scale(.88); }
  58% { opacity: 1; transform: translateY(0) scale(1.03); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes splashShine {
  0% { transform: translateX(-130%) rotate(-8deg); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateX(130%) rotate(-8deg); opacity: 0; }
}
@keyframes splashVeil {
  from { opacity: 0; transform: translateX(-16%) scale(1.04); }
  35% { opacity: 1; }
  to { opacity: .78; transform: translateX(8%) scale(1); }
}
@keyframes splashStars {
  to { background-position: 136px 118px, 246px 174px, 260px 288px; }
}
@keyframes splashTwinkle {
  50% { opacity: .5; }
}
@keyframes splashRibbonOne {
  from { opacity: 0; transform: translateX(-8vw) rotate(-18deg); }
  to { opacity: .72; transform: translateX(6vw) rotate(-13deg); }
}
@keyframes splashRibbonTwo {
  from { opacity: 0; transform: translateX(8vw) rotate(19deg); }
  to { opacity: .68; transform: translateX(-5vw) rotate(14deg); }
}
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes float { 50% { transform: translateY(-8px); } }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30; height: 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 0 36px; background: rgba(255,250,246,.92); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px);
}
.logo {
  line-height: 1;
  min-width: 268px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.logo .logo-mark {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 16px rgba(182,46,104,.1));
}
.logo .logo-type {
  display: block;
  color: var(--pink-deep);
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: .16em;
  line-height: 1.08;
  text-align: center;
  white-space: nowrap;
}
.logo .logo-type small {
  display: block;
  margin-top: 6px;
  color: #7d7695;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-align: center;
  text-transform: lowercase;
}
.logo span, footer span { display: block; font-family: 'Dancing Script', cursive; font-size: 31px; font-weight: 700; color: var(--pink-deep); }
.logo small { display: block; margin-top: 4px; font: 700 10px 'Montserrat', sans-serif; letter-spacing: .08em; color: var(--gold); text-transform: none; }
.site-header nav { display: flex; align-items: center; gap: 18px; font: 900 11px 'Montserrat', sans-serif; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.site-header nav a:hover { color: var(--pink); }
.header-btn { padding: 10px 18px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 900; letter-spacing: .08em; border-radius: 3px; }
.nav-toggle { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.hamburger { display: none; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(182,46,104,.18); background: rgba(255,255,255,.78); border-radius: 4px; }
.hamburger span { display: block; width: 20px; height: 2px; margin: 3px auto; background: var(--pink-deep); border-radius: 999px; transition: transform .18s ease, opacity .18s ease; }

.fixed-cta { position: fixed; right: 22px; bottom: 22px; z-index: 40; display: grid; gap: 8px; }
.fixed-cta a { min-width: 124px; min-height: 42px; display: grid; place-items: center; padding: 10px 16px; color: #fff; font-size: 12px; font-weight: 900; box-shadow: 0 16px 42px rgba(32,19,27,.22); border-radius: 3px; }
.fixed-cta .line { background: #06c755; }
.fixed-cta .mail { background: var(--ink); }

.hero, .audition-hero { position: relative; min-height: 760px; display: grid; align-items: end; overflow: hidden; background: var(--ink); }
.hero > img, .audition-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay, .audition-hero::after {
  position: absolute; inset: 0; content: '';
  background: linear-gradient(90deg, rgba(33,21,29,.9), rgba(33,21,29,.55) 42%, rgba(33,21,29,.08)), linear-gradient(0deg, rgba(33,21,29,.88), transparent 58%);
}
.hero-copy, .audition-hero > div { position: relative; z-index: 2; max-width: 920px; padding: 170px 44px 120px; color: #fff; animation: rise .9s ease 1.15s both; }
.kicker { font: 900 11px 'Montserrat', sans-serif; letter-spacing: .22em; color: var(--gold); text-transform: uppercase; }
h1, h2, h3 { font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif; font-weight: 900; letter-spacing: 0; text-wrap: balance; line-break: strict; word-break: normal; overflow-wrap: anywhere; }
.hero h1 { margin-top: 18px; max-width: 860px; font-size: clamp(38px, 4.8vw, 62px); line-height: 1.2; }
.audition-hero h1 { margin-top: 16px; font-size: clamp(38px, 6vw, 72px); line-height: 1.14; color: #fff; }
.hero-copy p, .audition-hero p { max-width: 680px; margin-top: 24px; color: rgba(255,255,255,.84); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tags span { padding: 7px 10px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.9); font-size: 12px; font-weight: 900; border-radius: 3px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 22px; font-size: 13px; font-weight: 900; letter-spacing: .06em; line-height: 1.45; text-align: center; word-break: keep-all; overflow-wrap: anywhere; border-radius: 3px; transition: transform .18s ease, box-shadow .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--pink); color: #fff; box-shadow: 0 14px 36px rgba(233,77,138,.34); }
.btn.ghost { border: 1px solid rgba(255,255,255,.46); color: #fff; }
.btn.light { background: #fff; color: var(--pink-deep); }
.news { position: absolute; z-index: 3; right: 36px; bottom: 36px; width: min(380px, calc(100% - 72px)); padding: 20px 22px; background: rgba(255,255,255,.93); box-shadow: var(--shadow); animation: float 4.8s ease-in-out infinite; border-radius: 4px; }
.news span { display: block; color: var(--pink); font: 900 10px 'Montserrat', sans-serif; letter-spacing: .2em; }
.news a { display: block; margin-top: 6px; font-size: 13px; font-weight: 900; }

.intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; padding: 58px 44px; background: #fff; border-bottom: 1px solid var(--line); }
.intro h2, .section-head h2, .audition-band h2, .guardian h2, .works h2, .offer h2, .final-contact h2, .sub-hero h1, .contact-note h2 { margin-top: 10px; font-size: clamp(28px, 3.1vw, 42px); line-height: 1.34; color: var(--pink-deep); }
.intro p, .section-head p, .project-card p, .audition-band p, .guardian p, .works p, .offer p, .sub-hero p { color: var(--muted); }

.conversion { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--ink); color: #fff; }
.conversion a { min-height: 150px; padding: 28px 34px; border-right: 1px solid rgba(255,255,255,.1); transition: background .2s ease; }
.conversion a:hover { background: rgba(255,255,255,.06); }
.conversion span, .cards3 span, .cards4 span, .points4 span, .checklist span { display: block; font: 900 10px 'Montserrat', sans-serif; letter-spacing: .18em; color: var(--gold); text-transform: uppercase; }
.conversion strong { display: block; margin-top: 10px; font-size: 22px; line-height: 1.42; word-break: keep-all; overflow-wrap: anywhere; }
.conversion small { display: block; margin-top: 8px; color: rgba(255,255,255,.64); }

.section, .dark-section, .guardian, .faq, .policy, .contact-note { padding: 92px 44px; }
.section-head { max-width: 780px; margin: 0 auto 42px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; color: #fff; }
.project-card { display: grid; grid-template-columns: .9fr 1.1fr; max-width: 1120px; margin: 0 auto; background: #fff; box-shadow: var(--shadow); border-radius: 6px; overflow: hidden; }
.project-card img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; background: var(--pink-soft); }
.project-card > div { padding: 54px; display: flex; flex-direction: column; justify-content: center; }
.project-card h3 { margin-top: 10px; font-size: clamp(30px, 4vw, 52px); line-height: 1.16; }
.project-card h3 small { display: block; margin-top: 8px; font: 800 13px 'Montserrat', sans-serif; letter-spacing: .08em; color: var(--gold); text-transform: lowercase; }
.link-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.link-row a { padding: 10px 14px; border: 1px solid var(--line); color: var(--pink-deep); font-size: 12px; font-weight: 900; border-radius: 3px; }
.cards3, .cards4 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1120px; margin: 22px auto 0; }
.cards4 { grid-template-columns: repeat(4, 1fr); }
.cards3 article, .cards4 article { position: relative; overflow: hidden; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 6px; }
.cards3 h3, .cards4 h3, .points4 strong { margin-top: 10px; color: var(--pink-deep); font-size: 20px; line-height: 1.5; }
.cards3 p, .cards4 p, .points4 p { margin-top: 8px; color: var(--muted); font-size: 13px; }

.audition-band { display: grid; grid-template-columns: 1fr .9fr; gap: 36px; align-items: center; padding: 92px 44px; background: linear-gradient(135deg, var(--pink-soft), #fff 58%, #eef9f6); }
.audition-band > div { background: rgba(255,255,255,.78); padding: 42px; box-shadow: var(--shadow); border-radius: 6px; }
.audition-band img, .banner img { width: 100%; box-shadow: 0 18px 60px rgba(152,37,85,.2); border-radius: 6px; }
.audition-band ul { margin: 24px 0 30px; list-style: none; display: grid; gap: 8px; }
.audition-band li { font-weight: 900; color: var(--ink); }

.dark-section { background: var(--ink); color: #fff; }
.dark-section .cards3 article, .dark-section .benefit-list div { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); color: #fff; }
.dark-section h2, .dark-section h3 { color: #fff; }
.dark-section p { color: rgba(255,255,255,.68); }

.guardian { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; background: linear-gradient(120deg, rgba(255,250,246,.96), rgba(255,240,246,.88)), url('../images/beautiful-one/sign.png') right 8% center/260px auto no-repeat; }
.checklist { display: grid; gap: 10px; }
.checklist div { position: relative; overflow: hidden; display: flex; gap: 14px; align-items: center; padding: 18px 20px; background: rgba(255,255,255,.86); border: 1px solid var(--line); box-shadow: 0 12px 34px rgba(79,25,53,.08); font-weight: 900; border-radius: 6px; }

.works { display: grid; grid-template-columns: 1fr 1fr; background: #fff; }
.works-media {
  min-height: 560px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  background: linear-gradient(135deg, #fff2f8, #f3fffb);
}
.works-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(77, 25, 53, .14);
}
.works-media .jacket { object-position: center; }
.works > div { padding: 70px 54px; display: flex; flex-direction: column; justify-content: center; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 34px 0; background: var(--line); }
.stats div { padding: 18px 10px; background: var(--cream); }
.stats strong { display: block; font: 900 24px 'Montserrat', sans-serif; color: var(--pink-deep); }
.stats span { display: block; font: 900 10px 'Montserrat', sans-serif; letter-spacing: .14em; color: var(--gold); text-transform: uppercase; }

.offer { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 70px 44px; background: linear-gradient(135deg, var(--pink-deep), var(--pink)); color: #fff; }
.offer div { max-width: 760px; }
.offer h2 { color: #fff; }
.offer p { color: rgba(255,255,255,.82); }

.final-contact, .sub-hero { padding: 112px 44px; text-align: center; background: linear-gradient(rgba(33,21,29,.82), rgba(33,21,29,.82)), url('../images/beautiful-one/media-visual.jpg') center/cover; color: #fff; }
.final-contact h2, .sub-hero h1 { color: #fff; font-size: clamp(32px, 4.4vw, 56px); }
.final-contact p { max-width: 720px; margin: 18px auto 0; color: rgba(255,255,255,.8); }
.contact-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.contact-actions a { min-width: 180px; padding: 13px 20px; background: #fff; color: var(--pink-deep); font-weight: 900; line-height: 1.45; text-align: center; word-break: keep-all; overflow-wrap: anywhere; border-radius: 3px; }

.audition-hero aside { position: absolute; right: 36px; bottom: 36px; z-index: 3; width: min(300px, calc(100% - 72px)); padding: 24px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); text-align: center; border-radius: 6px; }
.audition-hero aside span, .audition-hero aside small { display: block; font: 900 11px 'Montserrat', sans-serif; letter-spacing: .16em; color: var(--gold); text-transform: uppercase; }
.audition-hero aside strong { display: block; margin: 8px 0; font: 900 34px 'Montserrat', sans-serif; color: var(--pink-deep); line-height: 1; }
.points4 { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border-bottom: 1px solid var(--line); }
.points4 article { min-height: 190px; padding: 30px 26px; border-right: 1px solid var(--line); }
.banner { padding: 72px 44px; background: linear-gradient(135deg, var(--pink-soft), var(--cream)); }
.banner img { width: min(980px, 100%); margin: 0 auto; }
.pink { background: var(--pink-soft); }
.info-table { max-width: 980px; margin: 0 auto; display: grid; background: #fff; box-shadow: var(--shadow); border-radius: 6px; overflow: hidden; }
.info-table div { display: grid; grid-template-columns: 190px 1fr; gap: 24px; padding: 22px 26px; border-bottom: 1px solid var(--line); }
.info-table div:last-child { border-bottom: 0; }
.info-table span { color: var(--pink-deep); font-weight: 900; }
.benefit-list { display: grid; gap: 10px; max-width: 900px; }
.benefit-list div { padding: 18px 20px; font-weight: 900; border-radius: 6px; }
.faq { background: var(--pink-soft); }
.faq details { position: relative; overflow: hidden; max-width: 900px; margin: 10px auto; background: #fff; border: 1px solid var(--line); padding: 20px 22px; border-radius: 6px; }
.faq summary { cursor: pointer; color: var(--pink-deep); font-weight: 900; }
.faq p { margin-top: 12px; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 92px 44px; background: #fff; }
.contact-grid a { min-height: 300px; padding: 34px 28px; color: #fff; transition: transform .18s ease; }
.contact-grid a:hover { transform: translateY(-4px); }
.contact-grid span { font: 900 10px 'Montserrat', sans-serif; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.contact-grid h2 { margin-top: 14px; font-size: 24px; line-height: 1.35; color: inherit; }
.contact-grid p { margin-top: 14px; color: rgba(255,255,255,.74); font-size: 13px; }
.contact-grid .pink { background: var(--pink); }
.contact-grid .dark { background: var(--ink); }
.contact-grid .gold { background: var(--gold); }
.contact-grid .white { background: #fff; color: var(--pink-deep); border: 1px solid var(--line); }
.contact-grid .white span, .contact-grid .white p { color: var(--muted); }
.contact-note { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; background: var(--pink-soft); }
.contact-note ul { display: grid; gap: 10px; list-style: none; }
.contact-note li { padding: 16px 18px; background: #fff; border: 1px solid var(--line); font-weight: 700; border-radius: 6px; }
.policy { max-width: 980px; margin: 0 auto; }

.contact-page .sub-hero {
  min-height: clamp(520px, 56.25vw, 760px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 120px 44px 48px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 48%, rgba(33,21,29,.36) 72%, rgba(33,21,29,.74) 100%),
    url('../images/beautiful-one/contact-hero-3.jpg') center/cover no-repeat;
  color: #fff;
}

.contact-page .sub-hero h1 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 46px);
  text-shadow: 0 2px 16px rgba(33,21,29,.35);
}

.contact-page .sub-hero p {
  color: rgba(255,255,255,.9);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  text-shadow: 0 1px 12px rgba(33,21,29,.32);
}

.contact-page .contact-grid {
  background:
    linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.94)),
    url('../images/beautiful-one/beautiful-one-mark.png') right 44px center/230px auto no-repeat,
    #fff;
}

.contact-page .contact-note {
  background:
    linear-gradient(120deg, rgba(255,240,246,.92), rgba(243,248,255,.92)),
    url('../images/beautiful-one/sign.png') right 8% center/250px auto no-repeat;
}

.contact-page .final-contact {
  min-height: clamp(520px, 56.25vw, 760px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 92px 44px 52px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 48%, rgba(33,21,29,.34) 72%, rgba(33,21,29,.76) 100%),
    url('../images/beautiful-one/contact-bottom-7.jpg') center/cover no-repeat;
  color: #fff;
}

.contact-page .final-contact h2 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 46px);
  text-shadow: 0 2px 16px rgba(33,21,29,.36);
}

.contact-page .final-contact p {
  color: rgba(255,255,255,.9);
}

.contact-page .sub-hero .kicker,
.contact-page .final-contact .kicker {
  color: rgba(255,255,255,.88);
}

.contact-page .contact-actions {
  margin-top: 18px;
  gap: 8px;
}

.contact-page .contact-actions a {
  min-width: 150px;
  padding: 10px 14px;
  font-size: 12px;
}
.policy article { padding: 28px 0; border-bottom: 1px solid var(--line); }
.policy h2 { color: var(--pink-deep); font-size: 20px; }
.policy p { margin-top: 10px; color: var(--muted); }
.policy a { color: var(--pink-deep); font-weight: 900; }

footer { display: flex; align-items: center; justify-content: flex-start; flex-wrap: wrap; gap: 20px 34px; padding: 28px 44px; background: var(--ink); border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.65); font-size: 12px; }
footer span { color: #fff; font-size: 25px; }
.footer-brand { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-brand img { width: 236px; height: auto; }
.footer-brand p { color: rgba(255,255,255,.72); font-weight: 700; line-height: 1.75; }
footer > a, footer > div > a { white-space: nowrap; }
.sp-only { display: none; }
.title-line { display: block; }
.title-line + .title-line { margin-top: .04em; }

.stats strong,
.audition-hero aside strong,
.points4 span,
.cards4 span,
.cards3 span,
.checklist span {
  font-variant-numeric: tabular-nums;
}

.audition-page {
  --pink: #f05a9b;
  --pink-deep: #b62e68;
  --pink-soft: #fff2f8;
  --cream: #fffdf8;
  --mint: #b9efe3;
  background:
    radial-gradient(circle at 12% 10%, rgba(240,90,155,.08), transparent 28%),
    radial-gradient(circle at 88% 32%, rgba(112,155,220,.09), transparent 30%),
    var(--cream);
}

.audition-page .site-header {
  background: rgba(255, 250, 253, .94);
}

.audition-page .kicker {
  text-transform: none;
  letter-spacing: .12em;
}

.audition-page .cute-hero {
  min-height: auto;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  gap: 30px 42px;
  align-items: center;
  padding: 108px 44px 78px;
  background:
    radial-gradient(circle at 12% 22%, rgba(255,255,255,.95) 0 8%, transparent 9%),
    radial-gradient(circle at 82% 12%, rgba(185,239,227,.72) 0 12%, transparent 13%),
    linear-gradient(135deg, #fff7fb 0%, #ffe4f0 46%, #fff9e8 100%);
  color: var(--ink);
}

.audition-page .cute-hero::after {
  content: '';
  position: absolute;
  inset: 13% 5% auto auto;
  width: min(360px, 34vw);
  aspect-ratio: 1;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.62) 0 10%, rgba(240,90,155,.2) 11% 34%, transparent 70%);
  filter: blur(12px);
  opacity: .64;
  pointer-events: none;
  animation: dreamGlow 6.8s ease-in-out infinite;
}

.audition-page .hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(90deg, rgba(240,90,155,.08) 1px, transparent 1px),
    linear-gradient(rgba(240,90,155,.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.sparkle-layer,
.ribbon-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sparkle-layer {
  z-index: 1;
  opacity: .48;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.95) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(240,90,155,.45) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(112,155,220,.42) 0 1px, transparent 2px);
  background-size: 120px 120px, 170px 170px, 230px 230px;
  background-position: 12px 20px, 80px 42px, 30px 92px;
  animation: sparkleDrift 9s linear infinite, sparklePulse 3.6s ease-in-out infinite;
}

.sparkle-layer.soft {
  opacity: .24;
  background-size: 140px 140px, 210px 210px, 260px 260px;
}

.ribbon-layer {
  z-index: 1;
  opacity: .12;
}

.ribbon-layer::before,
.ribbon-layer::after {
  content: '';
  position: absolute;
  width: 46vw;
  height: 120px;
  border: 2px solid rgba(240,90,155,.48);
  border-left: 0;
  border-right: 0;
  border-radius: 50%;
  transform: rotate(-12deg);
  animation: ribbonFloat 12s ease-in-out infinite;
}

.ribbon-layer::before {
  left: -8vw;
  top: 18%;
}

.ribbon-layer::after {
  right: -10vw;
  bottom: 18%;
  border-color: rgba(112,155,220,.42);
  transform: rotate(14deg);
  animation-delay: -4s;
}

@keyframes sparkleDrift {
  to { background-position: 132px 140px, 250px 212px, 260px 322px; }
}

@keyframes sparklePulse {
  50% { opacity: .42; }
}

@keyframes ribbonFloat {
  50% { transform: translateY(-14px) rotate(-8deg); }
}

@keyframes dreamGlow {
  50% { opacity: .34; transform: translateY(12px) scale(1.08); }
}

@keyframes softFloat {
  50% { transform: translateY(-8px); }
}

.audition-page .cute-hero-copy,
.audition-page .wide-main-visual,
.audition-page .cute-hero-visual {
  position: relative;
  z-index: 2;
}

.audition-page .audition-hero > div {
  max-width: none;
  padding: 0;
  color: var(--ink);
  animation: rise .75s ease both;
}

.audition-page .cute-hero h1 {
  max-width: 720px;
  margin-top: 16px;
  color: var(--pink-deep);
  font-size: clamp(42px, 6vw, 86px);
  line-height: 1.12;
}

.audition-page .cute-hero p {
  max-width: 620px;
  margin-top: 22px;
  color: #6f5360;
  font-size: 16px;
}

.audition-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.audition-mini span {
  padding: 8px 12px;
  background: #fff;
  border: 1px solid rgba(182,46,104,.16);
  color: var(--pink-deep);
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(182,46,104,.08);
}

.audition-page .cute-hero .btn.ghost {
  border-color: rgba(182,46,104,.28);
  color: var(--pink-deep);
  background: rgba(255,255,255,.72);
}

.audition-page .actions {
  justify-content: center;
}

.audition-page .btn {
  position: relative;
  overflow: hidden;
}

.audition-page .btn::after {
  content: '';
  position: absolute;
  inset: -35% auto -35% -55%;
  width: 42%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.58), transparent);
  animation: buttonShine 4.8s ease-in-out infinite;
}

.audition-page .btn.ghost::after {
  background: linear-gradient(90deg, transparent, rgba(240,90,155,.18), transparent);
}

@keyframes buttonShine {
  0%, 46% { left: -60%; }
  68%, 100% { left: 118%; }
}

.wide-main-visual {
  grid-column: 1 / -1;
  width: calc(100% + 88px);
  margin: 0 -44px;
}

.wide-main-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(85,115,168,.16);
  animation: softFloat 7s ease-in-out infinite;
}

.cute-hero-visual {
  display: grid;
  gap: 16px;
  align-self: center;
  justify-items: center;
}

.cute-hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(85,115,168,.16);
  animation: softFloat 7.4s ease-in-out infinite;
}

.wide-main-visual,
.cute-hero-visual,
.audition-image-split,
.support-ribbon,
.audition-wide-visual,
.audition-page .final-contact.audition-final {
  isolation: isolate;
}

.audition-page .audition-hero aside {
  position: static;
  width: min(100%, 300px);
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(182,46,104,.14);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(182,46,104,.12);
}

.audition-page .audition-hero aside strong {
  font-family: 'Montserrat', sans-serif;
  color: var(--pink-deep);
}

.audition-points {
  gap: 12px;
  padding: 18px 44px 72px;
  background: linear-gradient(180deg, #fff9e8, #fff);
  border-bottom: 0;
}

.audition-points article {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  border: 1px solid rgba(182,46,104,.13);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(182,46,104,.08);
}

.audition-points article::after,
.audition-page .cards4 article::after,
.audition-page .faq details::after,
.audition-page .checklist div::after {
  content: '';
  position: absolute;
  inset: -40% auto auto -45%;
  width: 46%;
  height: 180%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.62), transparent);
  transform: rotate(16deg);
  opacity: 0;
  transition: opacity .28s ease, transform .48s ease;
  pointer-events: none;
}

.audition-page .audition-points article,
.audition-page .cards4 article,
.audition-page .faq details,
.audition-page .info-table,
.audition-page .checklist div,
.audition-image-split img,
.audition-wide-visual img {
  transition: transform .28s ease, box-shadow .28s ease;
}

.audition-page .audition-points article:hover,
.audition-page .cards4 article:hover,
.audition-page .faq details:hover,
.audition-page .checklist div:hover,
.audition-image-split img:hover,
.audition-wide-visual img:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(182,46,104,.14);
}

.audition-points article:hover::after,
.audition-page .cards4 article:hover::after,
.audition-page .faq details:hover::after,
.audition-page .checklist div:hover::after {
  opacity: 1;
  transform: translateX(310%) rotate(16deg);
}

.audition-message {
  background: #fff;
}

.audition-image-split {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 86px 44px;
  background: linear-gradient(135deg, #fff7fb, #f3f8ff);
}

.audition-image-split::before,
.audition-wide-visual::before,
.support-ribbon::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.72) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 28%, rgba(240,90,155,.34) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 74%, rgba(112,155,220,.34) 0 1px, transparent 2px);
  background-size: 132px 132px, 188px 188px, 244px 244px;
  opacity: .34;
  animation: sparkleDrift 12s linear infinite;
}

.audition-image-split img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(80, 116, 184, .16);
}

.audition-image-split > div {
  max-width: 620px;
}

.audition-image-split h2 {
  margin-top: 10px;
  color: var(--pink-deep);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.28;
}

.audition-image-split p {
  margin-top: 18px;
  color: var(--muted);
}

.audition-wide-visual {
  position: relative;
  overflow: hidden;
  padding: 72px 44px;
  background: linear-gradient(180deg, #fff, #f3f8ff);
}

.audition-wide-visual img {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(80, 116, 184, .16);
}

.support-ribbon {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(440px, 1.08fr) minmax(0, .92fr);
  gap: 42px;
  padding: 86px 44px;
  background: linear-gradient(135deg, #21151d, #52223c);
  color: #fff;
}

.support-ribbon h2 {
  max-width: 720px;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(30px, 3.3vw, 44px);
  line-height: 1.28;
  overflow-wrap: normal;
  word-break: keep-all;
}

.support-ribbon p {
  margin-top: 18px;
  color: rgba(255,255,255,.72);
}

.support-ribbon .benefit-list {
  max-width: none;
}

.audition-page .final-contact.audition-final {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(182,46,104,.76), rgba(33,21,29,.7)),
    url('../images/beautiful-one/media-visual.jpg') center/cover;
}

.audition-page .final-contact.audition-final > *:not(.sparkle-layer),
.support-ribbon > *:not(.sparkle-layer),
.audition-image-split > *:not(.sparkle-layer) {
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .sparkle-layer,
  .ribbon-layer::before,
  .ribbon-layer::after,
  .audition-page .btn::after,
  .wide-main-visual img,
  .cute-hero-visual img,
  .audition-image-split::before,
  .audition-wide-visual::before,
  .support-ribbon::before,
  .audition-page .cute-hero::after {
    animation: none;
  }

  .audition-page .audition-points article:hover,
  .audition-page .cards4 article:hover,
  .audition-page .faq details:hover,
  .audition-page .checklist div:hover,
  .audition-image-split img:hover,
  .audition-wide-visual img:hover {
    transform: none;
  }
}

@media (min-width: 981px) {
  .hero h1 {
    max-width: 860px;
  }

  .section-head h2,
  .intro h2,
  .guardian h2,
  .works h2,
  .offer h2 {
    max-width: 780px;
  }

  .final-contact h2 {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 980px) {
  .site-header nav {
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 8px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(182,46,104,.14);
    box-shadow: 0 18px 48px rgba(80,25,53,.12);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  .site-header nav a {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(182,46,104,.08);
    color: var(--ink);
  }
  .site-header nav a:last-child { border-bottom: 0; }
  .hamburger { display: grid; }
  .nav-toggle:checked + .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle:checked + .hamburger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked + .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav-toggle:checked + .hamburger + nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .intro, .conversion, .project-card, .audition-band, .guardian, .works, .contact-note { grid-template-columns: 1fr; }
  .cards3, .cards4, .points4, .contact-grid { grid-template-columns: 1fr 1fr; }
  .works-media, .project-card img { min-height: 360px; }
  .offer { display: block; }
  .offer .btn { margin-top: 26px; }
  .audition-hero > div { padding: 140px 24px 170px; }
  .audition-hero aside { left: 24px; right: 24px; bottom: 24px; width: auto; }
  .audition-page .cute-hero, .support-ribbon, .audition-image-split { grid-template-columns: 1fr; }
  .audition-page .cute-hero { padding-top: 118px; }
  .cute-hero-visual { max-width: none; justify-items: center; }
  .audition-page .audition-hero aside { width: min(100%, 420px); }
  .hero h1 { max-width: 760px; }
  .intro h2, .section-head h2, .audition-band h2, .guardian h2, .works h2, .offer h2 { font-size: clamp(30px, 6vw, 46px); }
}

@media (max-width: 640px) {
  main,
  section,
  header,
  footer {
    max-width: 100%;
  }
  .site-header { height: 70px; padding: 0 12px; gap: 8px; }
  .logo { min-width: 0; gap: 7px; }
  .logo .logo-mark { width: 40px; height: 40px; }
  .logo .logo-type { font-size: 13px; letter-spacing: .09em; }
  .logo .logo-type small { display: block; margin-top: 5px; font-size: 8px; letter-spacing: .06em; }
  .logo img { width: 210px; }
  .logo span { font-size: 26px; }
  .logo small { display: none; }
  .header-btn { display: none; }
  .hamburger { width: 40px; height: 40px; }
  .hero {
    display: block;
    min-height: auto;
    padding-top: 70px;
    background: var(--ink);
  }
  .hero > img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #fff;
  }
  .hero-overlay { display: none; }
  .hero-copy {
    max-width: none;
    padding: 28px 20px 28px;
    color: #fff;
  }
  .hero-copy p { margin-top: 16px; }
  .hero h1 { font-size: 31px; line-height: 1.34; max-width: 100%; }
  .audition-hero { min-height: 720px; }
  .audition-hero > div { padding: 132px 20px 170px; }
  .audition-hero h1 { font-size: 42px; line-height: 1.18; }
  .btn { width: 100%; }
  .news { position: static; width: auto; margin: 0 20px 28px; animation: none; }
  .fixed-cta { left: 12px; right: 12px; bottom: 12px; grid-template-columns: 1fr 1fr; }
  .fixed-cta a { min-width: 0; }
  .intro, .section, .dark-section, .guardian, .audition-band, .offer, .final-contact, .sub-hero, .banner, .faq, .policy, .contact-grid, .contact-note { padding: 46px 18px; }
  .project-card > div, .audition-band > div { padding: 24px 20px; }
  .project-card img, .audition-band img {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }
  .cards3, .cards4, .points4, .contact-grid, .stats { grid-template-columns: 1fr; }
  .works-media { min-height: 0; grid-template-columns: 1fr; padding: 20px; }
  .works-media img { aspect-ratio: auto; height: auto; object-fit: contain; }
  .info-table div { grid-template-columns: 1fr; gap: 8px; }
  .contact-grid { gap: 0; }
  .contact-page .sub-hero,
  .contact-page .final-contact {
    min-height: 0;
    padding: calc(70px + 56vw) 20px 34px;
    background-color: #21151d;
  }
  .contact-page .sub-hero {
    background-image:
      linear-gradient(180deg, rgba(33,21,29,0) 0 calc(70px + 38vw), rgba(33,21,29,.78) calc(70px + 56vw), rgba(33,21,29,.86) 100%),
      url('../images/beautiful-one/contact-hero-3.jpg');
    background-size: 100% 100%, contain;
    background-position: center, center 70px;
    background-repeat: no-repeat;
  }
  .contact-page .final-contact {
    background-image:
      linear-gradient(180deg, rgba(33,21,29,0) 0 calc(70px + 38vw), rgba(33,21,29,.78) calc(70px + 56vw), rgba(33,21,29,.88) 100%),
      url('../images/beautiful-one/contact-bottom-7.jpg');
    background-size: 100% 100%, contain;
    background-position: center, center 70px;
    background-repeat: no-repeat;
  }
  h1, h2, h3 { overflow-wrap: anywhere; word-break: normal; }
  .audition-band,
  .audition-wide-visual,
  .offer,
  .final-contact,
  .contact-note,
  .audition-message,
  .audition-page .final-contact.audition-final {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .audition-band > *,
  .audition-wide-visual > *,
  .offer > *,
  .final-contact > *,
  .contact-note > *,
  .audition-message > *,
  .audition-page .final-contact.audition-final > * {
    min-width: 0;
    max-width: 100%;
  }
  .offer div,
  .contact-note ul,
  .contact-note li,
  .contact-actions,
  .actions {
    width: 100%;
    max-width: 100%;
  }
  .contact-actions a,
  .actions a {
    min-width: 0;
    max-width: 100%;
  }
  .audition-page .cute-hero {
    min-height: auto;
    padding: 96px 14px 52px;
    gap: 30px;
  }
  .wide-main-visual {
    width: calc(100% + 28px);
    margin: 0 -14px;
  }
  .wide-main-visual img { border-radius: 6px; }
  .sparkle-layer { opacity: .3; background-size: 110px 110px, 150px 150px, 190px 190px; }
  .ribbon-layer { opacity: .07; }
  .ribbon-layer::before,
  .ribbon-layer::after {
    width: 90vw;
    height: 82px;
  }
  .audition-page .cute-hero h1 { font-size: 36px; line-height: 1.22; }
  .audition-page .cute-hero p { font-size: 15px; }
  .intro h2, .section-head h2, .audition-band h2, .guardian h2, .works h2, .offer h2, .contact-note h2 { font-size: 28px; line-height: 1.42; }
  .final-contact h2, .sub-hero h1 { font-size: 32px; line-height: 1.3; }
  .sp-only { display: initial; }
  .conversion strong { font-size: 20px; }
  .cards3 h3, .cards4 h3, .points4 strong { font-size: 19px; }
  .audition-points { padding: 18px 20px 58px; }
  .audition-image-split, .audition-wide-visual { padding: 56px 18px; }
  .support-ribbon { padding: 56px 18px; }
  .support-ribbon h2 { font-size: 28px; line-height: 1.42; }
  footer { display: block; padding: 24px 20px 88px; }
  .footer-brand { display: block; }
  .footer-brand img { width: 220px; max-width: 100%; }
  .footer-brand p { margin-top: 8px; }
}
