* {
  letter-spacing: -0.03em;
}
body {
  position: relative;
  background-color: var(--bg);
}

.header {
  position: absolute;
  z-index: 10;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--layout-margin);
  padding-block: 24px;
}

.header-logo {
  position: relative;
  z-index: 1001;
  display: block;
}

.header-logo img {
  display: block;
  width: 111px;
  height: 24px;
}

@media (max-width: 768px) {
  .header-logo img {
    width: 83px;
    height: auto;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-nav-link {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.header-hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .header-hamburger {
    display: flex;
  }
}

.header-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateX(100%);
  will-change: transform, opacity;
}

.header-overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8.8vw;
}

.header-overlay-link {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(35px, 9.33vw, 70px);
  letter-spacing: 0.05em;
  color: var(--color-primary);
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.header-overlay-close {
  position: absolute;
  top: 16px;
  right: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 0;
  color: var(--color-primary);
  cursor: pointer;
}

.hero {
  position: relative;
  width: 100%;

  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-left: calc(12.604vw + env(safe-area-inset-left));
  padding-right: env(safe-area-inset-right);
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
}

.hero-title {
  display: flex;
  --hero-planet-size: clamp(75px, 7.44vw, 142.91px);
  --hero-on-size: clamp(117px, 13.1vw, 252.66px);
  position: relative;
  z-index: 1;
  opacity: 0;
}

.hero-title-planet {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: var(--hero-planet-size);
  line-height: var(--hero-planet-size);
  color: var(--color-primary);
}
.hero-title-planet div,
.hero-title-on div {
  will-change: transform, opacity, filter;
}
.hero-title-on {
  position: relative;
  z-index: 2;
  display: block;
  font-family: var(--font-en-accent);
  font-style: italic;
  font-weight: 400;
  font-size: var(--hero-on-size);
  line-height: var(--hero-on-size);
  color: var(--color-accent);

  margin-top: 0.17em;
  margin-left: -0.412em;
}

@media (max-width: 768px) {
  .hero {
    align-items: flex-start;
    padding-top: 26.66vw;

    height: auto;
    aspect-ratio: 750 / 1266;
  }

  .hero-title {
    --hero-planet-size: clamp(48.5px, 17.33vw, 130px);
    --hero-on-size: clamp(87px, 31.2vw, 234px);
  }
  .hero-title-on {
    position: absolute;
    right: -7vw;
    top: 5.7vw;
  }
}

.marquee-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: clamp(45px, 6.4vw, 82px);
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  margin-top: 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.marquee-item {
  flex: 0 0 auto;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(11px, 1.4vw, 18px);
  line-height: 1;
  color: var(--color-primary);
  text-transform: uppercase;
  white-space: nowrap;
  margin-right: clamp(94px, 11.5625vw + 38.5px, 205px);
}

.about {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

.about-title-desktop,
.about-title-mobile {
  display: none;
  flex-direction: column;
  text-align: center;
}

@media (min-width: 769px) {
  .about-title-desktop {
    display: flex;
  }
}

@media (max-width: 768px) {
  .about-title-mobile {
    display: flex;
  }
}

.about-sentence {
  display: block;
  font-family: var(--font-en);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  line-height: 1em;
  font-size: clamp(40px, 4vw + 11.2px, 88px);
  will-change: transform;
}

.about-sentence:not(:last-child) {
  margin-bottom: 0.45em;
}

.about-accent {
  font-family: var(--font-en-accent);
  font-style: italic;
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 12px;
  text-transform: none;
  font-weight: 400;
}

@media (max-width: 768px) {
  .about-sentence {
    font-size: clamp(18px, 7.06vw, 53px);
  }
  .about-accent {
    font-family: var(--font-en-accent);
    font-style: italic;
    color: var(--color-accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    text-transform: none;
    font-weight: 400;
  }
}

.work {
  position: relative;
  width: 100%;
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-top: 95px;

  padding-bottom: calc(50vh + 100px);
  padding-left: var(--layout-margin);
  padding-right: var(--layout-margin);
}

.work-title {
  display: flex;
  align-items: baseline;
  gap: 0.2em;
  margin-bottom: clamp(52px, 6.875vw, 132px);
}

.work-title-work {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(67px, 8.2vw + 27.63px, 145.75px);
  line-height: 1em;
  color: var(--color-primary);
}

.work-title-on {
  font-family: var(--font-en-accent);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(68.46px, 8.37vw + 28.28px, 148.82px);
  line-height: 1em;
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .work-title-work,
  .work-title-on {
    font-size: clamp(38.4px, 12vw, 90px);
  }
}

.work-masonry {
  display: flex;

  --work-column-gap: clamp(10px, 2.864vw, 55px);
  gap: var(--work-column-gap);
  max-width: 1920px;
  margin-inline: auto;
}

.work-column {
  display: flex;
  flex-direction: column;
  gap: var(--work-column-gap);
  flex: 1 1 0;
  min-width: 0;

  will-change: transform;
}

@media (max-width: 1024px) {
  .work {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .work-title {
    margin-bottom: 16vw;
  }
}

@media (max-width: 1024px) {
  .js-work-column:nth-child(3) {
    display: none;
  }
}

.work-item {
  display: block;
}

.work-item-thumb-wrap {
  position: relative;
  overflow: hidden;
}

.work-item-thumb {
  display: block;
  width: 100%;
  height: auto;
}

.work-item-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  will-change: opacity;
}

.work-item-info {
  --work-info-bottom-pd: clamp(15px, 2.7vw, 52px);
  --work-info-tb-pd: clamp(10px, 1.92vw, 37px);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 var(--work-info-tb-pd) var(--work-info-bottom-pd);
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}

.work-item-logo {
  display: block;
  height: 20px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.7;
}

.work-item-title {
  font-family: var(--font-ko);
  font-weight: 550;
  font-size: clamp(15px, 1.5625vw, 30px);
  line-height: 1.3;
  color: var(--color-secondary);
  margin-bottom: clamp(15px, 1.5625vw, 30px);
}
.work-item-title br {
  display: none;
}
.work-item-title sup {
  font-size: 0.6em;
}
.work-item-category {
  font-family: var(--font-ko);
  font-weight: 300;
  font-size: clamp(12px, 0.83vw, 16px);
  line-height: 1em;
  color: var(--color-secondary);
}

.work-item-title-mo {
  display: none;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: clamp(11px, 1.5625vw, 30px);
  line-height: 1.3;
  color: var(--color-secondary);
}

@media (hover: none), (max-width: 1024px) {
  .work-item-overlay,
  .work-item-info {
    opacity: 1;
    transform: none;
  }
  .work-item-overlay {
    background: #000000;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 10%,
      rgba(255, 255, 255, 0) 25%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .work-item-title,
  .work-item-category {
    display: none;
  }
  .work-item-title-mo {
    display: block;
  }
  .work-item-logo {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .work-item-info {
    --work-info-bottom-pd: clamp(15px, 3.33vw, 25px);
    --work-info-tb-pd: clamp(10px, 2.66vw, 20px);
  }
  .work-item-logo {
    height: clamp(10px, 2.66vw, 20px);
    margin-bottom: clamp(5px, 1.33vw, 10px);
  }
  .work-item-title-mo {
    font-size: clamp(11px, 2.93vw, 22px);
  }
}

@media (hover: hover) and (pointer: fine) {
  .work-item {
    cursor: none;
  }
}

.work-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 164px;
  height: 23px;
  background-color: var(--color-accent);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  z-index: 20;
  will-change: transform, opacity;
}

.work-cursor-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  animation: work-cursor-scroll 2.2s linear infinite;
}

.work-cursor-track span {
  flex: 0 0 auto;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 14px;
  color: #000;
  white-space: nowrap;
  padding-right: 16px;
}

@keyframes work-cursor-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .work-cursor-track span {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .work-cursor-track span {
    font-size: 12px;
  }
}

.services {
  position: relative;
  width: 100%;

  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: 100dvh;
  margin-top: var(--section-margin);
  padding-top: 95px;
  padding-bottom: 60px;
}

.services-title {
  display: flex;
  flex-direction: column;
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-left: var(--layout-margin);
  padding-right: var(--layout-margin);
  margin-bottom: 1em;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: clamp(35px, 3.75vw + 10px, 90px);
  line-height: 1.15;
  color: var(--color-primary);
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

.services-accent {
  font-family: var(--font-en-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

.services-list {
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-left: var(--layout-margin);
  padding-right: var(--layout-margin);
}

.services-item {
  position: relative;
  overflow: hidden;
}

.services-item-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.services-brands {
  margin-top: var(--section-margin);
  margin-bottom: var(--section-margin);
}

.services-brands-title {
  display: flex;
  flex-direction: column;
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-left: var(--layout-margin);
  padding-right: var(--layout-margin);
  margin-bottom: clamp(60px, 7.43vw + 9px, 107px);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: clamp(35px, 3.75vw + 10px, 90px);
  line-height: 1.15;
  color: var(--color-primary);
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}
.services-brands .services-accent {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .services-brands-title {
    font-size: clamp(26px, 9.33vw, 70px);
  }
}
.brand-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.brand-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: brand-marquee-scroll 25s linear infinite;
}

@keyframes brand-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.brand-marquee-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(140px, 12.5vw + 80px, 260px);
  height: clamp(84px, 7.5vw + 48px, 156px);
  margin-right: clamp(17px, 1.77vw, 34px);
  background-color: #fafafa;
  border-radius: 8px;
}

.brand-marquee-item img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;

  mix-blend-mode: multiply;
}

.services-item-header {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(110px, 11.46vw + 55px, 220px);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.services-item-title-mask {
  display: block;
  overflow: hidden;
}

@media (min-width: 768.1px) {
  .services-item-title-mask {
    transform: translateY(-25%);
  }
}

.services-item-title {
  display: block;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(32px, 3.385vw, 65px);
  color: var(--color-primary);
  opacity: 0;
  transform: translateY(100%);
  will-change: transform, opacity;
}

.services-item-icon {
  position: relative;
  width: clamp(27px, 1.875vw + 27px, 54px);
  height: clamp(27px, 1.875vw + 27px, 54px);
  flex-shrink: 0;
}

.services-item-icon-h,
.services-item-icon-v {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--color-primary);
}

.services-item-icon-h {
  width: 100%;
  height: 2px;
  transform: translate(-50%, -50%);
}

.services-item-icon-v {
  width: 2px;
  height: 100%;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.services-item-body {
  height: 0;
  overflow: hidden;
  transform: translateY(-2em);
}

.services-item-description {
  padding-right: 0;

  padding-bottom: clamp(57px, 6.6vw, 104px);
  font-family: var(--font-ko);
  font-weight: 500;
  font-size: clamp(14px, 0.625vw + 11px, 20px);
  line-height: 1.5;
  color: var(--color-primary);
  opacity: 0;
  will-change: opacity;
  word-break: keep-all;
}

@media (min-width: 768.1px) {
  .services-item-body {
    font-size: clamp(14px, 0.625vw + 11px, 20px);
    transform: translateY(-3em);
  }
}

.services-item-image-wrap {
  position: absolute;
  top: 50%;
  right: calc(clamp(27px, 1.875vw + 27px, 54px) + clamp(42px, 5.5vw, 106px));
  transform: translateY(-50%);
  width: clamp(240px, 40.3vw - 100px, 580px);
  height: 0;
  pointer-events: none;
}

.services-item-image {
  display: block;
  width: 100%;
  aspect-ratio: 580 / 330;
  object-fit: cover;
  background-color: rgba(0, 0, 0, 0.05);
  opacity: 0;
  will-change: opacity;
}

@media (max-width: 768px) {
  .services-title {
    font-size: clamp(26px, 9.33vw, 70px);
  }
  .services-item-icon {
    width: clamp(27px, 7.2vw, 54px);
    height: clamp(27px, 7.2vw, 54px);
  }

  .services-item-description {
    padding-right: 0;
    padding-bottom: 0;
  }

  .services-item-image-wrap {
    position: static;
    transform: none;
    width: 100%;
    height: 0;
    overflow: hidden;
  }

  .services-item-image {
    margin-top: 20px;
    margin-bottom: 10.66vw;
  }
}
@media (max-width: 480px) {
  .services-item-title {
    font-size: 25px;
  }
  .services-item-description {
    font-size: 12px;
  }
  .services-item-image {
    margin-top: 0;
  }
}
.contact {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;

  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: 100svh;
  background-color: var(--color-accent);
  padding-top: 95px;
  padding-bottom: 95px;
}

.contact-row {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 60px;
  height: clamp(90px, 8.333vw + 50px, 170px);
  padding-left: max(
    var(--layout-margin),
    calc((100% - var(--content-max-width)) / 2 + var(--layout-margin))
  );

  clip-path: inset(0 -100vw 0 -100vw);
}

.contact-line {
  position: absolute;
  left: max(
    var(--layout-margin),
    calc((100% - var(--content-max-width)) / 2 + var(--layout-margin))
  );
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.contact-title {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: clamp(48px, 8.33vw, 160px);
  line-height: 1;
  color: var(--color-primary);
  position: relative;
  top: 0.1625em;

  white-space: nowrap;
}

.contact-title-mask {
  display: block;
}

.js-contact-title-top {
  padding-right: 0.5em;
}

.contact-text-mask {
  display: block;
  overflow: hidden;
}

.contact-title-inner {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  will-change: transform, opacity;
  text-indent: -0.1em;
}

.contact-accent {
  font-family: var(--font-en-accent);
  font-style: italic;
  color: inherit;
  font-weight: 400;
}

.contact-extra {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 9px;
}

.contact-extra-line {
  display: block;
  font-family: var(--font-ko);
  font-weight: 400;
  font-size: clamp(14px, 1.04vw, 20px);
  color: var(--color-primary);
  opacity: 0;
  transform: translateY(100%);
  will-change: transform, opacity;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 7.8vw;
  padding-left: max(
    var(--layout-margin),
    calc((100% - var(--content-max-width)) / 2 + var(--layout-margin))
  );
}

.contact-email {
  display: block;
  margin-bottom: 0.7em;
  font-family: var(--font-en);
  font-weight: 550;
  font-size: clamp(15px, 2.93vw, 30px);
  color: var(--color-primary);
  opacity: 0;
  transform: translateY(100%);
  will-change: transform, opacity;
}

.contact-address {
  display: block;
  font-family: var(--font-ko);
  font-weight: 500;
  font-size: clamp(16px, 1.145vw, 22px);
  color: var(--color-primary);
  opacity: 0;
  transform: translateY(100%);
  will-change: transform, opacity;
}

.contact-extra-mobile {
  display: none;
}

@media (max-width: 1280px) {
  .contact-extra {
    display: none;
  }

  .contact-extra-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    padding-left: var(--layout-margin);
    padding-right: var(--layout-margin);
    margin-top: 16px;
  }

  .contact-extra-mobile .contact-extra-line {
    text-align: right;
  }
}
@media (max-width: 768px) {
  .contact {
    min-height: calc(100vh - 68px);
    min-height: calc(var(--vh, 1vh) * 100 - 68px);
  }
  .contact-row {
    height: clamp(45px, 16vw, 120px);
  }
  .contact-title {
    font-size: clamp(20px, 13.33vw, 100px);
  }
  .contact-extra-line {
    font-size: clamp(9px, 2.93vw, 22px);
  }
  .contact-info {
    margin-top: 28vw;
  }
  .contact-email {
    font-size: clamp(12px, 4vw, 30px);
  }
  .contact-address {
    font-size: clamp(10px, 3.2vw, 24px);
  }
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 116px;
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: var(--layout-margin);
}

.footer-logo {
  display: block;
}

.footer-logo img {
  display: block;
  width: 112px;
  height: auto;
}

.footer-copyright {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 17px;
  color: var(--color-primary);
}
@media all and (max-width: 1024px) {
  .footer-inner {
    height: 92.8px;
  }
  .footer-logo img {
    width: 83px;
  }

  .footer-copyright {
    font-size: 14px;
  }
}
@media all and (max-width: 768px) {
  .footer-inner {
    height: 68px;
  }

  .footer-copyright {
    font-size: 12px;
  }
}
@media all and (max-width: 480px) {
  .footer-copyright {
    font-size: 2.6vw;
  }
}

.top-button {
  position: fixed;
  right: 15px;
  bottom: 25px;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  transform: translateX(150%);
  will-change: transform, opacity;
}

@media (min-width: 1024.1px) {
  .top-button {
    right: max(50px, calc((100vw - var(--content-max-width)) / 2 + 50px));
  }
}
@media (max-width: 480px) {
  .top-button {
    width: 30px;
    height: 30px;
  }
  .top-button svg {
    width: 11.4px;
    height: 12.6px;
  }
}
