:root {
  --bg: #f5f2eb;
  --panel: #ffffff;
  --line: rgba(24, 35, 52, .14);
  --text: #182334;
  --muted: #6f7680;
  --accent: #c9a25e;
  --accent-2: #a97e37;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 7%, rgba(201, 162, 94, .16), transparent 25%),
    radial-gradient(circle at 12% 55%, rgba(137, 163, 202, .12), transparent 28%),
    linear-gradient(180deg, #fbfaf7 0%, var(--bg) 55%, #f1eee7 100%);
  color: var(--text);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #050505; }

.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: .025; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.section-shell { max-width: var(--max); margin: 0 auto; padding-left: 30px; padding-right: 30px; }

.site-header {
  height: 88px; max-width: 1400px; margin: 0 auto; padding: 0 30px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line); position: relative; z-index: 20;
  background: rgba(251, 250, 247, .72); backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: 11px; width: 210px; }
.brand-mark {
  display: grid; place-items: center; width: 37px; height: 37px; color: #080808;
  background: var(--accent); font-weight: 900; font-size: 20px; letter-spacing: -2px;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy b { text-transform: uppercase; font-size: 13px; letter-spacing: .08em; }
.brand-copy small { margin-top: 6px; font-size: 8px; color: var(--muted); letter-spacing: .2em; }
.nav-links { display: flex; gap: 40px; }
.nav-links a { color: #4f5865; font-size: 13px; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px; background: var(--accent); transition: .3s; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { width: 210px; text-align: right; font-size: 13px; font-weight: 700; }
.nav-cta span { color: var(--accent); margin-left: 8px; }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 1px; margin: 6px; background: var(--text); }

.hero { min-height: 760px; display: grid; grid-template-columns: .94fr 1.06fr; gap: 40px; align-items: center; padding-top: 60px; padding-bottom: 76px; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: #66707d; font-size: 10px; letter-spacing: .19em; font-weight: 700; }
.eyebrow span { width: 27px; height: 1px; background: var(--accent); }
.hero h1, .section-heading h2, .about h2, .contact h2 {
  margin: 30px 0 24px; font-family: Georgia, "Times New Roman", "Songti SC", serif; font-weight: 400; letter-spacing: -.055em;
}
.hero h1 { font-size: clamp(58px, 6vw, 92px); line-height: .99; }
.hero h1 em, .about h2 em, .contact h2 em { color: var(--accent); font-weight: 400; }
.hero-intro { width: 88%; max-width: 550px; color: var(--muted); font-size: 16px; line-height: 1.9; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
.button { display: inline-flex; min-width: 155px; justify-content: space-between; align-items: center; padding: 16px 19px; font-size: 13px; font-weight: 800; }
.button-primary { background: var(--accent); color: #080808; transition: transform .25s, box-shadow .25s; }
.button-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(169, 126, 55, .22); }
.text-link { padding: 10px 0; font-size: 13px; border-bottom: 1px solid #777; }
.text-link span { margin-left: 8px; color: var(--accent); }
.hero-meta { display: flex; gap: 34px; margin-top: 56px; padding-top: 25px; border-top: 1px solid var(--line); }
.hero-meta div { display: flex; flex-direction: column; gap: 6px; }
.hero-meta strong { font-family: Georgia, serif; font-size: 18px; font-weight: 400; }
.hero-meta span { color: #7a8189; font-size: 10px; }

.hero-visual { min-height: 610px; position: relative; display: grid; place-items: center; }
.poster-stack { width: 355px; height: 545px; position: relative; perspective: 1200px; }
.stack-card { position: absolute; inset: 0; margin: 0; overflow: hidden; background: #e7e2d8; box-shadow: 0 30px 70px rgba(39,45,55,.25); cursor: pointer; user-select: none; transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .45s ease, opacity .45s ease; }
.stack-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }
.stack-card img { width: 100%; height: 100%; object-fit: cover; }
.stack-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 44%, rgba(0,0,0,.88)); }
.stack-card-back { z-index: 1; transform: translate(-80px, 1px) rotate(-8deg); filter: brightness(.72); }
.stack-card-mid { z-index: 2; transform: translate(69px, 14px) rotate(7deg); filter: brightness(.84); }
.stack-card-front { transform: translate(0, -8px); z-index: 3; }
.poster-stack:hover .stack-card-back { transform: translate(-116px, -3px) rotate(-11deg); }
.poster-stack:hover .stack-card-mid { transform: translate(104px, 6px) rotate(10deg); }
.stack-card figcaption { position: absolute; bottom: 25px; left: 25px; z-index: 2; display: flex; flex-direction: column; }
.stack-card figcaption span { color: var(--accent); font-size: 8px; letter-spacing: .16em; }
.stack-card figcaption strong { margin-top: 9px; font-family: Georgia, serif; font-size: 31px; font-weight: 400; letter-spacing: -.04em; }
.stack-card figcaption small { margin-top: 5px; color: #cbc7c0; font-size: 10px; }
.vertical-note { position: absolute; right: -40px; top: 46%; color: #8b8f94; font-size: 8px; letter-spacing: .22em; transform: rotate(90deg); }
.round-play { position: absolute; z-index: 5; bottom: 31px; right: 7px; width: 108px; height: 108px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); background: rgba(6,6,6,.65); backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; transition: .3s; }
.round-play:hover { background: var(--accent); color: #050505; border-color: var(--accent); transform: scale(1.05); }
.round-play span { font-size: 15px; }
.round-play small { font-size: 7px; letter-spacing: .12em; line-height: 1.5; text-align: left; }
.hero-carousel-controls { position: absolute; z-index: 7; left: 0; bottom: 8px; display: flex; flex-direction: column; gap: 9px; }
.hero-carousel-controls small { color: #6f7680; font-size: 7px; letter-spacing: .12em; }
.hero-carousel-controls > div { display: flex; gap: 6px; }
.hero-carousel-controls button { width: 31px; height: 25px; padding: 0; border: 1px solid var(--line); background: rgba(255,255,255,.82); color: #69717b; font-size: 8px; cursor: pointer; transition: .25s; }
.hero-carousel-controls button:hover, .hero-carousel-controls button[aria-current="true"] { border-color: var(--accent); background: var(--accent); color: #080808; }

.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--accent); color: #090909; transform: rotate(-1.25deg) scale(1.02); }
.marquee-track { width: max-content; padding: 12px 0; display: flex; align-items: center; gap: 30px; animation: marquee 24s linear infinite; }
.marquee span { font-family: Georgia, serif; font-style: italic; font-size: 18px; }
.marquee i { font-style: normal; font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.works { padding-top: 145px; padding-bottom: 140px; background: rgba(255,255,255,.58); box-shadow: 0 0 0 100vmax rgba(255,255,255,.58); clip-path: inset(0 -100vmax); }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 55px; }
.section-heading h2 { margin: 22px 0 0; font-size: clamp(52px, 5vw, 74px); }
.section-heading > p { width: 370px; margin: 0 0 9px; color: var(--muted); line-height: 1.8; font-size: 14px; }
.filter-row { display: flex; gap: 8px; margin-bottom: 35px; }
.filter-button { padding: 11px 16px; border: 1px solid var(--line); background: rgba(255,255,255,.64); color: #656d77; font-size: 11px; cursor: pointer; transition: .25s; }
.filter-button sup { margin-left: 6px; font-size: 7px; }
.filter-button:hover, .filter-button.is-active { color: #080808; background: var(--accent); border-color: var(--accent); }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 70px 24px; }
.project-card { min-width: 0; cursor: pointer; transition: opacity .35s, transform .35s; }
.project-card.is-hidden { display: none; }
.project-card-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.4fr .6fr; gap: 24px; align-items: stretch; }
.project-image { position: relative; overflow: hidden; aspect-ratio: 4/5; background: #e6e2da; box-shadow: 0 18px 40px rgba(47,54,65,.12); }
.project-card-featured .project-image { aspect-ratio: 16/7.5; }
.project-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.52)); pointer-events: none; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .5s; }
.project-card:not(.project-card-featured) .project-image { aspect-ratio: 2/3; }
.project-card:not(.project-card-featured) .project-image img { object-fit: contain; }
.project-card-featured .project-image img { object-position: center 27%; }
.project-card:hover .project-image img { transform: scale(1.035); filter: saturate(1.12); }
.project-index { position: absolute; z-index: 2; top: 18px; left: 18px; width: 37px; height: 37px; display: grid; place-items: center; background: rgba(0,0,0,.65); border: 1px solid rgba(255,255,255,.3); font-size: 10px; }
.episode-count { position: absolute; z-index: 2; top: 18px; right: 18px; padding: 8px 10px; background: var(--accent); color: #080808; font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.project-play { position: absolute; z-index: 3; inset: 50% auto auto 50%; transform: translate(-50%, -50%); width: 68px; height: 68px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.65); color: white; background: rgba(0,0,0,.35); backdrop-filter: blur(8px); cursor: pointer; transition: .3s; }
.project-play span { margin-left: 3px; }
.project-card:hover .project-play { background: var(--accent); border-color: var(--accent); color: #080808; transform: translate(-50%, -50%) scale(1.08); }
.duration { position: absolute; z-index: 2; right: 16px; bottom: 16px; padding: 5px 8px; background: rgba(0,0,0,.65); font-size: 9px; letter-spacing: .1em; }
.project-info { position: relative; padding: 20px 2px 0; border-top: 1px solid var(--line); }
.project-card-featured .project-info { padding: 30px; border: 1px solid var(--line); background: rgba(255,255,255,.8); box-shadow: 0 18px 45px rgba(47,54,65,.08); display: flex; flex-direction: column; justify-content: space-between; }
.project-info p { color: #727984; font-size: 10px; letter-spacing: .1em; line-height: 1.8; }
.project-info > p { max-width: 530px; letter-spacing: 0; font-size: 13px; }
.project-info h3 { margin: 9px 0 12px; font-family: Georgia, serif; font-size: 27px; font-weight: 400; letter-spacing: -.035em; }
.project-info h3 span { color: #777f88; margin-left: 9px; font-family: inherit; font-size: 15px; }
.project-arrow { position: absolute; right: 0; top: 26px; color: var(--accent); font-size: 18px; }
.project-card-featured .project-arrow { right: 28px; top: auto; bottom: 28px; }

.about { display: grid; grid-template-columns: .72fr 1.12fr .66fr; gap: 50px; padding-top: 130px; padding-bottom: 130px; border-top: 1px solid var(--line); }
.creator-photo { margin: 0; position: relative; align-self: start; background: #dfe3e7; box-shadow: 0 24px 55px rgba(39,52,69,.16); }
.creator-photo::before { content: ""; position: absolute; z-index: -1; inset: -12px 12px 12px -12px; border: 1px solid rgba(201,162,94,.65); }
.creator-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 22%; }
.creator-photo figcaption { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-top: 0; }
.creator-photo figcaption strong { font-family: Georgia, "Songti SC", serif; font-size: 19px; font-weight: 400; }
.creator-photo figcaption span { color: #777f88; font-size: 7px; letter-spacing: .14em; }
.about h2 { font-size: clamp(47px, 5vw, 72px); line-height: 1.05; }
.about-copy { margin-left: 0; max-width: 620px; }
.about-copy p { color: var(--muted); font-size: 13px; line-height: 1.9; }
.about-copy mark { color: var(--text); background: none; border-bottom: 1px solid var(--accent); }
.capability-list { border-top: 1px solid var(--line); margin-top: 57px; }
.capability-list div { display: grid; grid-template-columns: 25px 1fr; padding: 20px 0; border-bottom: 1px solid var(--line); }
.capability-list span { grid-row: 1 / 3; color: var(--accent); font-size: 9px; }
.capability-list strong { font-size: 13px; font-weight: 500; }
.capability-list small { margin-top: 5px; color: #7c838c; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.process { padding-top: 120px; padding-bottom: 140px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-grid article { min-height: 290px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.55); position: relative; transition: transform .3s, background .3s, box-shadow .3s; }
.process-grid article:hover { transform: translateY(-5px); background: #fff; box-shadow: 0 18px 40px rgba(47,54,65,.1); }
.process-grid article > span { color: #77808b; font-size: 9px; }
.process-icon { margin: 58px 0 30px; color: var(--accent); font-family: Georgia, serif; font-size: 32px; }
.process-grid h3 { margin: 0 0 13px; font-family: Georgia, "Songti SC", serif; font-size: 20px; font-weight: 400; }
.process-grid p { margin: 0; color: #737b85; font-size: 12px; line-height: 1.8; }

.contact { min-height: 640px; padding-top: 120px; padding-bottom: 120px; display: grid; grid-template-columns: 1fr .8fr; gap: 110px; align-items: center; position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.contact { background: rgba(228,233,241,.62); box-shadow: 0 0 0 100vmax rgba(228,233,241,.62); clip-path: inset(0 -100vmax); }
.contact::before { content: ""; position: absolute; width: 550px; height: 550px; left: -290px; top: 40px; border: 1px solid rgba(201,162,94,.32); border-radius: 50%; box-shadow: 0 0 100px rgba(201,162,94,.12); }
.contact-copy { position: relative; z-index: 2; }
.contact h2 { font-size: clamp(51px, 5vw, 76px); line-height: 1.02; }
.contact-copy > p:last-child { max-width: 540px; color: var(--muted); font-size: 14px; line-height: 1.9; }
.contact-card { padding: 30px; background: rgba(255,255,255,.92); color: var(--text); border-top: 4px solid var(--accent); transform: rotate(1deg); box-shadow: 18px 18px 0 rgba(201,162,94,.28), 0 22px 55px rgba(42,51,65,.13); }
.contact-card > p { margin: 0 0 27px; font-size: 9px; letter-spacing: .18em; font-weight: 800; }
.contact-card a, .contact-card > div { display: grid; grid-template-columns: 1fr auto; gap: 7px; padding: 18px 0; border-top: 1px solid rgba(0,0,0,.25); position: relative; }
.contact-card small { grid-column: 1 / -1; font-size: 8px; letter-spacing: .14em; opacity: .65; }
.contact-card strong { font-family: Georgia, serif; font-size: clamp(18px, 2vw, 25px); font-weight: 400; word-break: break-all; }
.contact-card a span { grid-column: 2; grid-row: 1 / 3; align-self: center; font-size: 19px; }
.contact-card button { grid-column: 2; grid-row: 1 / 3; align-self: center; padding: 7px 10px; border: 1px solid var(--text); background: transparent; font-size: 9px; cursor: pointer; }
.contact-orbit { position: absolute; left: -73px; bottom: 25px; width: 175px; height: 175px; display: grid; place-items: center; animation: spin 20s linear infinite; opacity: .5; }
.contact-orbit span { position: absolute; font-size: 7px; letter-spacing: .14em; }
.contact-orbit i { color: var(--accent); font-style: normal; }
@keyframes spin { to { transform: rotate(360deg); } }

.site-footer { min-height: 115px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); }
.site-footer p, .site-footer > a:last-child { color: #777f88; font-size: 9px; letter-spacing: .1em; }
.site-footer > a:last-child:hover { color: var(--accent); }

.project-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 30px; visibility: hidden; opacity: 0; transition: .3s; }
.project-modal.is-open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.86); backdrop-filter: blur(12px); }
.modal-panel { width: min(1020px, 100%); max-height: 92vh; overflow: auto; position: relative; background: #111113; color: #f4f0e8; border: 1px solid rgba(255,255,255,.18); transform: translateY(24px); transition: .35s; }
.project-modal.is-open .modal-panel { transform: translateY(0); }
.modal-close { position: absolute; right: 14px; top: 14px; z-index: 4; width: 39px; height: 39px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: rgba(0,0,0,.6); font-size: 24px; cursor: pointer; }
.modal-media { position: relative; aspect-ratio: 16 / 9; background: #050505; overflow: hidden; }
.modal-media video { width: 100%; height: 100%; object-fit: contain; display: none; }
.modal-media video.has-video { display: block; }
.video-fallback { position: absolute; inset: 0; overflow: hidden; }
.video-fallback.is-hidden { display: none; }
.video-fallback img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; filter: brightness(.7); animation: kenburns 9s ease-in-out infinite alternate; }
.video-fallback::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.3), transparent 50%, rgba(0,0,0,.2)); }
@keyframes kenburns { to { transform: scale(1.06); } }
.fallback-play { position: absolute; z-index: 2; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 78px; height: 78px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; background: rgba(0,0,0,.35); backdrop-filter: blur(9px); }
.fallback-play span { margin-left: 4px; }
.fallback-progress { position: absolute; z-index: 2; bottom: 16px; left: 20px; right: 20px; height: 2px; background: rgba(255,255,255,.28); overflow: hidden; }
.fallback-progress i { display: block; width: 35%; height: 100%; background: var(--accent); animation: progress 8s linear infinite; }
@keyframes progress { from { transform: translateX(-100%); } to { transform: translateX(300%); } }
.modal-details { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 28px 30px 34px; }
.modal-details p { margin: 0; color: #8e8a84; font-size: 11px; letter-spacing: .08em; line-height: 1.8; }
.modal-details h3 { margin: 7px 0 0; font-family: Georgia, serif; font-size: 34px; font-weight: 400; }
.episode-section { padding: 0 30px 32px; }
.episode-heading { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); }
.episode-heading span { color: var(--accent); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.episode-heading small { color: #77736e; font-size: 8px; letter-spacing: .13em; }
.episode-series-info { margin-top: 15px; padding: 17px 18px; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: #171719; border-left: 2px solid var(--accent); }
.episode-series-info > div:first-child { display: flex; flex-direction: column; gap: 7px; }
.episode-series-info small { color: #696560; font-size: 7px; letter-spacing: .13em; }
.episode-series-info strong { font-family: Georgia, "Songti SC", serif; font-size: 15px; font-weight: 400; }
.series-tags { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
.series-tags span { padding: 7px 9px; border: 1px solid rgba(201,162,94,.45); color: var(--accent); font-size: 9px; white-space: nowrap; }
.episode-list { display: grid; grid-template-columns: repeat(6, 1fr); gap: 7px; margin-top: 15px; }
.episode-button { min-height: 58px; padding: 9px 7px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.13); background: #171719; color: #9b9791; text-align: left; cursor: pointer; transition: .25s; }
.episode-button span { font-family: Georgia, serif; font-size: 16px; }
.episode-button small { color: #67635f; font-size: 7px; letter-spacing: .08em; }
.episode-button:hover, .episode-button.is-active { border-color: var(--accent); background: var(--accent); color: #080808; }
.episode-button:hover small, .episode-button.is-active small { color: rgba(0,0,0,.55); }

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

@media (max-width: 980px) {
  .nav-links { gap: 22px; }
  .hero { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { margin-top: 40px; }
  .project-card-featured { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card-featured .project-info { min-height: 260px; }
  .about { grid-template-columns: .72fr 1.1fr; }
  .creator-photo { grid-row: 1 / 3; }
  .capability-list { grid-column: 2; margin-top: 10px; }
  .contact { gap: 50px; }
}

@media (max-width: 740px) {
  .section-shell { padding-left: 20px; padding-right: 20px; }
  .site-header { height: 74px; padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .site-header.menu-open .nav-links { position: absolute; top: 74px; left: 0; right: 0; display: flex; flex-direction: column; gap: 0; padding: 16px 20px; background: rgba(251,250,247,.98); border-bottom: 1px solid var(--line); }
  .site-header.menu-open .nav-links a { padding: 15px 0; }
  .menu-toggle { display: block; }
  .hero { min-height: 0; padding-top: 65px; padding-bottom: 90px; }
  .hero h1 { font-size: clamp(50px, 15vw, 70px); }
  .hero-intro { width: 100%; }
  .hero-meta { gap: 20px; flex-wrap: wrap; }
  .hero-visual { min-height: 510px; overflow: hidden; }
  .poster-stack { width: 270px; height: 420px; }
  .stack-card-back { transform: translate(-36px, 1px) rotate(-7deg); }
  .stack-card-mid { transform: translate(36px, 10px) rotate(7deg); }
  .poster-stack:hover .stack-card-back { transform: translate(-55px, -3px) rotate(-9deg); }
  .poster-stack:hover .stack-card-mid { transform: translate(56px, 6px) rotate(9deg); }
  .round-play { right: 4px; bottom: 8px; width: 88px; height: 88px; }
  .hero-carousel-controls { left: 4px; bottom: 5px; }
  .hero-carousel-controls small { display: none; }
  .vertical-note { display: none; }
  .marquee { transform: none; }
  .works { padding-top: 110px; padding-bottom: 100px; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 35px; }
  .section-heading > p { width: 100%; }
  .filter-row { overflow-x: auto; padding-bottom: 8px; }
  .filter-button { flex: 0 0 auto; }
  .work-grid { grid-template-columns: 1fr; gap: 55px; }
  .project-card-featured { grid-column: auto; display: block; }
  .project-card-featured .project-image { aspect-ratio: 4/5; }
  .project-card-featured .project-info { min-height: 0; border: 0; border-top: 1px solid var(--line); padding: 20px 2px 0; display: block; }
  .project-card-featured .project-arrow { right: 0; top: 26px; bottom: auto; }
  .about { grid-template-columns: 1fr; gap: 20px; padding-top: 95px; padding-bottom: 95px; }
  .creator-photo { grid-row: auto; width: min(100%, 390px); margin-bottom: 30px; }
  .about-copy { margin-left: 0; grid-template-columns: 1fr; }
  .capability-list { grid-column: auto; }
  .process { padding-top: 90px; padding-bottom: 100px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid article { min-height: 250px; }
  .process-icon { margin-top: 38px; }
  .contact { grid-template-columns: 1fr; gap: 40px; padding-top: 95px; padding-bottom: 100px; }
  .contact-card { transform: none; box-shadow: 10px 10px 0 rgba(201,162,94,.28), 0 18px 40px rgba(42,51,65,.11); padding: 23px; }
  .site-footer { padding-top: 35px; padding-bottom: 35px; flex-direction: column; align-items: flex-start; }
  .modal-details { grid-template-columns: 1fr; gap: 18px; }
  .modal-media.is-series { aspect-ratio: 9 / 12; }
  .episode-section { padding: 0 20px 24px; }
  .episode-heading { align-items: flex-start; flex-direction: column; gap: 7px; }
  .episode-series-info { align-items: flex-start; flex-direction: column; gap: 14px; }
  .series-tags { justify-content: flex-start; }
  .episode-list { grid-template-columns: repeat(3, 1fr); }
  .project-modal { padding: 12px; }
}

@media (max-width: 430px) {
  .hero-meta div:last-child { width: 100%; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 220px; }
  .contact-card strong { font-size: 17px; }
}

@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; }
}
