@charset "UTF-8";
:root {
  --paper: #eeeaf5;
  --ink: #392d3e;
  --plum: #59344d;
  --muted: #716679;
  --line: #d5ccdf;
  --white: #fff;
  --accent: #dbfaad;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  line-height: 1.65;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid #884b99;
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
}
.header,
main,
footer {
  max-width: 1440px;
  margin: auto;
}
.header {
  height: 116px;
  padding: 0 64px;
  display: flex;
  align-items: center;
  gap: 50px;
}
.wordmark {
  font-size: 29px;
  letter-spacing: -1.6px;
  font-weight: 800;
}
.wordmark span {
  font-weight: 400;
}
.header nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.header-note {
  font-size: 12px;
  color: var(--muted);
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 70px 64px 110px;
  min-height: 680px;
}
.intro {
  font-size: 14px;
  margin: 0 0 28px;
}
.hero h1 {
  font-size: clamp(44px, 5.1vw, 74px);
  line-height: 1.23;
  letter-spacing: -0.075em;
  font-weight: 600;
  margin: 0 0 28px;
  word-break: keep-all;
}
.hero-description {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
}
.work-link {
  display: inline-flex;
  align-items: center;
  gap: 44px;
  border-bottom: 1px solid var(--ink);
  padding: 16px 0 10px;
  margin-top: 20px;
  font-size: 14px;
}
.work-link span {
  font-size: 24px;
}
.hero-art {
  position: relative;
  padding: 10px 0 70px 10px;
}
.preview-window {
  border-radius: 12px;
  overflow: hidden;
  background: white;
  transform: rotate(-5deg);
  box-shadow: 0 25px 60px #392d3e20;
  border: 1px solid #fff;
}
.window-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 14px;
  border-bottom: 1px solid #eee;
}
.window-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cfc5d5;
}
.window-bar span {
  font-size: 10px;
  margin: auto;
  color: var(--muted);
}
.preview-window img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top;
}
.image-note {
  position: absolute;
  bottom: 0;
  right: -8px;
  background: var(--plum);
  color: white;
  padding: 25px 30px;
  display: flex;
  gap: 40px;
  align-items: center;
  transform: rotate(4deg);
  font-size: 17px;
  line-height: 1.6;
  border-radius: 2px;
}
.image-note svg {
  width: 60px;
  stroke: var(--accent);
  stroke-width: 2;
}
.work {
  padding: 72px 64px 90px;
  background: #fff;
  border-radius: 36px 36px 0 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}
.section-kicker {
  font-size: 13px;
  margin: 0 0 10px;
  color: var(--muted);
}
h2 {
  font-weight: 500;
  margin: 0;
  font-size: 44px;
  letter-spacing: -1.6px;
  line-height: 1.25;
}
.section-heading h2 {
  font-family: Georgia, serif;
  font-size: 54px;
  letter-spacing: -2px;
}
.section-heading h2 span {
  color: var(--plum);
}
.section-heading > p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.filters {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 36px 0;
}
.filters button {
  border: 1px solid #e3dfe7;
  border-radius: 40px;
  padding: 9px 19px;
  background: white;
  color: var(--muted);
  font-size: 14px;
}
.filters button[aria-pressed='true'] {
  background: var(--plum);
  color: white;
  border-color: var(--plum);
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px 28px;
}
.project[hidden] {
  display: none;
}
.artwork {
  display: block;
  position: relative;
  border: 0;
  padding: 0;
  width: 100%;
  text-align: left;
  background: #f1eff3;
  overflow: hidden;
  border-radius: 9px;
}
.artwork img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s;
}
.project[data-category='graphic'] .artwork img {
  object-fit: contain;
}
.artwork:hover img {
  transform: scale(1.025);
}
.open-label {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: white;
  color: var(--ink);
  border-radius: 30px;
  padding: 8px 15px;
  font-size: 12px;
  box-shadow: 0 2px 15px #0001;
}
.project-caption {
  display: flex;
  gap: 15px;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 0 0;
}
.project-caption h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.5px;
}
.project-caption p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.work-footnote {
  font-size: 12px;
  color: var(--muted);
  margin: 44px 0 0;
}
.about {
  padding: 90px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.about h2 {
  font-size: 38px;
  line-height: 1.45;
  letter-spacing: -2px;
}
.about-copy > p {
  margin: 0 0 20px;
  font-size: 16px;
  word-break: keep-all;
}
.about dl {
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
}
.about dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding-top: 18px;
  font-size: 14px;
}
.about dt {
  font-weight: 600;
}
.about dd {
  margin: 0;
  color: var(--muted);
}
footer {
  padding: 30px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}
footer p,
footer > a:last-child {
  font-size: 12px;
  color: var(--muted);
}
.sr-only,
.skip:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.skip:focus {
  position: fixed;
  z-index: 20;
  top: 15px;
  left: 15px;
  padding: 15px;
  background: white;
}
dialog {
  border: 0;
  border-radius: 12px;
  padding: 0;
  width: min(960px, 94vw);
  max-height: 90vh;
  color: var(--ink);
}
dialog::backdrop {
  background: #231729b8;
}
.viewer-head {
  position: sticky;
  top: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
  z-index: 1;
  gap: 15px;
}
.viewer-head h2 {
  font-size: 18px;
  letter-spacing: 0;
}
.viewer-head button {
  background: var(--paper);
  border: 0;
  padding: 8px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.viewer-content {
  padding: 20px;
  background: #f5f3f6;
}
.viewer-content img {
  height: auto;
  margin: auto;
  width: 100%;
}
body.modal-open {
  overflow: hidden;
}
@media (min-width: 1500px) {
  body {
    padding: 0 36px;
  }
}
@media (max-width: 1000px) {
  .header,
  .hero,
  .work,
  .about,
  footer {
    padding-left: 32px;
    padding-right: 32px;
  }
  .header-note {
    display: none;
  }
  .hero {
    gap: 25px;
    min-height: 590px;
  }
  .preview-window img {
    height: 280px;
  }
  .image-note {
    padding: 20px;
    gap: 20px;
  }
  .image-note svg {
    width: 40px;
  }
  .section-heading h2 {
    font-size: 46px;
  }
  .project-caption {
    display: block;
  }
  .project-caption p {
    margin-top: 3px;
  }
  .artwork img {
    height: 270px;
  }
  .about {
    gap: 35px;
  }
}
@media (max-width: 650px) {
  .header {
    height: 84px;
    padding: 0 22px;
  }
  .wordmark {
    font-size: 26px;
  }
  .header nav {
    gap: 22px;
    font-size: 14px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 34px 24px 65px;
    gap: 38px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-description {
    font-size: 16px;
  }
  .intro {
    margin-bottom: 20px;
  }
  .hero-art {
    padding: 8px 14px 48px;
    max-width: 450px;
    width: 100%;
    margin: auto;
  }
  .preview-window img {
    height: 240px;
  }
  .image-note {
    right: 0;
    font-size: 14px;
    padding: 15px 20px;
  }
  .image-note svg {
    width: 38px;
  }
  .work {
    padding: 46px 22px 50px;
    border-radius: 26px 26px 0 0;
  }
  .section-heading {
    display: block;
  }
  .section-heading h2 {
    font-size: 43px;
  }
  .section-heading > p {
    margin-top: 16px;
  }
  .filters {
    margin: 26px 0;
    gap: 7px;
  }
  .filters button {
    font-size: 12px;
    padding: 8px 12px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .artwork img {
    height: 280px;
  }
  .project-caption {
    display: flex;
    gap: 10px;
  }
  .project-caption h3 {
    font-size: 17px;
  }
  .project-caption p {
    font-size: 11px;
  }
  .about {
    grid-template-columns: 1fr;
    padding: 50px 24px;
    gap: 25px;
  }
  .about h2 {
    font-size: 32px;
  }
  .about-copy > p {
    font-size: 15px;
  }
  footer {
    padding: 25px 22px;
    flex-wrap: wrap;
    gap: 12px;
  }
  footer .wordmark {
    width: 100%;
  }
  .viewer-content {
    padding: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* Web-first portfolio, grouped supporting design work */
.work-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 30px 0 38px;
  font-size: 14px;
  color: var(--muted);
}
.work-jumps a {
  padding: 7px 0;
  border-bottom: 1px solid transparent;
}
.work-jumps a:first-child {
  color: var(--plum);
  font-weight: 700;
  border-color: var(--plum);
}
.work-jumps a:hover {
  color: var(--plum);
  border-color: var(--plum);
}
.web-grid .project:first-child {
  grid-column: 1/-1;
}
.web-grid .project:first-child .artwork img {
  height: 490px;
  object-fit: contain;
  background: #eeeaf5;
}
.web-grid .project:first-child h3 {
  font-size: 27px;
}
.web-grid .project:first-child .project-caption p {
  font-size: 14px;
}
.web-grid .project:not(:first-child) .artwork img {
  height: 310px;
}
.web-grid .project:last-child {
  grid-column: 1/-1;
  max-width: calc(50% - 14px);
}
.design-section {
  padding: 55px 64px;
  background: white;
  border-top: 1px solid #e9e4ec;
}
.design-heading {
  margin-bottom: 26px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}
.design-heading h2 {
  font-size: 29px;
  font-weight: 600;
  letter-spacing: -1px;
}
.design-heading p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.design-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 20px;
}
.design-grid .artwork img {
  height: 245px;
}
.detail-section .artwork img {
  height: 340px;
}
.design-grid .project-caption {
  display: block;
}
.design-grid .project-caption h3 {
  font-size: 16px;
}
.design-grid .project-caption p {
  margin-top: 3px;
  font-size: 12px;
}
.graphic-section {
  padding-bottom: 75px;
}
.design-grid .open-label {
  padding: 5px 11px;
  font-size: 11px;
}
.banner-section .artwork img {
  object-fit: contain;
}
.work {
  padding-bottom: 65px;
}
@media (max-width: 1000px) {
  .design-section {
    padding: 44px 32px;
  }
  .web-grid .project:first-child .artwork img {
    height: 380px;
  }
  .design-heading {
    display: block;
  }
  .design-heading p {
    margin-top: 10px;
  }
  .design-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 650px) {
  .design-section {
    padding: 36px 22px;
  }
  .web-grid .project:first-child .artwork img {
    height: 270px;
  }
  .web-grid .project:not(:first-child) .artwork img {
    height: 260px;
  }
  .web-grid .project:last-child {
    max-width: none;
  }
  .web-grid .project:first-child .project-caption {
    display: block;
  }
  .web-grid .project:first-child h3 {
    font-size: 23px;
  }
  .web-grid .project:first-child .project-caption p {
    font-size: 12px;
  }
  .design-grid {
    gap: 22px 12px;
  }
  .design-grid .artwork img {
    height: 160px;
  }
  .detail-section .design-grid {
    grid-template-columns: 1fr;
  }
  .detail-section .artwork img {
    height: 320px;
  }
  .design-heading h2 {
    font-size: 26px;
  }
  .design-grid .project-caption h3 {
    font-size: 14px;
  }
  .design-grid .project-caption p {
    font-size: 11px;
  }
  .work-jumps {
    gap: 8px 18px;
    font-size: 12px;
    margin-bottom: 28px;
  }
  .work {
    padding-bottom: 40px;
  }
}

.development-projects {
  display: grid;
  gap: 60px;
  margin-bottom: 65px;
}
.development-project {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}
.development-image {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid #eee;
}
.development-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: top;
}
.development-role {
  font-size: 12px;
  color: var(--plum);
  font-weight: 700;
  margin: 0 0 8px;
}
.development-copy h3 {
  font-size: 29px;
  line-height: 1.3;
  letter-spacing: -1.3px;
  margin: 0;
  word-break: keep-all;
}
.development-description {
  font-size: 15px;
  margin: 10px 0 20px;
  color: var(--muted);
}
.development-copy dl {
  margin: 0;
}
.development-copy dl > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px;
  margin: 9px 0;
  font-size: 13px;
}
.development-copy dt {
  font-weight: 600;
}
.development-copy dd {
  margin: 0;
  color: var(--muted);
  word-break: keep-all;
}
.tech-stack {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 22px 0 16px;
}
.tech-stack li {
  background: #f1eef5;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11px;
  color: var(--ink);
}
.project-domain {
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.publishing-heading {
  font-size: 23px;
  font-weight: 500;
  margin: 0 0 25px;
  letter-spacing: -0.8px;
}
.web-grid .project:first-child {
  grid-column: auto;
}
.web-grid .project:first-child .artwork img {
  height: 310px;
  object-fit: cover;
}
.web-grid .project:first-child h3 {
  font-size: 19px;
}
.web-grid .project:first-child .project-caption p {
  font-size: 12px;
}
.web-grid .project:last-child {
  grid-column: auto;
  max-width: none;
}
@media (max-width: 1000px) {
  .development-project {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .development-copy h3 {
    font-size: 28px;
  }
}
@media (max-width: 650px) {
  .development-projects {
    gap: 42px;
    margin-bottom: 50px;
  }
  .development-copy h3 {
    font-size: 26px;
  }
  .development-copy dl > div {
    font-size: 12px;
    grid-template-columns: 74px 1fr;
  }
  .web-grid .project:first-child .artwork img {
    height: 260px;
  }
  .web-grid .project:first-child h3 {
    font-size: 17px;
  }
  .publishing-heading {
    font-size: 21px;
  }
}

/* A single shipping-policy collection */
.banner-collection {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}
.banner-carousel {
  min-width: 0;
  touch-action: pan-y;
}
.banner-carousel:focus-visible {
  outline: 3px solid var(--plum);
  outline-offset: 5px;
}
.banner-stage {
  background: #f3f0f6;
  border-radius: 12px;
  padding: 20px;
}
.banner-slide[hidden] {
  display: none;
}
.banner-enlarge {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}
.banner-enlarge > img {
  width: 100%;
  height: 530px;
  object-fit: contain;
}
.banner-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.banner-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--plum);
  font-size: 22px;
}
.banner-controls button:hover {
  background: var(--paper);
}
.banner-controls p {
  font-size: 13px;
  margin: 0;
  text-align: center;
}
.banner-collection-copy h3 {
  font-size: 28px;
  letter-spacing: -1px;
  line-height: 1.4;
  margin: 0 0 18px;
}
.banner-collection-copy > p:not(.section-kicker) {
  font-size: 15px;
  word-break: keep-all;
  color: var(--muted);
}
.banner-collection-copy .banner-hint {
  font-size: 12px !important;
  margin: 22px 0;
}
.banner-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.banner-thumb {
  border: 2px solid transparent;
  padding: 6px;
  background: #f5f2f7;
  border-radius: 7px;
  color: var(--ink);
}
.banner-thumb[aria-pressed='true'] {
  border-color: var(--plum);
  background: var(--paper);
}
.banner-thumb img {
  height: 100px;
  width: 100%;
  object-fit: contain;
}
.banner-thumb span {
  display: block;
  font-size: 11px;
  margin-top: 6px;
}
@media (max-width: 1000px) {
  .banner-collection {
    gap: 26px;
  }
  .banner-enlarge > img {
    height: 440px;
  }
  .banner-thumbnails {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 650px) {
  .banner-collection {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .banner-stage {
    padding: 10px;
  }
  .banner-enlarge > img {
    height: 420px;
    max-height: 65vh;
  }
  .banner-collection-copy h3 {
    font-size: 24px;
  }
  .banner-thumbnails {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .banner-thumb img {
    height: 80px;
  }
}

.app-section {
  padding-top: 65px;
  padding-bottom: 65px;
}
.app-collection {
  margin-top: 35px;
}
.app-collection .banner-stage {
  background: #fff4df;
}
.app-collection .banner-enlarge > img {
  height: 620px;
}
.app-identity {
  display: flex;
  gap: 18px;
  align-items: center;
}
.app-identity > img {
  border-radius: 16px;
  flex-shrink: 0;
}
.app-identity h3 {
  margin: 0;
}
.app-identity .section-kicker {
  margin-bottom: 5px;
}
.app-release {
  margin: 24px 0;
  padding: 14px 18px;
  background: #f5f1f8;
  border-radius: 8px;
}
.app-release p {
  font-size: 13px;
  margin: 5px 0;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.app-release strong {
  font-weight: 600;
}
.app-collection .banner-thumb img {
  height: 90px;
}
@media (max-width: 650px) {
  .app-collection .banner-enlarge > img {
    height: 530px;
    max-height: 75vh;
  }
  .app-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .app-identity {
    gap: 12px;
  }
  .app-identity > img {
    width: 58px;
    height: 58px;
  }
  .app-release {
    padding: 12px;
  }
  .app-release p {
    font-size: 12px;
  }
}
