.creative {
  --cr-black: #101010;
  --cr-ink: #242424;
  --cr-muted: #6f6f6f;
  --cr-paper: #f5f4ef;
  --cr-white: #fff;
  --cr-accent: #d83b2d;
  --cr-line: rgba(16, 16, 16, .16);
  background: var(--cr-white);
  color: var(--cr-ink);
  font-feature-settings: "palt";
  letter-spacing: .025em;
  overflow: hidden;
}

.creative *,
.creative *::before,
.creative *::after {
  box-sizing: border-box;
}

.creative a {
  color: inherit;
}

.creative p {
  margin-top: 0;
}

.creative-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.creative-section {
  padding: clamp(5rem, 9vw, 7.5rem) 0;
  border-top: 1px solid var(--cr-line);
}

.creative-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(3.5rem, 7vw, 6rem);
}

.creative-kicker,
.creative-section-label,
.creative-page-nav,
.creative-service__en,
.creative-button,
.creative-text-link,
.creative-price-table {
  font-family: Arial, "Helvetica Neue", sans-serif;
}

.creative-section-label {
  margin-bottom: 1.5rem;
  color: #a0a0a0;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.creative-section-label--light {
  color: rgba(255, 255, 255, .58);
}

.creative-heading {
  margin: 0;
  color: var(--cr-black);
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.42;
}

.creative-prose {
  max-width: 680px;
}

.creative-prose p {
  margin-bottom: 1.55em;
  color: #555;
  font-size: .94rem;
  line-height: 2.05;
}

.creative-prose p:last-child {
  margin-bottom: 0;
}

.creative-prose--large p:first-child {
  color: var(--cr-ink);
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.16rem, 1.8vw, 1.4rem);
  line-height: 2;
}

.creative-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 56px);
  overflow: hidden;
  background: #080909;
  color: #fff;
  isolation: isolate;
}

.creative-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #080808;
}

.creative-hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.creative-hero__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, .92) 0%, rgba(5, 6, 6, .72) 34%, rgba(5, 6, 6, .24) 58%, rgba(5, 6, 6, .02) 78%),
    linear-gradient(0deg, rgba(5, 6, 6, .34) 0%, transparent 35%);
  content: "";
}

.creative-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.creative-hero__copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: calc(100svh - 56px);
  margin-inline: auto;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.creative-hero__copy-inner {
  width: min(100%, 620px);
}

.creative-kicker {
  margin-bottom: 2.25rem;
  color: rgba(255, 255, 255, .58);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
}

.creative-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(2.55rem, 4.2vw, 3.65rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.3;
}

.creative-hero__lead {
  margin: 2.1rem 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(.9rem, 1.2vw, 1rem);
  line-height: 2;
}

.creative-hero__operator {
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, .55);
  font-size: .7rem;
  line-height: 1.8;
}

.creative-mobile-break {
  display: none;
}

.creative-hero__actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-top: 2.6rem;
}

.creative-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.7rem;
  border: 1px solid transparent;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.creative .creative-button--dark {
  background: var(--cr-black);
  color: #fff;
}

.creative .creative-button--dark:hover {
  background: #383838;
  color: #fff;
}

.creative .creative-button--hero {
  border-color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .96);
  color: var(--cr-black);
}

.creative .creative-button--hero:hover {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.creative .creative-button--light {
  border-color: rgba(255, 255, 255, .75);
  color: #fff;
}

.creative .creative-button--light:hover {
  background: #fff;
  color: var(--cr-black);
}

.creative-text-link {
  position: relative;
  padding-bottom: .25rem;
  color: rgba(255, 255, 255, .78);
  font-size: .72rem;
  letter-spacing: .04em;
  text-decoration: none;
}

.creative-text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, .54);
  content: "";
}

.creative-page-nav {
  position: sticky;
  top: 56px;
  z-index: 20;
  border-top: 1px solid var(--cr-line);
  border-bottom: 1px solid var(--cr-line);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
}

.creative-page-nav__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.4rem, 3vw, 2.7rem);
  min-height: 52px;
  overflow-x: auto;
  scrollbar-width: none;
}

.creative-page-nav__inner::-webkit-scrollbar {
  display: none;
}

.creative-page-nav a {
  color: #777;
  font-size: .68rem;
  letter-spacing: .05em;
  text-decoration: none;
  white-space: nowrap;
}

.creative-page-nav a:last-child {
  color: var(--cr-accent);
}

.creative-intro {
  background: var(--cr-white);
}

.creative-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: clamp(3.5rem, 7vw, 5.5rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--cr-black);
  border-bottom: 1px solid var(--cr-line);
  list-style: none;
}

.creative-process li {
  min-height: 132px;
  padding: 1.35rem 1.1rem;
  border-right: 1px solid var(--cr-line);
  color: #4f4f4f;
  font-size: .82rem;
  line-height: 1.75;
}

.creative-process li:last-child {
  border-right: 0;
}

.creative-process span {
  display: block;
  margin-bottom: 2.1rem;
  color: var(--cr-accent);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .12em;
}

.creative-development {
  background: var(--cr-paper);
}

.creative-section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  align-items: end;
  gap: clamp(3rem, 6vw, 6rem);
  margin-bottom: clamp(3.5rem, 6vw, 5rem);
}

.creative-section-header--compact {
  margin-bottom: 2.5rem;
}

.creative-section-header__body {
  margin: 0;
  color: #5d5d5d;
  font-size: .92rem;
  line-height: 2;
}

div.creative-section-header__body p {
  margin-bottom: 1.1rem;
}

div.creative-section-header__body p:last-child {
  margin-bottom: 0;
}

.creative-service {
  display: grid;
  grid-template-columns: minmax(270px, .75fr) minmax(0, 1.25fr);
  border-top: 1px solid var(--cr-black);
  border-bottom: 1px solid var(--cr-black);
}

.creative-service__identity,
.creative-service__content {
  padding: clamp(2rem, 4vw, 3.5rem);
}

.creative-service__identity {
  border-right: 1px solid var(--cr-line);
}

.creative-service__en {
  margin-bottom: 3.2rem;
  color: #8a8a8a;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
}

.creative-service__identity h3 {
  margin: 0;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.65rem, 2.7vw, 2.25rem);
  font-weight: 400;
  line-height: 1.45;
}

.creative-service__price {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: .5rem;
  margin: 1.3rem 0 0;
}

.creative-service__price span {
  color: var(--cr-accent);
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 400;
}

.creative-service__price small {
  color: #777;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .04em;
}

.creative-service__content {
  color: #555;
  font-size: .9rem;
  line-height: 2;
}

.creative-service__lead {
  margin-bottom: 1.75rem;
  color: var(--cr-ink);
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.18rem;
  line-height: 1.85;
}

.creative-service__content > p:not(.creative-service__lead):not(.creative-service__note) {
  margin-bottom: 1.2rem;
}

.creative-service__list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--cr-line);
  list-style: none;
}

.creative-service__list--two-columns,
.creative-service__list--media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.8rem;
}

.creative-service__list li {
  padding: .7rem .5rem .7rem 1.25rem;
  border-bottom: 1px solid var(--cr-line);
  color: #5b5b5b;
  font-size: .82rem;
  line-height: 1.55;
}

.creative-service__list li:nth-child(odd) {
  border-right: 1px solid var(--cr-line);
}

.creative-service__list li::before {
  margin-left: -.9rem;
  margin-right: .55rem;
  color: var(--cr-accent);
  content: "—";
}

.creative-service__note {
  margin: 1.8rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--cr-line);
  color: #777;
  font-size: .78rem;
  line-height: 1.85;
}

.creative-production {
  background: var(--cr-white);
}

.creative-production__services {
  display: grid;
  gap: 2.25rem;
}

.creative-service--production {
  border-bottom-color: var(--cr-line);
}

.creative-price {
  background: var(--cr-paper);
}

.creative-price__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3.25rem;
}

.creative-price__header > p {
  max-width: 440px;
  margin-bottom: .25rem;
  color: #666;
  font-size: .88rem;
  line-height: 1.9;
}

.creative-price-table-wrap {
  overflow-x: auto;
}

.creative-price-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  border-top: 1px solid var(--cr-black);
  border-bottom: 1px solid var(--cr-black);
}

.creative-price-table th,
.creative-price-table td {
  padding: 1.35rem 1.1rem;
  border-bottom: 1px solid var(--cr-line);
  text-align: left;
}

.creative-price-table th {
  color: #999;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .13em;
}

.creative-price-table td {
  color: #555;
  font-size: .82rem;
  font-weight: 400;
}

.creative-price-table th:first-child,
.creative-price-table td:first-child {
  width: 31%;
}

.creative-price-table th:last-child,
.creative-price-table td:last-child {
  width: 25%;
  color: var(--cr-black);
  text-align: right;
  white-space: nowrap;
}

.creative-price-table tbody tr:last-child td {
  border-bottom: 0;
}

.creative-price__note {
  margin: 1.2rem 0 0;
  color: #888;
  font-size: .7rem;
  line-height: 1.7;
}

.creative-philosophy {
  background: var(--cr-black);
  color: rgba(255, 255, 255, .72);
}

.creative-philosophy__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, .28);
  border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.creative-philosophy article {
  min-height: 540px;
  padding: clamp(2rem, 4vw, 3.6rem);
}

.creative-philosophy article:first-child {
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.creative-philosophy h2 {
  margin: 0 0 3.2rem;
  color: #fff;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.48;
}

.creative-philosophy__body {
  max-width: 470px;
}

.creative-philosophy__body p {
  margin-bottom: 1.3rem;
  font-size: .88rem;
  line-height: 2;
}

.creative-philosophy__body p:last-child {
  margin-bottom: 0;
}

.creative-studio {
  background: var(--cr-white);
}

.creative-grid--studio {
  align-items: start;
}

.creative-consult {
  background: var(--cr-paper);
}

.creative-consult__header {
  display: grid;
  grid-template-columns: .65fr 1.05fr .65fr;
  align-items: end;
  gap: 2.5rem;
  margin-bottom: 3.2rem;
}

.creative-consult__header .creative-section-label {
  margin-bottom: .5rem;
}

.creative-consult__header > p:last-child {
  margin-bottom: .45rem;
  color: #777;
  font-size: .82rem;
  line-height: 1.8;
}

.creative-consult__examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--cr-black);
  list-style: none;
}

.creative-consult__examples li {
  padding: 1.3rem 1rem;
  border-bottom: 1px solid var(--cr-line);
  color: #4c4c4c;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1rem;
  line-height: 1.7;
}

.creative-consult__examples li:nth-child(odd) {
  border-right: 1px solid var(--cr-line);
}

.creative-contact {
  background: var(--cr-white);
}

.creative-contact__header {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.creative-contact__header h2 {
  margin: 0;
  color: var(--cr-black);
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.45;
}

.creative-contact__header > p:last-child {
  margin: 1.7rem auto 0;
  color: #666;
  font-size: .88rem;
  line-height: 1.9;
}

.creative-contact__form {
  max-width: 860px;
  margin: 3.5rem auto 0;
  padding: clamp(1.5rem, 4vw, 3.2rem);
  border: 1px solid var(--cr-line);
  background: var(--cr-paper);
}

.creative-contact__form .form-label {
  font-size: .78rem;
}

.creative-contact__form .form-control {
  border: 0;
  border-bottom: 1px solid rgba(16, 16, 16, .32);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: .92rem;
}

.creative-contact__form textarea.form-control {
  border: 1px solid rgba(16, 16, 16, .24);
  background: #fff;
}

.creative-contact__form .btn-dark {
  min-width: 220px;
  border-radius: 0;
  font-size: .84rem;
  font-weight: 500 !important;
}

.creative-origins {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(390px, .75fr);
  min-height: 620px;
  background: var(--cr-black);
  color: rgba(255, 255, 255, .74);
}

.creative-origins__media {
  overflow: hidden;
}

.creative-origins__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creative-origins__copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(3rem, 6vw, 6rem);
}

.creative-origins__copy h2 {
  margin: 0;
  color: #fff;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.45;
}

.creative-origins__copy > p:not(.creative-section-label) {
  margin: 2rem 0 2.4rem;
  font-size: .88rem;
  line-height: 1.9;
}

@media (max-width: 991px) {
  .creative-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .creative-process li:nth-child(3) {
    border-right: 0;
  }

  .creative-process li:nth-child(n + 4) {
    border-top: 1px solid var(--cr-line);
  }

  .creative-section-header,
  .creative-consult__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .creative-consult__header {
    gap: 1.5rem;
  }

  .creative-philosophy article {
    min-height: 500px;
  }

  .creative-origins {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .creative-container {
    width: min(100% - 32px, 1180px);
  }

  .creative-section {
    padding: 4.5rem 0;
  }

  .creative-grid {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }

  .creative-heading {
    font-size: clamp(1.85rem, 8vw, 2.25rem);
    line-height: 1.45;
  }

  .creative-hero {
    min-height: calc(100svh - 56px);
  }

  .creative-hero__media {
    position: absolute;
    inset: 0;
  }

  .creative-hero__media img {
    object-position: center;
  }

  .creative-hero__media::after {
    background:
      linear-gradient(0deg, rgba(5, 6, 6, .9) 0%, rgba(5, 6, 6, .62) 44%, rgba(5, 6, 6, .12) 78%),
      linear-gradient(90deg, rgba(5, 6, 6, .58) 0%, rgba(5, 6, 6, .08) 72%);
  }

  .creative-hero__copy {
    align-items: flex-end;
    width: min(100% - 32px, 1180px);
    min-height: calc(100svh - 56px);
    padding: 4rem 0 3.5rem;
  }

  .creative-kicker {
    margin-bottom: 1.7rem;
  }

  .creative-hero h1 {
    font-size: clamp(2.2rem, 10vw, 2.8rem);
  }

  .creative-hero__lead {
    margin-top: 1.6rem;
    font-size: .88rem;
  }

  .creative-mobile-break {
    display: block;
  }

  .creative-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1.35rem;
    width: 100%;
    margin-top: 2.1rem;
  }

  .creative-button {
    width: 100%;
  }

  .creative-text-link {
    align-self: flex-start;
  }

  .creative-page-nav__inner {
    justify-content: flex-start;
    width: 100%;
    padding-inline: 1rem;
  }

  .creative-process {
    grid-template-columns: 1fr;
    margin-top: 3.2rem;
  }

  .creative-process li,
  .creative-process li:nth-child(3) {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    min-height: auto;
    padding: 1.1rem .25rem;
    border-top: 1px solid var(--cr-line);
    border-right: 0;
  }

  .creative-process li:first-child {
    border-top: 0;
  }

  .creative-process span {
    margin-bottom: 0;
  }

  .creative-section-header {
    gap: 2.4rem;
    margin-bottom: 3rem;
  }

  .creative-service {
    grid-template-columns: 1fr;
  }

  .creative-service__identity,
  .creative-service__content {
    padding: 2rem 1rem;
  }

  .creative-service__identity {
    border-right: 0;
    border-bottom: 1px solid var(--cr-line);
  }

  .creative-service__en {
    margin-bottom: 2rem;
  }

  .creative-service__list--two-columns,
  .creative-service__list--media {
    grid-template-columns: 1fr;
  }

  .creative-service__list li:nth-child(odd) {
    border-right: 0;
  }

  .creative-price__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }

  .creative-price-table-wrap {
    margin-right: -1rem;
    padding-right: 1rem;
  }

  .creative-philosophy__grid {
    grid-template-columns: 1fr;
  }

  .creative-philosophy article {
    min-height: auto;
    padding: 2.3rem 1rem 3rem;
  }

  .creative-philosophy article:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

  .creative-philosophy h2 {
    margin-bottom: 2.2rem;
    font-size: 2rem;
  }

  .creative-consult__examples {
    grid-template-columns: 1fr;
  }

  .creative-consult__examples li:nth-child(odd) {
    border-right: 0;
  }

  .creative-contact__header {
    text-align: left;
  }

  .creative-contact__form {
    margin-top: 2.7rem;
    padding: 1.5rem 1rem;
  }

  .creative-origins {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .creative-origins__media {
    aspect-ratio: 4 / 3;
  }

  .creative-origins__copy {
    padding: 3.5rem 1.5rem 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .creative *,
  .creative *::before,
  .creative *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
