:root {
  --ice: #6aa8d1;
  --ice-deep: #3d7eab;
  --navy: #1e3a5f;
  --ink: #1a2433;
  --peach: #e08a6a;
  --peach-soft: #f4c7b3;
  --bg: #f6f9fc;
  --bg-2: #eef4fa;
  --white: #ffffff;
  --muted: #5d6b7c;
  --line: #d7e3ee;
  --shadow: 0 18px 50px rgba(30, 58, 95, .08);
  --radius: 18px;
  --header: 76px;
  --sans: "Noto Sans TC", "Sora", "Segoe UI", sans-serif;
  --en: "Sora", "Noto Sans TC", sans-serif;
  --display: "Cormorant Garamond", "Noto Serif TC", serif;
  --safe: env(safe-area-inset-bottom, 0px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  min-height: 100dvh;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
.skip {
  position: absolute; left: -999px; top: 8px;
}
.skip:focus { left: 8px; z-index: 80; background: #fff; padding: 8px 12px; }
.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.wrap.narrow { width: min(760px, calc(100% - 40px)); }

.site-header {
  position: sticky; top: 0; z-index: 40;
  height: var(--header);
  background: color-mix(in srgb, var(--white) 86%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(30, 58, 95, .05);
}
.header-inner {
  height: var(--header);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .12em;
}
.brand-text em {
  font-style: normal;
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--ice-deep);
  text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  display: flex; flex-direction: column; align-items: center;
  line-height: 1.15;
}
.nav a small {
  font-family: var(--en);
  font-size: 9px;
  letter-spacing: .18em;
  color: var(--muted);
}
.nav a span { font-size: 13px; font-weight: 500; }
.nav a:hover, .nav a.on { background: var(--bg-2); }
.nav a.on small { color: var(--ice-deep); }
.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 10px 16px !important;
  margin-left: 8px;
}
.nav-cta small { display: none; }
.nav-toggle {
  display: inline-flex;
  position: absolute;
  right: 20px;
  top: 18px;
  z-index: 50;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}
.burger {
  position: relative;
  width: 16px; height: 12px;
  display: block;
}
.burger::before, .burger::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 2px; background: #fff; border-radius: 2px;
}
.burger::before { top: 1px; box-shadow: 0 5px 0 #fff; }
.burger::after { bottom: 1px; }

.hero {
  position: relative;
  height: min(88dvh, 860px);
  min-height: 520px;
  overflow: hidden;
  color: var(--navy);
}
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity 1s ease; }
.hero-slide.is-on { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(246,249,252,.18), rgba(246,249,252,.55) 70%, var(--bg)),
    radial-gradient(800px 400px at 50% 30%, rgba(255,255,255,.35), transparent 70%);
}
.hero-copy {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 40px 20px 80px;
}
.hero-logo {
  width: min(220px, 46vw);
  filter: drop-shadow(0 12px 28px rgba(30,58,95,.18));
}
.hero-en {
  font-family: var(--en);
  letter-spacing: .42em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--ice-deep);
  margin: 10px 0 0;
}
.hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 600;
  letter-spacing: .18em;
  margin: 8px 0 0;
}
.hero-sub { color: var(--muted); margin: 8px 0 0; }
.hero-dots {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 28px;
  display: flex; justify-content: center; gap: 8px;
}
.hero-dot {
  width: 28px; height: 4px; border: 0; border-radius: 99px;
  background: rgba(30,58,95,.22); cursor: pointer;
}
.hero-dot.is-on { background: var(--navy); }

.kicker {
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--ice-deep);
  margin: 0 0 8px;
  text-transform: uppercase;
}
.kicker.light { color: #e8f3fb; }
.section { padding: 88px 0; }
.section-soft { background: var(--white); }
.section-title {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: .08em;
  margin: 0 0 16px;
}
.lead { font-size: 18px; color: var(--ink); margin: 0 0 14px; }
.muted { color: var(--muted); }
.mt { margin-top: 22px; }
.center { text-align: center; }
.section-head {
  display: flex; justify-content: space-between; align-items: end; gap: 16px;
  margin-bottom: 28px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.photo-frame {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 22px;
  border-radius: 999px;
  background: var(--navy); color: #fff;
  text-decoration: none;
  border: 1px solid var(--navy);
  letter-spacing: .08em;
  font-family: var(--en);
  font-size: 13px;
  font-weight: 600;
}
.btn.ghost { background: transparent; color: var(--navy); }
.btn.light { background: #fff; color: var(--navy); border-color: #fff; }
.btn:hover { filter: brightness(1.06); }

.catch-band {
  padding: 28px 0 8px;
  text-align: center;
}
.catch-line {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  margin: 0;
  color: var(--navy);
}

.unit-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 28px; }
.unit-card {
  position: relative; display: block; text-decoration: none;
  border-radius: 24px; overflow: hidden; min-height: 280px;
  box-shadow: var(--shadow);
}
.unit-card img { width: 100%; height: 320px; object-fit: cover; }
.unit-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 24px 22px;
  background: linear-gradient(180deg, transparent, rgba(18,32,52,.72));
  color: #fff;
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
}
.unit-meta small { font-family: var(--en); letter-spacing: .2em; font-size: 11px; }
.unit-meta strong { font-size: 28px; font-family: var(--display); letter-spacing: .12em; }

.pill {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 999px;
  background: color-mix(in srgb, var(--ice) 18%, #fff);
  color: var(--ice-deep);
  font-size: 12px;
  letter-spacing: .08em;
}
.unit-meta .pill { background: rgba(255,255,255,.2); color: #fff; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.news-card {
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  padding-bottom: 18px;
}
.news-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.news-card time {
  font-family: var(--en);
  color: var(--ice-deep);
  letter-spacing: .12em;
  font-size: 12px;
  padding: 0 18px;
}
.news-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  padding: 0 18px;
  line-height: 1.45;
}
.news-card p { margin: 0; color: var(--muted); padding: 0 18px; font-size: 14px; }
.news-card:hover { transform: translateY(-3px); transition: transform .2s; }

.audition-band {
  position: relative;
  min-height: 360px;
  display: grid; place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.audition-band img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.audition-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,38,62,.35), rgba(20,38,62,.55));
}
.audition-copy { position: relative; z-index: 1; padding: 64px 20px; }
.audition-copy h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: .12em;
  margin: 0 0 8px;
}

.page-hero {
  padding: 64px 0 12px;
  background:
    radial-gradient(700px 240px at 10% -20%, rgba(106,168,209,.18), transparent 60%),
    radial-gradient(500px 200px at 90% 0%, rgba(224,138,106,.12), transparent 55%),
    var(--bg);
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: .1em;
  margin: 0 0 10px;
}
.news-hero time {
  font-family: var(--en);
  color: var(--ice-deep);
  letter-spacing: .16em;
}

.prose p { margin: 0 0 16px; font-size: 16px; }
.prose img { max-width: 100%; border-radius: 12px; }
.prose h2, .prose h3 { margin: 1.4em 0 .5em; }
.prose-blocks { display: grid; gap: 18px; }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.spec-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.spec-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.spec-no {
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--peach);
  margin: 0 0 8px;
}
.spec-card h2, .spec-card h3 { margin: 0 0 10px; letter-spacing: .04em; }
.fact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.fact {
  font-family: var(--display);
  font-size: 22px;
  margin: 0;
}

.unit-block { margin-bottom: 48px; }
.unit-head {
  display: flex; justify-content: space-between; align-items: end; gap: 12px;
}
.unit-head h2 { margin: 0; font-family: var(--display); font-size: 36px; letter-spacing: .1em; }
.soon {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.soon img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.soon > div { padding: 28px; }
.talent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}
.talent-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 3px solid var(--accent, var(--ice));
  box-shadow: 0 16px 40px color-mix(in srgb, var(--accent, var(--ice)) 32%, rgba(30,58,95,.08));
}
.talent-card:hover { transform: translateY(-4px); transition: transform .2s; }
.talent-visual { position: relative; display: block; color: #fff; text-decoration: none; }
.talent-visual img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: top; }
.talent-visual::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 8px;
  background: var(--accent, var(--ice));
}
.talent-name {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 56px 16px 14px;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--accent, var(--ice)) 72%, #121f34));
}
.talent-name small { font-family: var(--en); letter-spacing: .16em; font-size: 11px; opacity: .85; }
.talent-name strong { display: block; font-size: 22px; letter-spacing: .04em; }
.talent-name em { display: block; font-style: normal; font-size: 13px; opacity: .9; margin-top: 4px; }
.talent-mark { display: inline-block; margin-bottom: 4px; }
.soc-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 12px 14px 14px;
  background: color-mix(in srgb, var(--accent, var(--ice)) 16%, #fff);
  border-top: 3px solid var(--accent, var(--ice));
}
.soc {
  min-width: 36px; height: 36px; padding: 0 10px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-2); color: var(--navy);
  text-decoration: none; font-size: 12px; font-weight: 700;
}
.soc svg { width: 16px; height: 16px; display: block; }
.soc:hover { background: var(--navy); color: #fff; }
.soc-youtube:hover { background: #e11d48; }
.soc-twitch:hover { background: #7c3aed; }
.soc-instagram:hover { background: #db2777; }
.soc-tiktok:hover { background: #111; }
.soc-discord:hover { background: #5865f2; }
.soc-custom { background: #fff; border: 1px solid var(--line); }
.talent-portrait img { aspect-ratio: 3 / 4; }
.facts { display: grid; gap: 8px; margin: 18px 0; }
.facts div { display: grid; grid-template-columns: 88px 1fr; gap: 8px; }
.facts dt { color: var(--muted); }
.facts dd { margin: 0; }
.link-row { display: flex; gap: 10px; flex-wrap: wrap; }
.text-link { color: var(--ice-deep); font-weight: 700; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.check-list { margin: 12px 0 0; padding: 0; list-style: none; }
.check-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid var(--line);
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 16px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ice);
}
.status-banner {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
}
.status-banner.closed { background: #f3e6e1; color: #9a4b32; }
.status-banner.open { background: #e3f4ec; color: #1f6b46; }

.contact-box {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form, .contact-info { min-width: 0; }
.contact-form {
  display: grid; gap: 14px;
  background: var(--white);
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 6px; font-size: 14px; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  background: var(--bg);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.flash-stack { width: min(1120px, calc(100% - 40px)); margin: 12px auto 0; }
.flash {
  margin: 0 0 8px;
  padding: 12px 16px;
  border-radius: 12px;
}
.flash.ok { background: #e3f4ec; color: #1f6b46; }
.flash.err { background: #fde8e8; color: #9f1239; }

.site-footer {
  background: #132033;
  color: #d7e3ee;
  padding: 56px 0 28px;
  margin-top: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 28px;
}
.footer-brand img { width: 84px; height: 84px; }
.footer-name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .16em;
  margin: 10px 0 0;
  color: #fff;
}
.footer-en { font-family: var(--en); font-size: 12px; letter-spacing: .16em; color: #8fb4d2; margin: 4px 0 0; }
.footer-tag { margin: 10px 0 0; }
.footer-h {
  font-family: var(--en);
  letter-spacing: .2em;
  font-size: 12px;
  color: #8fb4d2;
  margin: 0 0 10px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0 0 8px; }
.site-footer a { text-decoration: none; color: #eef4fa; }
.site-footer a:hover { color: var(--peach-soft); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: #8aa0b5;
}

@media (min-width: 901px) {
  .nav-toggle { display: none; }
}
@media (max-width: 900px) {
  .header-inner { padding-right: 96px; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: var(--header);
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch;
    padding: 12px 20px 20px;
  }
  .nav.is-open { display: flex; }
  .nav a { align-items: flex-start; padding: 12px 8px; }
  .nav-cta { margin: 8px 0 0; }
  .split, .two-col, .soon, .fact-row, .footer-grid, .contact-layout {
    grid-template-columns: 1fr;
  }
  .news-grid, .spec-grid, .spec-grid.cols-2, .talent-grid { grid-template-columns: 1fr; }
  .hero { min-height: 460px; height: 72dvh; }
  .hero-copy h1, .page-hero h1, .section-title {
    letter-spacing: .04em;
  }
  .section { padding: 56px 0; }
  .brand-text strong { font-size: 16px; letter-spacing: .08em; }
  body.nav-open { overflow: hidden; }
  .nav-toggle[aria-expanded="true"] .burger::before {
    top: 5px; transform: rotate(45deg); box-shadow: none;
  }
  .nav-toggle[aria-expanded="true"] .burger::after {
    bottom: 5px; transform: rotate(-45deg);
  }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .news-grid, .spec-grid, .talent-grid { grid-template-columns: 1fr 1fr; }
  .fact-row { grid-template-columns: 1fr 1fr; }
}
