@charset "UTF-8";

:root {
  --bg: #f2f0eb;
  --text: #111111;
  --line: #c9c6bf;
  --muted: #77736b;
  --max: 1440px;
  --pad: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.page { overflow: hidden; }

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: multiply;
}

.logo {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: .06em;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
}

.nav a,
.footer-links a {
  position: relative;
}

.nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}

.nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  max-width: var(--max);
  margin: auto;
  padding: 130px var(--pad) 42px;
}

.hero-meta {
  position: absolute;
  top: 120px;
  left: var(--pad);
  display: flex;
  gap: 16px;
  font-size: 10px;
  letter-spacing: .12em;
}

.hero-meta span + span::before {
  content: "/";
  margin-right: 16px;
  color: var(--muted);
}

.hero-title {
  position: absolute;
  z-index: 2;
  top: 22%;
  left: var(--pad);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(72px, 12vw, 190px);
  line-height: .86;
  letter-spacing: -.07em;
  font-weight: 600;
}

.hero-image {
  width: min(62vw, 790px);
  margin-left: auto;
  padding-top: 80px;
}

.placeholder-art,
.work-image,
.wip-image {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #d8d5ce 0%, #eeece7 48%, #c4c0b8 100%);
}

.placeholder-art {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
}

.placeholder-art::before,
.work-image::before,
.wip-image::before {
  content: "";
  position: absolute;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(17,17,17,.28);
  left: 28%;
  top: 25%;
}

.placeholder-art span {
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.04em;
  text-align: center;
  position: relative;
}

.image-caption {
  margin: 9px 0 0;
  font-size: 9px;
  letter-spacing: .12em;
}

.hero-bottom {
  position: absolute;
  bottom: 42px;
  left: var(--pad);
  right: var(--pad);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: .12em;
}

.hero-bottom a { transition: opacity .25s; }
.hero-bottom a:hover { opacity: .5; }

.section {
  max-width: var(--max);
  margin: auto;
  padding: 180px var(--pad);
  display: grid;
  grid-template-columns: 70px minmax(280px, .8fr) 1.2fr;
  gap: 50px;
  border-top: 1px solid var(--line);
}

.section-index {
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--muted);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 86px);
  line-height: .92;
  letter-spacing: -.06em;
  font-weight: 500;
}

.about-copy {
  max-width: 560px;
  padding-top: 8px;
}

.about-copy p {
  font-size: 15px;
  line-height: 2;
  margin: 0 0 24px;
}

.about-copy .lead {
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.55;
  letter-spacing: -.03em;
}

.profile {
  margin: 70px 0 0;
  border-top: 1px solid var(--line);
}

.profile div {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: .08em;
}

.profile dt { color: var(--muted); }
.profile dd { margin: 0; }

.works {
  display: block;
}

.works .section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 100px;
}

.works .section-heading .eyebrow {
  margin: 0;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 70px 30px;
}

.work-card {
  grid-column: span 5;
}

.work-large {
  grid-column: 1 / span 7;
}

.work-offset {
  grid-column: 8 / span 5;
  margin-top: 180px;
}

.work-image {
  aspect-ratio: 1 / 1.15;
  display: grid;
  place-items: center;
}

.work-large .work-image {
  aspect-ratio: 1.2 / 1;
}

.work-image span {
  position: relative;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.1;
}

.work-info {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 4px 15px;
  padding-top: 13px;
}

.work-info span,
.work-info p {
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--muted);
}

.work-info h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.02em;
}

.work-info p {
  grid-column: 2;
  margin: 0;
}

.wips {
  display: block;
}

.wips .section-heading {
  margin-bottom: 90px;
}

.wip-list {
  border-top: 1px solid var(--line);
}

.wip {
  display: grid;
  grid-template-columns: 70px 240px 1fr;
  align-items: center;
  gap: 35px;
  min-height: 220px;
  border-bottom: 1px solid var(--line);
}

.wip-number {
  font-size: 11px;
  color: var(--muted);
}

.wip-image {
  width: 240px;
  height: 160px;
  display: grid;
  place-items: center;
}

.wip-image span {
  position: relative;
  font-size: 10px;
  letter-spacing: .14em;
}

.wip-text h3 {
  margin: 3px 0 10px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -.04em;
}

.wip-text p:last-child {
  margin: 0;
  max-width: 450px;
  font-size: 12px;
  line-height: 1.8;
}

.wip-date {
  margin: 0;
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--muted);
}

.final-cta {
  padding: 220px var(--pad);
  border-top: 1px solid var(--line);
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 28px;
  font-size: clamp(52px, 9vw, 130px);
  line-height: .9;
  letter-spacing: -.07em;
  font-weight: 500;
}

.final-cta > p:last-child {
  font-size: 10px;
  letter-spacing: .14em;
}

.footer {
  max-width: var(--max);
  margin: auto;
  padding: 40px var(--pad) 30px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 50px;
  align-items: end;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-brand strong {
  font-size: 13px;
  letter-spacing: .06em;
}

.footer-brand span,
.footer small,
.footer-links {
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 20px;
  color: var(--text);
}

@media (max-width: 760px) {
  .header {
    height: 68px;
    padding: 16px 20px;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: var(--bg);
    padding: 120px 20px 40px;
    flex-direction: column;
    gap: 24px;
    font-size: 30px;
    letter-spacing: -.02em;
    transform: translateY(-100%);
    transition: transform .45s cubic-bezier(.76,0,.24,1);
  }

  .nav.is-open { transform: translateY(0); }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text);
    transition: transform .3s;
  }

  .menu-toggle.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .hero {
    min-height: 100svh;
    padding: 100px 20px 30px;
  }

  .hero-meta {
    top: 95px;
    left: 20px;
    font-size: 8px;
  }

  .hero-title {
    top: 25%;
    left: 20px;
  }

  .hero h1 {
    font-size: clamp(68px, 22vw, 130px);
  }

  .hero-image {
    width: 78vw;
    margin-left: auto;
    padding-top: 90px;
  }

  .hero-bottom {
    left: 20px;
    right: 20px;
    bottom: 30px;
    font-size: 8px;
  }

  .hero-bottom span { display: none; }

  .section {
    padding: 110px 20px;
    display: block;
  }

  .section-index {
    margin-bottom: 25px;
  }

  .section-heading h2 {
    font-size: 56px;
  }

  .about-copy {
    margin-top: 55px;
  }

  .profile { margin-top: 50px; }

  .works .section-heading {
    display: block;
    margin-bottom: 60px;
  }

  .works-grid {
    display: block;
  }

  .work-card,
  .work-large,
  .work-offset {
    margin: 0 0 65px;
  }

  .work-large .work-image,
  .work-image {
    aspect-ratio: 1 / 1.05;
  }

  .work-offset {
    width: 86%;
    margin-left: 14%;
  }

  .wips .section-heading {
    margin-bottom: 55px;
  }

  .wip {
    grid-template-columns: 35px 1fr;
    gap: 18px;
    padding: 28px 0;
    min-height: 0;
  }

  .wip-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1.4 / 1;
  }

  .wip-text {
    grid-column: 2;
  }

  .wip-text h3 { font-size: 24px; }

  .final-cta {
    padding: 150px 20px;
  }

  .footer {
    padding: 35px 20px 25px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-links { order: 2; }
  .footer small { order: 3; }
}
