:root {
  --red: #b41c23;
  --red-bright: #c71924;
  --ink: #151313;
  --muted: #6f6a67;
  --line: #dedad7;
  --paper: #fff;
  --soft: #f5f3f1;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.section-shell { width: min(1240px, calc(100% - 64px)); margin-inline: auto; }

.site-header {
  position: relative;
  z-index: 20;
  height: 166px;
  display: grid;
  grid-template-rows: 103px 63px;
  align-items: center;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid #eee;
}
.header-utility {
  position: absolute;
  top: 25px;
  right: max(32px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  letter-spacing: .06em;
}
.header-utility a {
  transition: color .8s var(--ease);
}
.header-utility a:hover { color: var(--red); }
.header-utility span { border-left: 1px solid var(--line); padding-left: 22px; }
.brand {
  grid-row: 1;
  justify-self: center;
  width: 242px;
  height: 86px;
  display: grid;
  place-items: center;
}
.brand img { width: 100%; height: 100%; object-fit: contain; }
.site-header nav {
  grid-row: 2;
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4.2vw, 66px);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: 14px;
  letter-spacing: .12em;
}
.site-header nav a {
  position: relative;
  white-space: nowrap;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -10px;
  height: 1px;
  background: var(--red);
  transition: left .8s var(--ease), right .8s var(--ease);
}
.site-header nav a:hover::after { left: 0; right: 0; }

.hero {
  position: relative;
  min-height: 720px;
  height: calc(100vh - 166px);
  max-height: 940px;
  overflow: hidden;
  background: #eee;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% 43%;
  animation: heroIn 2.4s var(--ease) both;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .77) 27%, rgba(255, 255, 255, .06) 63%, transparent 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .08), transparent 32%);
}
.hero-message {
  position: absolute;
  left: max(48px, calc((100vw - 1240px) / 2));
  top: 50%;
  width: min(600px, 47vw);
  transform: translateY(-45%);
  animation: copyIn 1.8s .25s var(--ease) both;
}
.hero-message p {
  margin: 0 0 26px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3em;
}
.hero-message h1 {
  margin: 0;
  font: 400 clamp(54px, 6vw, 94px)/1.32 "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  letter-spacing: .08em;
}
.hero-message span {
  display: block;
  margin-top: 18px;
  font: 400 clamp(24px, 2.6vw, 42px)/1.4 Georgia, "Times New Roman", serif;
  letter-spacing: .02em;
}
.hero-scroll {
  position: absolute;
  left: 28px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
  color: rgba(0, 0, 0, .62);
  font-size: 9px;
  letter-spacing: .22em;
}
.hero-scroll i {
  display: block;
  width: 1px;
  height: 58px;
  background: rgba(0, 0, 0, .42);
  transform-origin: top;
  animation: scrollLine 2.4s infinite var(--ease);
}
@keyframes heroIn {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes copyIn {
  from { opacity: 0; transform: translateY(-38%); }
  to { opacity: 1; transform: translateY(-45%); }
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(.2); opacity: .2; }
  45% { transform: scaleY(1); opacity: 1; }
}

.topics { padding-block: 130px 150px; }
.editorial-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 64px;
}
.editorial-heading > div {
  display: flex;
  align-items: baseline;
  gap: 30px;
}
.editorial-heading h2 {
  margin: 0;
  font: 400 clamp(50px, 5vw, 78px)/1 Georgia, "Times New Roman", serif;
  letter-spacing: -.025em;
}
.editorial-heading p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .12em;
}
.editorial-heading > a {
  border-bottom: 1px solid var(--ink);
  padding: 0 2px 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: color .8s var(--ease), border-color .8s var(--ease);
}
.editorial-heading > a span { margin-left: 20px; }
.editorial-heading > a:hover { color: var(--red); border-color: var(--red); }
.editorial-heading > small { color: var(--muted); font-size: 11px; letter-spacing: .18em; }

.topics-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: clamp(44px, 6vw, 92px);
}
.topic-feature-image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}
.topic-feature-image img,
.topic-thumb img,
.work-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.topic-feature-copy { padding-top: 28px; }
.topic-meta {
  margin: 0 0 15px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}
.topic-feature h3 {
  margin: 0;
  font: 500 clamp(24px, 2.5vw, 38px)/1.55 "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
}
.topic-price-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}
.topic-feature-copy .price-stack strong { font: 400 32px Georgia, serif; }
.sale-pill {
  border-radius: 999px;
  padding: 10px 15px;
  background: var(--red);
  color: white;
  font-size: 11px;
  letter-spacing: .1em;
  box-shadow: 0 10px 24px rgba(190, 26, 36, .18);
}
.topic-list { border-top: 1px solid var(--line); }
.topic-row {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 26px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}
.topic-thumb {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--soft);
}
.topic-row h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.72;
}
.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
}
.zoom img { transition: transform 1.65s var(--ease), filter 1.65s var(--ease); }
.zoom:hover img { transform: scale(1.045); }
.image-placeholder {
  color: var(--red);
  font: italic 700 28px Georgia, serif;
}

.faces-story {
  overflow: hidden;
  background: #fff;
}
.philosophy-panel {
  position: relative;
  min-height: 1080px;
  overflow: hidden;
  background: #f3f0ed;
  color: var(--ink);
}
.philosophy-panel::before {
  content: "404";
  position: absolute;
  right: -38px;
  bottom: -112px;
  color: rgba(180, 28, 35, .055);
  font: italic 700 min(34vw, 500px)/1 Georgia, serif;
  pointer-events: none;
}
.philosophy-copy {
  position: absolute;
  z-index: 3;
  top: 205px;
  left: max(5vw, calc((100vw - 1380px) / 2));
  width: min(720px, 52vw);
  min-height: 650px;
  padding: 82px 72px 60px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 34px 90px rgba(82, 15, 18, .16);
}
.section-kicker {
  margin: 0 0 42px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .3em;
}
.philosophy-copy h2 {
  margin: 0;
  font: 400 clamp(42px, 4.15vw, 67px)/1.5 "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  letter-spacing: .035em;
}
.philosophy-copy h2 span {
  display: block;
  white-space: nowrap;
}
.philosophy-description {
  max-width: 520px;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .38);
}
.philosophy-description p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  line-height: 2.05;
  white-space: nowrap;
}
.philosophy-index {
  position: absolute;
  right: 42px;
  bottom: 26px;
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .24em;
}
.philosophy-visual {
  position: absolute;
  z-index: 1;
  top: 82px;
  right: max(4vw, calc((100vw - 1460px) / 2));
  width: min(760px, 57vw);
  height: 900px;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 36px 90px rgba(43, 35, 30, .13);
}
.philosophy-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .35);
  box-shadow: inset 28px 0 60px rgba(51, 27, 18, .05);
  pointer-events: none;
}
.philosophy-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 2s var(--ease);
}
.philosophy-visual:hover img { transform: scale(1.035); }
.philosophy-visual figcaption {
  position: absolute;
  right: 26px;
  bottom: 28px;
  z-index: 1;
  color: rgba(255, 255, 255, .9);
  font: italic 15px Georgia, serif;
  letter-spacing: .06em;
  writing-mode: vertical-rl;
}
.faces-gallery {
  padding: 124px 0 142px;
  overflow: hidden;
}
.faces-heading {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}
.faces-heading > div {
  display: flex;
  align-items: end;
  gap: 30px;
}
.faces-heading .section-kicker {
  order: 2;
  margin: 0 0 14px;
  color: var(--red);
}
.faces-heading h2 {
  margin: 0;
  font: 400 clamp(68px, 8.3vw, 128px)/.9 Georgia, "Times New Roman", serif;
  letter-spacing: -.055em;
}
.faces-heading > p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}
.faces-toolbar {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.faces-toolbar > p {
  display: flex;
  align-items: baseline;
  gap: 7px;
  min-width: 74px;
  margin: 0;
  color: var(--muted);
  font: 400 12px Georgia, serif;
  letter-spacing: .08em;
}
.faces-toolbar strong {
  color: var(--red);
  font-size: 25px;
  font-weight: 400;
}
.faces-rule {
  height: 1px;
  flex: 1;
  background: var(--line);
}
.faces-arrows {
  display: flex;
  gap: 8px;
}
.faces-arrows button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 19px;
  transition: color .55s var(--ease), background .55s var(--ease), border-color .55s var(--ease), transform .55s var(--ease);
}
.faces-arrows button:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
.faces-arrows button:disabled {
  cursor: default;
  opacity: .28;
}
.faces-viewport {
  width: min(1380px, calc(100% - 48px));
  margin-inline: auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  outline: none;
}
.faces-viewport::-webkit-scrollbar { display: none; }
.faces-viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}
.faces-viewport:focus-visible {
  outline: 1px solid var(--red);
  outline-offset: 8px;
}
.faces-track {
  width: max-content;
  display: flex;
  align-items: flex-start;
  gap: clamp(18px, 2.1vw, 34px);
  padding: 0 max(24px, calc((100vw - 1240px) / 2)) 44px;
}
.face-card {
  flex: 0 0 clamp(238px, 24vw, 340px);
  margin: 0;
  scroll-snap-align: start;
}
.face-card:nth-child(2n) { margin-top: 54px; }
.face-image {
  height: clamp(330px, 31vw, 430px);
  overflow: hidden;
  background: var(--soft);
}
.face-card:nth-child(3n) .face-image {
  height: clamp(300px, 28vw, 390px);
}
.face-card img {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  object-fit: cover;
  object-position: center;
  transition: transform 1.8s var(--ease), filter 1.8s var(--ease);
}
.face-card:hover img {
  transform: scale(1.04);
  filter: saturate(.92);
}
.face-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .24em;
}
.face-card figcaption span {
  color: var(--red);
  font: 400 19px Georgia, serif;
  letter-spacing: 0;
}
.faces-note {
  flex: 0 0 clamp(270px, 25vw, 350px);
  min-height: clamp(330px, 31vw, 430px);
  margin: 54px 0 0;
  padding: 38px 34px;
  scroll-snap-align: start;
  background: var(--red);
  color: #fff;
}
.faces-note small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
}
.faces-note p {
  margin: 74px 0 34px;
  font: italic 400 clamp(28px, 2.5vw, 39px)/1.1 Georgia, serif;
  letter-spacing: -.025em;
}
.faces-note span {
  display: block;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .38);
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  line-height: 1.8;
}
.faces-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  min-height: 22px;
  margin-top: 17px;
}
.faces-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid rgba(29, 26, 24, .5);
  border-radius: 50%;
  background: transparent;
  transition: width .45s var(--ease), height .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease);
}
.faces-dots button:hover {
  border-color: var(--red);
}
.faces-dots button[aria-current="true"] {
  width: 10px;
  height: 10px;
  border-color: var(--red);
  background: var(--red);
}

.works {
  padding-block: 135px 160px;
  border-top: 1px solid var(--line);
}
.controls {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 48px;
  padding: 24px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.search-box {
  min-width: min(420px, 48%);
  display: flex;
  align-items: center;
  gap: 20px;
}
.search-box > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}
.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 8px 0;
  background: transparent;
  font-size: 14px;
}
.sorts { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.sorts button {
  border: 1px solid #cbc5c2;
  border-radius: 999px;
  padding: 10px 17px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  transition: transform 1.15s var(--ease), background 1.15s var(--ease), color 1.15s var(--ease), border-color 1.15s var(--ease);
}
.sorts button:hover { transform: translateY(-4px); }
.sorts button.active,
.sorts button:hover {
  border-color: var(--red);
  background: var(--red);
  color: white;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.work-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}
.work-card[hidden] { display: none; }
.work-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--soft);
}
.sale-ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  min-width: 88px;
  padding: 11px 14px 10px;
  background: var(--red);
  color: white;
  box-shadow: 0 12px 28px rgba(83, 8, 13, .24);
  text-align: center;
}
.sale-ribbon b,
.sale-ribbon strong {
  display: block;
}
.sale-ribbon b {
  font-size: 11px;
  letter-spacing: .2em;
}
.sale-ribbon strong {
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: .04em;
}
.work-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px;
}
.work-actions {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}
.work-actions a,
.fanza-link {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  padding: 11px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: color .45s var(--ease), background .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
}
.work-actions a:hover,
.fanza-link:hover { transform: translateY(-3px); }
.work-fanza-link,
.fanza-link {
  border-color: var(--red) !important;
  background: var(--red);
  color: #fff;
}
.fanza-link {
  width: min(260px, 100%);
  margin-top: 28px;
  padding-inline: 20px;
}
.work-date {
  margin: 0;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}
.work-body h3 {
  min-height: 4.8em;
  margin: 13px 0 26px;
  font-size: 17px;
  line-height: 1.6;
}
.work-body h3 a { transition: color .7s var(--ease); }
.work-body h3 a:hover { color: var(--red); }
.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-top: auto;
}
.price-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.list-price {
  color: #8b8581;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
}
.list-price del {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.work-meta .price-stack strong {
  color: var(--ink);
  font: 400 28px Georgia, serif;
}
.work-card[data-sale="1"] .work-meta .price-stack strong,
.topic-feature-copy .price-stack strong,
.detail-commerce .price-stack strong {
  color: var(--red);
}
.work-proof {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}
.work-rating {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.work-rating b {
  color: #d19b25;
  font-size: 16px;
}
.empty {
  border: 1px solid var(--line);
  padding: 70px;
  text-align: center;
}
.empty p { color: var(--muted); }

.official-links {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 76px max(32px, calc((100vw - 1240px) / 2));
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.official-account {
  display: grid;
  justify-items: center;
  gap: 30px;
}
.official-account > p {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 17px;
  letter-spacing: .08em;
}
.official-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.4vw, 36px);
}
.official-socials a {
  width: 34px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  color: #171717;
  transition: opacity .4s var(--ease), transform .45s var(--ease);
}
.official-socials a:hover,
.official-socials a:focus-visible {
  opacity: .56;
  transform: translateY(-3px);
}
.official-socials img {
  width: 27px;
  height: 27px;
  display: block;
  object-fit: contain;
}
.official-socials .social-word-link { width: auto; }
.social-word {
  font: 700 11px/1 Arial, sans-serif;
  letter-spacing: .1em;
}
.page-top {
  position: absolute;
  top: 50%;
  right: max(32px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  letter-spacing: .08em;
  transform: translateY(-50%);
}
.page-top i {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid #8d8d8d;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .04);
  transition: background .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
}
.page-top i img {
  width: 22px;
  height: 22px;
  display: block;
}
.page-top:hover i {
  border-color: #171717;
  background: #f6f3f1;
  transform: translateY(-4px);
}
.site-footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 22px max(32px, calc((100vw - 1240px) / 2));
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 10px;
}
.footer-identity {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  width: 118px;
  display: block;
}
.footer-brand img {
  width: 100%;
  height: 36px;
  display: block;
  object-fit: contain;
}
.site-footer p { margin: 0; }
.site-footer small { white-space: nowrap; }

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1.15s var(--ease), transform 1.15s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Detail page */
.detail {
  min-height: 70vh;
  padding: 52px max(32px, calc((100vw - 1240px) / 2)) 110px;
}
.back {
  display: inline-block;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
  font-size: 12px;
}
.detail-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.08fr) minmax(320px, .92fr);
  align-items: start;
  gap: clamp(34px, 5vw, 78px);
}
.detail-image {
  position: relative;
  min-height: 0;
  display: grid;
  align-content: start;
  background: var(--soft);
  color: var(--red);
  font: italic 700 34px Georgia, serif;
}
.detail-image img {
  width: 100%;
  height: auto;
  max-height: 720px;
  display: block;
  object-fit: contain;
}
.detail-copy h1 {
  margin: 0 0 30px;
  font: 400 clamp(25px, 2.55vw, 38px)/1.46 "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  letter-spacing: -.025em;
  overflow-wrap: anywhere;
}
.detail-copy > p:not(.eyebrow) { color: var(--muted); line-height: 2; }
.detail-copy .eyebrow {
  margin: 0 0 22px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .25em;
}
.detail-commerce {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 25px;
  margin: 40px 0 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.detail-commerce .price-stack strong { font: 400 42px Georgia, serif; }
.sales-total b {
  color: var(--ink);
  font-weight: 700;
}
.buy {
  display: inline-block;
  border-radius: 999px;
  padding: 17px 28px;
  background: var(--red);
  color: white;
  font-weight: 700;
  transition: transform 1.15s var(--ease), box-shadow 1.15s var(--ease);
}
.buy:hover { transform: translateY(-5px); box-shadow: 0 20px 42px rgba(180, 28, 35, .18); }
.samples { margin-top: 84px; }
.samples h2 { font: 400 clamp(42px, 5vw, 72px) Georgia, serif; }
.samples-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.samples-heading h2 { margin: 8px 0 0; }
.sample-arrows { display: flex; gap: 8px; }
.sample-arrows button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: color .35s var(--ease), background .35s var(--ease), opacity .35s var(--ease);
}
.sample-arrows button:hover { background: var(--red); color: #fff; }
.sample-arrows button:disabled { opacity: .25; cursor: default; }
.sample-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.sample-viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}
.sample-viewport::-webkit-scrollbar { display: none; }
.sample-track {
  width: 100%;
  min-width: calc(var(--sample-count) * 100px + (var(--sample-count) - 1) * 8px);
  display: grid;
  grid-template-columns: repeat(var(--sample-count), minmax(100px, 1fr));
  gap: 8px;
}
.sample-count-1 { --sample-count: 1; }
.sample-count-2 { --sample-count: 2; }
.sample-count-3 { --sample-count: 3; }
.sample-count-4 { --sample-count: 4; }
.sample-count-5 { --sample-count: 5; }
.sample-count-6 { --sample-count: 6; }
.sample-count-7 { --sample-count: 7; }
.sample-count-8 { --sample-count: 8; }
.sample-count-9 { --sample-count: 9; }
.sample-count-10 { --sample-count: 10; }
.sample-card {
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--soft);
  aspect-ratio: 4 / 5;
}
.sample-open {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}
.sample-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
@media (hover: hover) {
  .sample-open:hover img { transform: scale(1.035); }
}
.lightbox-open { overflow: hidden; }
.sample-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  margin: 0;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: rgba(12, 11, 11, .96);
  color: #fff;
}
.sample-lightbox[hidden] { display: none !important; }
.sample-lightbox:not([hidden]) {
  display: grid;
  grid-template-columns: 82px 1fr 82px;
  grid-template-rows: 1fr;
  place-items: center;
}
.lightbox-stage {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 42px 0;
  touch-action: pan-y;
  cursor: grab;
}
.lightbox-stage:active { cursor: grabbing; }
.lightbox-stage img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 84px);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  will-change: transform;
  transition: transform .22s ease;
}
.lightbox-stage.is-dragging img { transition: none; }
.lightbox-close,
.lightbox-arrow {
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  color: #fff;
  cursor: pointer;
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.lightbox-close:hover,
.lightbox-arrow:hover { background: var(--red); transform: scale(1.06); }
.lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 52px;
  height: 52px;
  font-size: 29px;
  line-height: 1;
}
.lightbox-arrow { width: 54px; height: 54px; font-size: 20px; }
.lightbox-count {
  position: fixed;
  left: 50%;
  bottom: 18px;
  margin: 0;
  transform: translateX(-50%);
  font: 12px/1 Arial, sans-serif;
  letter-spacing: .12em;
}
.not-found { min-height: 100vh; display: grid; place-items: center; text-align: center; }
.not-found h1 { margin: 0; color: var(--red); font: 400 25vw/.8 Georgia, serif; }
.not-found .buy { margin-top: 25px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 920px) {
  .section-shell { width: min(100% - 40px, 720px); }
  .site-header { height: 126px; grid-template-rows: 75px 51px; }
  .header-utility { display: none; }
  .brand { width: 190px; height: 70px; }
  .site-header nav {
    justify-content: flex-start;
    gap: 28px;
    overflow-x: auto;
    padding-inline: 20px;
    font-size: 12px;
    scrollbar-width: none;
  }
  .site-header nav::-webkit-scrollbar { display: none; }
  .hero { height: calc(100svh - 126px); min-height: 650px; }
  .hero-image { object-position: 61% center; }
  .hero-shade {
    background: linear-gradient(90deg, rgba(255, 255, 255, .93), rgba(255, 255, 255, .65) 42%, rgba(255, 255, 255, .02) 82%);
  }
  .hero-message { left: 34px; width: 58vw; }
  .topics-layout { grid-template-columns: 1fr; }
  .topic-list { display: grid; grid-template-columns: repeat(3, 1fr); }
  .topic-row { display: block; padding: 24px 16px; border-right: 1px solid var(--line); }
  .topic-row:last-child { border-right: 0; }
  .topic-row > div { padding-top: 18px; }
  .philosophy-panel {
    min-height: 940px;
  }
  .philosophy-copy {
    top: 170px;
    left: 24px;
    width: min(590px, 62vw);
    min-height: 610px;
    padding: 66px 54px 56px;
  }
  .philosophy-copy h2 { font-size: clamp(43px, 5.6vw, 62px); }
  .philosophy-visual {
    top: 58px;
    right: 22px;
    width: 61vw;
    height: 790px;
  }
  .faces-heading { grid-template-columns: 1fr; gap: 34px; }
  .faces-heading > p { max-width: 520px; }
  .faces-note { padding: 30px 24px; }
  .faces-note p { margin-top: 44px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  footer { grid-template-columns: 190px 1fr; }
  footer small { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .section-shell { width: calc(100% - 32px); }
  .site-header { height: 112px; grid-template-rows: 66px 46px; }
  .brand { width: 165px; height: 62px; }
  .site-header nav { gap: 23px; font-size: 11px; }
  .hero { min-height: 610px; height: calc(100svh - 112px); }
  .hero-image { object-position: 64% center; }
  .hero-shade {
    background: linear-gradient(0deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .68) 38%, rgba(255, 255, 255, 0) 72%);
  }
  .hero-message {
    top: auto;
    left: 25px;
    right: 25px;
    bottom: 58px;
    width: auto;
    transform: none;
    animation: copyInMobile 1.8s .25s var(--ease) both;
  }
  .hero-message p { margin-bottom: 16px; font-size: 10px; }
  .hero-message h1 { font-size: clamp(42px, 14vw, 62px); line-height: 1.3; }
  .hero-message span { margin-top: 10px; font-size: 23px; }
  .hero-scroll { display: none; }
  @keyframes copyInMobile {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: none; }
  }
  .topics, .works { padding-block: 88px 100px; }
  .editorial-heading { display: block; margin-bottom: 40px; }
  .editorial-heading > div { display: block; }
  .editorial-heading h2 { font-size: 50px; }
  .editorial-heading p { margin-top: 12px; }
  .editorial-heading > a { display: inline-block; margin-top: 24px; }
  .topic-feature h3 { font-size: 25px; }
  .topic-list { display: block; }
  .topic-row {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 18px;
    padding-inline: 0;
    border-right: 0;
  }
  .topic-row > div { padding-top: 0; }
  .topic-row h3 { font-size: 14px; }
  .text-link { display: none; }
  .philosophy-panel {
    min-height: 0;
    padding-top: 34px;
  }
  .philosophy-visual {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 34px);
    height: 126vw;
    min-height: 0;
    margin-left: 34px;
  }
  .philosophy-copy {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 32px);
    min-height: 0;
    margin: -92px auto 56px;
    padding: 58px 26px 70px;
  }
  .philosophy-copy h2 {
    font-size: clamp(36px, 10.8vw, 49px);
    line-height: 1.55;
    letter-spacing: .02em;
  }
  .philosophy-copy h2 span { white-space: nowrap; }
  .philosophy-description { margin-top: 48px; }
  .philosophy-description p { white-space: normal; }
  .faces-gallery { padding: 88px 0 104px; }
  .faces-heading {
    display: block;
    margin-bottom: 56px;
  }
  .faces-heading > div { display: block; }
  .faces-heading .section-kicker { margin: 0 0 18px; }
  .faces-heading h2 { font-size: 72px; }
  .faces-heading > p { margin-top: 28px; font-size: 13px; }
  .faces-toolbar { margin-bottom: 24px; }
  .faces-arrows button { width: 42px; height: 42px; }
  .faces-viewport { width: 100%; }
  .faces-track {
    gap: 16px;
    padding: 0 16px 36px;
  }
  .faces-dots { margin-top: 10px; }
  .face-card { flex-basis: min(72vw, 294px); }
  .face-card:nth-child(2n) { margin-top: 34px; }
  .face-image,
  .face-card:nth-child(3n) .face-image { height: min(94vw, 390px); }
  .faces-note {
    flex-basis: min(72vw, 294px);
    min-height: min(94vw, 390px);
    margin-top: 34px;
    padding: 34px 28px;
  }
  .controls { align-items: stretch; flex-direction: column; }
  .search-box { min-width: 100%; }
  .sorts { justify-content: flex-start; }
  .work-grid { grid-template-columns: 1fr; }
  .work-body h3 { min-height: 0; }
  .detail-commerce {
    align-items: flex-start;
    flex-direction: column;
  }
  .detail-commerce .work-proof { align-items: flex-start; }
  .work-actions { grid-template-columns: 1fr; }
  .detail {
    padding: 34px 16px 84px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .detail-copy h1 { font-size: clamp(30px, 9vw, 44px); }
  .samples { margin-top: 68px; }
  .sample-track {
    width: max-content;
    min-width: 0;
    grid-template-columns: repeat(var(--sample-count), 112px);
  }
  .sample-card { width: 112px; }
  .sample-lightbox:not([hidden]) {
    grid-template-columns: 54px 1fr 54px;
  }
  .lightbox-stage { padding: 70px 0 58px; }
  .lightbox-arrow { width: 42px; height: 42px; }
  .lightbox-close { top: 14px; right: 14px; width: 46px; height: 46px; }
  .official-links {
    min-height: 330px;
    padding: 66px 20px 120px;
  }
  .official-socials { gap: 18px; }
  .page-top {
    top: auto;
    right: 20px;
    bottom: 34px;
    transform: none;
  }
  .page-top i {
    width: 50px;
    height: 50px;
  }
  .site-footer {
    min-height: 128px;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    text-align: center;
  }
  .footer-identity {
    flex-direction: column;
    gap: 6px;
  }
  .footer-brand { width: 108px; }
  .detail { padding: 44px 20px 100px; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-image { min-height: 350px; }
  .samples > div { grid-template-columns: 1fr 1fr; }
}

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