:root {
  --paper: #f3eee3;
  --paper-light: #fffaf1;
  --ink: #1b1b17;
  --muted: #6f6b61;
  --line: rgba(37, 35, 29, .16);
  --jade: #103a33;
  --jade-light: #1e5a4e;
  --lacquer: #8f2b21;
  --vermilion: #c94c30;
  --gold: #d8a84f;
  --shell: min(1380px, calc(100% - 64px));
  --serif: "Songti SC", "STSong", "Noto Serif SC", Georgia, serif;
  --sans: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.section-shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; left: 18px; top: -80px; z-index: 100; padding: 12px 18px; color: white; background: var(--lacquer); }
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky; top: 0; z-index: 40; display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 36px; min-height: 82px; padding: 10px max(32px, calc((100% - 1380px) / 2));
  color: #20312d; background: rgba(255,250,241,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand span { display: grid; gap: 2px; }
.brand strong { font-size: 19px; letter-spacing: .08em; }
.brand small { color: #8a806e; font-size: 8px; letter-spacing: .22em; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(15px, 2vw, 30px); }
.site-nav a { position: relative; color: #645f55; font-size: 13px; white-space: nowrap; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -11px; height: 2px; background: var(--lacquer); transition: right .25s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--lacquer); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.official-mark { padding: 8px 12px; border: 1px solid rgba(16,58,51,.25); border-radius: 999px; color: var(--jade); font-size: 11px; letter-spacing: .08em; }
.menu-button { display: none; }

.premiere-hero { overflow: hidden; background: #160e0a; }
.premiere-hero img { width: 100%; height: auto; }
.opening-deck {
  display: grid; grid-template-columns: 1.28fr .72fr; gap: 80px; align-items: end;
  padding: clamp(70px, 8vw, 120px) max(32px, calc((100% - 1380px) / 2)); background: var(--paper-light);
}
.opening-title > p, .section-heading > div > p, .free-intro > p, .online-heading > p, .collection-heading > p, .latest-heading > p, .brand-statement-copy > p:first-child {
  margin: 0 0 16px; color: var(--lacquer); font-size: 10px; font-weight: 700; letter-spacing: .24em;
}
.opening-title h1 { max-width: 880px; margin: 0; font: 500 clamp(48px, 6vw, 96px)/1.05 var(--serif); letter-spacing: -.05em; }
.opening-copy > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 2; }
.opening-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.opening-actions a { padding: 13px 20px; border: 1px solid var(--jade); color: var(--jade); font-size: 13px; }
.opening-actions a:first-child { color: white; background: var(--jade); }

.theater-marquee { overflow-x: auto; padding: 16px 0; color: #f7efe3; background: var(--lacquer); scrollbar-width: none; }
.theater-marquee::-webkit-scrollbar { display: none; }
.theater-marquee > div { display: flex; align-items: center; justify-content: center; gap: 22px; min-width: max-content; padding-inline: 24px; }
.theater-marquee span { font-size: 12px; letter-spacing: .1em; }
.theater-marquee i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.popular-section { padding-block: clamp(100px, 11vw, 170px); }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; margin-bottom: 68px; }
.section-heading h2, .free-intro h2, .online-heading h2, .collection-heading h2, .latest-heading h2 {
  margin: 0; font: 500 clamp(44px, 5vw, 76px)/1.15 var(--serif); letter-spacing: -.04em;
}
.section-heading > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 2; }
.poster-showcase { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 48px 24px; align-items: start; }
.drama-card:nth-child(1) { grid-column: 1 / span 5; }
.drama-card:nth-child(2) { grid-column: 6 / span 3; }
.drama-card:nth-child(3) { grid-column: 9 / span 4; }
.drama-card:nth-child(4) { grid-column: 1 / span 3; }
.drama-card:nth-child(5) { grid-column: 4 / span 4; }
.drama-card:nth-child(6) { grid-column: 8 / span 5; }
.poster-crop { position: relative; overflow: hidden; aspect-ratio: 2 / 3; background: #ded5c6; }
.poster-crop img { position: absolute; width: 300%; max-width: none; height: 200%; object-fit: fill; transition: transform .5s ease, filter .5s ease; }
.crop-1 img { left: 0; top: 0; }
.crop-2 img { left: -100%; top: 0; }
.crop-3 img { left: -200%; top: 0; }
.crop-4 img { left: 0; top: -100%; }
.crop-5 img { left: -100%; top: -100%; }
.crop-6 img { left: -200%; top: -100%; }
.drama-card:hover .poster-crop img { transform: scale(1.025); filter: saturate(1.06); }
.drama-copy { padding: 20px 2px 0; }
.drama-copy span { color: var(--lacquer); font-size: 10px; letter-spacing: .18em; }
.drama-copy h3 { margin: 8px 0 9px; font: 500 clamp(22px, 2.3vw, 34px)/1.35 var(--serif); }
.drama-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.drama-card-lead .drama-copy h3 { font-size: clamp(34px, 4vw, 54px); }
.drama-card-lead .drama-copy p { max-width: 520px; font-size: 15px; }

.free-section { display: grid; grid-template-columns: .75fr 1.25fr; min-height: 760px; color: white; background: var(--jade); }
.free-intro { display: grid; align-content: center; padding: clamp(70px, 8vw, 130px); background: var(--jade-light); }
.free-intro > p { color: #e5b16d; }
.free-intro h2 { max-width: 480px; }
.free-intro > span { max-width: 440px; margin-top: 28px; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.9; }
.free-features { display: grid; grid-template-columns: repeat(2, 1fr); }
.free-features article { display: grid; align-content: end; min-height: 380px; padding: 48px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); transition: background .25s ease; }
.free-features article:hover { background: rgba(255,255,255,.045); }
.free-features b { color: #e5b16d; font: 500 18px/1 var(--serif); }
.free-features h3 { margin: 18px 0 14px; font: 500 30px/1.3 var(--serif); }
.free-features p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.9; }

.online-section { padding: clamp(100px, 11vw, 170px) 0; color: #f7f0e7; background: #171713; }
.online-heading { display: grid; grid-template-columns: .4fr 1fr .7fr; gap: 38px; align-items: end; margin-bottom: 62px; }
.online-heading > p { color: #dfad64; }
.online-heading > span { color: #918d83; font-size: 14px; line-height: 1.9; }
.spotlight { display: grid; grid-template-columns: .66fr 1.34fr; min-height: 680px; border: 1px solid rgba(255,255,255,.13); }
.spotlight-visual { position: relative; display: grid; place-items: center; padding: 60px; background: #0d2c27; }
.spotlight-poster { width: min(390px, 100%); box-shadow: 0 28px 70px rgba(0,0,0,.38); }
.spotlight-visual > span { position: absolute; left: 28px; bottom: 24px; color: rgba(255,255,255,.52); font-size: 9px; letter-spacing: .2em; }
.spotlight-content { display: grid; align-content: center; padding: clamp(48px, 7vw, 100px); }
.spotlight-content > p:first-child { margin: 0 0 15px; color: #e0ad67; font-size: 11px; letter-spacing: .18em; }
.spotlight-content h3 { margin: 0; font: 500 clamp(46px, 5vw, 76px)/1.12 var(--serif); }
.spotlight-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.spotlight-tags span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: #bbb6ac; font-size: 11px; }
.spotlight-description { max-width: 720px; margin: 28px 0 0; color: #aaa69d; font-size: 16px; line-height: 2; }
.episode-directory { margin-top: 34px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.13); }
.episode-directory strong { font-size: 13px; }
.episode-directory > div { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.episode-directory span { padding: 9px 12px; color: #bdb8ae; background: rgba(255,255,255,.055); font-size: 12px; }
.source-notice { margin: 20px 0 0; color: #77746e; font-size: 11px; line-height: 1.7; }
.show-selector { display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid rgba(255,255,255,.13); border-top: 0; }
.show-selector button { min-height: 72px; padding: 12px; border: 0; border-right: 1px solid rgba(255,255,255,.11); color: #8e8a82; background: transparent; cursor: pointer; }
.show-selector button:last-child { border-right: 0; }
.show-selector button:hover, .show-selector button:focus-visible, .show-selector button.is-active { color: white; background: var(--lacquer); }

.collection-section { padding-block: clamp(100px, 11vw, 170px); }
.collection-heading { display: grid; grid-template-columns: .5fr 1fr .8fr; gap: 50px; align-items: end; margin-bottom: 64px; }
.collection-heading > span { color: var(--muted); font-size: 14px; line-height: 1.9; }
.collection-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.collection-grid article { min-height: 330px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.collection-grid span { color: var(--lacquer); font-size: 11px; letter-spacing: .12em; }
.collection-grid h3 { margin: 95px 0 16px; font: 500 29px/1.35 var(--serif); }
.collection-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.9; }

.latest-section { padding-block: clamp(100px, 10vw, 150px); background: #ded6c6; }
.latest-shell { display: grid; grid-template-columns: .62fr 1.38fr; gap: 80px; }
.latest-list { border-top: 1px solid rgba(37,35,29,.2); }
.latest-list article { display: grid; grid-template-columns: 110px 1fr auto; gap: 32px; align-items: center; min-height: 150px; border-bottom: 1px solid rgba(37,35,29,.2); }
.latest-list time { color: #8f2b21; font-size: 10px; letter-spacing: .14em; }
.latest-list h3 { margin: 0 0 10px; font: 500 26px/1.35 var(--serif); }
.latest-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.latest-list > article > span { padding: 8px 10px; border: 1px solid rgba(37,35,29,.18); border-radius: 999px; color: #766f62; font-size: 10px; }

.brand-statement { display: grid; grid-template-columns: .6fr 1.4fr; min-height: 620px; color: #fff6eb; background: var(--lacquer); }
.brand-seal { display: grid; place-items: center; padding: 60px; background: #742118; }
.brand-seal img { width: min(270px, 70%); filter: drop-shadow(0 24px 32px rgba(0,0,0,.2)); }
.brand-statement-copy { display: grid; align-content: center; padding: clamp(70px, 9vw, 140px); }
.brand-statement-copy > p:first-child { color: #efbc75; }
.brand-statement-copy h2 { max-width: 930px; margin: 0; font: 500 clamp(48px, 6vw, 90px)/1.12 var(--serif); letter-spacing: -.04em; }
.brand-statement-copy > p:last-child { max-width: 850px; margin: 34px 0 0; color: rgba(255,246,235,.7); font-size: 15px; line-height: 2; }

.site-footer { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 36px; padding: 34px max(32px, calc((100% - 1380px) / 2)); color: #8d887e; background: #13130f; font-size: 11px; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: white; }
.footer-brand img { width: 42px; height: 42px; object-fit: contain; }
.footer-brand div { display: grid; gap: 3px; }
.footer-brand strong { font-size: 15px; }
.footer-brand small { color: #8d887e; font-size: 7px; letter-spacing: .2em; }
.site-footer p { margin: 0; }
.back-top { position: fixed; right: 22px; bottom: 22px; z-index: 35; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: white; background: rgba(16,58,51,.9); opacity: 0; pointer-events: none; transform: translateY(10px); transition: .25s ease; cursor: pointer; }
.back-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  :root { --shell: min(880px, calc(100% - 40px)); }
  .site-header { grid-template-columns: auto auto 1fr; padding-inline: 20px; }
  .menu-button { display: grid; grid-template-columns: 24px auto; align-items: center; gap: 5px 10px; justify-self: end; border: 0; background: transparent; cursor: pointer; }
  .menu-button span { grid-column: 1; width: 24px; height: 1px; background: currentColor; }
  .menu-button b { grid-column: 2; grid-row: 1 / span 2; font-size: 11px; font-weight: 500; }
  .site-nav { position: absolute; top: 82px; right: 20px; display: grid; justify-content: stretch; gap: 0; width: min(340px, calc(100vw - 40px)); padding: 12px 22px; visibility: hidden; opacity: 0; transform: translateY(-8px); background: var(--paper-light); border: 1px solid var(--line); box-shadow: 0 24px 50px rgba(40,30,18,.12); transition: .25s ease; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }
  .official-mark { justify-self: start; }
  .opening-deck, .section-heading, .online-heading, .collection-heading, .latest-shell { grid-template-columns: 1fr; gap: 30px; }
  .poster-showcase { grid-template-columns: repeat(2, 1fr); }
  .drama-card:nth-child(n) { grid-column: auto; }
  .free-section { grid-template-columns: 1fr; }
  .free-intro { min-height: 520px; }
  .spotlight { grid-template-columns: .85fr 1.15fr; }
  .show-selector { grid-template-columns: repeat(3, 1fr); }
  .show-selector button:nth-child(3) { border-right: 0; }
  .show-selector button:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.11); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-statement { grid-template-columns: 1fr; }
  .brand-seal { min-height: 420px; }
  .site-footer { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); }
  .site-header { min-height: 72px; grid-template-columns: 1fr auto; }
  .brand img { width: 40px; height: 40px; }
  .brand strong { font-size: 16px; }
  .official-mark { display: none; }
  .site-nav { top: 72px; right: 14px; width: calc(100vw - 28px); }
  .premiere-hero { height: 430px; }
  .premiere-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .opening-deck { padding: 62px 14px; }
  .opening-title h1 { font-size: 42px; }
  .opening-copy > p { font-size: 14px; line-height: 1.85; }
  .opening-actions a { flex: 1; text-align: center; }
  .theater-marquee > div { justify-content: flex-start; }
  .popular-section { padding-block: 84px; }
  .section-heading h2, .free-intro h2, .online-heading h2, .collection-heading h2, .latest-heading h2 { font-size: 42px; }
  .poster-showcase { grid-template-columns: 1fr; gap: 44px; }
  .drama-copy h3, .drama-card-lead .drama-copy h3 { font-size: 32px; }
  .free-intro { min-height: 430px; padding: 64px 22px; }
  .free-features { grid-template-columns: 1fr; }
  .free-features article { min-height: 290px; padding: 34px 22px; border-right: 0; }
  .online-section { padding-block: 84px; }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-visual { min-height: 520px; padding: 44px; }
  .spotlight-content { padding: 50px 22px; }
  .spotlight-content h3 { font-size: 42px; }
  .show-selector { grid-template-columns: repeat(2, 1fr); }
  .show-selector button, .show-selector button:nth-child(3) { border-right: 1px solid rgba(255,255,255,.11); border-bottom: 1px solid rgba(255,255,255,.11); }
  .show-selector button:nth-child(2n) { border-right: 0; }
  .collection-section { padding-block: 84px; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-grid article { min-height: 270px; }
  .collection-grid h3 { margin-top: 62px; }
  .latest-section { padding-block: 84px; }
  .latest-list article { grid-template-columns: 1fr; gap: 15px; padding: 28px 0; }
  .latest-list > article > span { justify-self: start; }
  .brand-seal { min-height: 340px; }
  .brand-statement-copy { padding: 72px 22px; }
  .brand-statement-copy h2 { font-size: 45px; }
  .site-footer { padding-inline: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
