:root {
--background: #f7f8fb;
--foreground: #1d1d1f;
--muted: #6e6e73;
--soft-muted: #8c8c91;
--panel: #ffffff;
--panel-soft: #f5f5f7;
--line: rgba(29, 29, 31, 0.12);
--line-strong: rgba(29, 29, 31, 0.2);
--banana: #fff2a8;
--banana-strong: #ffd84d;
--mint: #dcf8d5;
--mint-strong: #8ee6a4;
--sky: #dcecff;
--sky-strong: #8ebfff;
--peach: #ffe4d6;
--lavender: #ece5ff;
--shadow: 0 18px 54px rgba(29, 29, 31, 0.08);
--max: 1180px;
}

* {
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
background: var(--background);
}

body {
margin: 0;
color: var(--foreground);
background:
linear-gradient(180deg, rgba(255, 242, 168, 0.34), rgba(255, 255, 255, 0) 240px),
linear-gradient(90deg, rgba(220, 248, 213, 0.32), rgba(220, 236, 255, 0.24)),
var(--background);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
letter-spacing: 0;
}

img,
video {
display: block;
max-width: 100%;
}

a {
color: inherit;
text-decoration: none;
}

main {
min-height: 100vh;
overflow-x: clip;
}

.site-nav {
position: sticky;
top: 8px;
z-index: 100;
display: flex;
align-items: center;
justify-content: space-between;
gap: 28px;
width: min(var(--max), calc(100% - 32px));
margin: 16px auto 0;
padding: 12px 14px;
border: 1px solid rgba(255, 255, 255, 0.72);
border-radius: 8px;
background: rgba(255, 255, 255, 0.78);
box-shadow: 0 10px 34px rgba(29, 29, 31, 0.08);
backdrop-filter: blur(18px);
}

.brand-lockup {
display: inline-flex;
align-items: center;
gap: 12px;
min-width: 0;
font-size: 14px;
font-weight: 760;
line-height: 1.05;
color: var(--foreground);
text-transform: uppercase;
}

.brand-lockup img {
width: 42px;
height: 42px;
object-fit: contain;
}

.site-nav nav {
display: flex;
align-items: center;
gap: 6px;
flex-wrap: wrap;
justify-content: flex-end;
}

.site-nav nav a {
display: inline-flex;
align-items: center;
padding: 9px 12px;
border-radius: 999px;
color: #424245;
font-size: 14px;
font-weight: 620;
transition: background 160ms ease, color 160ms ease;
}

.site-nav nav a:hover {
color: var(--foreground);
background: var(--sky);
}

.mobile-menu {
position: relative;
display: none;
}

.mobile-menu summary {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 42px;
padding: 0 16px;
border: 1px solid var(--line);
border-radius: 999px;
background: var(--foreground);
color: #ffffff;
font-size: 14px;
font-weight: 760;
cursor: pointer;
list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
display: none;
}

.mobile-menu summary::after {
content: "";
width: 8px;
height: 8px;
margin-left: 10px;
border-right: 2px solid currentColor;
border-bottom: 2px solid currentColor;
transform: translateY(-2px) rotate(45deg);
transition: transform 160ms ease;
}

.mobile-menu[open] summary::after {
transform: translateY(2px) rotate(225deg);
}

.mobile-menu nav {
position: absolute;
top: calc(100% + 10px);
right: 0;
display: grid;
width: min(280px, calc(100vw - 32px));
padding: 10px;
border: 1px solid rgba(255, 255, 255, 0.72);
border-radius: 8px;
background: rgba(255, 255, 255, 0.96);
box-shadow: 0 18px 46px rgba(29, 29, 31, 0.16);
backdrop-filter: blur(18px);
}

.mobile-menu nav a {
justify-content: flex-start;
width: 100%;
padding: 12px 14px;
border-radius: 8px;
}

.hero {
position: relative;
display: grid;
align-items: end;
width: min(1440px, calc(100% - 32px));
min-height: min(760px, calc(100vh - 126px));
margin: 18px auto 0;
overflow: hidden;
padding: clamp(76px, 12vh, 128px) clamp(22px, 5vw, 72px) clamp(20px, 4vw, 38px);
border: 1px solid rgba(255, 255, 255, 0.58);
border-radius: 8px;
background: #121314;
box-shadow: 0 24px 72px rgba(29, 29, 31, 0.16);
}

.hero::before,
.hero::after {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
}

.hero::before {
z-index: 1;
background:
linear-gradient(90deg, rgba(8, 9, 9, 0.76) 0%, rgba(8, 9, 9, 0.56) 34%, rgba(8, 9, 9, 0.08) 68%),
linear-gradient(180deg, rgba(8, 9, 9, 0.08) 0%, rgba(8, 9, 9, 0.1) 56%, rgba(8, 9, 9, 0.78) 100%);
}

.hero::after {
z-index: 2;
inset: auto 0 0;
height: 38%;
background:
linear-gradient(90deg, rgba(255, 216, 77, 0.18), transparent 34%, rgba(142, 191, 255, 0.16)),
linear-gradient(180deg, transparent, rgba(8, 9, 9, 0.42));
}

.hero-copy {
position: relative;
z-index: 3;
display: grid;
gap: 16px;
max-width: 790px;
padding-bottom: clamp(18px, 3vw, 34px);
color: #ffffff;
}

.eyebrow {
margin: 0;
color: #6b8f36;
font-size: 12px;
font-weight: 820;
letter-spacing: 0;
text-transform: uppercase;
}

h1,
h2,
h3,
p {
margin-top: 0;
}

h1 {
max-width: 780px;
margin-bottom: 0;
font-size: clamp(56px, 8vw, 104px);
line-height: 0.95;
letter-spacing: 0;
}

h2 {
margin-bottom: 0;
font-size: clamp(34px, 5vw, 68px);
line-height: 1;
letter-spacing: 0;
}

h3 {
margin-bottom: 0;
font-size: clamp(22px, 2.3vw, 34px);
line-height: 1.05;
letter-spacing: 0;
}

.hero h1 {
font-size: clamp(52px, 7vw, 86px);
}

.hero .eyebrow {
color: #fff2a8;
}

.hero-text,
.copy-stack p,
.section-heading p + h2,
.featured-content p,
.room-card p,
.contact-grid p {
color: var(--muted);
}

.hero-text {
max-width: 640px;
margin-bottom: 0;
color: rgba(255, 255, 255, 0.82);
font-size: clamp(18px, 1.8vw, 21px);
line-height: 1.42;
}

.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
padding-top: 8px;
}

.button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 48px;
padding: 0 20px;
border: 1px solid transparent;
border-radius: 999px;
font-size: 15px;
font-weight: 760;
transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
transform: translateY(-2px);
}

.button.primary {
color: #1d1d1f;
background: var(--banana-strong);
box-shadow: 0 12px 30px rgba(255, 216, 77, 0.28);
}

.button.secondary {
color: #2d5f77;
background: rgba(255, 255, 255, 0.7);
border-color: var(--line);
}

.hero .button.secondary {
color: #ffffff;
background: rgba(255, 255, 255, 0.14);
border-color: rgba(255, 255, 255, 0.32);
backdrop-filter: blur(16px);
}

.hero-image {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center center;
}

.studio-stats {
position: relative;
z-index: 3;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1px;
overflow: hidden;
width: min(860px, 100%);
border: 1px solid rgba(255, 255, 255, 0.24);
border-radius: 8px;
background: rgba(255, 255, 255, 0.16);
backdrop-filter: blur(20px);
}

.studio-stats div {
min-height: 96px;
padding: 14px 18px;
background: rgba(8, 9, 9, 0.34);
}

.studio-stats strong {
display: block;
margin-bottom: 6px;
color: #ffffff;
font-size: clamp(28px, 3.5vw, 40px);
line-height: 0.9;
}

.studio-stats span {
color: rgba(255, 255, 255, 0.74);
font-size: 12px;
line-height: 1.35;
}

.band,
.section,
.contact-section {
width: min(var(--max), calc(100% - 32px));
margin: 0 auto;
}

.intro {
display: grid;
grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
gap: 44px;
align-items: start;
padding: 56px;
border-radius: 8px;
background:
linear-gradient(125deg, rgba(255, 242, 168, 0.78), rgba(220, 248, 213, 0.72) 48%, rgba(220, 236, 255, 0.78)),
#ffffff;
box-shadow: var(--shadow);
}

.copy-stack {
display: grid;
gap: 16px;
}

.copy-stack p {
margin-bottom: 0;
font-size: 18px;
line-height: 1.55;
}

.section {
padding: 96px 0 0;
}

.section-heading {
display: grid;
gap: 12px;
max-width: 860px;
margin-bottom: 30px;
}

.section-heading h2 {
max-width: 900px;
}

.capabilities-section {
width: min(1440px, calc(100% - 32px));
padding-top: 88px;
}

.capabilities-outline {
margin: 0 0 14px;
color: transparent;
font-size: clamp(56px, 10.2vw, 156px);
font-weight: 900;
line-height: 0.82;
text-transform: uppercase;
-webkit-text-stroke: 1px rgba(29, 29, 31, 0.84);
}

.capabilities-section h2 {
max-width: 1320px;
margin-bottom: 56px;
color: #000000;
font-size: clamp(46px, 7.2vw, 106px);
font-weight: 900;
line-height: 0.9;
text-transform: uppercase;
}

.capabilities-layout {
display: grid;
grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1fr);
gap: clamp(40px, 8vw, 120px);
align-items: start;
}

.capabilities-list h3 {
margin-bottom: 34px;
color: #000000;
font-size: clamp(34px, 4.6vw, 66px);
font-weight: 900;
line-height: 0.92;
text-transform: uppercase;
}

.capabilities-list ul {
display: grid;
gap: 8px;
margin: 0;
padding: 0;
list-style: none;
}

.capabilities-list li {
color: #000000;
font-size: clamp(20px, 2.6vw, 38px);
font-weight: 900;
line-height: 1.02;
text-transform: uppercase;
}

.capabilities-copy {
display: grid;
gap: 34px;
padding-top: 2px;
}

.capabilities-copy p {
margin: 0;
color: #111111;
font-size: clamp(20px, 2vw, 34px);
font-weight: 430;
line-height: 1.38;
}

.catalog-section,
.label-section {
position: relative;
}

.filmography-panel {
display: grid;
grid-template-columns: minmax(190px, 0.26fr) minmax(0, 1fr);
gap: 18px;
align-items: stretch;
}

.catalog-lead,
.dubbing-card {
border: 1px solid rgba(255, 255, 255, 0.72);
border-radius: 8px;
background: rgba(255, 255, 255, 0.82);
box-shadow: var(--shadow);
}

.catalog-lead {
display: grid;
align-content: end;
min-height: 260px;
padding: 24px;
background:
linear-gradient(155deg, rgba(255, 242, 168, 0.9), rgba(220, 248, 213, 0.8)),
#ffffff;
}

.catalog-lead strong {
display: block;
font-size: clamp(62px, 9vw, 118px);
line-height: 0.85;
}

.catalog-lead span {
max-width: 200px;
color: #5f6368;
font-size: 16px;
font-weight: 720;
line-height: 1.25;
}

.filmography-list {
columns: 3 220px;
column-gap: 34px;
margin: 0;
padding: 24px 28px 24px 46px;
border: 1px solid var(--line);
border-radius: 8px;
background:
linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(220, 236, 255, 0.42)),
#ffffff;
box-shadow: 0 14px 36px rgba(29, 29, 31, 0.05);
}

.filmography-list li {
break-inside: avoid;
margin: 0 0 10px;
padding-left: 3px;
color: #343437;
font-size: 15px;
line-height: 1.28;
}

.filmography-list a {
color: inherit;
text-decoration: underline;
text-decoration-color: rgba(107, 143, 54, 0.34);
text-underline-offset: 3px;
transition: color 160ms ease, text-decoration-color 160ms ease;
}

.filmography-list a:hover {
color: #2d5f77;
text-decoration-color: #2d5f77;
}

.filmography-list li::marker {
color: #7b963e;
font-size: 12px;
font-weight: 820;
}

.label-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 14px;
}

.label-card {
overflow: hidden;
min-height: 240px;
border: 1px solid var(--line);
border-radius: 8px;
background: #ffffff;
box-shadow: 0 16px 42px rgba(29, 29, 31, 0.06);
}

.label-card img {
width: 100%;
aspect-ratio: 16 / 10;
object-fit: cover;
background: var(--panel-soft);
}

.label-card div {
padding: 22px;
}

.label-card:nth-child(1) {
background: linear-gradient(180deg, #ffffff, var(--banana));
}

.label-card:nth-child(2) {
background: linear-gradient(180deg, #ffffff, var(--mint));
}

.label-card:nth-child(3) {
background: linear-gradient(180deg, #ffffff, var(--sky));
}

.label-card span {
display: inline-flex;
margin-bottom: 18px;
color: #668a35;
font-size: 12px;
font-weight: 820;
text-transform: uppercase;
}

.label-card h3 {
margin-bottom: 12px;
font-size: clamp(28px, 3.4vw, 44px);
}

.label-card p,
.dubbing-copy p,
.dubbing-card p {
margin-bottom: 0;
color: var(--muted);
font-size: 17px;
line-height: 1.45;
}

.service-tags {
display: flex;
flex-wrap: wrap;
gap: 9px;
}

.service-tags span {
display: inline-flex;
align-items: center;
min-height: 38px;
padding: 0 13px;
border: 1px solid var(--line);
border-radius: 999px;
background: rgba(255, 255, 255, 0.78);
color: #343437;
font-size: 14px;
font-weight: 680;
}

.dubbing-section {
display: grid;
grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.72fr);
gap: 22px;
align-items: stretch;
}

.dubbing-copy {
display: grid;
align-content: center;
gap: 14px;
min-height: 430px;
padding: 46px;
border-radius: 8px;
background:
linear-gradient(130deg, rgba(220, 236, 255, 0.72), rgba(220, 248, 213, 0.64)),
#ffffff;
box-shadow: var(--shadow);
}

.dubbing-copy h2 {
max-width: 720px;
}

.dubbing-card {
display: grid;
align-content: end;
gap: 18px;
min-height: 430px;
padding: 28px;
background:
linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 242, 168, 0.68)),
#ffffff;
}

.dubbing-number {
font-size: clamp(78px, 11vw, 132px);
font-weight: 860;
line-height: 0.82;
}

.visual-section {
position: relative;
}

.studio-gallery {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 12px;
}

.studio-gallery img {
width: 100%;
aspect-ratio: 4 / 3;
object-fit: cover;
border-radius: 8px;
border: 1px solid var(--line);
background: var(--panel-soft);
box-shadow: 0 12px 30px rgba(29, 29, 31, 0.06);
}

.studio-gallery img:nth-child(3n + 2) {
margin-top: 34px;
}

.work-section {
position: relative;
width: 100%;
padding-top: 10px;
}

.work-section > .section-heading {
width: min(var(--max), calc(100% - 32px));
margin-left: auto;
margin-right: auto;
}

.featured-carousel {
position: relative;
width: 100%;
}

.featured-slider {
display: flex;
gap: 14px;
width: 100vw;
margin-left: calc(50% - 50vw);
overflow-x: auto;
overscroll-behavior-x: contain;
scroll-padding-left: 0;
scroll-snap-type: x mandatory;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
}

.featured-slider::-webkit-scrollbar {
display: none;
}

.featured-slide {
position: relative;
flex: 0 0 min(78vw, 1180px);
min-height: min(74vh, 760px);
overflow: hidden;
scroll-snap-align: center;
background: #141414;
}

.featured-slide:first-child {
scroll-snap-align: start;
}

.featured-slide::after {
content: "";
position: absolute;
inset: 0;
z-index: 1;
background:
linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.44) 42%, rgba(0, 0, 0, 0.08) 72%),
linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 44%);
}

.featured-video-frame {
position: absolute;
inset: 0;
overflow: hidden;
background: #050505;
}

.featured-backdrop {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
filter: saturate(1.1) blur(4px);
opacity: 0.9;
transform: scale(1.06);
}

.featured-video-frame .featured-backdrop {
filter: saturate(1.08) contrast(1.05);
opacity: 0.84;
transform: scale(1.02);
}

.featured-video-frame iframe {
position: absolute;
top: 50%;
left: 50%;
width: auto;
min-width: 100%;
height: 100%;
min-height: 100%;
aspect-ratio: 16 / 9;
border: 0;
opacity: 0.74;
pointer-events: none;
transform: translate(-50%, -50%) scale(1.18);
}

.featured-poster {
position: absolute;
right: clamp(24px, 6vw, 96px);
bottom: 0;
z-index: 1;
width: min(32vw, 420px);
height: min(82%, 640px);
object-fit: cover;
object-position: center;
border-radius: 8px 8px 0 0;
box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.featured-content {
position: absolute;
left: clamp(24px, 7vw, 108px);
right: min(44vw, 560px);
bottom: clamp(28px, 7vh, 86px);
z-index: 2;
display: grid;
gap: 16px;
color: #ffffff;
}

.featured-meta {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 10px;
}

.featured-meta span {
display: inline-flex;
align-items: center;
min-height: 30px;
padding: 0 10px;
border: 1px solid rgba(255, 255, 255, 0.26);
border-radius: 999px;
background: rgba(255, 255, 255, 0.16);
color: rgba(255, 255, 255, 0.92);
font-size: 12px;
font-weight: 820;
text-transform: uppercase;
backdrop-filter: blur(18px);
}

.featured-content h3 {
max-width: 680px;
font-size: clamp(48px, 8.2vw, 112px);
line-height: 0.88;
color: #ffffff;
text-wrap: balance;
}

.featured-content p {
max-width: 620px;
margin-bottom: 0;
color: rgba(255, 255, 255, 0.86);
font-size: clamp(17px, 1.8vw, 23px);
line-height: 1.35;
}

.featured-pill {
display: inline-flex;
align-items: center;
justify-content: center;
width: fit-content;
min-height: 46px;
padding: 0 20px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.92);
color: #1d1d1f;
font-size: 15px;
font-weight: 760;
box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.clients {
padding-top: 106px;
}

.client-strip {
display: grid;
grid-template-columns: repeat(6, minmax(0, 1fr));
gap: 12px;
}

.client-strip span {
display: grid;
place-items: center;
min-height: 110px;
padding: 20px;
border: 1px solid var(--line);
border-radius: 8px;
background: rgba(255, 255, 255, 0.82);
box-shadow: 0 10px 28px rgba(29, 29, 31, 0.04);
}

.client-strip img {
width: 100%;
max-height: 56px;
object-fit: contain;
filter: saturate(0.9);
}

.room-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 16px;
}

.room-card {
overflow: hidden;
border: 1px solid var(--line);
border-radius: 8px;
background: var(--panel);
box-shadow: 0 16px 40px rgba(29, 29, 31, 0.06);
}

.room-card img {
width: 100%;
aspect-ratio: 4 / 3;
object-fit: cover;
background: #eef2f7;
}

.room-card div {
padding: 18px;
}

.room-card span {
display: inline-flex;
margin-bottom: 12px;
padding: 6px 10px;
border-radius: 999px;
background: var(--banana);
color: #63530a;
font-size: 12px;
font-weight: 820;
}

.room-card h3 {
margin-bottom: 10px;
font-size: 25px;
}

.room-card p {
margin-bottom: 5px;
font-size: 15px;
}

.people-section {
position: relative;
margin-top: 108px;
padding: 82px 0 96px;
background:
linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 248, 251, 0.96)),
repeating-linear-gradient(90deg, rgba(29, 29, 31, 0.035) 0 1px, transparent 1px 86px);
}

.people-shell {
width: min(1320px, calc(100% - 32px));
margin: 0 auto;
}

.people-intro {
display: grid;
gap: 12px;
margin-bottom: 58px;
}

.people-intro p {
margin-bottom: 0;
color: #6b8f36;
font-size: 12px;
font-weight: 840;
text-transform: uppercase;
}

.people-intro h2 {
font-size: clamp(58px, 9vw, 132px);
line-height: 0.9;
}

.people-category {
position: relative;
isolation: isolate;
margin-top: 58px;
padding-top: 18px;
}

.people-category::before {
content: attr(data-bg);
position: absolute;
top: -8px;
left: -6px;
z-index: -1;
max-width: 100%;
color: rgba(29, 29, 31, 0.045);
font-size: clamp(54px, 11vw, 150px);
font-weight: 860;
line-height: 0.86;
letter-spacing: 0;
pointer-events: none;
}

.people-category h3 {
margin-bottom: 20px;
font-size: clamp(34px, 5.8vw, 86px);
}

.people-roster {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 18px 22px;
align-items: end;
}

.person-portrait {
--portrait-scale: 1;
--portrait-width: calc(100% + 90px);
--portrait-bottom: 38px;
--portrait-height: calc(100% - 42px);
--portrait-fit: contain;
--portrait-position: center bottom;

position: relative;
min-height: 225px;
overflow: hidden;
padding: 10px 12px 12px;
border-radius: 8px;
border: 1px solid rgba(29, 29, 31, 0.08);
background: #ffffff;
box-shadow: 0 18px 46px rgba(29, 29, 31, 0.06);
}

.person-portrait img {
position: absolute;
left: 50%;
bottom: var(--portrait-bottom);
width: var(--portrait-width);
height: var(--portrait-height);
max-width: none;
object-fit: var(--portrait-fit);
object-position: var(--portrait-position);
transform: translateX(-50%) scale(var(--portrait-scale));
transform-origin: center bottom;
}

.person-portrait[data-person="JOO"] {
--portrait-scale: 0.9;
--portrait-width: 100%;
}

.person-portrait[data-person="SANDY"] {
--portrait-fit: cover;
--portrait-position: center 28%;
--portrait-scale: 1;
--portrait-width: 100%;
}

.person-portrait[data-person="PANG"] {
--portrait-scale: 1.34;
--portrait-width: 100%;
}

.person-portrait[data-person="BEAR"] {
--portrait-scale: 1.3;
--portrait-width: 100%;
}

.person-portrait[data-person="BAO"] {
--portrait-scale: 1.18;
--portrait-width: 100%;
}

.person-portrait[data-person="JAONEEL"] {
--portrait-scale: 1.16;
--portrait-width: 100%;
}

.person-portrait[data-person="PRANK"] {
--portrait-scale: 1.14;
--portrait-width: 100%;
}

.person-portrait[data-person="SANDY"] img,
.person-portrait[data-person="PANG"] img,
.person-portrait[data-person="BEAR"] img,
.person-portrait[data-person="BAO"] img,
.person-portrait[data-person="JAONEEL"] img,
.person-portrait[data-person="PRANK"] img {
top: 12px;
bottom: auto;
transform-origin: center top;
}

.person-portrait[data-person="SUPA"] {
--portrait-scale: 1.25;
--portrait-width: 100%;
}

.person-portrait[data-person="SUPA"] img {
top: 12px;
bottom: auto;
transform-origin: center top;
}

.person-portrait span {
position: absolute;
left: 8px;
right: 8px;
bottom: 8px;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
min-height: 38px;
padding: 0 10px;
border: 1px solid rgba(29, 29, 31, 0.1);
border-radius: 999px;
background: rgba(255, 255, 255, 0.92);
color: #1d1d1f;
font-size: clamp(16px, 1.8vw, 22px);
font-weight: 840;
line-height: 1;
text-align: center;
box-shadow: 0 10px 28px rgba(29, 29, 31, 0.08);
backdrop-filter: blur(16px);
}

.contact-section {
display: grid;
grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
gap: 36px;
margin-top: 0;
padding: 88px 0 56px;
}

.contact-copy {
display: grid;
align-content: start;
gap: 12px;
}

.contact-details {
display: grid;
gap: 14px;
}

.contact-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
}

.contact-grid article {
min-height: 210px;
padding: 20px;
border: 1px solid var(--line);
border-radius: 8px;
background: var(--panel);
box-shadow: 0 12px 32px rgba(29, 29, 31, 0.05);
}

.contact-grid article:nth-child(1) {
background: linear-gradient(180deg, #ffffff, var(--sky));
}

.contact-grid article:nth-child(2) {
background: linear-gradient(180deg, #ffffff, var(--banana));
}

.contact-grid article:nth-child(3) {
background: linear-gradient(180deg, #ffffff, var(--mint));
}

.contact-grid article:nth-child(4) {
background: linear-gradient(180deg, #ffffff, var(--peach));
}

.contact-grid h3 {
margin-bottom: 14px;
font-size: 22px;
}

.contact-grid a {
display: block;
width: fit-content;
margin-bottom: 8px;
color: #1666a2;
font-weight: 720;
overflow-wrap: anywhere;
}

.contact-grid p {
margin-bottom: 8px;
font-size: 15px;
line-height: 1.45;
}

.contact-map {
margin: 0;
overflow: hidden;
border: 1px solid var(--line);
border-radius: 8px;
background: #ffffff;
box-shadow: 0 18px 42px rgba(37, 71, 95, 0.08);
}

.contact-map img {
display: block;
width: 100%;
aspect-ratio: 5 / 3.2;
object-fit: cover;
}

.social-links {
grid-column: 1 / -1;
display: flex;
flex-wrap: wrap;
gap: 10px;
padding-top: 8px;
}

.social-links a {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 42px;
padding: 0 16px;
border: 1px solid var(--line);
border-radius: 999px;
background: rgba(255, 255, 255, 0.78);
color: #424245;
font-size: 14px;
font-weight: 720;
}

@media (max-width: 980px) {
.site-nav {
align-items: flex-start;
}

.site-nav nav {
max-width: 520px;
}

.intro,
.contact-section {
grid-template-columns: 1fr;
}

.hero {
min-height: auto;
padding-top: 210px;
}

.hero::before {
background:
linear-gradient(180deg, rgba(8, 9, 9, 0.16) 0%, rgba(8, 9, 9, 0.34) 38%, rgba(8, 9, 9, 0.88) 100%),
linear-gradient(90deg, rgba(8, 9, 9, 0.42), rgba(8, 9, 9, 0.08));
}

.hero-copy {
padding-bottom: 34px;
}

.capabilities-layout {
grid-template-columns: 1fr;
gap: 42px;
}

.capabilities-section h2 {
margin-bottom: 42px;
}

.filmography-panel,
.dubbing-section {
grid-template-columns: 1fr;
}

.label-grid {
grid-template-columns: 1fr;
}

.studio-gallery {
grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.featured-slide {
flex-basis: 86vw;
min-height: 620px;
}

.featured-content {
right: min(42vw, 480px);
}

.featured-poster {
width: min(36vw, 360px);
}

.client-strip {
grid-template-columns: repeat(3, minmax(0, 1fr));
}

.people-roster {
grid-template-columns: repeat(3, minmax(0, 1fr));
}

.person-portrait {
min-height: 180px;
}
}

@media (max-width: 720px) {
.site-nav {
top: 8px;
flex-direction: row;
align-items: center;
gap: 12px;
width: min(var(--max), calc(100% - 20px));
margin-top: 8px;
}

.site-nav .desktop-nav {
display: none;
}

.mobile-menu {
display: block;
flex: 0 0 auto;
}

.hero {
gap: 32px;
width: min(var(--max), calc(100% - 20px));
margin-top: 10px;
padding: 158px 18px 18px;
}

.hero-image {
object-position: 42% center;
}

.hero h1 {
font-size: clamp(44px, 12vw, 58px);
}

.hero-text {
font-size: 18px;
line-height: 1.36;
}

.hero-actions {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-actions .button {
min-height: 52px;
padding: 0 12px;
}

.studio-stats,
.contact-grid {
grid-template-columns: 1fr;
}

.studio-stats div {
min-height: auto;
}

.intro {
padding: 28px;
}

.section {
padding-top: 72px;
}

.studio-gallery,
.room-grid,
.client-strip {
grid-template-columns: 1fr;
}

.capabilities-section {
padding-top: 72px;
}

.capabilities-outline {
margin-bottom: 10px;
font-size: clamp(42px, 15vw, 82px);
}

.capabilities-section h2 {
margin-bottom: 34px;
font-size: clamp(38px, 12vw, 66px);
}

.capabilities-list h3 {
margin-bottom: 24px;
}

.capabilities-copy p {
font-size: clamp(18px, 5.8vw, 24px);
line-height: 1.42;
}

.people-roster {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.filmography-list {
columns: 1;
padding: 22px 24px 22px 42px;
}

.dubbing-copy,
.dubbing-card {
min-height: auto;
padding: 28px;
}

.featured-slider {
gap: 8px;
}

.featured-slide {
flex-basis: 100vw;
min-height: 680px;
scroll-snap-align: start;
}

.featured-slide::after {
background:
linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.38) 36%, rgba(0, 0, 0, 0.88) 100%),
linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.08));
}

.featured-poster {
right: 50%;
bottom: 150px;
width: min(64vw, 300px);
height: 390px;
border-radius: 8px;
transform: translateX(50%);
}

.featured-content {
left: 20px;
right: 20px;
bottom: 28px;
gap: 12px;
}

.featured-content h3 {
font-size: clamp(40px, 13vw, 62px);
}

.featured-content p {
font-size: 16px;
}

.studio-gallery img:nth-child(3n + 2) {
margin-top: 0;
}

.people-section {
margin-top: 72px;
padding-top: 62px;
}

.people-intro {
margin-bottom: 34px;
}

.people-category {
margin-top: 40px;
}

.person-portrait {
min-height: 215px;
}
}

@media (max-width: 420px) {
.brand-lockup span {
max-width: 140px;
}

.site-nav nav a {
padding: 8px 10px;
font-size: 13px;
}

h1 {
font-size: 48px;
}

.hero {
padding-top: 150px;
}

.featured-slide {
min-height: 640px;
}

.featured-poster {
bottom: 170px;
width: min(70vw, 260px);
height: 340px;
}

.featured-meta span {
min-height: 28px;
font-size: 11px;
}

.person-portrait {
min-height: 390px;
}

.person-portrait img {
width: var(--portrait-width);
}

.person-portrait span {
min-height: 48px;
font-size: 24px;
}
}
