:root {
  --black: #050505;
  --black-2: #0a0a0a;
  --charcoal: #111111;
  --gold: #c99a45;
  --gold-light: #e3ba67;
  --gold-dark: #8f672b;
  --silver: #c8cdd2;
  --paper: #f5f2eb;
  --muted: #a5a5a5;
  --line: rgba(201, 154, 69, .3);
  --serif: "Bodoni MT", Didot, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --pad: clamp(22px, 5vw, 82px);
  --max: 1600px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; overflow-x: hidden; background: var(--black); color: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.65; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold-light); color: #080808; }
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }
.skip-link { position: fixed; left: 18px; top: -100px; z-index: 999; padding: 12px 18px; background: var(--gold-light); color: #050505; transition: top .2s; }
.skip-link:focus { top: 18px; }
.grain { position: fixed; inset: 0; pointer-events: none; z-index: 80; opacity: .035; 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='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 70; height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 7px var(--pad); border-bottom: 1px solid rgba(201,154,69,.24); background: #050505; }
.brand { display: grid; place-items: center; width: 94px; height: 90px; flex: 0 0 auto; }
.brand img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 1.8vw, 32px); }
.main-nav a { position: relative; color: #dedbd4; font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--gold-light); transition: right .35s ease; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }
.nav-cta { padding: 12px 17px; border: 1px solid var(--gold); transition: color .3s, background .3s; }
.nav-cta:hover { color: #070707; background: var(--gold-light); }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: #080808; }
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: var(--paper); transition: transform .35s; }
.menu-open .menu-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }

.section { position: relative; padding: clamp(90px, 10vw, 160px) var(--pad); }
.section-inner { width: min(100%, var(--max)); margin-inline: auto; }
.eyebrow { margin: 0 0 24px; color: var(--gold-light); font-size: 10px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 44px; height: 1px; margin: 0 13px 3px 0; background: var(--gold); }
.display { margin: 0; font-family: var(--serif); font-size: clamp(58px, 8vw, 142px); font-weight: 400; letter-spacing: -.055em; line-height: .86; }
.display em { color: var(--gold-light); font-weight: 400; }
.title { margin: 0; font-family: var(--serif); font-size: clamp(46px, 6vw, 102px); font-weight: 400; letter-spacing: -.045em; line-height: .92; }
.title em { color: var(--gold); font-weight: 400; }
.lead { font-family: var(--serif); font-size: clamp(24px, 2.5vw, 40px); line-height: 1.28; }
.muted { color: var(--muted); }
.gold { color: var(--gold-light); }
.silver { color: var(--silver); }
.rule { height: 1px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), transparent); transform-origin: left; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 52px; padding: 12px 20px; border: 1px solid var(--gold); color: var(--paper); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; transition: background .3s, color .3s, transform .3s; }
.btn:hover { color: #070707; background: var(--gold-light); transform: translateY(-3px); }
.btn.light { color: #080808; border-color: #080808; }
.btn.light:hover { color: var(--paper); background: #080808; }
.text-link { display: inline-flex; align-items: center; gap: 28px; padding-bottom: 7px; border-bottom: 1px solid var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.text-link span { color: var(--gold-light); font-size: 19px; transition: transform .3s; }
.text-link:hover span { transform: translate(4px,-4px); }

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; isolation: isolate; padding: 150px var(--pad) 9vh; overflow: hidden; }
.hero-bg { position: absolute; inset: -5%; z-index: -3; background: url("hero-cinema.jpg") center/cover no-repeat; transform: scale(1.03); }
.hero-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.72) 43%, rgba(0,0,0,.1) 82%), linear-gradient(0deg, rgba(0,0,0,.85), transparent 55%); }
.hero-content { width: min(100%, var(--max)); margin-inline: auto; }
.hero-copy { width: min(100%, 1130px); }
.hero .display { max-width: 1000px; }
.hero-line { display: block; overflow: hidden; padding: 0 0 .08em; }
.hero-line > span { display: block; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 13px; margin-top: 36px; }
.hero-summary { width: min(560px, 100%); margin: 30px 0 0; color: #cecbc3; font-size: clamp(14px, 1.1vw, 17px); }
.hero-tag { position: absolute; right: var(--pad); bottom: 7vh; writing-mode: vertical-rl; color: #c2beb6; font-size: 8px; letter-spacing: .3em; text-transform: uppercase; }
.hero-tag::before { content: ""; display: inline-block; width: 1px; height: 68px; margin-bottom: 14px; background: linear-gradient(var(--gold), transparent); }
.glint-line { position: absolute; left: var(--pad); right: var(--pad); bottom: 0; height: 1px; overflow: hidden; background: rgba(201,154,69,.24); }
.glint-line::after { content: ""; position: absolute; top: -1px; left: -20%; width: 16%; height: 3px; background: linear-gradient(90deg, transparent, #fff4bd, transparent); animation: glint 7s linear infinite; }
@keyframes glint { to { left: 110%; } }

.page-hero { position: relative; min-height: 72svh; display: flex; align-items: flex-end; isolation: isolate; padding: 160px var(--pad) 9vh; overflow: hidden; }
.page-hero .section-inner { position: relative; z-index: 2; }
.page-hero .title { max-width: 1050px; font-size: clamp(62px, 8.5vw, 150px); }
.page-hero p:last-child { max-width: 650px; color: #c2c0bb; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 75% 35%, rgba(201,154,69,.18), transparent 25%), linear-gradient(135deg,#080808,#030303 70%); }
.page-hero.image-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--page-image) center/cover no-repeat; opacity: .5; }
.page-hero.image-hero::after { background: linear-gradient(90deg,rgba(0,0,0,.93),rgba(0,0,0,.42)),linear-gradient(0deg,rgba(0,0,0,.86),transparent); }
.micro-hero { --page-image: url("microdrama-set.jpg"); }
.production-hero { --page-image: url("production-camera.jpg"); }
.studio-hero { --page-image: url("dubbing-studio.jpg"); }
.light-hero { --page-image: url("cta-light.jpg"); }

.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--gold-light); color: #080808; }
.marquee-track { display: flex; width: max-content; padding: 17px 0 15px; animation: marquee 26s linear infinite; }
.marquee span { display: inline-flex; align-items: center; white-space: nowrap; font-family: var(--serif); font-size: clamp(22px, 2.5vw, 40px); letter-spacing: .02em; }
.marquee span::after { content: "◆"; margin: 0 32px; font-size: .42em; }
@keyframes marquee { to { transform: translateX(-50%); } }

.intro { color: #151515; background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: start; }
.intro .eyebrow { color: var(--gold-dark); }
.intro-copy { max-width: 760px; }
.intro-copy .lead { margin-top: 0; }
.intro-copy p:not(.lead) { color: #4f4d48; }
.philosophy { margin-top: clamp(70px, 9vw, 130px); display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid rgba(0,0,0,.18); }
.philosophy article { min-height: 300px; padding: clamp(24px,3vw,46px); border-right: 1px solid rgba(0,0,0,.18); }
.philosophy article:last-child { border: 0; }
.philosophy h3 { margin: 38px 0 14px; font-family: var(--serif); font-size: clamp(32px,3vw,48px); font-weight: 400; }
.philosophy p { color: #5b5954; }

.services-section { background: #080808; }
.section-head { display: grid; grid-template-columns: .65fr 1.35fr; gap: 7vw; margin-bottom: 70px; }
.service-list { border-top: 1px solid var(--line); }
.service-row { position: relative; display: grid; grid-template-columns: 1fr .8fr 60px; gap: 30px; align-items: center; min-height: 220px; padding: 24px 0; border-bottom: 1px solid var(--line); overflow: hidden; transition: padding .35s, background .35s; }
.service-row:hover { padding-inline: 24px; background: linear-gradient(90deg,rgba(201,154,69,.11),transparent); }
.service-row h3 { margin: 0; font-family: var(--serif); font-size: clamp(32px,3.5vw,58px); font-weight: 400; line-height: 1.04; }
.service-row ul { list-style: none; margin: 0; padding: 0; color: var(--muted); font-size: 13px; }
.service-row li { margin: 5px 0; }
.round-arrow { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid var(--line); border-radius: 50%; color: var(--gold-light); font-size: 20px; transition: transform .3s, background .3s, color .3s; }
.service-row:hover .round-arrow { color: #080808; background: var(--gold-light); transform: rotate(45deg); }

.split-feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 880px; background: #0d0d0d; }
.feature-image { min-height: 680px; overflow: hidden; }
.feature-image img { height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.feature-image:hover img { transform: scale(1.035); }
.feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px,8vw,130px) var(--pad); }
.feature-copy p { max-width: 660px; color: #aaa7a0; }
.frame-list { margin: 30px 0 38px; display: grid; gap: 10px; }
.frame-list span { padding: 13px 0; border-bottom: 1px solid var(--line); color: #d3d0c9; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }

.leadership-preview { background: #0f0f0e; }
.leader-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(24px,4vw,64px); align-items: start; max-width: 1120px; margin-top: 70px; }
.leader-card:nth-child(2) { margin-top: 100px; }
.leader-card:nth-child(3) { margin-top: 42px; }
.portrait { position: relative; aspect-ratio: 4/5; overflow: hidden; border: 1px solid var(--line); background: #101010; }
.portrait img { height: 100%; object-fit: cover; filter: saturate(.62) contrast(1.06); transition: transform .7s, filter .7s; }
.leader-card:hover .portrait img { transform: scale(1.025); filter: saturate(.9) contrast(1.03); }
.placeholder-flag { position: absolute; left: 15px; bottom: 15px; padding: 7px 9px; background: rgba(0,0,0,.82); color: #d8d4ca; font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.leader-card .meta { display: flex; justify-content: flex-start; gap: 12px; padding-top: 18px; color: var(--gold); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.leader-card h3 { margin: 15px 0 5px; font-family: var(--serif); font-size: clamp(32px,3vw,50px); font-weight: 400; line-height: 1; }
.leader-card > p { margin: 0; color: #99968f; font-size: 13px; }

.film-section { background: var(--paper); color: #111; }
.film-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 10vw; align-items: center; }
.film-list { border-top: 1px solid rgba(0,0,0,.25); }
.film-list h3 { margin: 32px 0 12px; color: var(--gold-dark); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.film-list ol { list-style: none; margin: 0; padding: 0; }
.film-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 30px; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,.14); transition: padding .3s, color .3s; }
.film-list li:hover { padding-inline: 12px; color: var(--gold-dark); }
.film-list li span { font-family: var(--serif); font-size: clamp(24px,2.4vw,39px); line-height: 1.1; }
.film-list li b { color: #706d66; font-size: 10px; letter-spacing: .15em; }

.stats-section { background: #070707; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 60px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.stat { min-height: 300px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat strong { display: block; color: var(--gold-light); font-family: var(--serif); font-size: clamp(44px,4vw,70px); font-weight: 400; line-height: 1; }
.stat h3 { margin: 70px 0 8px; font-family: var(--serif); font-size: 26px; font-weight: 400; }
.stat p { margin: 0; color: #8e8b84; font-size: 12px; }

.why-section { color: #101010; background: var(--silver); }
.why-grid { display: grid; grid-template-columns: repeat(5,1fr); margin-top: 70px; border-top: 1px solid rgba(0,0,0,.22); }
.why-item { min-height: 340px; padding: 28px 22px; border-right: 1px solid rgba(0,0,0,.22); }
.why-item:last-child { border: 0; }
.why-item h3 { margin: 62px 0 16px; font-family: var(--serif); font-size: 25px; font-weight: 400; line-height: 1.1; }
.why-item p { color: #514f4a; font-size: 12px; }
.closing-line { margin: 70px 0 0; font-family: var(--serif); font-size: clamp(28px,3.4vw,55px); line-height: 1.15; }

.cta-section { position: relative; min-height: 650px; display: flex; align-items: center; isolation: isolate; overflow: hidden; }
.cta-section::before { content: ""; position: absolute; inset: 0; z-index: -2; background: url("cta-light.jpg") center/cover no-repeat; }
.cta-section::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg,rgba(0,0,0,.93),rgba(0,0,0,.42)); }
.cta-section .title { max-width: 980px; }
.cta-section .btn { margin-top: 36px; }

.editorial-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 9vw; }
.body-copy { max-width: 820px; }
.body-copy h2 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(42px,5vw,78px); font-weight: 400; line-height: 1; }
.body-copy h3 { margin: 45px 0 12px; font-family: var(--serif); font-size: 30px; font-weight: 400; }
.body-copy p { color: #aaa7a0; }
.paper { color: #121212; background: var(--paper); }
.paper .body-copy p { color: #504e49; }

.leader-profile { display: grid; grid-template-columns: .85fr 1.15fr; gap: 8vw; align-items: start; padding-block: clamp(80px,10vw,150px); border-bottom: 1px solid var(--line); }
.leader-profile:nth-child(even) { grid-template-columns: 1.15fr .85fr; gap: 3vw; }
.leader-profile:nth-child(even) .profile-visual { order: 2; }
.leader-profile:nth-child(even) .profile-visual .portrait { margin-left: auto; }
.profile-visual { position: sticky; top: 120px; }
.profile-visual .portrait { max-height: 720px; }
.profile-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(55px,6vw,104px); font-weight: 400; line-height: .9; }
.profile-copy h3 { margin: 18px 0 38px; color: var(--gold-light); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.profile-copy p { color: #aaa7a0; }

.facility-gallery { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; margin-top: 70px; }
.facility-gallery figure { margin: 0; min-height: 650px; overflow: hidden; }
.facility-gallery figure:last-child { min-height: 420px; align-self: end; }
.facility-gallery img { height: 100%; object-fit: cover; }
.facility-gallery figcaption { padding-top: 12px; color: #87847d; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.equipment-list { display: grid; grid-template-columns: repeat(2,1fr); margin-top: 55px; border-top: 1px solid var(--line); }
.equipment-list span { padding: 18px 5px; border-bottom: 1px solid var(--line); color: #c7c4bc; font-size: 12px; }

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; }
.contact-blocks { display: grid; gap: 34px; margin-top: 55px; }
.contact-block span { display: block; margin-bottom: 7px; color: var(--gold); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.contact-block a, .contact-block address { font-family: var(--serif); font-size: clamp(22px,2vw,34px); font-style: normal; line-height: 1.35; }
.contact-form { padding: clamp(28px,4vw,55px); border: 1px solid var(--line); background: #0c0c0c; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1/-1; }
.field label { color: #a7a39a; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid #ffffff30; border-radius: 0; outline: 0; background: transparent; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-light); }
.field textarea { min-height: 120px; resize: vertical; }
.form-note { color: #7f7c75; font-size: 11px; }

.not-found { min-height: 100svh; display: grid; place-items: center; padding: 130px var(--pad) 60px; text-align: center; background: radial-gradient(circle,rgba(201,154,69,.12),transparent 32%),#050505; }
.not-found strong { display: block; color: var(--gold-light); font-family: var(--serif); font-size: clamp(120px,25vw,360px); font-weight: 400; line-height: .7; opacity: .25; }
.not-found h1 { margin: -20px 0 15px; font-family: var(--serif); font-size: clamp(45px,7vw,95px); font-weight: 400; }

.site-footer { padding: 70px var(--pad) 35px; border-top: 1px solid var(--line); background: #030303; }
.footer-top { width: min(100%,var(--max)); margin: auto; display: grid; grid-template-columns: .65fr 1fr 1fr; gap: 7vw; }
.footer-brand img { width: 190px; height: 190px; object-fit: contain; object-position: center; }
.footer-brand p { color: var(--gold-light); font-family: var(--serif); font-size: 22px; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 30px; align-content: start; }
.footer-nav a { color: #afaca5; font-size: 12px; }
.footer-contact { color: #99968f; font-size: 12px; }
.footer-contact a { display: block; margin-bottom: 8px; color: var(--paper); }
.footer-bottom { width: min(100%,var(--max)); margin: 50px auto 0; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid #ffffff14; color: #6f6c66; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.reveal, .reveal-text { will-change: transform, opacity; }

@media (max-width: 1100px) {
  .brand { position: relative; z-index: 3; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  body::before { content: ""; position: fixed; inset: 0; z-index: 60; background: rgba(0,0,0,.72); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .35s ease, visibility .35s ease; }
  body.menu-open::before { opacity: 1; visibility: visible; pointer-events: auto; }
  .main-nav { position: fixed; inset: 0 0 0 auto; z-index: 2; width: min(88vw, 430px); height: 100vh; height: 100dvh; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 118px 30px 38px; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; background: #050505; border-left: 1px solid var(--line); box-shadow: -28px 0 70px rgba(0,0,0,.42); visibility: hidden; transform: translateX(104%); transition: transform .45s cubic-bezier(.77,0,.18,1), visibility .45s; }
  .menu-open .main-nav { visibility: visible; transform: translateX(0); }
  .main-nav a { display: flex; align-items: center; width: 100%; min-height: 62px; padding: 13px 2px; border-bottom: 1px solid rgba(255,255,255,.12); font-family: var(--serif); font-size: clamp(27px,4.4vw,38px); font-weight: 400; line-height: 1.05; letter-spacing: -.02em; text-transform: none; white-space: normal; }
  .main-nav a::after { display: none; }
  .main-nav a[aria-current="page"] { color: var(--gold-light); }
  .main-nav .nav-cta { min-height: 56px; margin-top: 24px; padding: 13px 18px; justify-content: center; border: 1px solid var(--gold); font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
  .main-nav .nav-cta:hover, .main-nav .nav-cta:focus-visible { color: #050505; background: var(--gold-light); }
  .intro-grid, .film-layout, .editorial-grid { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 25px; }
  .leader-grid { grid-template-columns: 1fr 1fr; }
  .leader-card:nth-child(2), .leader-card:nth-child(3) { margin-top: 0; }
  .leader-card:nth-child(3) { grid-column: 1/2; }
  .split-feature { grid-template-columns: 1fr; }
  .feature-image { min-height: 60vw; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-item:nth-child(even) { border-right: 0; }
  .leader-profile { gap: 5vw; }
  .facility-gallery { grid-template-columns: 1fr; }
  .facility-gallery figure, .facility-gallery figure:last-child { min-height: 60vw; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  :root { --pad: 20px; }
  body { font-size: 15px; }
  .site-header { height: 82px; padding-block: 4px; }
  .brand { width: 72px; height: 72px; }
  .menu-toggle { width: 44px; height: 44px; }
  .main-nav { width: 100%; padding: 101px 22px 30px; border-left: 0; }
  .main-nav a { min-height: 56px; padding-block: 10px; font-size: clamp(27px, 8vw, 34px); }
  .main-nav .nav-cta { margin-top: 20px; }
  .display, .title, .page-hero .title, .profile-copy h2, .body-copy h2, .not-found h1 { max-width: 100%; overflow-wrap: anywhere; text-wrap: balance; }
  .display { font-size: clamp(43px, 12.5vw, 57px); line-height: .93; letter-spacing: -.042em; }
  .title { font-size: clamp(39px, 11.2vw, 51px); line-height: .96; letter-spacing: -.038em; }
  .lead { font-size: clamp(21px, 6.2vw, 27px); }
  .eyebrow { margin-bottom: 17px; font-size: 9px; letter-spacing: .19em; }
  .eyebrow::before { width: 28px; margin-right: 9px; }
  .section { padding-block: 72px; }
  .hero { min-height: 100svh; padding: 112px 20px 54px; align-items: flex-end; }
  .hero-bg { background-position: 66% center; }
  .hero-shade { background: linear-gradient(90deg,rgba(0,0,0,.88),rgba(0,0,0,.48)),linear-gradient(0deg,rgba(0,0,0,.94),transparent 72%); }
  .hero .display { font-size: clamp(42px, 12.2vw, 56px); line-height: .94; }
  .hero-line { overflow: visible; padding-bottom: .13em; }
  .hero-summary { margin-top: 18px; font-size: 13px; line-height: 1.55; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 24px; }
  .hero-actions .btn { width: 100%; }
  .hero-tag { display: none; }
  .page-hero { min-height: 0; display: block; padding: 122px 20px 58px; }
  .page-hero .title { font-size: clamp(43px, 12.4vw, 57px); line-height: .95; }
  .page-hero .hero-summary { margin-top: 20px; }
  .marquee-track { padding-block: 12px 11px; }
  .marquee span { font-size: 22px; }
  .marquee span::after { margin-inline: 20px; }
  .intro-grid { gap: 42px; }
  .intro-copy .lead { margin-top: 0; }
  .philosophy { grid-template-columns: 1fr; }
  .philosophy article { min-height: 0; padding: 28px 24px; border-right: 0; border-bottom: 1px solid rgba(0,0,0,.18); }
  .philosophy h3 { margin: 0 0 10px; }
  .section-head { gap: 18px; margin-bottom: 42px; }
  .service-row { grid-template-columns: minmax(0,1fr) 38px; gap: 13px; min-height: 0; padding-block: 28px; }
  .service-row ul { grid-column: 1/3; }
  .service-row h3 { min-width: 0; font-size: clamp(27px, 8vw, 34px); overflow-wrap: anywhere; }
  .service-row:hover { padding-inline: 0; }
  .round-arrow { width: 38px; height: 38px; }
  .split-feature { min-height: 0; }
  .feature-image { min-height: 72vw; max-height: 460px; }
  .feature-copy { padding: 68px 20px; }
  .frame-list { margin-block: 24px 30px; }
  .frame-list span { font-size: 10px; letter-spacing: .06em; }
  .leader-grid { grid-template-columns: 1fr; }
  .leader-card:nth-child(3) { grid-column: auto; }
  .leader-grid { gap: 46px; margin-top: 42px; }
  .leader-card h3 { font-size: 38px; }
  .placeholder-flag { right: 12px; left: 12px; bottom: 12px; font-size: 7px; letter-spacing: .1em; text-align: center; }
  .film-layout { gap: 48px; }
  .film-list li { align-items: flex-start; gap: 12px; }
  .film-list li span { min-width: 0; font-size: clamp(20px, 6.5vw, 28px); overflow-wrap: anywhere; word-break: break-word; }
  .film-list li b { flex: 0 0 auto; padding-top: 3px; }
  .stats-grid, .why-grid { grid-template-columns: 1fr; }
  .stats-grid, .why-grid { margin-top: 42px; }
  .stat { min-height: 0; padding: 28px 24px; }
  .stat strong { font-size: 48px; }
  .stat h3 { margin: 32px 0 6px; }
  .why-item { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.22); }
  .why-item { min-height: 0; padding: 32px 24px; }
  .why-item h3 { margin: 22px 0 10px; }
  .closing-line { margin-top: 45px; font-size: 28px; }
  .cta-section { min-height: 540px; }
  .cta-section .title { font-size: clamp(40px, 11vw, 49px); }
  .leader-profile { grid-template-columns: 1fr; }
  .leader-profile { gap: 38px; padding-block: 72px; }
  .leader-profile:nth-child(even) { grid-template-columns: 1fr; gap: 38px; }
  .leader-profile:nth-child(even) .profile-visual { order: initial; }
  .profile-visual { position: static; }
  .profile-copy h2 { font-size: clamp(45px, 13vw, 58px); }
  .profile-copy h3 { margin: 13px 0 28px; font-size: 10px; line-height: 1.5; }
  .facility-gallery { gap: 38px; margin-top: 42px; }
  .facility-gallery figure, .facility-gallery figure:last-child { min-height: 72vw; }
  .facility-gallery figcaption { line-height: 1.5; }
  .equipment-list { grid-template-columns: 1fr; }
  .contact-layout { gap: 68px; }
  .contact-blocks { gap: 28px; margin-top: 42px; }
  .contact-block a, .contact-block address { font-size: 22px; overflow-wrap: anywhere; word-break: break-word; }
  .contact-form { padding: 26px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .field input, .field select, .field textarea { min-width: 0; font-size: 16px; }
  .btn { width: 100%; min-height: 54px; padding-inline: 14px; text-align: center; }
  .text-link { max-width: 100%; overflow-wrap: anywhere; }
  .site-footer { padding: 55px 20px 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top { gap: 38px; }
  .footer-brand img { width: 150px; height: 150px; }
  .footer-nav { gap: 12px 20px; }
  .footer-contact, .footer-contact a, .footer-contact address { overflow-wrap: anywhere; word-break: break-word; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom { margin-top: 38px; }
}

@media (max-width: 430px) {
  .hero .display { font-size: clamp(39px, 11.7vw, 50px); }
  .page-hero .title { font-size: clamp(40px, 11.8vw, 51px); }
  .title { font-size: clamp(37px, 10.8vw, 46px); }
  .display { font-size: clamp(40px, 11.8vw, 51px); }
  .contact-block a, .contact-block address { font-size: 20px; }
  .footer-nav { grid-template-columns: 1fr; }
}

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