:root {
  color: #000;
  background: #fff;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #fff;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topbar {
  padding: 0 4px 18px;
}

.wordmark,
.footer-logo,
.marquee div {
  display: block;
  overflow: hidden;
  color: #000;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 12.48vw;
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.072em;
  text-transform: uppercase;
  white-space: nowrap;
}

.wordmark {
  font-size: 12.35vw;
  animation: logo-enter 900ms var(--ease-out) 120ms both;
}

.desktop-nav a {
  animation: nav-enter 700ms var(--ease-out) both;
}

.desktop-nav a:nth-child(1) {
  animation-delay: 240ms;
}

.desktop-nav a:nth-child(2) {
  animation-delay: 300ms;
}

.desktop-nav a:nth-child(3) {
  animation-delay: 360ms;
}

.desktop-nav a:nth-child(4) {
  animation-delay: 420ms;
}

.desktop-nav a:nth-child(5) {
  animation-delay: 480ms;
}

.copy-symbol {
  display: inline-block;
  margin-left: 0.105em;
  transform: translateY(-0.015em);
}

.logo-dot {
  display: inline-block;
  margin-left: 0.018em;
  margin-right: -0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.menu-button {
  display: none;
}

.hero {
  padding: clamp(104px, 10.2vw, 134px) 16px 105px;
}

.hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(3.4rem, 3.37vw, 4rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.04em;
  animation: hero-enter 900ms var(--ease-soft) 360ms both;
}

.section {
  padding: 0 16px 104px;
}

.section::before {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 15px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 900ms var(--ease-out);
  content: "";
}

.section.is-visible::before {
  transform: scaleX(1);
}

.reveal-enabled .section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 650ms var(--ease-soft),
    transform 650ms var(--ease-soft);
}

.reveal-enabled .section.is-visible .section-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 130ms;
}

.section-label span {
  font-size: 20px;
  line-height: 0.8;
}

.section-label h2 {
  margin: 0;
  font-family: "Courier New", monospace;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px 8px;
}

.reveal-enabled .project-card {
  display: grid;
  align-content: start;
  gap: 14px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 780ms var(--ease-soft),
    transform 780ms var(--ease-soft);
}

.reveal-enabled .project-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-enabled .project-card img,
.reveal-enabled .service-media,
.reveal-enabled .approach img,
.reveal-enabled .featured-insight img {
  clip-path: inset(0 0 8% 0);
  filter: saturate(0.92);
  transform: translateY(18px) scale(1.015);
  transition:
    clip-path 850ms var(--ease-soft),
    filter 850ms var(--ease-soft),
    transform 850ms var(--ease-soft);
}

.reveal-enabled .project-card.is-visible img,
.reveal-enabled .service-item.is-visible .service-media,
.reveal-enabled .approach article.is-visible img,
.reveal-enabled .featured-insight.is-visible img {
  clip-path: inset(0);
  filter: saturate(1);
  transform: translateY(0) scale(1);
}

.project-card img {
  aspect-ratio: 1.302 / 1;
  border-radius: 3px;
}

.project-card h3 {
  margin: 0;
  color: #111112;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: -8px;
}

.tags span {
  padding: 1px 3px;
  color: #7d8183;
  background: #f0f0f0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.offset {
  grid-column: 2;
}

.reveal-enabled .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  min-height: 28px;
  margin-top: -60px;
  padding-left: 36px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  background: linear-gradient(#000, #000) left center / 28px 1px no-repeat;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 600ms var(--ease-soft),
    transform 600ms var(--ease-soft);
}

.reveal-enabled .is-visible .text-link {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 320ms;
}

.marquee {
  margin: -18px 0 118px;
  overflow: hidden;
}

.reveal-enabled .marquee div {
  transform: translateY(18px);
  opacity: 0;
  transition:
    opacity 850ms var(--ease-soft),
    transform 850ms var(--ease-soft);
}

.reveal-enabled .marquee.is-visible div {
  opacity: 1;
  transform: translateY(0);
}

.partners {
  padding-bottom: 104px;
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 8px;
  width: 100%;
  color: #7d8183;
  font-size: clamp(3.4rem, 3.37vw, 4rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.04em;
}

.reveal-enabled .partner-list span,
.reveal-enabled .service-item,
.reveal-enabled .approach article,
.reveal-enabled .featured-insight,
.reveal-enabled .insight-list a,
.reveal-enabled .footer-contact,
.reveal-enabled .footer-nav,
.reveal-enabled .footer p {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 760ms var(--ease-soft),
    transform 760ms var(--ease-soft);
}

.reveal-enabled .partner-list span.is-visible,
.reveal-enabled .service-item.is-visible,
.reveal-enabled .approach article.is-visible,
.reveal-enabled .featured-insight.is-visible,
.reveal-enabled .insight-list a.is-visible,
.reveal-enabled .footer-contact.is-visible,
.reveal-enabled .footer-nav.is-visible,
.reveal-enabled .footer p.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services {
  padding-bottom: 104px;
}

.service-accordion {
  border-bottom: 1px solid #dedede;
}

.service-item {
  border-top: 1px solid #dedede;
}

.service-trigger {
  display: grid;
  grid-template-columns: minmax(110px, 50vw) minmax(0, 1fr) 54px;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 0;
  border: 0;
  color: #000;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.service-trigger span {
  color: #828487;
  font-size: 48px;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.service-trigger strong {
  font-size: 56px;
  font-weight: 550;
  line-height: 1.05;
  letter-spacing: -0.03em;
  transition: opacity 260ms var(--ease-soft);
}

.service-item.is-open .service-trigger strong {
  opacity: 0;
}

.service-trigger i {
  position: relative;
  display: block;
  justify-self: end;
  width: 32px;
  height: 32px;
  font-style: normal;
}

.service-trigger i::before,
.service-trigger i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 3px;
  background: #000;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 260ms var(--ease-soft);
}

.service-trigger i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-item.is-open .service-trigger i::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.service-item.is-open .service-trigger i::after {
  transform: translate(-50%, -50%) rotate(135deg);
}

.service-trigger:hover strong,
.service-trigger:focus-visible strong {
  text-decoration: none;
}

.service-trigger:focus-visible {
  outline: 2px solid #000;
  outline-offset: -2px;
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(110px, 24vw) minmax(260px, 26vw) minmax(320px, 1fr);
  gap: 32px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 620ms var(--ease-soft),
    opacity 420ms var(--ease-soft);
}

.service-item.is-open .service-panel {
  max-height: 680px;
  opacity: 1;
}

.service-panel > * {
  min-height: 0;
}

.service-media {
  grid-column: 2;
  align-self: center;
  max-width: 304px;
  aspect-ratio: 1.75 / 1;
  margin: 70px 0 66px;
}

.service-copy {
  grid-column: 3;
  display: grid;
  align-content: start;
  justify-items: start;
  padding: 60px 0 66px;
}

.service-copy h3 {
  margin: 0 0 24px;
  font-size: 56px;
  font-weight: 550;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.service-copy > p {
  max-width: 380px;
  margin: 0 0 58px;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.service-copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-copy li {
  position: relative;
  padding-left: 16px;
  color: #4d4d4d;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.service-copy li::before {
  position: absolute;
  left: 0;
  color: #000;
  content: "●";
  font-size: 11px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.approach article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  padding-left: 12px;
  background: linear-gradient(#d6d6d6, #d6d6d6) left bottom / 1px 210px no-repeat;
}

.approach img {
  width: calc(100% + 12px);
  aspect-ratio: 1;
  margin-bottom: 18px;
  margin-left: -12px;
}

.approach span {
  color: #828487;
  font-size: 26px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.approach h3 {
  margin: 0;
  font-size: clamp(2.35rem, 2.65vw, 3.05rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.approach p {
  max-width: 360px;
  margin: 16px 0 0;
  color: #4d4d4d;
  font-size: clamp(1.12rem, 1.12vw, 1.32rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.insights-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.featured-insight {
  display: grid;
  gap: 18px;
}

.featured-insight img {
  aspect-ratio: 1.3 / 1;
}

.featured-insight h3 {
  margin: 0 0 4px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.featured-insight p {
  margin: 0;
  color: #7d8183;
  font-size: 16px;
}

.insight-list {
  display: grid;
  align-content: start;
  gap: 28px;
  padding-top: 8px;
}

.insight-list a {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 14px;
  padding-bottom: 26px;
  border-bottom: 1px solid #000;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.insight-list span {
  color: #7d8183;
  font-size: 16px;
  line-height: 1.1;
}

.insight-list .text-link {
  display: inline-flex;
  grid-template-columns: none;
  justify-self: start;
  margin-top: 0;
  padding-bottom: 0;
  border: 0;
  font-size: 18px;
}

.article-main {
  padding: 116px 16px 128px;
}

.article-hero {
  display: grid;
  gap: 30px;
  padding-bottom: 58px;
  border-bottom: 1px solid #000;
}

.article-meta {
  margin: 0;
  color: #7d8183;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 1280px;
  margin: 0;
  font-size: clamp(3.4rem, 5.6vw, 6.4rem);
  font-weight: 650;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.article-lead {
  max-width: 860px;
  margin: 0;
  color: #2d2d2d;
  font-size: clamp(1.5rem, 2.2vw, 2.5rem);
  font-weight: 550;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.article-image {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  margin: 58px 0;
  border-radius: 3px;
  object-fit: cover;
}

.article-body {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr);
  gap: 48px;
  max-width: 1180px;
}

.article-body aside {
  color: #7d8183;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.article-content {
  display: grid;
  gap: 30px;
}

.article-content h2 {
  margin: 28px 0 0;
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.article-content p,
.article-content li {
  margin: 0;
  color: #3f3f3f;
  font-size: clamp(1.1rem, 1.25vw, 1.35rem);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.article-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  margin: 0;
}

.article-back {
  display: inline-flex;
  width: fit-content;
  margin-top: 44px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.news-main {
  padding: 116px 16px 128px;
}

.news-hero {
  display: grid;
  gap: 26px;
  padding-bottom: 76px;
  border-bottom: 1px solid #000;
}

.news-hero h1 {
  margin: 0;
  font-size: clamp(5rem, 11vw, 13rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.news-hero p {
  max-width: 860px;
  margin: 0;
  color: #3f3f3f;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  font-weight: 550;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.news-list {
  display: grid;
  padding-top: 0;
  border-bottom: 1px solid #dedede;
}

.news-card {
  display: grid;
  grid-template-columns: minmax(120px, 18vw) minmax(0, 1fr) minmax(260px, 34vw);
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid #dedede;
}

.news-card span {
  color: #828487;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.news-card h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.news-card img {
  aspect-ratio: 1.45 / 1;
  border-radius: 3px;
}

.footer {
  padding: 0 4px 28px;
  color: #fff;
  background: #000;
}

.reveal-enabled .footer-logo {
  opacity: 0;
  transform: translateY(-22px);
  transition:
    opacity 900ms var(--ease-out),
    transform 900ms var(--ease-out);
}

.reveal-enabled .footer-logo.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-logo {
  color: #fff;
  padding-top: 16px;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 80px 0 52px;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.04em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  padding-top: 16px;
  border-top: 1px solid #fff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer p {
  margin: 42px 0 0;
  color: #d8d8d8;
  font-size: 14px;
}

@media (max-width: 900px) {
  .topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    color: #fff;
    background: #000;
  }

  .wordmark {
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.06em;
    animation: mobile-logo-enter 700ms var(--ease-out) 80ms both;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    font: inherit;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    animation: nav-enter 700ms var(--ease-out) 160ms both;
  }

  .hero {
    padding: 100px 12px 86px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.1rem, 8.7vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.055em;
  }

  .section {
    padding: 0 12px 88px;
  }

  .section-label {
    margin-bottom: 48px;
  }

  .section-label h2 {
    font-size: 12px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offset {
    grid-column: auto;
  }

  .project-card {
    gap: 11px;
  }

  .project-card img {
    aspect-ratio: 1.25 / 1;
  }

  .project-card h3 {
    font-size: 16px;
  }

  .tags span {
    font-size: 12px;
  }

  .text-link {
    margin-top: 34px;
    font-size: 16px;
  }

  .marquee {
    display: none;
  }

  .partner-list {
    display: grid;
    gap: 8px;
    font-size: 32px;
    line-height: 1;
  }

  .service-trigger {
    grid-template-columns: 64px 1fr 34px;
    min-height: 70px;
  }

  .service-trigger span,
  .service-trigger strong {
    font-size: 28px;
  }

  .service-trigger i {
    width: 24px;
    height: 24px;
  }

  .service-trigger i::before,
  .service-trigger i::after {
    width: 22px;
    height: 2px;
  }

  .service-panel {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-media {
    grid-column: 1;
    width: 100%;
    max-width: none;
    aspect-ratio: 1.25 / 1;
    margin: 22px 0 28px;
  }

  .service-copy {
    grid-column: 1;
    padding: 0 0 34px;
  }

  .service-copy h3 {
    margin: 0 0 220px;
    font-size: 32px;
    line-height: 1.2;
  }

  .service-copy > p {
    max-width: none;
    margin-bottom: 46px;
  }

  .service-copy li {
    font-size: 16px;
  }

  .approach-grid,
  .insights-layout {
    grid-template-columns: 1fr;
  }

  .approach h3 {
    font-size: 32px;
  }

  .insight-list a {
    grid-template-columns: 1fr;
    font-size: 24px;
  }

  .article-main {
    padding: 72px 12px 96px;
  }

  .news-main {
    padding: 72px 12px 96px;
  }

  .news-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0;
  }

  .article-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-image {
    aspect-ratio: 1.25 / 1;
    margin: 36px 0;
  }

  .footer {
    padding: 12px;
  }

  .footer-logo {
    font-size: clamp(3.8rem, 17vw, 7rem);
    white-space: normal;
  }

  .footer-contact {
    grid-template-columns: 1fr;
    padding: 72px 0 48px;
    font-size: 36px;
  }
}

@keyframes logo-enter {
  from {
    opacity: 0;
    transform: translateY(-42px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobile-logo-enter {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nav-enter {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .section::before,
  .section.is-visible::before {
    transform: none;
  }

  .section-label,
  .project-card,
  .project-card img,
  .service-media,
  .approach img,
  .featured-insight img,
  .text-link,
  .marquee div,
  .partner-list span,
    .service-item,
  .approach article,
  .featured-insight,
  .insight-list a,
  .footer-logo,
  .footer-contact,
  .footer-nav,
  .footer p {
    clip-path: none;
    filter: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    max-width: none;
  }

  .footer-contact {
    font-size: 32px;
  }
}
