:root {
  --ink: #121932;
  --deep: #0a1024;
  --paper: #f4f1e9;
  --mist: #dcecf0;
  --aqua: #8fd9e8;
  --red: #ed4b3f;
  --yellow: #f2d45e;
  --line: rgba(18, 25, 50, 0.2);
  --pad: clamp(20px, 4.6vw, 72px);
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", "Yu Gothic", YuGothic, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

figure,
p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

section {
  scroll-margin-top: var(--header-h);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 8px 14px;
  color: white;
  background: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  color: var(--paper);
  mix-blend-mode: difference;
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 19px;
}

.brand-copy {
  display: grid;
  gap: 5px;
}

.brand-copy b {
  font-size: 12px;
  letter-spacing: 0.16em;
}

.brand-copy small {
  font-size: 7px;
  letter-spacing: 0.28em;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

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

.menu-button {
  width: 74px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  font-size: 9px;
  letter-spacing: 0.2em;
}

.menu-button i,
.menu-button i::before,
.menu-button i::after {
  width: 14px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 0.35s var(--ease);
}

.menu-button i {
  position: relative;
}

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

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

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

.menu-open .menu-button i {
  background: transparent;
}

.menu-open .menu-button i::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-open .menu-button i::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu-panel {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--deep);
  visibility: hidden;
  opacity: 0;
  clip-path: circle(0 at calc(100% - var(--pad) - 35px) 38px);
  transition:
    clip-path 0.75s var(--ease),
    opacity 0.25s ease,
    visibility 0s linear 0.75s;
}

.menu-open .menu-panel {
  visibility: visible;
  opacity: 1;
  clip-path: circle(150% at calc(100% - var(--pad) - 35px) 38px);
  transition:
    clip-path 0.8s var(--ease),
    opacity 0.25s ease;
}

.menu-panel nav {
  position: relative;
  z-index: 2;
  display: grid;
}

.menu-panel nav a {
  display: flex;
  align-items: baseline;
  gap: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 8vw, 110px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  transition: color 0.25s ease, transform 0.45s var(--ease);
}

.menu-panel nav a:hover {
  color: var(--aqua);
  transform: translateX(18px);
}

.menu-panel nav span {
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.2em;
}

.menu-panel > p {
  position: absolute;
  right: var(--pad);
  bottom: 35px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-orbit {
  position: absolute;
  width: min(72vw, 850px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.menu-orbit::before,
.menu-orbit::after {
  content: "";
  position: absolute;
  inset: 9%;
  border: inherit;
  border-radius: inherit;
  transform: rotate(35deg) scaleY(0.65);
}

.menu-orbit::after {
  transform: rotate(-35deg) scaleY(0.65);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--paper);
  background: var(--deep);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 8;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 12.5vw 12.5vw;
}

.hero-sun {
  position: absolute;
  z-index: 0;
  top: 9%;
  right: 12%;
  width: clamp(200px, 34vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 34%, #f9f0cf 0 4%, transparent 4.5%),
    radial-gradient(circle, var(--red) 0 66%, #b92032 67% 100%);
  box-shadow: 0 0 80px rgba(237, 75, 63, 0.18);
}

.hero-kicker {
  position: absolute;
  z-index: 5;
  top: calc(var(--header-h) + 18px);
  left: var(--pad);
  display: flex;
  gap: 24px;
  font-size: 8px;
  letter-spacing: 0.23em;
}

.hero-title {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(82px, 16.5vw, 264px);
  font-weight: 900;
  line-height: 0.67;
  letter-spacing: -0.065em;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

.title-line {
  display: flex;
  justify-content: center;
  white-space: nowrap;
}

.title-line-top {
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.14vw, 3px) var(--paper);
}

.title-line-bottom {
  color: var(--paper);
}

.hero-letter {
  display: inline-block;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.hero-art {
  position: absolute;
  z-index: 2;
  top: 12%;
  left: 50%;
  width: clamp(380px, 46vw, 710px);
  transform: translateX(-50%);
  text-align: center;
}

.hero-art-frame {
  height: min(72svh, 720px);
  overflow: hidden;
  clip-path: polygon(15% 0, 88% 0, 100% 86%, 82% 100%, 10% 94%, 0 14%);
  background: var(--mist);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.22);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.93) contrast(1.04);
}

.hero-art figcaption {
  position: absolute;
  right: -20px;
  bottom: 7%;
  display: grid;
  justify-items: start;
  padding: 10px 16px;
  color: var(--deep);
  background: var(--yellow);
  border: 1px solid var(--deep);
  transform: rotate(-4deg);
}

.hero-art figcaption span {
  font-size: 7px;
  letter-spacing: 0.22em;
}

.hero-art figcaption b {
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.hero-peek {
  position: absolute;
  z-index: 4;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 233, 0.6);
  background: var(--mist);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.hero-peek img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.hero-peek:hover img {
  transform: scale(1.06);
}

.hero-peek span {
  position: absolute;
  right: 7px;
  bottom: 7px;
  padding: 5px 8px;
  color: var(--deep);
  background: var(--paper);
  font-size: 7px;
  letter-spacing: 0.16em;
}

.hero-peek-a {
  top: 20%;
  left: 4.5%;
  width: clamp(120px, 14vw, 220px);
  aspect-ratio: 1.12;
  transform: rotate(-5deg);
}

.hero-peek-a img {
  object-position: 24% center;
}

.hero-peek-b {
  right: 4.5%;
  bottom: 12%;
  width: clamp(100px, 12vw, 180px);
  aspect-ratio: 0.78;
  transform: rotate(5deg);
}

.hero-peek-b img {
  object-position: 50% 25%;
}

.hero-note {
  position: absolute;
  z-index: 5;
  bottom: 12%;
  left: var(--pad);
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.55);
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: 0.08em;
  line-height: 1.9;
}

.cursor-hint {
  position: absolute;
  z-index: 6;
  right: var(--pad);
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 7px;
  letter-spacing: 0.18em;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.cursor-hint i {
  width: 38px;
  height: 1px;
  background: currentColor;
}

.scroll-link {
  position: absolute;
  z-index: 6;
  right: 20%;
  bottom: 3.5%;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 7px;
  letter-spacing: 0.2em;
}

.scroll-link svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.scroll-link circle {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: stroke-dashoffset 0.7s var(--ease);
}

.scroll-link:hover circle {
  stroke-dashoffset: 0;
}

.section-shell {
  padding-right: var(--pad);
  padding-left: var(--pad);
}

.statement {
  min-height: 72svh;
  display: grid;
  grid-template-columns: 1fr 4fr 1.2fr;
  align-items: center;
  gap: 3vw;
  padding: 8vw var(--pad);
  background:
    linear-gradient(90deg, transparent 49.9%, var(--line) 50%, transparent 50.1%),
    var(--paper);
}

.eyebrow {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.statement > .eyebrow {
  align-self: start;
  margin-top: 7px;
  writing-mode: vertical-rl;
}

.statement-copy {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 5vw, 74px);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.04em;
}

.statement-copy em {
  position: relative;
  color: var(--red);
  font-style: normal;
}

.statement-copy em::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 3px;
  left: -8px;
  height: 0.23em;
  background: var(--yellow);
  z-index: -1;
  transform: rotate(-2deg);
}

.statement-side {
  align-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-style: italic;
  line-height: 1.6;
}

.works {
  padding-top: 10vw;
  padding-bottom: 12vw;
  background: var(--mist);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2.2fr 1.2fr;
  align-items: end;
  gap: 4vw;
  margin-bottom: clamp(42px, 7vw, 100px);
}

.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(76px, 14vw, 210px);
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: -0.08em;
}

.section-heading > p:last-child {
  padding-bottom: 10px;
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 12px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2.4vw, 38px);
  padding: 0 var(--pad);
}

.work-card {
  position: relative;
}

.work-card a {
  display: block;
}

.work-card figure {
  overflow: hidden;
  background: #cbdde1;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.9s var(--ease),
    filter 0.5s ease;
}

.work-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

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

.work-card-wide figure {
  aspect-ratio: 1.45;
}

.work-card-tall {
  grid-column: 9 / span 4;
  margin-top: 12vw;
}

.work-card-tall figure {
  aspect-ratio: 0.72;
}

.work-card-tall img {
  object-position: 50% 34%;
}

.work-card-square {
  grid-column: 2 / span 4;
  margin-top: 4vw;
}

.work-card-square figure {
  aspect-ratio: 1;
}

.work-card-square img {
  object-position: 40% center;
}

.work-card-landscape {
  grid-column: 7 / span 6;
  margin-top: 12vw;
}

.work-card-landscape figure {
  aspect-ratio: 1.42;
}

.work-meta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 20px;
  padding-top: 14px;
  border-top: 1px solid var(--ink);
}

.work-meta span {
  grid-column: 1 / -1;
  font-size: 7px;
  letter-spacing: 0.2em;
}

.work-meta h3 {
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.1;
}

.work-meta h3 small {
  display: inline-block;
  margin-left: 8px;
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.work-meta i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-style: normal;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.35s var(--ease);
}

.work-card:hover .work-meta i {
  color: var(--paper);
  background: var(--ink);
  transform: rotate(45deg);
}

.characters {
  padding: 11vw 0 13vw;
  overflow: hidden;
  color: var(--paper);
  background: var(--deep);
}

.characters-intro {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  align-items: end;
  gap: 8vw;
  margin-bottom: 8vw;
}

.characters-intro h2 {
  margin-top: 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(68px, 10vw, 150px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.07em;
}

.characters-intro > p {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 12px;
}

.character-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 30px);
  padding: 0 var(--pad);
}

.character-card:nth-child(2) {
  transform: translateY(7vw);
}

.character-card figure {
  position: relative;
  aspect-ratio: 0.82;
  overflow: hidden;
  background: #dcecf0;
}

.character-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.character-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.character-card:nth-child(1) img {
  object-position: 26% center;
}

.character-card:nth-child(2) img {
  object-position: 28% center;
}

.character-card:nth-child(3) img {
  object-position: 28% center;
}

.character-card:hover img {
  transform: scale(1.045);
}

.character-card > div {
  position: relative;
  padding: 15px 0 0 36px;
}

.character-card > div::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--aqua);
}

.character-card span {
  font-size: 7px;
  letter-spacing: 0.2em;
}

.character-card h3 {
  margin: 2px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.character-card p {
  color: rgba(244, 241, 233, 0.65);
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 10px;
}

.profile {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 100svh;
  background: var(--paper);
}

.profile-visual {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(143, 217, 232, 0.85), rgba(222, 236, 240, 0.45)),
    var(--mist);
}

.profile-visual::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 8%;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(18, 25, 50, 0.26);
  border-radius: 50%;
}

.profile-visual figure {
  position: absolute;
  z-index: 1;
  inset: 4% 8% 0;
}

.profile-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 30px rgba(18, 25, 50, 0.18));
}

.profile-number {
  position: absolute;
  z-index: 0;
  top: 3%;
  left: -2%;
  color: rgba(244, 241, 233, 0.65);
  font-family: Impact, sans-serif;
  font-size: clamp(180px, 30vw, 480px);
  line-height: 0.8;
}

.vertical-caption {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 18px;
  font-size: 7px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.profile-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10vw clamp(32px, 8vw, 130px);
}

.profile-copy h2 {
  margin: 38px 0 42px;
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: clamp(38px, 5vw, 74px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.profile-copy > p {
  max-width: 600px;
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 12px;
}

.profile-copy .profile-lead {
  margin-bottom: 22px;
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
}

.profile-copy dl {
  margin: 55px 0 42px;
  border-top: 1px solid var(--line);
}

.profile-copy dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.profile-copy dt {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.profile-copy dd {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-style: italic;
}

.text-link {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 12px;
}

.text-link i {
  transition: transform 0.35s var(--ease);
}

.text-link:hover i {
  transform: rotate(45deg);
}

.contact {
  position: relative;
  min-height: 86svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 9vw var(--pad) 5vw;
  color: var(--paper);
  background: var(--red);
}

.contact::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(62vw, 850px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.contact::after {
  content: "幽";
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.06);
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: min(56vw, 780px);
  line-height: 1;
  transform: translate(-50%, -50%);
}

.contact > * {
  position: relative;
  z-index: 2;
}

.contact h2 {
  display: grid;
  margin: 3vw 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(62px, 13vw, 205px);
  line-height: 0.72;
  letter-spacing: -0.055em;
}

.contact h2 span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 1px var(--paper);
}

.contact h2 span:nth-child(3) {
  justify-self: end;
}

.contact-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.contact-bottom p {
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 11px;
}

.contact-bottom a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2.2vw, 34px);
}

.contact-bottom i {
  font-style: normal;
}

.contact-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.17'/%3E%3C/svg%3E");
}

.site-footer {
  min-height: 330px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 30px;
  padding: 70px var(--pad) 34px;
  color: var(--paper);
  background: var(--deep);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.17em;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 25px;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.footer-meta > div {
  display: flex;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

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

@media (max-width: 900px) {
  :root {
    --header-h: 66px;
  }

  .desktop-nav {
    display: none;
  }

  .hero-title {
    top: 48%;
    font-size: clamp(70px, 18vw, 150px);
    line-height: 0.76;
  }

  .hero-art {
    top: 17%;
    width: 62vw;
  }

  .hero-art-frame {
    height: 62svh;
  }

  .hero-peek-a {
    top: 21%;
  }

  .hero-peek-b {
    bottom: 19%;
  }

  .scroll-link {
    right: var(--pad);
  }

  .statement {
    grid-template-columns: 0.4fr 4fr;
  }

  .statement-side {
    display: none;
  }

  .section-heading {
    grid-template-columns: 0.6fr 2.4fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .works-grid {
    gap: 32px 18px;
  }

  .work-card-wide {
    grid-column: 1 / span 8;
  }

  .work-card-tall {
    grid-column: 9 / span 4;
  }

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

  .work-card-landscape {
    grid-column: 6 / span 7;
  }

  .profile {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .profile-visual {
    min-height: 750px;
  }
}

@media (max-width: 640px) {
  :root {
    --pad: 20px;
  }

  body {
    font-size: 13px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .menu-button {
    width: 66px;
  }

  .menu-panel nav a {
    gap: 16px;
    font-size: 15vw;
  }

  .hero {
    min-height: 820px;
  }

  .hero-grid {
    background-size: 25vw 25vw;
  }

  .hero-kicker {
    right: var(--pad);
    justify-content: space-between;
  }

  .hero-title {
    z-index: 4;
    top: 53%;
    font-size: 22vw;
    line-height: 0.7;
  }

  .hero-sun {
    top: 16%;
    right: -12%;
    width: 82vw;
  }

  .hero-art {
    top: 18%;
    width: 86vw;
  }

  .hero-art-frame {
    height: 480px;
    clip-path: polygon(10% 0, 90% 4%, 100% 88%, 82% 100%, 6% 93%, 0 12%);
  }

  .hero-art figcaption {
    right: 0;
    bottom: -18px;
  }

  .hero-peek-a {
    top: auto;
    bottom: 14%;
    left: 4%;
    width: 105px;
  }

  .hero-peek-b {
    display: none;
  }

  .hero-note {
    bottom: 4%;
    left: auto;
    right: var(--pad);
    width: 48%;
    font-size: 9px;
  }

  .cursor-hint,
  .scroll-link {
    display: none;
  }

  .statement {
    min-height: 60svh;
    grid-template-columns: 24px 1fr;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .statement-copy {
    font-size: 9vw;
  }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow {
    margin-bottom: 24px;
  }

  .section-heading h2 {
    margin-bottom: 35px;
    font-size: 27vw;
  }

  .works {
    padding-top: 110px;
    padding-bottom: 120px;
  }

  .works-grid {
    display: block;
  }

  .work-card {
    margin: 0 0 72px;
  }

  .work-card-tall {
    width: 80%;
    margin-left: auto;
  }

  .work-card-square {
    width: 85%;
  }

  .work-card-landscape {
    margin-bottom: 0;
  }

  .characters {
    padding: 110px 0 130px;
  }

  .characters-intro {
    display: block;
    margin-bottom: 70px;
  }

  .characters-intro h2 {
    margin-bottom: 45px;
    font-size: 18vw;
  }

  .character-rail {
    grid-template-columns: 86vw 86vw 86vw;
    gap: 16px;
    padding-right: 7vw;
    padding-left: 7vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .character-card,
  .character-card:nth-child(2) {
    transform: none;
    scroll-snap-align: center;
  }

  .character-card figure {
    aspect-ratio: 0.88;
  }

  .profile {
    display: block;
  }

  .profile-visual {
    min-height: 640px;
  }

  .profile-copy {
    padding: 100px var(--pad);
  }

  .profile-copy h2 {
    margin-top: 30px;
    font-size: 10.5vw;
  }

  .contact {
    min-height: 720px;
    padding-top: 100px;
    padding-bottom: 35px;
  }

  .contact h2 {
    font-size: 17vw;
    line-height: 0.79;
  }

  .contact-bottom {
    display: block;
  }

  .contact-bottom p {
    margin-bottom: 35px;
  }

  .contact-bottom a {
    font-size: 17px;
  }

  .site-footer {
    min-height: 480px;
    grid-template-columns: 1fr 1fr;
    align-content: end;
  }

  .site-footer nav {
    justify-self: end;
  }

  .footer-meta {
    grid-column: 1 / -1;
    justify-items: start;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-letter,
  [data-parallax] {
    transform: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* 2026-07-18: compact editorial scale and reduce oversized empty fields. */
.hero-title{font-size:clamp(74px,14vw,220px);line-height:.72}
.statement{min-height:60svh;padding-top:6vw;padding-bottom:6vw}
.statement-copy{font-size:clamp(28px,4.2vw,62px)}
.works{padding-top:7vw;padding-bottom:8vw}
.section-heading{margin-bottom:clamp(38px,5vw,72px)}
.section-heading h2{font-size:clamp(62px,10vw,150px);line-height:.82}
.characters{padding-top:8vw;padding-bottom:9vw}
.characters-intro{margin-bottom:6vw}
.characters-intro h2{font-size:clamp(58px,7.5vw,112px);line-height:.86}
.profile{min-height:auto}
.profile-visual{min-height:760px}
.profile-copy{padding-top:7vw;padding-bottom:7vw}
.profile-copy h2{font-size:clamp(36px,3.8vw,50px);line-height:1.38;text-wrap:pretty}
.profile-copy dl{margin-top:42px}
.contact h2{font-size:clamp(56px,9vw,150px);line-height:.8}

@media (max-width: 900px) {
  .hero-title{font-size:clamp(66px,15vw,132px)}
  .profile-visual{min-height:680px}
}

@media (max-width: 640px) {
  .hero{min-height:720px}
  .hero-title{font-size:18vw;line-height:.78}
  .statement{min-height:52svh;padding-top:72px;padding-bottom:72px}
  .statement-copy{font-size:clamp(30px,8vw,40px)}
  .works{padding-top:78px;padding-bottom:86px}
  .section-heading h2{margin-bottom:26px;font-size:20vw;line-height:.84}
  .work-card{margin-bottom:54px}
  .characters{padding-top:82px;padding-bottom:94px}
  .characters-intro{margin-bottom:48px}
  .characters-intro h2{margin-bottom:32px;font-size:15vw;line-height:.92}
  .profile-visual{min-height:560px}
  .profile-copy{padding-top:72px;padding-bottom:72px}
  .profile-copy h2{font-size:clamp(32px,9vw,40px)}
  .contact{min-height:620px;padding-top:82px}
  .contact h2{font-size:14vw;line-height:.86}
}
