:root {
  --ink: #11120f;
  --paper: #f1efe8;
  --white: #fffef9;
  --emerald: #0c5b45;
  --emerald-deep: #084333;
  --line-dark: rgba(17, 18, 15, .24);
  --line-light: rgba(255, 254, 249, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: geometricPrecision;
}

a { color: inherit; text-decoration: none; }
img, video, iframe { display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
::selection { color: var(--white); background: var(--emerald); }

.portfolio,
.film-detail {
  min-height: 100vh;
  overflow: clip;
  background: var(--paper);
}

.portfolio-header,
.film-detail-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 72px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.wordmark {
  width: max-content;
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-transform: uppercase;
}

.wordmark b {
  font-size: 15px;
  line-height: 1;
  letter-spacing: -.04em;
}

.wordmark span,
.portfolio-header nav,
.language-switch,
.film-back {
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.wordmark span { color: var(--emerald); }
.portfolio-header nav { display: flex; gap: 30px; }
.portfolio-header nav a,
.film-back { position: relative; padding: 10px 0; }
.portfolio-header nav a::after,
.film-back::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}
.portfolio-header nav a:hover::after,
.film-back:hover::after { transform: scaleX(1); transform-origin: left; }

.language-switch {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 11px;
}

.language-switch a { opacity: .42; transition: opacity .2s; }
.language-switch a:hover { opacity: 1; }
.language-switch span { color: var(--emerald); }
.menu-button { display: none; }

.portfolio-hero {
  min-height: 780px;
  height: 100svh;
  max-height: 1080px;
  padding: 116px 32px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  grid-template-rows: 1fr auto auto;
  column-gap: clamp(34px, 5vw, 88px);
  row-gap: 30px;
  background: var(--paper);
}

.hero-name {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  align-self: end;
}

.overline {
  margin: 0 0 clamp(28px, 5vh, 54px);
  color: var(--emerald);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-name h1 {
  margin: 0;
  font-size: clamp(82px, 10.7vw, 180px);
  font-weight: 500;
  line-height: .78;
  letter-spacing: -.085em;
  text-transform: uppercase;
}

.hero-name h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
  animation: hero-rise .9s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-name h1 span:last-child {
  color: var(--emerald);
  animation-delay: .08s;
}

.hero-note {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 36px;
  align-items: end;
}

.hero-note > p {
  max-width: 570px;
  margin: 0;
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.45;
  letter-spacing: -.018em;
}

.hero-note > a {
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-note > a span { color: var(--emerald); transition: transform .25s ease; }
.hero-note > a:hover span { transform: translateY(4px); }

.hero-film {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 0;
  overflow: hidden;
  background: #23241f;
  animation: media-enter 1.05s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-film video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.04);
  transition: transform 1.1s cubic-bezier(.22, 1, .36, 1), filter .8s ease;
}

.hero-film:hover video { transform: scale(1.025); filter: saturate(.94); }

.hero-film-caption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 50px 17px 15px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 0, 0, .64));
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-footer {
  grid-column: 1 / -1;
  grid-row: 3;
  padding-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--line-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-footer span:nth-child(2) { text-align: center; }
.hero-footer span:last-child { text-align: right; }

.section-label {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-label span {
  width: 44px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 100px;
}
.section-label p { margin: 0; }
.section-label.light { color: var(--white); }

.profile-section {
  padding: 110px 32px 132px;
  color: var(--white);
  background: var(--emerald);
}

.profile-grid {
  margin-top: 66px;
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 9vw, 150px);
  align-items: start;
}

.profile-image { margin: 0; }
.profile-image img {
  width: 100%;
  max-height: 780px;
  aspect-ratio: .76;
  object-fit: cover;
  object-position: center 23%;
  filter: saturate(.74) contrast(1.05);
  transition: filter .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}
.profile-image:hover img { filter: saturate(.95); transform: scale(.992); }
.profile-image figcaption {
  padding-top: 12px;
  border-top: 1px solid var(--line-light);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.profile-copy { padding-top: clamp(10px, 4vw, 64px); }
.profile-copy h2 {
  max-width: 920px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6.8vw, 112px);
  font-weight: 400;
  font-style: italic;
  line-height: .92;
  letter-spacing: -.055em;
}
.profile-text {
  max-width: 720px;
  margin-top: clamp(60px, 9vw, 132px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 38px;
}
.profile-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.58;
}
.profile-text p:first-child {
  grid-column: 1 / -1;
  max-width: 620px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.38;
}
.profile-tags {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.profile-tags span,
.studio-formats span {
  padding: 9px 13px;
  border: 1px solid currentColor;
  border-radius: 100px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
}

.selected-film {
  padding: 118px 32px 145px;
  background: var(--white);
}

.film-heading {
  margin-top: 66px;
  display: grid;
  grid-template-columns: .48fr 1.52fr;
  gap: 7vw;
  align-items: end;
}
.film-heading > p {
  max-width: 410px;
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.55;
}
.film-heading h2 {
  margin: 0;
  font-size: clamp(72px, 10vw, 165px);
  font-weight: 500;
  line-height: .79;
  letter-spacing: -.085em;
  text-transform: uppercase;
}
.film-heading h2 span { display: block; }
.film-heading h2 span:nth-child(2) { color: var(--emerald); }

.film-card {
  position: relative;
  min-height: 700px;
  margin-top: 90px;
  padding: 20px 22px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.film-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--emerald);
  transform: translateY(100%);
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}
.film-card:hover::before { transform: translateY(0); }
.film-card-top,
.film-card-center,
.film-card-bottom { position: relative; z-index: 1; }
.film-card-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.film-card-center { align-self: center; text-align: center; }
.film-card-center p {
  margin: 0 0 17px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .23em;
}
.film-card-center strong {
  display: block;
  font-size: clamp(70px, 12vw, 190px);
  font-weight: 500;
  line-height: .73;
  letter-spacing: -.085em;
  text-transform: uppercase;
}
.film-card-center strong span { display: block; }
.film-card-bottom {
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.film-card-bottom b { font-size: 20px; transition: transform .3s ease; }
.film-card:hover .film-card-bottom b { transform: translate(5px, -5px); }

.director-statement {
  padding: clamp(120px, 17vw, 250px) 6vw;
  text-align: center;
  background: var(--paper);
}
.director-statement p {
  max-width: 1240px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 96px);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  letter-spacing: -.045em;
}
.director-statement > span {
  display: block;
  margin-top: 44px;
  color: var(--emerald);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.studio-section {
  padding: 118px 32px 130px;
  color: var(--white);
  background: var(--ink);
}
.studio-intro {
  margin-top: 74px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 8vw;
  align-items: end;
}
.studio-intro h2 {
  margin: 0;
  font-size: clamp(72px, 9vw, 150px);
  font-weight: 500;
  line-height: .79;
  letter-spacing: -.085em;
  text-transform: uppercase;
}
.studio-intro h2 span { display: block; }
.studio-intro h2 span:last-child { color: #3f9b79; }
.studio-intro > p {
  max-width: 470px;
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.55;
}

.studio-services {
  margin-top: 110px;
  border-top: 1px solid var(--line-light);
}
.studio-services article {
  min-height: 150px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 80px .72fr 1fr;
  gap: 36px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  transition: color .3s ease, padding .35s cubic-bezier(.22, 1, .36, 1);
}
.studio-services article:hover { color: #79c5a9; padding-left: 16px; }
.studio-services article > span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}
.studio-services article h3 {
  margin: 0;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.05em;
}
.studio-services article p {
  max-width: 590px;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.studio-note {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
}
.studio-note h3 {
  max-width: 650px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  font-style: italic;
  line-height: .98;
  letter-spacing: -.045em;
}
.studio-note p {
  max-width: 570px;
  margin: 28px 0 0;
  font-size: 16px;
  line-height: 1.55;
}
.studio-formats {
  align-content: start;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.studio-link {
  margin-top: 90px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: #79c5a9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.studio-link b { font-size: 21px; transition: transform .3s ease; }
.studio-link:hover b { transform: translate(5px, -5px); }

.network-section {
  padding: 118px 32px 140px;
  background: var(--white);
}
.network-section h2 {
  margin: 66px 0 84px;
  font-size: clamp(70px, 9.5vw, 154px);
  font-weight: 500;
  line-height: .8;
  letter-spacing: -.08em;
  text-transform: uppercase;
}
.network-list { border-top: 1px solid var(--line-dark); }
.network-list a {
  min-height: 112px;
  padding: 14px 0;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  transition: color .3s ease, padding .35s cubic-bezier(.22, 1, .36, 1);
}
.network-list a:hover { padding-left: 18px; color: var(--emerald); }
.network-list span { font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.network-list b {
  font-size: clamp(34px, 4.4vw, 70px);
  font-weight: 500;
  letter-spacing: -.05em;
}
.network-list i { font-size: 23px; font-style: normal; }

.contact-panel {
  padding: 112px 32px 90px;
  color: var(--white);
  background: var(--emerald);
}
.contact-main {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 8vw;
  align-items: end;
}
.contact-main h2 {
  margin: 0;
  font-size: clamp(80px, 11.5vw, 188px);
  font-weight: 500;
  line-height: .75;
  letter-spacing: -.09em;
  text-transform: uppercase;
}
.contact-main h2 span { display: block; }
.contact-main > div { padding-bottom: 8px; }
.contact-main > div > p {
  max-width: 500px;
  margin: 0 0 42px;
  font-size: 18px;
  line-height: 1.55;
}
.contact-main > div > a {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(15px, 1.4vw, 21px);
}
.contact-main > div > a span { transition: transform .3s ease; }
.contact-main > div > a:hover span { transform: translate(4px, -4px); }

.portfolio-footer {
  min-height: 74px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  color: var(--white);
  background: var(--emerald-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.portfolio-footer p { margin: 0; text-align: center; }
.portfolio-footer a:last-child { justify-self: end; }

/* Film detail */
.film-detail-header { position: absolute; }
.film-back { justify-self: center; display: flex; gap: 10px; }

.film-detail-hero {
  min-height: 830px;
  height: 100svh;
  max-height: 1060px;
  padding: 124px 32px 32px;
  display: grid;
  grid-template-columns: 1fr .42fr;
  grid-template-rows: auto 1fr auto;
  gap: 30px 7vw;
  background: var(--paper);
}
.film-detail-hero .overline { grid-column: 1 / -1; margin: 0; }
.film-detail-hero h1 {
  grid-column: 1 / -1;
  align-self: center;
  margin: 0;
  font-size: clamp(90px, 13vw, 210px);
  font-weight: 500;
  line-height: .73;
  letter-spacing: -.095em;
  text-transform: uppercase;
}
.film-detail-hero h1 span { display: block; animation: hero-rise .9s cubic-bezier(.22, 1, .36, 1) both; }
.film-detail-hero h1 span:nth-child(2) { color: var(--emerald); animation-delay: .06s; }
.film-detail-hero h1 span:nth-child(3) { animation-delay: .12s; }
.film-detail-lead {
  grid-column: 1 / -1;
  padding-top: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  border-top: 1px solid var(--line-dark);
}
.film-detail-lead > p {
  max-width: 570px;
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}
.film-detail-lead > div { display: flex; gap: 28px; }
.film-detail-lead span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.trailer-area {
  padding: 108px 32px 132px;
  color: var(--white);
  background: var(--ink);
}
.trailer-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  margin-top: 58px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: #171814;
}
.trailer-frame iframe { width: 100%; height: 100%; border: 0; }
.trailer-frame.is-empty {
  padding: 20px;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--emerald);
}
.trailer-state { align-self: center; text-align: center; }
.trailer-state > span {
  display: block;
  margin-bottom: 15px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
}
.trailer-state strong {
  display: block;
  font-size: clamp(78px, 12vw, 190px);
  font-weight: 500;
  line-height: .72;
  letter-spacing: -.09em;
  text-transform: uppercase;
}
.trailer-state i { display: block; font-style: normal; }
.trailer-frame > p {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.synopsis-area {
  padding: 112px 32px 130px;
  background: var(--white);
}
.synopsis-layout {
  margin-top: 66px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
}
.synopsis-layout h2 {
  margin: 0;
  font-size: clamp(72px, 9vw, 145px);
  font-weight: 500;
  line-height: .8;
  letter-spacing: -.08em;
  text-transform: uppercase;
}
.synopsis-layout > div { max-width: 710px; }
.synopsis-layout p {
  margin: 0 0 30px;
  font-size: clamp(19px, 2vw, 29px);
  line-height: 1.48;
  letter-spacing: -.018em;
}
.synopsis-layout p:last-child { margin-bottom: 0; }

.credits-area {
  padding: 0 32px 118px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
}
.credits-area > div {
  min-height: 160px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.credits-area > div:first-child { border-left: 1px solid var(--line-dark); }
.credits-area span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.credits-area b {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: -.03em;
}

.film-return {
  min-height: 330px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 20px;
  color: var(--white);
  background: var(--emerald);
}
.film-return > span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.film-return strong {
  grid-column: 1 / -1;
  align-self: end;
  font-size: clamp(72px, 11vw, 180px);
  font-weight: 500;
  line-height: .78;
  letter-spacing: -.085em;
  text-transform: uppercase;
}
.film-return b { font-size: 24px; transition: transform .3s ease; }
.film-return:hover b { transform: translate(5px, -5px); }

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .85s cubic-bezier(.22, 1, .36, 1);
}
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes media-enter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1040px) {
  .portfolio-hero {
    height: auto;
    max-height: none;
    grid-template-columns: 1fr 44%;
  }
  .hero-name h1 { font-size: clamp(74px, 10.5vw, 118px); }
  .hero-note { grid-template-columns: 1fr; }
  .hero-note > a { width: 180px; }
  .profile-grid { gap: 7vw; }
  .profile-text { grid-template-columns: 1fr; }
  .profile-text p:first-child { grid-column: 1; }
  .film-heading { grid-template-columns: 1fr; }
  .film-heading > p { order: 2; margin-top: 20px; }
  .studio-intro { grid-template-columns: 1fr; }
  .studio-intro > p { margin-top: 28px; }
  .contact-main { grid-template-columns: 1fr; }
  .contact-main > div { max-width: 620px; margin-top: 45px; }
}

@media (max-width: 760px) {
  .portfolio-header,
  .film-detail-header { min-height: 62px; padding: 0 18px; grid-template-columns: 1fr auto; }
  .wordmark span { display: none; }
  .portfolio-header nav {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    padding: 26px 18px 34px;
    display: grid;
    gap: 0;
    color: var(--white);
    background: var(--emerald);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .3s ease;
  }
  .portfolio-header nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .portfolio-header nav a { padding: 17px 0; border-bottom: 1px solid var(--line-light); font-size: 17px; }
  .portfolio-header .language-switch { justify-self: end; margin-right: 38px; }
  .menu-button {
    position: absolute;
    right: 18px;
    width: 22px;
    height: 22px;
    padding: 0;
    display: block;
    border: 0;
    background: transparent;
  }
  .menu-button span { position: absolute; left: 0; width: 22px; height: 1px; background: currentColor; }
  .menu-button span:first-child { top: 7px; }
  .menu-button span:last-child { bottom: 7px; }

  .portfolio-hero {
    min-height: 0;
    padding: 98px 18px 24px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 66svh auto;
    gap: 34px;
  }
  .hero-name { grid-column: 1; grid-row: 1; }
  .hero-name h1 { font-size: clamp(58px, 19vw, 108px); }
  .hero-note { grid-column: 1; grid-row: 2; }
  .hero-note > p { max-width: 560px; }
  .hero-film { grid-column: 1; grid-row: 3; }
  .hero-footer { grid-column: 1; grid-row: 4; grid-template-columns: 1fr 1fr; }
  .hero-footer span:nth-child(2) { text-align: right; }
  .hero-footer span:last-child { display: none; }

  .profile-section,
  .selected-film,
  .studio-section,
  .network-section,
  .contact-panel,
  .trailer-area,
  .synopsis-area { padding-left: 18px; padding-right: 18px; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-image { max-width: 540px; }
  .profile-copy { padding-top: 0; }
  .profile-copy h2 { font-size: clamp(48px, 13vw, 82px); }
  .profile-text { margin-top: 54px; }
  .profile-text p:first-child { font-size: 21px; }

  .film-heading h2,
  .studio-intro h2,
  .network-section h2 { font-size: clamp(58px, 17vw, 104px); }
  .film-card { min-height: 72svh; margin-top: 60px; padding: 15px; }
  .film-card-center strong { font-size: clamp(60px, 20vw, 120px); }
  .film-card-top span:nth-child(2) { display: none; }
  .director-statement { padding-left: 18px; padding-right: 18px; }

  .studio-services article {
    grid-template-columns: 44px 1fr;
    gap: 18px;
  }
  .studio-services article p { grid-column: 2; }
  .studio-note { grid-template-columns: 1fr; }
  .studio-formats { margin-top: 26px; }
  .network-list a { grid-template-columns: 48px 1fr auto; gap: 12px; min-height: 92px; }
  .network-list b { font-size: clamp(31px, 10vw, 50px); }
  .contact-main h2 { font-size: clamp(65px, 20vw, 116px); }
  .portfolio-footer { padding: 0 18px; grid-template-columns: 1fr auto; }
  .portfolio-footer p { display: none; }

  .film-detail-header { grid-template-columns: 1fr auto; }
  .film-detail-header .film-back { display: none; }
  .film-detail-hero {
    min-height: 760px;
    height: 100svh;
    padding: 104px 18px 24px;
    grid-template-columns: 1fr;
  }
  .film-detail-hero h1 { font-size: clamp(64px, 20vw, 118px); }
  .film-detail-lead { grid-template-columns: 1fr; }
  .film-detail-lead > div { justify-content: space-between; gap: 14px; }
  .trailer-frame { margin-top: 44px; aspect-ratio: 4 / 5; }
  .trailer-state strong { font-size: clamp(62px, 20vw, 112px); }
  .synopsis-layout { grid-template-columns: 1fr; }
  .synopsis-layout h2 { font-size: clamp(60px, 18vw, 100px); }
  .credits-area { padding: 0 18px 90px; grid-template-columns: 1fr 1fr; }
  .credits-area > div:nth-child(3) { border-left: 1px solid var(--line-dark); }
  .credits-area > div { min-height: 130px; }
  .film-return { min-height: 260px; padding: 22px 18px; }
  .film-return strong { font-size: clamp(54px, 17vw, 94px); }
}

@media (max-width: 420px) {
  .language-switch { gap: 8px; }
  .hero-name h1 { font-size: clamp(54px, 18vw, 80px); }
  .hero-note > p { font-size: 16px; }
  .profile-section { padding-top: 86px; padding-bottom: 100px; }
  .selected-film,
  .studio-section,
  .network-section { padding-top: 90px; padding-bottom: 105px; }
  .section-label { grid-template-columns: 38px 1fr; }
  .section-label span { width: 38px; height: 25px; }
  .studio-services article h3 { font-size: 31px; }
  .contact-main > div > a { font-size: 14px; }
}

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