.hero {
  position: relative;
  height: calc(100svh - 24px);
  min-height: 720px;
  max-height: 980px;
  overflow: hidden;
  background: var(--ink);
  color: var(--light);
}

.hero-picture,
.hero-picture img,
.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture img {
  object-fit: cover;
  object-position: center 48%;
}

.hero-video {
  object-fit: cover;
  object-position: center 48%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 800ms ease;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero-shade {
  background: rgba(10, 10, 8, 0.47);
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
}

.hero-topline {
  position: absolute;
  top: 118px;
  right: var(--gutter);
  left: var(--gutter);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 500;
}

.hero h1 {
  position: absolute;
  top: 48%;
  left: var(--gutter);
  margin: 0;
  transform: translateY(-50%);
  font-size: 132px;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-korean {
  position: absolute;
  right: 9%;
  bottom: 18%;
  margin: 0;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-footer {
  position: absolute;
  right: 0;
  bottom: 34px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 500;
}

.hero-footer a {
  display: inline-flex;
  gap: 12px;
}

.hero-end {
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 1px;
}

.about {
  background: var(--paper);
}

.about-statement {
  margin-left: 16%;
}

.about-statement h2 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.22;
}

.about-narrative {
  max-width: 480px;
  margin: 130px 8% 0 auto;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.9;
}

.about-narrative p:first-child {
  margin-bottom: 36px;
}

.about-narrative p:last-child {
  margin-bottom: 0;
  color: var(--ink);
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 160px 0 0;
  border-top: 1px solid var(--line);
}

.company-facts div {
  min-height: 150px;
  padding: 30px 32px 20px 0;
  border-right: 1px solid var(--line);
}

.company-facts div:not(:first-child) {
  padding-left: 32px;
}

.company-facts div:last-child {
  border-right: 0;
}

.company-facts dd {
  margin-bottom: 34px;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.2;
}

.company-facts div:nth-child(2) dd {
  font-size: 23px;
}

.company-facts dt {
  color: var(--gray);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.business {
  overflow: hidden;
  padding-top: 110px;
  background: var(--paper);
}

.business-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 180px;
}

.business-heading .editorial-label {
  align-self: start;
  margin-bottom: 0;
}

.business-heading h2 {
  margin: 0;
  font-size: 112px;
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
}

.business-flow {
  display: flex;
  flex-direction: column;
  gap: 210px;
}

.business-item {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr;
  gap: 54px 24px;
  min-width: 0;
}

.business-key {
  display: grid;
  grid-template-columns: 58px 1fr;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
  font-size: 12px;
  text-transform: uppercase;
}

.business-key span {
  color: var(--gray);
}

.business-key p {
  margin-bottom: 0;
  font-weight: 500;
}

.business-visual {
  overflow: hidden;
}

.business-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}

.business-item:hover .business-visual img {
  transform: scale(1);
}

.business-copy {
  align-self: end;
}

.business-copy h3 {
  margin-bottom: 18px;
  font-size: 31px;
  font-weight: 500;
}

.business-copy p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
}

.business-item-right .business-key,
.business-item-right .business-copy {
  grid-column: 1 / 5;
}

.business-item-right .business-visual {
  grid-column: 5 / 13;
  grid-row: 1 / 3;
}

.business-item-left .business-key,
.business-item-left .business-copy {
  grid-column: 9 / 13;
}

.business-item-left .business-visual {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.business-visual-wide {
  aspect-ratio: 16 / 9;
}

.business-visual-portrait {
  width: 72%;
  aspect-ratio: 2 / 3;
  justify-self: center;
}

.business-visual-landscape {
  aspect-ratio: 3 / 2;
}

.business-item-compact {
  margin-bottom: 60px;
}

.business-visual-compact {
  width: 76%;
  aspect-ratio: 4 / 3;
}

.brand-statement {
  min-height: 900px;
  background: var(--ink);
  color: var(--light);
}

.brand-statement-inner {
  position: relative;
  display: flex;
  min-height: 900px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand-overline {
  position: absolute;
  top: 92px;
  left: var(--gutter);
  color: #aaa9a2;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.brand-statement h2 {
  margin: 0;
  font-size: 110px;
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
}

.brand-copy {
  position: absolute;
  bottom: 90px;
  left: var(--gutter);
  margin: 0;
  color: #aaa9a2;
  font-size: 17px;
  line-height: 1.8;
  text-align: left;
}

.brand-mark {
  position: absolute;
  right: var(--gutter);
  bottom: 90px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  line-height: 1;
}

.brand-mark strong {
  margin-bottom: 12px;
  font-size: 58px;
  font-weight: 400;
}

.brand-mark span {
  color: #aaa9a2;
  font-size: 10px;
}

.process {
  background: var(--paper);
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 150px;
}

.process-heading .editorial-label {
  margin-bottom: 0;
}

.process-heading h2 {
  margin: 0;
  font-size: 90px;
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.process-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 84px;
  align-items: start;
}

.process-list {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  display: grid;
  grid-template-columns: 68px 1fr;
  min-height: 290px;
  padding: 28px 0 54px;
  border-top: 1px solid var(--line);
  color: #686761;
  transition: color 360ms ease;
}

.process-step:last-child {
  border-bottom: 1px solid var(--line);
}

.process-step > span {
  font-size: 11px;
  font-weight: 500;
}

.process-step h3 {
  margin-bottom: 26px;
  font-size: 43px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.process-step p {
  margin-bottom: 0;
  color: #686761;
  font-size: 15px;
  line-height: 1.8;
}

.process-step.is-active {
  color: var(--ink);
}

.process-step.is-active h3 {
  font-weight: 500;
}

.process-visual {
  position: sticky;
  grid-column: 2;
  grid-row: 1;
  top: 108px;
  height: calc(100svh - 150px);
  max-height: 760px;
  min-height: 620px;
  margin-bottom: 0;
  overflow: hidden;
  background: #dddcd6;
}

.process-visual picture,
.process-visual img {
  width: 100%;
  height: 100%;
}

.process-visual img {
  object-fit: cover;
  transition: opacity 220ms ease;
}

.process-visual img.is-switching {
  opacity: 0.55;
}

.process-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  background: rgba(23, 23, 20, 0.86);
  color: var(--light);
  font-size: 10px;
  font-weight: 500;
}

.manufacturing {
  padding-bottom: 0;
  background: var(--paper);
}

.manufacturing-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.5fr);
  gap: 100px;
  align-items: end;
  margin-bottom: 150px;
}

.manufacturing-intro h2 {
  margin: 0;
  font-size: 112px;
  font-weight: 400;
  line-height: 0.93;
  text-transform: uppercase;
}

.manufacturing-intro > p {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.55;
}

.manufacturing-visual {
  position: relative;
  height: 84svh;
  min-height: 700px;
  max-height: 980px;
  margin-bottom: 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--light);
}

.manufacturing-visual picture,
.manufacturing-visual img {
  width: 100%;
  height: 100%;
}

.manufacturing-visual img {
  object-fit: cover;
}

.manufacturing-steps {
  position: absolute;
  right: 0;
  bottom: 34px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  font-size: 10px;
  font-weight: 500;
  list-style: none;
}

.manufacturing-steps li {
  padding-top: 14px;
  border-top: 1px solid rgba(245, 244, 239, 0.7);
}

.manufacturing-visual figcaption {
  position: absolute;
  top: 24px;
  right: 28px;
  padding: 7px 9px;
  background: rgba(23, 23, 20, 0.8);
  font-size: 9px;
}

.projects {
  background: var(--paper);
}

.projects-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 150px;
}

.projects-heading .editorial-label {
  grid-column: 1 / -1;
}

.projects-heading h2 {
  margin: 0;
  font-size: 116px;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.projects-heading > p {
  align-self: end;
  justify-self: end;
  margin: 0 8px 8px 0;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.8;
}

.project-flow {
  display: flex;
  flex-direction: column;
}

.project-item {
  min-width: 0;
}

.project-item-main {
  width: 100%;
}

.project-item-right {
  width: 59%;
  margin: 190px 0 0 auto;
}

.project-item-left {
  width: 49%;
  margin-top: 190px;
}

.project-index,
.project-meta {
  display: flex;
  justify-content: space-between;
}

.project-index {
  padding: 14px 0;
  border-top: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 500;
}

.project-index span:last-child {
  color: var(--gray);
}

.project-item picture {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}

.project-item:hover img {
  transform: scale(1);
}

.project-meta {
  gap: 30px;
  align-items: end;
  padding-top: 22px;
}

.project-meta h3,
.project-meta p {
  margin-bottom: 0;
}

.project-meta h3 {
  font-size: 30px;
  font-weight: 400;
}

.project-meta p {
  color: var(--gray);
  font-size: 10px;
  text-align: right;
}

.project-disclaimer {
  max-width: 620px;
  margin: 160px 0 0 auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--gray);
  font-size: 11px;
}

.quality {
  background: #e2e0d9;
}

.quality-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 150px;
}

.quality-heading .editorial-label {
  margin-bottom: 0;
}

.quality-heading h2 {
  margin: 0;
  font-size: 88px;
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.quality-list {
  border-top: 1px solid var(--ink);
}

.quality-list article {
  display: grid;
  grid-template-columns: 90px minmax(240px, 1fr) minmax(240px, 0.75fr);
  gap: 30px;
  align-items: center;
  min-height: 142px;
  border-bottom: 1px solid var(--line);
}

.quality-list span {
  color: var(--gray);
  font-size: 11px;
}

.quality-list h3,
.quality-list p {
  margin-bottom: 0;
}

.quality-list h3 {
  color: #62615b;
  font-size: 42px;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 300ms ease;
}

.quality-list article:hover h3 {
  color: var(--ink);
}

.quality-list p {
  justify-self: end;
  font-size: 16px;
  text-transform: uppercase;
}

.source-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 58px;
  color: var(--gray);
  font-size: 12px;
}

.source-row p {
  margin-bottom: 0;
}

.source-row > div {
  display: flex;
  gap: 26px;
}

.contact {
  padding-block: 180px 150px;
  background: var(--ink);
  color: var(--light);
}

.contact .editorial-label span,
.contact .editorial-label p {
  color: #aaa9a2;
}

.contact-main {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
  align-items: end;
}

.contact-main h2 {
  margin: 0;
  font-size: 112px;
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.contact-main > p {
  margin: 0 0 10px;
  color: #aaa9a2;
  font-size: 25px;
  line-height: 1.6;
}

.contact-call {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 28px;
  align-items: end;
  margin-top: 150px;
  padding: 26px 0 30px;
  border-top: 1px solid var(--light);
  border-bottom: 1px solid rgba(245, 244, 239, 0.24);
}

.contact-call > span:first-child {
  grid-column: 1 / -1;
  color: #aaa9a2;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-call strong {
  font-size: 62px;
  font-weight: 400;
  line-height: 1;
}

.contact-call > span:last-child {
  font-size: 28px;
  transition: transform 200ms var(--ease);
}

.contact-call:hover > span:last-child {
  transform: translate(4px, -4px);
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 80px 0 0;
}

.contact-meta div {
  min-height: 110px;
  padding: 20px 26px 0 0;
  border-right: 1px solid rgba(245, 244, 239, 0.2);
}

.contact-meta div:not(:first-child) {
  padding-left: 26px;
}

.contact-meta div:last-child {
  border-right: 0;
}

.contact-meta dt {
  margin-bottom: 26px;
  color: #aaa9a2;
  font-size: 10px;
  text-transform: uppercase;
}

.contact-meta dd {
  margin-bottom: 0;
  font-size: 13px;
}

.site-footer {
  padding: 0 0 34px;
  background: var(--ink);
  color: var(--light);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  min-height: 150px;
  align-items: start;
  padding-top: 40px;
  border-top: 1px solid rgba(245, 244, 239, 0.24);
}

.footer-wordmark {
  font-size: 20px;
  font-weight: 500;
}

.footer-main p,
.footer-top {
  color: #aaa9a2;
  font-size: 11px;
}

.footer-top {
  display: inline-flex;
  gap: 12px;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 244, 239, 0.14);
  color: #8f8e87;
  font-size: 10px;
}

.footer-meta p {
  margin-bottom: 0;
}

.footer-meta p:first-child {
  max-width: 720px;
}
