:root {
  --ink: #080808;
  --paper: #f4f1ea;
  --paper-2: #e8e2d8;
  --white: #ffffff;
  --muted: #8d887e;
  --line: rgba(255, 255, 255, 0.32);
  --line-bright: rgba(255, 255, 255, 0.72);
  --line-glow: rgba(255, 255, 255, 0.2);
  --line-dark: rgba(8, 8, 8, 0.18);
  --accent: #b99a63;
  --font-en: "Inter", "Arial", sans-serif;
  --font-jp: "Noto Sans JP", sans-serif;
  --scroll-depth: 0;
  --page-progress: 0%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-jp);
  line-height: 1.75;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

video,
img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.62);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 18px rgba(255, 255, 255, 0.06);
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header::after {
  position: absolute;
  right: auto;
  bottom: -1px;
  left: 0;
  width: var(--page-progress);
  height: 1px;
  background: var(--line-bright);
  box-shadow: 0 0 16px var(--line-glow);
  content: "";
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.9);
}

.logo {
  display: grid;
  align-content: center;
  min-height: 78px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
  font-family: var(--font-en);
  font-weight: 900;
  line-height: 1;
}

.logo span {
  font-size: 1.75rem;
}

.logo small {
  margin-top: 5px;
  color: rgba(244, 241, 234, 0.62);
  font-size: 0.68rem;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  padding: 0 36px;
  color: rgba(244, 241, 234, 0.74);
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 800;
}

.desktop-nav a {
  position: relative;
  padding: 30px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  height: 1px;
  background: var(--line-bright);
  box-shadow: 0 0 12px var(--line-glow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 78px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}

.menu-button i,
.menu-button i::before,
.menu-button i::after {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--line-bright);
  box-shadow: 0 0 12px var(--line-glow);
  content: "";
}

.menu-button i {
  position: relative;
}

.menu-button i::before,
.menu-button i::after {
  position: absolute;
  left: 0;
}

.menu-button i::before {
  top: -8px;
}

.menu-button i::after {
  top: 8px;
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 54px;
  align-items: end;
  padding: 88px 56px 56px;
  background: var(--ink);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.menu-panel.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.menu-close {
  position: absolute;
  top: 26px;
  right: 32px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px 18px;
  color: var(--paper);
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}

.menu-panel__nav {
  display: grid;
}

.menu-panel__nav a {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-family: var(--font-en);
  font-size: 4.1rem;
  font-weight: 900;
  line-height: 1;
}

.menu-panel__info {
  color: rgba(244, 241, 234, 0.62);
  font-family: var(--font-en);
}

.menu-panel__info a {
  color: var(--paper);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 58px;
  align-items: center;
  min-height: 100vh;
  padding: 124px 54px 54px;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.22) contrast(1.08) brightness(0.62);
  transform: scale(calc(1.02 + (var(--scroll-depth) * 0.035))) translateY(calc(var(--scroll-depth) * 22px));
  transform-origin: center;
  transition: transform 120ms linear;
  will-change: transform;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.62) 42%, rgba(8, 8, 8, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.12) 0%, rgba(8, 8, 8, 0.9) 96%);
  content: "";
}

.hero__content,
.hero__facts {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: var(--font-en);
  font-size: 0.76rem;
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: var(--font-en);
  font-size: 3.95rem;
  font-weight: 900;
  line-height: 0.98;
}

.hero__statement {
  max-width: 520px;
  margin: 26px 0 0;
  border-left: 3px solid var(--line-bright);
  padding-left: 16px;
  color: var(--paper);
  font-size: 1.14rem;
  font-weight: 900;
  line-height: 1.65;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}

.hero__lead {
  max-width: 590px;
  margin: 18px 0 0;
  color: rgba(244, 241, 234, 0.82);
  font-size: 0.98rem;
  font-weight: 700;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero__tags li {
  border: 1px solid var(--line-bright);
  padding: 7px 11px;
  color: rgba(244, 241, 234, 0.74);
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.04), 0 0 16px rgba(255, 255, 255, 0.08);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 38px;
}

.primary-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 48px;
  border: 1px solid currentColor;
  padding: 0 22px;
  font-family: var(--font-en);
  font-size: 0.76rem;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.primary-link {
  background: var(--paper);
  color: var(--ink);
}

.primary-link:hover,
.primary-link:focus-visible {
  background: transparent;
  color: var(--paper);
  transform: translateY(-2px);
}

.text-link {
  border-color: transparent;
  color: var(--paper);
}

.text-link::after {
  margin-left: 10px;
  content: "->";
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent);
  transform: translateY(-2px);
}

.hero__facts {
  justify-self: end;
  width: 100%;
  max-width: 390px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  padding: 16px;
  background: rgba(8, 8, 8, 0.22);
  backdrop-filter: blur(6px);
  box-shadow:
    inset 0 0 26px rgba(255, 255, 255, 0.03),
    0 0 18px rgba(255, 255, 255, 0.07);
}

.hero__map {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 43%, rgba(255, 255, 255, 0.12), transparent 15%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.045), transparent 62%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 100% 50px, 70px 100%;
}

.hero__map-viewport {
  position: absolute;
  inset: 10px 12px 30px;
}

.hero__map-grid,
.hero__world-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__map-grid {
  opacity: 0.42;
}

.hero__world-map {
  object-fit: contain;
  opacity: 0.9;
  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.12))
    drop-shadow(0 0 24px rgba(255, 255, 255, 0.08));
}

.hero__map .map-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: block;
  width: 14px;
  height: 14px;
  animation: pinFloat 4.8s ease-in-out infinite;
  animation-delay: var(--pin-delay, 0s);
  color: var(--paper);
  font-family: var(--font-en);
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  transform: translate(-7px, -7px);
}

.map-pin i {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.28);
  animation: pinCoreGlow 3s ease-in-out infinite;
  animation-delay: var(--pin-delay, 0s);
}

.map-pin i::before,
.map-pin i::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.map-pin i::before {
  inset: -3px;
  background: rgba(255, 255, 255, 0.22);
  filter: blur(8px);
  opacity: 0.5;
}

.map-pin i::after {
  inset: -8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  animation: pinHalo 3s ease-out infinite;
  animation-delay: var(--pin-delay, 0s);
}

.map-pin em {
  position: absolute;
  top: var(--label-y, 16px);
  left: var(--label-x, 18px);
  display: block;
  min-width: max-content;
  animation: pinLabelGlow 3s ease-in-out infinite;
  animation-delay: var(--pin-delay, 0s);
  color: rgba(244, 241, 234, 0.86);
  font-style: normal;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.16);
}

.map-pin--create {
  z-index: 1;
  width: 10px;
  height: 10px;
  transform: translate(-5px, -5px);
}

.map-pin--create i {
  width: 10px;
  height: 10px;
  border-color: rgba(185, 154, 99, 0.9);
  background: rgba(185, 154, 99, 0.42);
  box-shadow: 0 0 16px rgba(185, 154, 99, 0.38);
  animation-name: createPinCoreGlow;
}

.map-pin--create i::before {
  inset: -3px;
  background: rgba(185, 154, 99, 0.32);
}

.map-pin--create i::after {
  inset: -8px;
  border-color: rgba(185, 154, 99, 0.32);
}

.map-pin--france {
  top: 22.8%;
  left: 50.7%;
  --pin-delay: 0.2s;
}

.map-pin--italy {
  top: 26.7%;
  left: 53.5%;
  --pin-delay: 1.35s;
}

.map-pin--los-angeles {
  top: 31.1%;
  left: 17.2%;
  --pin-delay: 2.1s;
}

.map-pin--china {
  top: 32.7%;
  left: 83.7%;
  --pin-delay: 0.75s;
}

.map-pin--korea {
  top: 29.1%;
  left: 85.3%;
  --pin-delay: 1.95s;
}

.map-pin--malaysia {
  top: 48.3%;
  left: 78.2%;
  --pin-delay: 2.55s;
}

.map-pin--jakarta {
  top: 53.5%;
  left: 79.7%;
  --pin-delay: 0.45s;
}

.map-pin--india {
  top: 34.1%;
  left: 71.4%;
  --pin-delay: 1.15s;
}

.map-pin--new-york {
  top: 27.4%;
  left: 29.4%;
  --pin-delay: 2.35s;
}

.map-pin--spain {
  top: 27.4%;
  left: 49%;
  --pin-delay: 0.95s;
}

.map-pin--cambodia {
  top: 43.6%;
  left: 79.1%;
  --pin-delay: 1.7s;
}

.map-pin--fukuoka {
  top: 31.3%;
  left: 86.2%;
  --label-x: -94px;
  --label-y: 12px;
  --pin-delay: 0s;
}

.map-pin--tokyo {
  top: 30.2%;
  left: 88.8%;
  --label-x: -78px;
  --label-y: -21px;
  --pin-delay: 0.85s;
}

.map-pin--bali {
  top: 54.7%;
  left: 82%;
  --label-x: -64px;
  --label-y: 15px;
  --pin-delay: 1.7s;
}

.hero__map-legend {
  position: absolute;
  right: 12px;
  bottom: 8px;
  z-index: 3;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 8, 8, 0.42);
  color: rgba(244, 241, 234, 0.72);
  font-family: var(--font-en);
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.hero__map-legend span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.legend-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  box-shadow: 0 0 12px currentColor;
}

.legend-dot--office {
  background: rgba(255, 255, 255, 0.84);
  color: rgba(255, 255, 255, 0.5);
}

.legend-dot--create {
  background: rgba(185, 154, 99, 0.95);
  color: rgba(185, 154, 99, 0.58);
}

@keyframes pinFloat {
  0%,
  100% {
    transform: translate(-7px, -7px);
  }

  50% {
    transform: translate(-7px, -10px);
  }
}

@keyframes pinCoreGlow {
  0%,
  100% {
    background: rgba(255, 255, 255, 0.17);
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.22);
  }

  50% {
    background: rgba(255, 255, 255, 0.38);
    box-shadow:
      0 0 18px rgba(255, 255, 255, 0.36),
      0 0 32px rgba(255, 255, 255, 0.18);
  }
}

@keyframes createPinCoreGlow {
  0%,
  100% {
    background: rgba(185, 154, 99, 0.32);
    box-shadow: 0 0 12px rgba(185, 154, 99, 0.28);
  }

  50% {
    background: rgba(207, 174, 104, 0.72);
    box-shadow:
      0 0 16px rgba(185, 154, 99, 0.56),
      0 0 28px rgba(185, 154, 99, 0.24);
  }
}

@keyframes pinHalo {
  0% {
    opacity: 0.18;
    transform: scale(0.78);
  }

  48% {
    opacity: 0.68;
  }

  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

@keyframes pinLabelGlow {
  0%,
  100% {
    color: rgba(244, 241, 234, 0.72);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
  }

  50% {
    color: rgba(255, 255, 255, 0.95);
    text-shadow:
      0 0 14px rgba(255, 255, 255, 0.22),
      0 0 28px rgba(255, 255, 255, 0.12);
  }
}

.hero__base-list {
  padding: 15px 0 0;
}

.hero__base-list p {
  margin: 0;
  color: rgba(244, 241, 234, 0.54);
  font-family: var(--font-en);
  font-size: 0.66rem;
  font-weight: 900;
}

.hero__base-list ul {
  display: grid;
  gap: 0;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.hero__base-list li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 9px 0;
}

.hero__base-list span,
.hero__base-list small,
.hero__creators span,
.hero__creators small {
  color: rgba(244, 241, 234, 0.56);
  font-family: var(--font-en);
  font-size: 0.64rem;
  font-weight: 900;
}

.hero__base-list strong {
  color: var(--paper);
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero__creators {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.hero__creators strong {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-en);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 0.9;
}

.intro-section,
.global-section,
.works-section,
.service-section,
.company-section,
.contact-section {
  padding: 104px 54px;
}

.intro-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(110px, 0.18fr) minmax(520px, 0.88fr) minmax(300px, 0.48fr);
  gap: 42px;
  align-items: center;
  min-height: 720px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  isolation: isolate;
  background: var(--ink);
  color: var(--paper);
}

.intro-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.78) 44%, rgba(8, 8, 8, 0.14) 72%, rgba(8, 8, 8, 0.24) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.03) 0%, rgba(8, 8, 8, 0.54) 100%);
  content: "";
  pointer-events: none;
}

.intro-section .section-index,
.intro-section__copy {
  position: relative;
  z-index: 1;
}

.section-index {
  display: flex;
  gap: 18px;
  align-items: start;
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 0.76rem;
  font-weight: 900;
}

.section-index span {
  color: var(--accent);
}

.section-index p {
  margin: 0;
}

.intro-section__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.intro-section__visual::before {
  display: none;
}

.intro-section__visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.86) 0%, rgba(8, 8, 8, 0.44) 46%, rgba(8, 8, 8, 0) 74%, rgba(8, 8, 8, 0.08) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0) 0%, rgba(8, 8, 8, 0.32) 100%);
  content: "";
  pointer-events: none;
}

.intro-section__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 50%;
  filter: grayscale(0.04) contrast(1.03) saturate(0.98) brightness(0.86);
  opacity: 1;
}

.intro-video-card__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.42) 48%, rgba(8, 8, 8, 0.24) 100%);
  pointer-events: none;
}

.intro-video-card__content {
  position: absolute;
  right: clamp(28px, 5vw, 78px);
  bottom: clamp(34px, 7vw, 86px);
  z-index: 3;
  display: grid;
  justify-items: start;
  width: min(38vw, 480px);
  text-align: left;
}

.intro-video-card__play {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(244, 241, 234, 0.76);
  border-radius: 50%;
  font-size: 0.85rem;
  transition: transform 180ms ease, background 180ms ease;
}

.intro-video-card:hover .intro-video-card__play,
.intro-video-card:focus-visible .intro-video-card__play {
  transform: scale(1.08);
  background: rgba(244, 241, 234, 0.14);
}

.intro-video-card:focus-visible { outline: 2px solid var(--paper); outline-offset: -6px; }
.intro-video-card__content strong { font-size: clamp(1.05rem, 1.65vw, 1.55rem); line-height: 1.5; }
.intro-video-card__content small { max-width: 360px; margin-top: 10px; color: rgba(244, 241, 234, 0.68); font-family: var(--font-en); font-size: 0.66rem; font-weight: 800; line-height: 1.6; letter-spacing: 0.04em; }

.video-modal { position: fixed; inset: 0; z-index: 200; display: grid; visibility: hidden; place-items: center; padding: 24px; opacity: 0; transition: opacity 180ms ease, visibility 180ms ease; }
.video-modal.is-open { visibility: visible; opacity: 1; }
.video-modal__backdrop { position: absolute; inset: 0; border: 0; background: rgba(0, 0, 0, 0.88); cursor: pointer; }
.video-modal__panel { position: relative; z-index: 1; width: min(88vh, 780px); }
.video-modal__panel video { display: block; width: 100%; max-height: calc(100vh - 110px); background: #000; }
.video-modal__close { position: absolute; right: 0; bottom: calc(100% + 12px); border: 0; background: transparent; color: var(--paper); font-family: var(--font-en); font-size: 0.72rem; font-weight: 900; cursor: pointer; }
body.video-modal-open { overflow: hidden; }

.intro-section__copy {
  max-width: 700px;
  padding-left: 0;
}

.intro-section__copy h2,
.section-head h2,
.service-section__head h2,
.company-section h2,
.contact-section h2 {
  margin: 0;
  font-size: 3.55rem;
  font-weight: 900;
  line-height: 1;
}

.intro-section__copy p,
.intro-note p,
.service-section__head p,
.contact-section__body p {
  margin: 30px 0 0;
  color: rgba(8, 8, 8, 0.7);
  font-weight: 700;
}

.intro-section .section-index {
  color: rgba(244, 241, 234, 0.58);
}

.intro-section__copy p {
  color: rgba(244, 241, 234, 0.78);
}

.intro-ceo-link {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 241, 234, 0.24);
  color: var(--paper);
  font-family: var(--font-en);
  text-decoration: none;
}

.intro-ceo-link span,
.intro-ceo-link small {
  color: rgba(244, 241, 234, 0.58);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.intro-ceo-link strong {
  font-family: var(--font-ja);
  font-size: 1rem;
  font-weight: 900;
}

.intro-ceo-link small::after {
  display: inline-block;
  margin-left: 10px;
  content: "->";
  transition: transform 0.22s ease;
}

.intro-ceo-link:hover small::after {
  transform: translateX(4px);
}

.intro-note {
  align-self: end;
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
}

.global-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(620px, 1fr);
  gap: 56px;
  align-items: center;
  min-height: 760px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.global-section__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.global-section__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.04) brightness(0.48);
}

.global-section__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.64) 48%, rgba(8, 8, 8, 0.88) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.18) 0%, rgba(8, 8, 8, 0.9) 100%);
  content: "";
}

.video-showcase__copy,
.video-showcase__grid {
  position: relative;
  z-index: 1;
}

.video-showcase__copy h2 {
  margin: 0;
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 0.95;
}

.video-showcase__copy p:last-child {
  max-width: 520px;
  margin: 30px 0 0;
  color: rgba(244, 241, 234, 0.78);
  font-weight: 700;
}

.video-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.video-card {
  position: relative;
  display: grid;
  align-content: start;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(8, 8, 8, 0.42);
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.03),
    0 18px 50px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}

.video-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(185, 154, 99, 0);
  content: "";
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}

.video-card:hover::before,
.video-card:focus-within::before {
  border-color: rgba(185, 154, 99, 0.62);
  box-shadow: inset 0 0 38px rgba(185, 154, 99, 0.08);
}

.video-card__frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 45%),
    rgba(255, 255, 255, 0.04);
}

.video-card__frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  content: "";
}

.video-card__frame iframe {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.08) contrast(1.04) brightness(0.84);
  transform: scale(1.015);
}

.video-card__open {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.video-card__open span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.42);
  color: var(--paper);
  font-family: var(--font-en);
  font-size: 0.64rem;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.12);
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.video-card__open:hover span,
.video-card__open:focus-visible span {
  border-color: rgba(185, 154, 99, 0.9);
  background: rgba(185, 154, 99, 0.92);
  color: var(--ink);
  transform: translateY(-2px);
}

.video-card__body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.video-card__body span {
  color: var(--accent);
  font-family: var(--font-en);
  font-size: 0.66rem;
  font-weight: 900;
}

.video-card__body h3 {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-en);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.15;
}

.video-card__body p {
  margin: 0;
  color: rgba(244, 241, 234, 0.68);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.7;
}

.works-section {
  background: var(--ink);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

.works-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.works-actions {
  display: none;
}

.works-more-button {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 54px;
  border: 1px solid rgba(244, 241, 234, 0.42);
  background: transparent;
  color: var(--paper);
  font-family: var(--font-en);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.works-more-button::after {
  font-size: 1rem;
  content: "+";
}

.works-section.is-expanded .works-more-button::after {
  content: "−";
}

.works-more-button:hover,
.works-more-button:focus-visible {
  border-color: var(--paper);
  background: rgba(244, 241, 234, 0.08);
}

.works-more-button:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}

.work-card {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: end;
  min-height: 340px;
  border: 1px solid var(--line);
  background: #101010;
  padding: 26px;
  overflow: hidden;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.035);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.work-card--feature {
  grid-row: span 2;
  min-height: 698px;
}

.work-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.12) contrast(1.06) brightness(0.72);
  opacity: 0.78;
  transform: scale(1.01);
  transition: filter 260ms ease, opacity 260ms ease, transform 260ms ease;
}

.work-card::before,
.work-card::after {
  position: absolute;
  inset: 0;
  content: "";
}

.work-card::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.16) 0%, rgba(8, 8, 8, 0.2) 40%, rgba(8, 8, 8, 0.88) 100%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.46) 0%, transparent 72%);
}

.work-card::after {
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 8, 8, 0.94) 100%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.work-card:hover::after,
.work-card:focus-visible::after {
  opacity: 1;
}

.work-card:hover,
.work-card:focus-visible {
  border-color: var(--line-bright);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.05),
    0 0 22px rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.work-card:hover .work-card__image,
.work-card:focus-visible .work-card__image {
  filter: grayscale(0.04) contrast(1.08) brightness(0.82);
  opacity: 0.92;
  transform: scale(1.05);
}

.work-card span,
.work-card h3,
.work-card time {
  position: relative;
  z-index: 2;
}

.work-card span,
.work-card time {
  color: var(--accent);
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 900;
}

.work-card h3 {
  margin: 14px 0 18px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.service-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) 1fr;
  gap: 60px;
  background: var(--paper);
  color: var(--ink);
}

.service-section__head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  gap: 56px;
  align-items: end;
}

.service-section__head p {
  margin-top: 0;
}

.service-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.service-list article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 260px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 24px 24px 28px;
  background: rgba(244, 241, 234, 0.62);
}

.service-list article::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--service-image);
  background-position: center;
  background-size: cover;
  filter: grayscale(0.34) contrast(1.18) saturate(1.04);
  opacity: 0.68;
  transform: scale(1.04);
  transition:
    opacity 420ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  content: "";
}

.service-list article::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(244, 241, 234, 0.32) 0%, rgba(244, 241, 234, 0.48) 54%, rgba(244, 241, 234, 0.78) 100%),
    radial-gradient(circle at 70% 16%, rgba(185, 154, 99, 0.12), transparent 36%);
  content: "";
}

.service-list article:hover::before,
.service-list article:focus-within::before {
  opacity: 0.78;
  transform: scale(1);
}

.service-list article span {
  color: var(--accent);
  font-family: var(--font-en);
  font-size: 0.76rem;
  font-weight: 900;
}

.service-list h3 {
  margin: 38px 0 0;
  font-size: 1.16rem;
  line-height: 1.55;
  text-shadow: 0 1px 14px rgba(244, 241, 234, 0.72);
}

.service-list p {
  margin: 12px 0 0;
  color: rgba(8, 8, 8, 0.72);
  font-weight: 700;
  text-shadow: 0 1px 14px rgba(244, 241, 234, 0.62);
}

.clients-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.clients-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.clients-track + .clients-track {
  border-top: 1px solid var(--line);
}

.clients-track--secondary {
  animation-duration: 32s;
  animation-delay: -11s;
}

.client-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 78px;
  border-right: 1px solid var(--line);
  padding: 18px 24px;
}

.clients-section--stacked .client-logo {
  min-height: 68px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.client-logo::before,
.client-logo::after {
  position: absolute;
  opacity: 0.54;
  content: "";
}

.client-logo::before {
  top: 14px;
  right: 22px;
  left: 22px;
  height: 1px;
  background: rgba(244, 241, 234, 0.42);
}

.client-logo::after {
  right: 22px;
  bottom: 14px;
  left: 22px;
  height: 1px;
  background: rgba(244, 241, 234, 0.18);
}

.client-logo img {
  width: auto;
  max-width: 128px;
  max-height: 30px;
  object-fit: contain;
  opacity: 0.88;
}

.client-logo--wide img {
  max-width: 154px;
}

.client-logo--tokyo-mx img,
.client-logo--samurai img,
.client-logo--puma img,
.client-logo--verizon img,
.client-logo--dentsu img {
  filter: brightness(0) invert(1) grayscale(1);
}

.client-logo--tokyo-mx img {
  max-width: 158px;
  max-height: 26px;
}

.client-logo--samurai img {
  max-width: 96px;
  max-height: 42px;
}

.client-logo--puma img {
  max-width: 142px;
  max-height: 42px;
}

.client-logo--verizon img {
  max-width: 154px;
  max-height: 34px;
}

.client-logo--dentsu img {
  max-width: 156px;
  max-height: 34px;
}

.client-logo--fukuoka-pref img {
  max-width: 138px;
  max-height: 42px;
}

.client-logo--miyazaki-pref img {
  max-width: 150px;
  max-height: 42px;
}

.client-logo--hatsukaichi {
  min-width: 214px;
}

.client-logo--hatsukaichi img {
  max-width: 178px;
  max-height: 44px;
}

.client-logo--stardust img {
  max-width: 168px;
  max-height: 35px;
}

.client-logo--tall img {
  max-height: 42px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

body.reveal-ready .reveal-item {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(34px);
  transition:
    opacity 760ms ease,
    filter 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

body.reveal-ready .reveal-item.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

body.reveal-ready .line-reveal {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.02), var(--line-bright), rgba(255, 255, 255, 0.02));
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 920ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 120ms);
}

body.reveal-ready .line-reveal.is-visible {
  background-size: 100% 1px;
}

body.reveal-ready .work-card.reveal-item.is-visible:hover,
body.reveal-ready .work-card.reveal-item.is-visible:focus-visible {
  transform: translateY(-5px);
}

.company-section {
  background: var(--ink);
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 18px;
}

.company-grid dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-grid div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.company-grid dt {
  color: var(--accent);
  font-family: var(--font-en);
  font-size: 0.74rem;
  font-weight: 900;
}

.company-grid dd {
  margin: 0;
  color: rgba(244, 241, 234, 0.84);
}

.company-grid a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.2fr minmax(280px, 460px);
  gap: 64px;
  align-items: end;
  background: var(--paper);
  color: var(--ink);
}

.contact-section__body p {
  margin-top: 0;
  margin-bottom: 30px;
}

.message-page .site-shell {
  background: var(--ink);
}

.message-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 760px;
  overflow: hidden;
  padding: 150px 54px 92px;
  background: var(--ink);
  color: var(--paper);
}

.message-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.message-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 44%;
  filter: grayscale(0.06) contrast(1.04) saturate(0.92) brightness(0.68);
}

.message-hero__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.74) 44%, rgba(8, 8, 8, 0.18) 72%, rgba(8, 8, 8, 0.58) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.18) 0%, rgba(8, 8, 8, 0.94) 100%);
  content: "";
}

.message-hero__content {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.message-hero h1 {
  margin: 0;
  font-size: 4.4rem;
  font-weight: 900;
  line-height: 0.98;
}

.message-hero__lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(244, 241, 234, 0.84);
  font-size: 1.14rem;
  font-weight: 900;
  line-height: 1.85;
}

.message-statement,
.message-profile,
.message-interview {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
  padding: 104px 54px;
}

.message-statement {
  display: grid;
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 1fr) minmax(280px, 380px);
  gap: 56px;
  align-items: start;
  background:
    radial-gradient(circle at 78% 12%, rgba(185, 154, 99, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(244, 241, 234, 0.03), rgba(8, 8, 8, 0));
}

.message-statement .section-index {
  color: rgba(244, 241, 234, 0.58);
}

.message-statement__body {
  max-width: 900px;
}

.message-statement__body p {
  margin: 0;
  color: rgba(244, 241, 234, 0.8);
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.16;
}

.message-statement__body p + p {
  margin-top: 24px;
}

.message-statement__body strong {
  color: var(--paper);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(185, 154, 99, 0.7);
  text-underline-offset: 5px;
}

.message-statement__lead {
  color: var(--paper);
  font-size: 1.16rem;
  line-height: 2;
}

.message-statement__closing {
  color: var(--paper);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.4;
}

.message-statement__note {
  margin-top: 38px;
  border-top: 1px solid rgba(185, 154, 99, 0.42);
  border-bottom: 1px solid rgba(244, 241, 234, 0.16);
  padding: 22px 0;
}

.message-statement__note span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 900;
}

.message-statement__note p {
  color: rgba(244, 241, 234, 0.72);
  font-size: 0.94rem;
  line-height: 2;
}

.message-translations {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 12px;
}

.message-translations details {
  border: 1px solid rgba(244, 241, 234, 0.18);
  background: rgba(244, 241, 234, 0.04);
}

.message-translations summary {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 68px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}

.message-translations summary::-webkit-details-marker {
  display: none;
}

.message-translations summary::after {
  color: rgba(244, 241, 234, 0.62);
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 900;
  content: "+";
}

.message-translations details[open] summary::after {
  content: "-";
}

.message-translations summary span {
  color: var(--accent);
  font-family: var(--font-en);
  font-size: 0.74rem;
  font-weight: 900;
}

.message-translations summary strong {
  color: var(--paper);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.35;
}

.message-translation__body {
  border-top: 1px solid rgba(244, 241, 234, 0.14);
  padding: 18px;
}

.message-translation__body p {
  margin: 0;
  color: rgba(244, 241, 234, 0.68);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.9;
}

.message-translation__body p + p {
  margin-top: 16px;
}

.message-translation__body strong {
  color: var(--paper);
}

.message-profile {
  display: grid;
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 1fr) minmax(250px, 340px);
  gap: 56px;
  align-items: start;
}

.message-profile .section-index {
  color: rgba(244, 241, 234, 0.58);
}

.message-profile__body {
  max-width: 920px;
}

.message-profile__body p {
  margin: 0;
  color: rgba(244, 241, 234, 0.82);
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.18;
}

.message-profile__body p + p {
  margin-top: 28px;
}

.message-profile__portrait {
  position: sticky;
  top: 106px;
  justify-self: end;
  width: 100%;
  max-width: 340px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 234, 0.22);
  background: rgba(244, 241, 234, 0.04);
}

.message-profile__portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(0.06) contrast(1.04) saturate(0.88) brightness(0.94);
}

.message-profile__portrait figcaption {
  display: grid;
  gap: 5px;
  border-top: 1px solid rgba(244, 241, 234, 0.2);
  padding: 16px;
}

.message-profile__portrait span {
  color: rgba(244, 241, 234, 0.54);
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.message-profile__portrait strong {
  color: var(--paper);
  font-size: 1rem;
  font-weight: 900;
}

.message-interview {
  display: grid;
  gap: 56px;
}

.message-interview .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.message-interview__visual {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-top: 1px solid rgba(244, 241, 234, 0.18);
  border-bottom: 1px solid rgba(244, 241, 234, 0.18);
  background: rgba(244, 241, 234, 0.04);
}

.message-interview__visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.28) 0%, rgba(8, 8, 8, 0.02) 48%, rgba(8, 8, 8, 0.46) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.04) 0%, rgba(8, 8, 8, 0.54) 100%);
  content: "";
  pointer-events: none;
}

.message-interview__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 56% 44%;
  filter: grayscale(0.04) contrast(1.03) saturate(0.92) brightness(0.82);
}

.message-interview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 44px;
}

.message-interview__grid article {
  border-top: 1px solid rgba(244, 241, 234, 0.24);
  padding: 30px 0 34px;
}

.message-interview__grid span {
  color: var(--accent);
  font-family: var(--font-en);
  font-size: 0.74rem;
  font-weight: 900;
}

.message-interview__grid h3 {
  margin: 14px 0 0;
  font-size: 1.24rem;
  font-weight: 900;
  line-height: 1.55;
}

.message-interview__grid p {
  margin: 18px 0 0;
  color: rgba(244, 241, 234, 0.74);
  font-weight: 700;
}

.message-source-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border-bottom: 1px solid rgba(244, 241, 234, 0.42);
  color: rgba(244, 241, 234, 0.82);
  font-family: var(--font-en);
  font-size: 0.76rem;
  font-weight: 900;
}

.message-source-link::after {
  content: "->";
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 34px;
  align-items: end;
  border-top: 1px solid var(--line);
  background: var(--ink);
  padding: 44px 54px;
  color: rgba(244, 241, 234, 0.64);
}

.site-footer strong {
  color: var(--paper);
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
}

.site-footer p {
  margin: 4px 0 0;
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 700;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  color: var(--paper);
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 900;
}

.site-footer small {
  justify-self: end;
  font-family: var(--font-en);
  font-size: 0.68rem;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 200px 1fr auto;
  }

  .desktop-nav {
    gap: 22px;
    padding: 0 24px;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .intro-section,
  .global-section,
  .service-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-section { min-height: 820px; align-items: end; }
  .intro-section__copy { max-width: 620px; padding-bottom: 220px; }
  .intro-video-card__content { right: 24px; bottom: 48px; width: min(52vw, 430px); }

  .message-statement {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
    gap: 38px;
  }

  .message-statement .section-index {
    grid-column: 1 / -1;
  }

  .message-translations {
    top: 92px;
  }

  .message-profile {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
    gap: 38px;
  }

  .message-profile .section-index {
    grid-column: 1 / -1;
  }

  .message-profile__portrait {
    position: static;
    width: min(100%, 340px);
  }

  .message-interview__grid {
    grid-template-columns: 1fr;
  }

  .video-showcase__copy h2 {
    font-size: 3.25rem;
  }

  .service-list {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .works-grid {
    grid-template-columns: 1fr 1fr;
  }

  .work-card--feature {
    grid-column: span 2;
    min-height: 520px;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .logo {
    min-height: 72px;
    border-right: 0;
    padding: 0 20px;
  }

  .logo span {
    font-size: 1.5rem;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    min-width: 82px;
    min-height: 72px;
  }

  .menu-button span {
    display: none;
  }

  .menu-panel {
    grid-template-columns: 1fr;
    padding: 92px 24px 34px;
  }

  .menu-panel__nav a {
    font-size: 2.75rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 920px;
    padding: 112px 24px 44px;
  }

  .hero__media::after {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.34) 0%, rgba(8, 8, 8, 0.94) 88%),
      linear-gradient(90deg, rgba(8, 8, 8, 0.76) 0%, rgba(8, 8, 8, 0.24) 100%);
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero__statement {
    font-size: 1.08rem;
  }

  .hero__facts {
    margin-top: 42px;
    max-width: none;
    padding: 18px;
    background: rgba(8, 8, 8, 0.34);
    backdrop-filter: none;
  }

  .intro-section,
  .global-section,
  .works-section,
  .service-section,
  .company-section,
  .contact-section,
  .message-hero,
  .message-statement,
  .message-profile,
  .message-interview,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .intro-section__copy h2,
  .video-showcase__copy h2,
  .section-head h2,
  .service-section__head h2,
  .company-section h2,
  .contact-section h2,
  .message-hero h1 {
    font-size: 2.7rem;
  }

  .message-hero {
    min-height: 720px;
    padding-top: 128px;
    padding-bottom: 68px;
  }

  .message-hero__lead {
    font-size: 1rem;
  }

  .message-statement {
    grid-template-columns: 1fr;
  }

  .message-statement .section-index {
    grid-column: auto;
  }

  .message-translations {
    position: static;
  }

  .message-profile {
    grid-template-columns: 1fr;
  }

  .message-profile .section-index {
    grid-column: auto;
  }

  .message-profile__portrait {
    justify-self: start;
    max-width: 360px;
  }

  .message-interview__visual,
  .message-interview__visual img {
    min-height: 390px;
  }

  .intro-section__visual {
    width: auto;
    min-height: 0;
  }

  .section-head,
  .service-section__head,
  .contact-section,
  .company-grid,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .global-section {
    min-height: 720px;
  }

  .section-head {
    align-items: start;
  }

  .section-head .text-link {
    justify-content: flex-start;
    width: auto;
    min-width: 0;
    min-height: 0;
    padding: 0;
  }

  .works-grid,
  .service-list,
  .video-showcase__grid {
    grid-template-columns: 1fr;
  }

  .service-section {
    gap: 36px;
  }

  .service-section__head {
    gap: 22px;
  }

  .service-list article {
    min-height: 230px;
  }

  .work-card,
  .work-card--feature {
    grid-column: auto;
    min-height: 330px;
  }

  .work-card--extra {
    display: none;
  }

  .works-section.is-expanded .work-card--extra {
    display: grid;
  }

  .works-actions {
    display: flex;
    justify-content: center;
    margin-top: 28px;
  }

  .company-grid div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer small {
    justify-self: start;
  }

  .intro-section { min-height: 980px; }
  .intro-section::after { background: linear-gradient(180deg, rgba(8,8,8,.92) 0%, rgba(8,8,8,.65) 55%, rgba(8,8,8,.2) 100%); }
  .intro-section__copy { align-self: start; padding-bottom: 360px; }
  .intro-video-card__content { right: 24px; bottom: 42px; left: 24px; width: auto; }
  .intro-video-card__play { width: 52px; height: 52px; margin-bottom: 14px; }
}

@media (max-width: 520px) {
  .hero {
    min-height: 860px;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .hero__statement {
    font-size: 1rem;
  }

  .hero__lead {
    font-size: 0.96rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .primary-link,
  .hero__actions .text-link,
  .contact-section .primary-link {
    width: 100%;
  }

  .service-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .service-list article {
    min-height: 210px;
    padding: 22px 20px 24px;
  }

  .service-list h3 {
    margin-top: 30px;
  }

  .intro-section__copy h2,
  .video-showcase__copy h2,
  .section-head h2,
  .service-section__head h2,
  .company-section h2,
  .contact-section h2,
  .message-hero h1 {
    font-size: 2.15rem;
  }

  .message-statement,
  .message-profile,
  .message-interview {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .message-statement__body p {
    font-size: 0.96rem;
    line-height: 2;
  }

  .message-statement__lead {
    font-size: 1.04rem;
  }

  .message-translations summary {
    grid-template-columns: 34px 1fr auto;
    padding: 14px;
  }

  .message-profile__body p {
    font-size: 0.96rem;
    line-height: 2;
  }

  .message-profile__portrait {
    width: 100%;
    max-width: none;
  }

  .message-interview__visual,
  .message-interview__visual img {
    min-height: 320px;
  }

  .message-interview__grid h3 {
    font-size: 1.08rem;
  }

  .intro-ceo-link {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    width: 100%;
  }

  .intro-section__visual {
    width: auto;
    min-height: 0;
    aspect-ratio: auto;
  }

  .intro-section__copy {
    padding-left: 0;
  }

  .client-logo {
    min-width: 164px;
    min-height: 72px;
    padding: 14px 18px;
  }

  .clients-section--stacked .client-logo {
    min-height: 64px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .client-logo img {
    max-width: 110px;
    max-height: 28px;
  }

  .client-logo--wide img {
    max-width: 126px;
  }

  .client-logo--tokyo-mx img {
    max-width: 132px;
    max-height: 24px;
  }

  .client-logo--samurai img {
    max-width: 86px;
    max-height: 38px;
  }

  .client-logo--puma img {
    max-width: 124px;
    max-height: 38px;
  }

  .client-logo--verizon img {
    max-width: 132px;
    max-height: 30px;
  }

  .client-logo--dentsu img {
    max-width: 132px;
    max-height: 30px;
  }

  .client-logo--fukuoka-pref img {
    max-width: 118px;
    max-height: 36px;
  }

  .client-logo--miyazaki-pref img {
    max-width: 132px;
    max-height: 36px;
  }

  .client-logo--hatsukaichi {
    min-width: 196px;
  }

  .client-logo--hatsukaichi img {
    max-width: 158px;
    max-height: 39px;
  }

  .client-logo--stardust img {
    max-width: 136px;
    max-height: 30px;
  }

  .client-logo--tall img {
    max-height: 36px;
  }
}

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

/* ABOUT: keep the original camera visual and add a separate playable card. */
.intro-section__background { pointer-events: none; }
.intro-section__background img { object-position: 62% 46%; }
.intro-section__copy { max-width: 610px; padding-bottom: 0; }
.about-video-teaser { position: absolute; top: 50%; right: clamp(90px,7.5vw,120px); z-index: 4; width: clamp(260px,26vw,360px); aspect-ratio: 1 / 1; padding: 0; overflow: hidden; transform: translateY(-50%); border: 1px solid rgba(244,241,234,.42); background: #080808; color: var(--paper); cursor: pointer; box-shadow: 0 26px 70px rgba(0,0,0,.38); }
.about-video-teaser img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 350ms ease; }
.about-video-teaser__shade { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(8,8,8,.04) 18%,rgba(8,8,8,.88) 100%); }
.about-video-teaser__content { position: absolute; right: 22px; bottom: 22px; left: 22px; display: grid; justify-items: start; text-align: left; }
.about-video-teaser__play { display: grid; width: 50px; height: 50px; margin-bottom: 15px; place-items: center; border: 1px solid rgba(244,241,234,.8); border-radius: 50%; font-size: .72rem; transition: transform 180ms ease, background 180ms ease; }
.about-video-teaser strong { font-size: clamp(.93rem,1.25vw,1.2rem); line-height: 1.45; }
.about-video-teaser small { margin-top: 7px; color: rgba(244,241,234,.66); font-family: var(--font-en); font-size: .58rem; font-weight: 800; line-height: 1.45; }
.about-video-teaser:hover img { transform: scale(1.035); }
.about-video-teaser:hover .about-video-teaser__play, .about-video-teaser:focus-visible .about-video-teaser__play { transform: scale(1.08); background: rgba(244,241,234,.14); }
.about-video-teaser:focus-visible { outline: 2px solid var(--paper); outline-offset: 4px; }
.video-modal__close { right: auto; left: 0; padding: 8px 0; font-size: .78rem; letter-spacing: .04em; }

@media (max-width: 1120px) {
  .intro-section__copy { max-width: 560px; padding-bottom: 0; }
  .about-video-teaser { right: 24px; width: 280px; }
}

@media (max-width: 820px) {
  .intro-section { min-height: 0; gap: 28px; align-items: start; padding-top: 72px; padding-bottom: 72px; }
  .intro-section__copy { padding-bottom: 0; }
  .about-video-teaser { position: relative; top: auto; right: auto; bottom: auto; left: auto; justify-self: start; width: min(360px,100%); aspect-ratio: 16 / 10; transform: none; }
}

/* WORKS article */
.work-article-page .site-shell {
  background: var(--ink);
}

.work-article {
  background: var(--paper);
  color: var(--ink);
}

.work-article__hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(880px, 86vh);
  overflow: hidden;
  background: #080808;
  color: var(--paper);
}

.work-article__hero-media,
.work-article__hero-media::after {
  position: absolute;
  inset: 0;
}

.work-article__hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(0.9) brightness(0.68);
}

.work-article__hero-media::after {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.78) 0%, rgba(8, 8, 8, 0.2) 64%, rgba(8, 8, 8, 0.4) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.08) 24%, rgba(8, 8, 8, 0.92) 100%);
  content: "";
}

.work-article__hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 1380px);
  margin: 0 auto;
  padding: 156px 54px 76px;
}

.work-article__back {
  display: inline-flex;
  margin-bottom: 42px;
  color: rgba(244, 241, 234, 0.72);
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: color 180ms ease;
}

.work-article__back:hover,
.work-article__back:focus-visible {
  color: var(--paper);
}

.work-article__meta {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(244, 241, 234, 0.76);
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.work-article__meta span {
  border: 1px solid rgba(244, 241, 234, 0.48);
  padding: 7px 10px;
}

.work-article__hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.work-article__body {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 112px 54px 136px;
}

.work-article__lead {
  max-width: 760px;
  margin: 0 0 72px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.34;
}

.work-article__copy {
  width: min(100%, 760px);
  margin: 0 auto;
}

.work-article__copy p {
  margin: 0;
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 2.15;
}

.work-article__copy p + p {
  margin-top: 32px;
}

.work-article__statement {
  margin-top: 72px !important;
  margin-bottom: 72px !important;
  border-top: 1px solid rgba(8, 8, 8, 0.2);
  border-bottom: 1px solid rgba(8, 8, 8, 0.2);
  padding: 48px 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em;
  line-height: 1.65 !important;
}

.work-article__video {
  width: 100%;
  margin: 88px 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #080808;
  box-shadow: 0 28px 70px rgba(8, 8, 8, 0.18);
}

.work-article__video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.work-article__brand {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 104px;
  border-top: 1px solid rgba(8, 8, 8, 0.22);
  border-bottom: 1px solid rgba(8, 8, 8, 0.22);
  padding: 34px 0;
}

.work-article__brand span {
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.work-article__brand strong {
  font-size: 1.2rem;
  font-weight: 900;
}

.work-article__brand p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.8;
}

.work-article__footer-link {
  display: flex;
  gap: 20px;
  align-items: baseline;
  width: fit-content;
  margin: 80px auto 0;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 7px;
  color: var(--ink);
  font-family: var(--font-en);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.work-article__footer-link span {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

@media (max-width: 820px) {
  .work-article__hero {
    min-height: 680px;
  }

  .work-article__hero-media img {
    object-position: 58% center;
  }

  .work-article__hero-copy {
    padding: 120px 24px 48px;
  }

  .work-article__back {
    margin-bottom: 160px;
  }

  .work-article__hero h1 {
    font-size: clamp(2.4rem, 11vw, 4rem);
  }

  .work-article__body {
    padding: 72px 24px 92px;
  }

  .work-article__lead {
    margin-bottom: 52px;
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .work-article__copy p {
    font-size: 0.96rem;
    line-height: 2.05;
  }

  .work-article__video {
    width: calc(100% + 48px);
    margin: 64px -24px;
  }

  .work-article__statement {
    margin-top: 52px !important;
    margin-bottom: 52px !important;
    padding: 36px 0;
  }

  .work-article__brand {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 76px;
    padding: 26px 0;
  }

  .work-article__brand strong {
    margin-top: 10px;
  }
}
