/* ============================================
   SY Entertainment — Website Styles
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0a0a0a;
  --gray-900: #111111;
  --gray-800: #1a1a1a;
  --gray-700: #2a2a2a;
  --gray-600: #3a3a3a;
  --gray-400: #888888;
  --gray-300: #aaaaaa;
  --gray-200: #cccccc;
  --white: #ffffff;
  --accent: #888888;
  --accent-dim: rgba(136, 136, 136, 0.12);
  --gold: #c8a882;

  --font-en: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-cn: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-kr: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  --font-serif: 'Source Han Serif SC', 'Source Han Serif', 'Noto Serif SC', 'Songti SC', serif;

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-en);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

[data-lang="cn"] body {
  font-family: var(--font-cn);
}

[data-lang="kr"] body {
  font-family: var(--font-kr);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 120px 0;
}

.section__title {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 60px;
}

.section__title--gold {
  color: var(--gold) !important;
}

[data-lang="cn"] .section__title {
  letter-spacing: 0.1em;
}


/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__hamburger {
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(8.25px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-8.25px) rotate(-45deg);
}

.lang-switcher {
  display: flex;
  gap: 0;
  border: 1px solid var(--gray-600);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--gray-400);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-en);
  letter-spacing: 0.05em;
}

.lang-btn:not(:last-child) {
  border-right: 1px solid var(--gray-600);
}

.lang-btn:hover {
  color: var(--white);
}

.lang-btn.active {
  background: var(--gray-700);
  color: var(--white);
}


/* --- MENU OVERLAY --- */
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--black);
  z-index: 999;
  transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}

.menu.open {
  right: 0;
}

.menu__inner {
  padding: 120px 40px 60px;
  max-width: 600px;
}

.menu__section {
  border-bottom: 1px solid var(--gray-800);
}

.menu__section:first-child {
  border-top: 1px solid var(--gray-800);
}

.menu__link {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--gray-200);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 24px 0;
  cursor: pointer;
  transition: color var(--transition);
  font-family: var(--font-cn);
}

.menu__link:hover {
  color: var(--white);
}

[data-lang="cn"] .menu__link {
  font-size: 1.25rem;
}

.menu__accordion::after {
  content: '+';
  float: right;
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--gray-400);
  transition: transform var(--transition);
}

.menu__accordion.open::after {
  transform: rotate(45deg);
}

.menu__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.menu__sub.open {
  max-height: 300px;
}

.menu__sublink {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-400);
  padding: 12px 0 24px;
  transition: color var(--transition);
}

.menu__sublink:hover {
  color: var(--white);
}

[data-lang="cn"] .menu__sublink {
  font-size: 0.8125rem;
}


/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 0L14.5 9.5L24 12L14.5 14.5L12 24L9.5 14.5L0 12L9.5 9.5Z' fill='white'/%3E%3C/svg%3E") 12 12, crosshair;
}

.hero__ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.3;
}

.hero__content {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 0L14.5 9.5L24 12L14.5 14.5L12 24L9.5 14.5L0 12L9.5 9.5Z' fill='white'/%3E%3C/svg%3E") 12 12, crosshair;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(136, 136, 136, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__title-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.hero__soundwave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 100px;
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}

.hero__title {
  font-size: 6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 1;
}

.hero__tagline {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gray-300);
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  max-width: 400px;
  margin: 0 auto 80px;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--gray-400);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}


/* --- SERVICES --- */
.services {
  background: var(--black);
}

/* Main page: minimal list */
.services__list {
  display: flex;
  flex-direction: column;
}

.services__item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-800);
  transition: all var(--transition);
}

.services__item:first-child {
  border-top: 1px solid var(--gray-800);
}

.services__item:hover {
  padding-left: 12px;
}

/* Sub-page: static list items (not clickable) */
.services__item--static {
  flex-direction: column;
  gap: 8px;
  cursor: default;
}

.services__item--static:hover {
  padding-left: 0;
}

.services__detail {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-400);
}

[data-lang="cn"] .services__detail {
  font-size: 0.8125rem;
  line-height: 1.8;
}

.services__num {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  min-width: 32px;
}

.services__name {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--gray-200);
  transition: color var(--transition);
}

.services__item:hover .services__name {
  color: var(--white);
}

[data-lang="cn"] .services__name {
  font-size: 1.25rem;
}



/* --- PAGE HEADER (sub-pages) --- */
.page-header {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 80px;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(136, 136, 136, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-header__number {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.page-header__title {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

[data-lang="cn"] .page-header__title {
  font-size: 2.25rem;
}

.page-header__subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--gray-400);
  max-width: 560px;
}

[data-lang="cn"] .page-header__subtitle {
  font-size: 1rem;
}


/* --- CASES --- */
.cases {
  background: var(--gray-900);
}

.cases__placeholder {
  text-align: center;
  padding: 80px 0;
}

.cases__empty {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--gray-300);
  margin-bottom: 12px;
}

.cases__empty-sub {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--gray-400);
}


/* --- WHO IT'S FOR --- */
.who-for {
  background: var(--gray-900);
}

.who-for__text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--gray-300);
  max-width: 720px;
  margin-bottom: 16px;
}

[data-lang="cn"] .who-for__text {
  font-size: 0.9375rem;
  line-height: 2;
}

.who-for__pain {
  margin-top: 48px;
}

.who-for__pain-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  font-family: var(--font-cn);
}

.who-for__pain-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.who-for__pain-item {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--gray-300);
  padding-left: 0;
}

[data-lang="cn"] .who-for__pain-item {
  font-size: 0.875rem;
}

.who-for__levels {
  margin-top: 48px;
}

.who-for__levels-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  font-family: var(--font-cn);
}

.who-for__levels-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.who-for__level {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-300);
  padding: 10px 20px;
  border: 1px solid var(--gray-600);
}


/* --- HOW IT WORKS --- */
.how-works {
  background: var(--gray-900);
}

.how-works__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 720px;
}

.how-works__item {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-600);
}

.how-works__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.how-works__name {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: var(--font-cn);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

[data-lang="cn"] .how-works__name {
  font-size: 1rem;
}

.how-works__quote {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 16px;
  font-style: italic;
}

[data-lang="cn"] .how-works__quote {
  font-size: 0.9375rem;
}

.how-works__detail {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-300);
}

[data-lang="cn"] .how-works__detail {
  font-size: 0.875rem;
  line-height: 1.9;
}

.how-works__deliverables {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.how-works__deliverables li {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--gray-300);
  padding-left: 0;
}

[data-lang="cn"] .how-works__deliverables li {
  font-size: 0.875rem;
}

.how-works__bonus {
  margin-top: 48px;
  max-width: 720px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-300);
  padding-top: 32px;
  border-top: 1px solid var(--gray-600);
}

[data-lang="cn"] .how-works__bonus {
  font-size: 0.875rem;
}


/* --- SPECIALIZED SUPPORT --- */
.specialized {
  background: var(--gray-900);
}

.specialized__intro {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--gray-300);
  max-width: 720px;
  margin-bottom: 48px;
}

[data-lang="cn"] .specialized__intro {
  font-size: 0.9375rem;
  line-height: 2;
}

.specialized__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 720px;
}

.specialized__item {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-600);
}

.specialized__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.specialized__name {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: var(--font-cn);
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

[data-lang="cn"] .specialized__name {
  font-size: 1rem;
}

.specialized__detail {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-300);
}

[data-lang="cn"] .specialized__detail {
  font-size: 0.875rem;
  line-height: 1.9;
}

.specialized__closing {
  margin-top: 48px;
  max-width: 720px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-cn);
  padding-top: 32px;
  border-top: 1px solid var(--gray-600);
}

[data-lang="cn"] .specialized__closing {
  font-size: 0.9375rem;
}

.specialized__more {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-400);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.specialized__more:hover {
  color: var(--white);
}

.specialized__item--last {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.specialized__item--last .specialized__name,
.specialized__item--last .specialized__detail {
  flex: 1 1 100%;
}

.specialized__closing-row {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.specialized__closing {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.specialized__btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--font-cn);
  color: var(--white);
  background: transparent;
  border: 1px solid var(--gray-500);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.specialized__btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}


/* --- PRODUCTION PAGE --- */
.production-scope {
  background: var(--gray-900);
}

.production-scope__text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--gray-300);
  max-width: 720px;
}

[data-lang="cn"] .production-scope__text {
  font-size: 0.9375rem;
  line-height: 2;
}

.production-process {
  background: var(--gray-900);
}

.production-process__list {
  display: flex;
  gap: 40px;
  max-width: 720px;
  flex-wrap: wrap;
}

.production-process__step {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.production-process__number {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--gray-400);
  font-family: var(--font-en);
}

.production-process__name {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-cn);
  color: var(--white);
  letter-spacing: 0.02em;
}

[data-lang="cn"] .production-process__name {
  font-size: 0.9375rem;
}


/* --- ARTIST OPS --- */
.artist-ops {
  background: var(--gray-900);
}

.artist-ops__text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--gray-300);
  max-width: 720px;
}

[data-lang="cn"] .artist-ops__text {
  font-size: 0.9375rem;
  line-height: 2;
}


/* --- MANIFESTO (full screen, centered) --- */
.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  position: relative;
}

.manifesto__inner {
  max-width: 720px;
  padding: 0 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.manifesto__line {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  color: var(--white);
  letter-spacing: 0.02em;
  font-family: var(--font-serif);
}

.manifesto__line--large {
  font-size: 1.75rem;
}

[data-lang="cn"] .manifesto__line {
  font-size: 1.25rem;
  line-height: 2.2;
}

[data-lang="cn"] .manifesto__line--large {
  font-size: 1.5rem;
}


/* --- WHO WE ARE --- */
.who-we-are {
  background: var(--gray-900);
}

.who-we-are__title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 48px;
  color: var(--white);
}

.who-we-are__block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.who-we-are__text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--gray-300);
}

.who-we-are__line {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--gray-300);
  margin-bottom: 12px;
}

.who-we-are__line:last-child {
  margin-bottom: 0;
}

[data-lang="cn"] .who-we-are__text {
  font-size: 0.9375rem;
  line-height: 2;
}

[data-lang="cn"] .who-we-are__line {
  font-size: 0.9375rem;
  line-height: 2;
}


/* --- FOUNDER --- */
.founder {
  background: var(--gray-900);
}

.founder__title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: var(--white);
}

.founder__name {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-cn);
  letter-spacing: 0.05em;
  color: var(--gray-300);
  margin-bottom: 40px;
  text-align: center;
}

.founder__block {
  max-width: 720px;
  margin: 0 auto;
}

.founder__bio {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-300);
}

.founder__bullet {
  display: block;
  margin-bottom: 8px;
}

[data-lang="cn"] .founder__bio {
  font-size: 0.875rem;
  line-height: 1.9;
}


/* --- CONTACT --- */
.contact {
  background: var(--black);
}

.contact__channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 600px;
}

.contact__channel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__channel-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-300);
  letter-spacing: 0.05em;
}

.contact__qr {
  width: 160px;
  height: 160px;
  cursor: pointer;
  overflow: hidden;
}

.contact__qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition);
}

.contact__qr:hover .contact__qr-img {
  transform: scale(1.05);
}

.contact__qr-placeholder {
  width: 160px;
  height: 160px;
  border: 1px dashed var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.contact__email {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-300);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--gray-600);
  padding-bottom: 2px;
  transition: all var(--transition);
}

.contact__email:hover {
  color: var(--white);
  border-color: var(--gray-300);
}


/* --- FOOTER --- */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--gray-800);
}

.footer__copy {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--gray-400);
}


/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .section {
    padding: 80px 0;
  }

  .nav__inner {
    padding: 0 24px;
  }

  .menu__inner {
    padding: 100px 24px 40px;
  }

  .menu__link {
    font-size: 1.25rem;
  }

  [data-lang="cn"] .menu__link {
    font-size: 1.125rem;
  }

  .hero__title {
    font-size: 4rem;
  }

  .hero__tagline {
    font-size: 1rem;
    letter-spacing: 0.2em;
  }

  .page-header {
    min-height: 40vh;
    padding: 120px 0 60px;
  }

  .page-header__title {
    font-size: 2rem;
  }

  [data-lang="cn"] .page-header__title {
    font-size: 1.75rem;
  }

  .manifesto__line {
    font-size: 1.25rem;
  }

  [data-lang="cn"] .manifesto__line {
    font-size: 1.0625rem;
  }

  .manifesto__inner {
    padding: 0 24px;
  }

  .services__name {
    font-size: 1.25rem;
  }

  [data-lang="cn"] .services__name {
    font-size: 1.125rem;
  }

}

@media (max-width: 480px) {
  .hero__title {
    font-size: 3rem;
  }

  .section__title {
    margin-bottom: 40px;
  }

  .menu__link {
    font-size: 1.125rem;
    padding: 20px 0;
  }

  [data-lang="cn"] .menu__link {
    font-size: 1rem;
  }
}

/* --- COLLABORATING ARTISTS --- */
.collaborating-artists__coming {
  text-align: center;
  font-size: 1.125rem;
  color: var(--gray-400);
  letter-spacing: 0.05em;
}

[data-lang="cn"] .collaborating-artists__coming {
  font-size: 1rem;
}


/* --- STUDY ABROAD --- */
.study-abroad {
  background: var(--gray-900);
}

.study-abroad__positioning {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--gray-300);
  max-width: 720px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-600);
}

[data-lang="cn"] .study-abroad__positioning {
  font-size: 0.9375rem;
  line-height: 2;
}

.study-abroad__path {
  margin-bottom: 48px;
}

.study-abroad__path-title {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: var(--font-cn);
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

[data-lang="cn"] .study-abroad__path-title {
  font-size: 1rem;
}

.study-abroad__path-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 720px;
}

.study-abroad__path-item {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-600);
}

.study-abroad__path-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.study-abroad__path-name {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-cn);
  color: var(--gray-300);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

[data-lang="cn"] .study-abroad__path-name {
  font-size: 0.9375rem;
}

.study-abroad__path-detail {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-300);
}

[data-lang="cn"] .study-abroad__path-detail {
  font-size: 0.875rem;
  line-height: 1.9;
}

.study-abroad__placeholder {
  padding: 32px 0;
  border-top: 1px solid var(--gray-600);
}

.study-abroad__coming {
  text-align: center;
  font-size: 1.125rem;
  color: var(--gray-400);
  letter-spacing: 0.05em;
}

[data-lang="cn"] .study-abroad__coming {
  font-size: 1rem;
}

/* Homepage brand mark, displayed white on the dark hero. */
.hero__title--logo {
  width: clamp(120px, 14vw, 166px);
  aspect-ratio: 1030 / 746;
  overflow: hidden;
  line-height: 0;
  margin: 0 auto;
}
.hero__logo {
  display: block;
  position: absolute;
  width: 121.748%;
  max-width: none;
  height: auto;
  left: -10.68%;
  top: -27.078%;
  margin: 0;
  filter: brightness(0) invert(1);
}
