﻿:root {
  --ink: #f2f0f7;
  --muted: #9292a5;
  --dim: #5e6074;
  --bg: #0d0d0f;
  --panel: #171718;
  --panel-light: #242021;
  --line: rgba(237, 237, 255, 0.14);
  --blue: #c7bda9;
  --blue-bright: #f0ece4;
  --pink: #d84a42;
  --violet: #c9bfae;
  --serif: "Cormorant Garamond", "Noto Serif KR", Georgia, serif;
  --sans: "Noto Sans KR", "Space Grotesk", sans-serif;
  --mono: "DM Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 0%, rgba(130, 45, 34, 0.13), transparent 34rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.13;
  pointer-events: none;
  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='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

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

button {
  color: inherit;
  font: inherit;
}

.site-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  overflow: hidden;
}

.section-frame {
  padding-right: clamp(24px, 5vw, 88px);
  padding-left: clamp(24px, 5vw, 88px);
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 31px clamp(24px, 5vw, 88px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  letter-spacing: 0.03em;
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--pink);
  font-size: 20px;
  text-shadow: 0 0 20px var(--pink);
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.9vw, 32px);
  color: #c6c5d1;
  font-size: 14px;
}

.site-nav a {
  position: relative;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.nav-contact span,
.text-link span,
.button span {
  color: var(--pink);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  padding: 9px 12px;
  background: transparent;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(220px, 0.78fr) minmax(440px, 1.85fr) minmax(210px, 0.8fr);
  grid-template-rows: minmax(0, 1fr) 64px;
  align-items: center;
  column-gap: clamp(18px, 2.4vw, 40px);
  row-gap: 28px;
  padding-top: 105px;
  padding-bottom: 36px;
}

.online-stamp {
  position: relative;
  flex: none;
  justify-self: end;
  margin-bottom: 8px;
  z-index: 5;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border: 2px solid var(--pink);
  border-radius: 50%;
  background: rgba(216, 74, 66, 0.12);
  box-shadow: 0 0 0 5px rgba(216, 74, 66, 0.09);
  color: #ff9a92;
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: 0.04em;
  line-height: 1.12;
  text-align: center;
  transform: rotate(12deg);
}

.hero::before {
  position: absolute;
  top: 37%;
  left: -10%;
  width: 55%;
  height: 45%;
  content: "";
  background: radial-gradient(ellipse, rgba(177, 47, 38, 0.18), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}

.eyebrow,
.section-index,
.contact-label,
.art-label,
.about-stamp {
  color: var(--pink);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.13em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 27px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 14px var(--pink);
}

.hero h1 {
  max-width: 540px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 1.13;
}

.hero h1::after {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 19px;
  content: "";
  background: var(--pink);
  transform: skewX(-35deg);
}

h1 em,
h2 em {
  color: var(--pink);
  font-style: normal;
  text-shadow: none;
}

.hero-intro {
  margin: 36px 0 0;
  color: #b1b1c0;
  font-size: 15px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-height: 49px;
  padding: 0 20px;
  border: 1px solid var(--blue);
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: rgba(66, 105, 255, 0.2);
  box-shadow: 0 0 26px rgba(66, 105, 255, 0.25);
  transform: translateY(-2px);
}

.button-primary span {
  color: #fff;
  font-size: 17px;
}

.text-link {
  color: #cac9d5;
  font-size: 13px;
}

.text-link span {
  margin-left: 6px;
  font-size: 17px;
}

.hero-art-wrap {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  width: 112%;
  margin-left: -6%;
  min-width: 0;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  min-width: 0;
}

.hero-copy h1 {
  width: fit-content;
  max-width: 330px;
}

.hero-dossier {
  position: static;
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  z-index: 4;
  display: grid;
  width: 100%;
  max-width: 260px;
  gap: 13px;
}

.hero-dossier > p,
.hero-catalog > span {
  margin: 0;
  color: var(--pink);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.hero-art-wrap + .hero-dossier {
  max-width: 250px;
}

.hero-dossier > a {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 76px;
  padding: 8px;
  border: 1px solid rgba(216, 74, 66, 0.55);
  background: rgba(23, 21, 23, 0.94);
}

.dossier-thumb {
  display: grid;
  width: 58px;
  height: 58px;
  overflow: hidden;
  place-items: center;
  background: #272426;
}

.dossier-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dossier-placeholder {
  color: var(--muted);
  font-size: 35px;
}

.hero-dossier > a > span:last-child {
  display: grid;
  gap: 4px;
}

.hero-dossier small,
.hero-dossier em {
  color: var(--pink);
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
}

.hero-dossier strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.dossier-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.dossier-tabs a {
  padding: 8px 4px;
  color: #d8d0c3;
  font-size: 12px;
  text-align: center;
}

.dossier-tabs a + a {
  border-left: 1px solid var(--line);
}

.hero-catalog {
  position: static;
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 65px);
  gap: 9px;
  width: 100%;
  max-width: 260px;
}

.hero-catalog > span {
  grid-column: 1 / -1;
}

.hero-catalog a {
  display: grid;
  min-height: 82px;
  place-items: center;
  border: 1px solid var(--line);
  color: #d8d0c3;
  background: rgba(23, 21, 23, 0.92);
}

.hero-catalog b {
  color: var(--blue);
  font-size: 26px;
  font-weight: 400;
}

.hero-catalog small {
  color: var(--pink);
  font-family: var(--mono);
  font-size: 12px;
}

.hero-art-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 9px;
  background: linear-gradient(140deg, rgba(240, 236, 228, 0.28), rgba(216, 74, 66, 0.35) 46%, rgba(255, 255, 255, 0.1));
  box-shadow: 0 26px 75px rgba(0, 0, 0, 0.5), 0 0 70px rgba(216, 74, 66, 0.13);
  transform: rotate(-1.2deg);
}

.hero-art-frame::after {
  position: absolute;
  inset: 9px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.hero-art-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  object-position: 50% 48%;
}

.art-label {
  position: absolute;
  z-index: 3;
  padding: 8px 11px;
  color: #fff;
  background: rgba(7, 9, 16, 0.72);
  font-size: 11px;
}

.art-label-top {
  top: 24px;
  left: -22px;
}

.art-label-bottom {
  right: -20px;
  bottom: 21px;
  color: #d1d4ff;
}

.hero-dossier-label {
  position: absolute;
  top: 5%;
  right: 0;
  z-index: 3;
  padding: 8px 11px;
  border: 1px solid rgba(216, 74, 66, 0.6);
  color: var(--pink);
  background: rgba(13, 13, 15, 0.88);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.09em;
}

.hero-side-note {
  position: absolute;
  right: -8px;
  bottom: 35px;
  z-index: 4;
  color: #c4c4d3;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.7;
  text-align: right;
}

.hero-side-note span {
  display: block;
  color: var(--pink);
  font-family: var(--sans);
  font-size: 19px;
}

.hero-scroll {
  position: static;
  grid-column: 3;
  grid-row: 2;
  align-self: end;
  justify-self: end;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.hero-scroll span {
  margin-left: 14px;
  color: var(--pink);
  font-size: 18px;
}

.statement {
  position: relative;
  display: grid;
  min-height: 630px;
  grid-template-columns: 0.35fr 1fr;
  align-content: center;
  gap: 5vw;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.statement .section-index,
.works .section-index,
.about .section-index,
.contact .section-index {
  margin: 0;
}

.statement-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.statement-kicker {
  margin: 0 0 21px;
  color: var(--pink);
  font-family: var(--serif);
  font-size: 18px;
}

.statement h2,
.section-heading h2,
.shop-heading h2,
.about h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 77px);
  font-weight: 400;
  letter-spacing: -0.09em;
  line-height: 1.27;
}

.statement h2 span {
  color: var(--pink);
}

.statement-body {
  max-width: 440px;
  margin: 39px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.statement-glow {
  position: absolute;
  right: -9%;
  bottom: -58%;
  width: 55%;
  height: 110%;
  border: 1px solid rgba(216, 74, 66, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(93, 55, 53, 0.11), 0 0 50px rgba(216, 74, 66, 0.1);
  transform: rotate(-28deg);
}

.works {
  padding-top: 112px;
  padding-bottom: 145px;
  border-top: 1px solid var(--line);
  background: #111112;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.section-heading h2 {
  margin-top: 16px;
  font-size: clamp(46px, 5vw, 75px);
}

.section-heading h2 span {
  color: var(--pink);
}

.category-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 33px;
  border-top: 1px solid rgba(216, 74, 66, 0.4);
  border-bottom: 1px solid rgba(216, 74, 66, 0.4);
}

.category-tabs button {
  min-width: 125px;
  padding: 13px 18px;
  border: 0;
  border-right: 1px solid rgba(216, 74, 66, 0.28);
  color: #aaa195;
  background: transparent;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 15px;
}

.category-tabs button.is-active,
.category-tabs button:hover,
.category-tabs button:focus-visible {
  color: #f0ece4;
  background: rgba(216, 74, 66, 0.2);
}

.works-count {
  margin: 38px 0 0;
  color: var(--pink);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.13em;
}

.section-description {
  margin: 0 0 5px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.8;
  text-align: right;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
  align-items: start;
}

.work-card {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
}

.work-card:nth-child(1) {
  grid-column: auto;
}

.work-card:nth-child(2) {
  grid-column: auto;
  margin-top: 0;
}

.work-card:nth-child(3) {
  grid-column: auto;
  margin-top: 0;
}

.work-card:nth-child(4) {
  grid-column: auto;
  margin-top: 0;
}

.work-card:nth-child(5) {
  grid-column: auto;
  margin-top: 0;
}

.work-image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 0.82;
  overflow: hidden;
  background: var(--panel);
}

.work-image-wrap::before {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 1;
  content: "© CHAENI · DIGITAL ONLY";
  color: rgba(240, 236, 228, 0.42);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  pointer-events: none;
}

.protected-image {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
  user-select: none;
}

.work-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  pointer-events: none;
}

.work-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 600ms ease;
}

.work-card-1 img {
  object-position: 50% 25%;
}

.work-card-2 img {
  object-position: 48% 12%;
}

.work-card-3 img {
  object-position: 50% 28%;
}

.work-card-4 img {
  object-position: 50% 32%;
}

.work-card-5 img {
  object-position: 50% 30%;
}

.work-card:hover img,
.work-card:focus-visible img {
  filter: saturate(1.13);
  transform: scale(1.045);
}

.work-hover {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 8px 10px;
  color: #fff;
  background: rgba(9, 10, 18, 0.78);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.work-card:hover .work-hover,
.work-card:focus-visible .work-hover {
  opacity: 1;
  transform: translateY(0);
}

.work-hover b {
  margin-left: 10px;
  color: var(--pink);
  font-size: 15px;
}

.work-card-info {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
}

.work-card-info strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
}

.work-card-info small {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.loading-state {
  grid-column: 1 / -1;
  min-height: 100px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
}

.shop {
  padding-top: 95px;
  padding-bottom: 112px;
  background: linear-gradient(145deg, #1d1819, #0e0e10 75%);
}

.shop-panel {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 9vw;
}

.shop-heading {
  position: relative;
  align-self: start;
}

.shop-heading h2 {
  margin-top: 25px;
  font-size: clamp(48px, 5.5vw, 82px);
}

.shop-heading h2 em {
  color: var(--pink);
}

.shop-heading > p:not(.section-index) {
  margin: 29px 0 27px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.9;
}

.shop-star {
  position: absolute;
  top: 56px;
  right: 15%;
  color: var(--pink);
  font-size: 28px;
  text-shadow: none;
}

.online-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid rgba(216, 74, 66, 0.5);
  color: #d2cddd;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.online-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
}

.shop-list {
  display: grid;
  gap: 19px;
}

.shop-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
}

.shop-image {
  position: relative;
  display: block;
  width: 150px;
  height: 115px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--panel);
  cursor: pointer;
}

.shop-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.shop-image:hover img,
.shop-image:focus-visible img {
  transform: scale(1.08);
}

.shop-image span {
  position: absolute;
  right: 7px;
  bottom: 7px;
  padding: 4px 5px;
  background: rgba(7, 9, 16, 0.8);
  font-family: var(--mono);
  font-size: 11px;
}

.shop-item-copy {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: start;
  gap: 14px;
}

.shop-number {
  color: var(--pink);
  font-family: var(--mono);
  font-size: 12px;
}

.shop-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.shop-item p {
  max-width: 270px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.shop-item-action {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 15px;
}

.shop-item-action strong {
  color: var(--pink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.shop-item-action a {
  color: #d9d8e3;
  font-size: 12px;
}

.shop-item-action a span {
  margin-left: 5px;
  color: var(--pink);
  font-size: 15px;
}

.about {
  padding-top: 125px;
  padding-bottom: 135px;
  border-bottom: 1px solid var(--line);
}

.youtube {
  padding-top: 115px;
  padding-bottom: 125px;
  border-bottom: 1px solid var(--line);
  background: #111112;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-card {
  display: block;
  border: 1px solid var(--line);
  background: #181719;
  transition: border-color 180ms ease, transform 180ms ease;
}

.video-card:hover,
.video-card:focus-visible {
  border-color: var(--pink);
  transform: translateY(-4px);
}

.video-thumbnail {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition: filter 180ms ease, transform 180ms ease;
}

.video-card:hover .video-thumbnail img,
.video-card:focus-visible .video-thumbnail img {
  filter: saturate(1);
  transform: scale(1.04);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(240, 236, 228, 0.8);
  border-radius: 50%;
  color: #fff;
  background: rgba(13, 13, 15, 0.72);
  transform: translate(-50%, -50%);
}

.video-card-copy {
  display: grid;
  gap: 8px;
  padding: 19px;
}

.video-card-copy strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.video-card-copy small {
  color: var(--muted);
  font-size: 12px;
}

.video-empty {
  grid-column: 1 / -1;
  padding: 60px 20px;
  border: 1px dashed rgba(216, 74, 66, 0.5);
  text-align: center;
}

.video-empty-mark {
  color: var(--pink);
  font-size: 28px;
}

.video-empty p {
  margin: 17px 0 8px;
  font-family: var(--serif);
  font-size: 20px;
}

.video-empty small {
  color: var(--muted);
  font-size: 13px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12vw;
  padding-top: 70px;
}

.about-stamp {
  display: inline-block;
  padding: 9px 10px;
  border: 1px solid rgba(243, 90, 213, 0.45);
}

.about h2 {
  margin-top: 39px;
  font-size: clamp(48px, 6vw, 90px);
}

.about h2 em {
  color: var(--pink);
}

.about-copy {
  max-width: 420px;
  padding-top: 48px;
}

.about-copy p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 2;
}

.about-copy .large-copy {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.7;
}

.about-signature {
  margin-top: 45px;
  color: var(--pink) !important;
  font-family: var(--mono) !important;
  font-size: 15px !important;
  letter-spacing: 0.12em;
}

.about-signature span {
  margin-left: 13px;
  color: var(--blue-bright);
  font-size: 20px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12vw;
  padding-top: 135px;
  padding-bottom: 140px;
}

.contact h2 {
  margin-top: 27px;
  font-size: clamp(47px, 5vw, 76px);
}

.contact h2 em {
  color: var(--blue-bright);
}

.contact-copy > p:last-child {
  max-width: 350px;
  margin-top: 35px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.9;
}

.order {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  padding-top: 125px;
  padding-bottom: 135px;
  border-bottom: 1px solid var(--line);
}

.order h2 {
  margin-top: 27px;
  font-family: var(--serif);
  font-size: clamp(47px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.09em;
  line-height: 1.27;
}

.order-copy > p:last-child {
  max-width: 350px;
  margin-top: 35px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.9;
}

.order-form {
  display: grid;
  gap: 14px;
  padding: 33px;
  border: 1px solid rgba(216, 74, 66, 0.45);
  background: #171517;
}

.order-form label {
  display: grid;
  gap: 8px;
  color: #d8d0c3;
  font-size: 13px;
}

.order-form input,
.order-form textarea,
.order-form select {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px;
  outline: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
}

.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
  border-color: var(--pink);
}

.order-form .button {
  width: fit-content;
  border-color: var(--pink);
  background: rgba(216, 74, 66, 0.13);
  cursor: pointer;
}

.honeypot {
  position: absolute;
  left: -10000px;
  opacity: 0;
}

.form-message {
  min-height: 18px;
  margin: 0;
  color: #9ad8b5;
  font-size: 13px;
}

.form-message.is-error {
  color: #ff9a91;
}

.copyright {
  padding-top: 115px;
  padding-bottom: 125px;
}

.copyright-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 58px;
  padding: 38px;
  border: 1px solid rgba(216, 74, 66, 0.45);
  background: linear-gradient(135deg, rgba(80, 31, 31, 0.32), rgba(23, 23, 24, 0.8));
}

.copyright-symbol {
  display: grid;
  width: 65px;
  height: 65px;
  place-items: center;
  border: 1px solid var(--pink);
  border-radius: 50%;
  color: var(--pink);
  font-family: var(--serif);
  font-size: 32px;
}

.copyright-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(35px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1.25;
}

.copyright-panel p {
  max-width: 760px;
  margin: 25px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 2;
}

.contact-action {
  align-self: center;
  padding: 38px;
  border: 1px solid rgba(216, 74, 66, 0.42);
  background: linear-gradient(140deg, rgba(80, 31, 31, 0.35), rgba(10, 10, 12, 0.55));
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.contact-label {
  display: block;
  margin-bottom: 20px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(20px, 2.1vw, 31px);
  word-break: break-all;
}

.contact-email.member-locked {
  color: var(--muted);
}

.contact-email span {
  color: var(--pink);
  font-family: var(--sans);
  font-size: 22px;
}

.contact-action p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 12px;
}

.footer-brand strong {
  font-size: 17px;
}

.footer-brand small {
  font-size: 11px;
}

.back-top {
  color: #b6b5c5;
}

.art-dialog {
  width: min(92vw, 1020px);
  max-height: 92vh;
  padding: 0;
  border: 1px solid rgba(216, 74, 66, 0.65);
  color: var(--ink);
  background: #0b0d16;
  box-shadow: 0 25px 100px #000;
}

.art-dialog::backdrop {
  background: rgba(2, 3, 8, 0.82);
  backdrop-filter: blur(8px);
}

.art-dialog[open] {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
}

.dialog-image-wrap {
  min-height: 520px;
  background: #05060b;
}

.dialog-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.dialog-copy {
  align-self: center;
  padding: 42px;
}

.dialog-copy h2 {
  margin: 23px 0 17px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
}

.dialog-copy > p:not(.section-index) {
  margin: 0 0 30px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.9;
}

.dialog-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(7, 9, 16, 0.75);
  cursor: pointer;
  font-size: 21px;
  line-height: 1;
}

@media (max-width: 900px) {
  .site-nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: minmax(160px, 0.76fr) minmax(360px, 1.55fr) minmax(155px, 0.72fr);
    column-gap: 18px;
  }

  .hero h1 {
    font-size: clamp(42px, 5.8vw, 62px);
  }

  .hero-art-frame {
    width: min(100%, 500px);
  }

  .hero-art-frame img {
    aspect-ratio: 1.42;
  }

  .shop-panel {
    gap: 5vw;
  }

  .shop-item {
    grid-template-columns: 110px 1fr;
  }

  .shop-image {
    width: 110px;
    height: 100px;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .section-frame {
    padding-right: 22px;
    padding-left: 22px;
  }

  .site-header {
    padding: 22px;
  }

  .menu-toggle {
    display: block;
  }

  .online-stamp {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 22px;
    left: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 11px 18px;
    border: 1px solid var(--line);
    background: rgba(9, 10, 18, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 54px;
    padding-top: 140px;
    padding-bottom: 75px;
  }

  .hero-copy,
  .hero-art-wrap,
  .hero-dossier,
  .hero-catalog,
  .hero-scroll {
    grid-column: auto;
    grid-row: auto;
  }

  .hero h1 {
    font-size: clamp(49px, 14vw, 77px);
  }

  .hero-intro {
    margin-top: 25px;
    font-size: 15px;
  }

  .hero-actions {
    margin-top: 31px;
  }

  .hero-art-wrap {
    width: 100%;
    margin-left: auto;
  }

  .hero-dossier,
  .hero-catalog {
    position: static;
    width: 100%;
    margin-top: -25px;
  }

  .hero-dossier {
    order: 3;
  }

  .hero-catalog {
    order: 4;
  }

  .online-stamp {
    width: 86px;
    height: 86px;
    font-size: 17px;
  }

  .hero-art-frame {
    width: 100%;
    padding: 6px;
  }

  .hero-dossier-label {
    top: 1%;
    right: -3%;
  }

  .hero-art-frame::after {
    inset: 6px;
  }

  .art-label-top {
    left: -16px;
  }

  .art-label-bottom {
    right: -17px;
  }

  .hero-side-note {
    right: -9px;
    bottom: 18px;
    font-size: 12px;
  }

  .hero-scroll {
    position: static;
    margin-top: 1px;
  }

  .statement {
    display: block;
    min-height: 580px;
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .statement-content {
    padding-top: 70px;
  }

  .statement h2,
  .section-heading h2,
  .shop-heading h2,
  .about h2,
  .contact h2 {
    font-size: clamp(42px, 12vw, 63px);
  }

  .statement-body {
    margin-top: 28px;
  }

  .statement-glow {
    right: -46%;
    bottom: -31%;
    width: 110%;
    height: 70%;
  }

  .category-tabs {
    overflow-x: auto;
  }

  .category-tabs button {
    min-width: max-content;
    white-space: nowrap;
  }

  .works {
    padding-top: 78px;
    padding-bottom: 84px;
  }

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

  .section-description {
    margin-top: 20px;
    text-align: left;
  }

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

  .work-card:nth-child(n) {
    grid-column: auto;
    margin-top: 0;
  }

  .work-card:nth-child(1) {
    grid-column: auto;
  }

  .work-card:nth-child(5) {
    grid-column: auto;
  }

  .work-card-info {
    display: block;
  }

  .work-card-info strong,
  .work-card-info small {
    display: block;
  }

  .work-card-info small {
    margin-top: 6px;
  }

  .work-hover {
    opacity: 1;
    transform: none;
  }

  .shop {
    padding-top: 76px;
    padding-bottom: 78px;
  }

  .shop-panel {
    display: block;
  }

  .shop-heading {
    margin-bottom: 50px;
  }

  .shop-star {
    top: 35px;
    right: 10%;
  }

  .shop-item {
    grid-template-columns: 88px 1fr;
    gap: 12px;
  }

  .shop-image {
    width: 88px;
    height: 92px;
  }

  .shop-item-copy {
    display: block;
  }

  .shop-number {
    display: block;
    margin-bottom: 7px;
  }

  .shop-item h3 {
    font-size: 16px;
  }

  .shop-item p {
    margin-top: 6px;
    font-size: 12px;
  }

  .shop-item-action {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
  }

  .about {
    padding-top: 80px;
    padding-bottom: 86px;
  }

  .about-layout {
    display: block;
    padding-top: 48px;
  }

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

  .about-copy .large-copy {
    font-size: 20px;
  }

  .youtube {
    padding-top: 78px;
    padding-bottom: 85px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .contact {
    display: block;
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .contact-action {
    margin-top: 52px;
    padding: 26px 20px;
  }

  .order {
    display: block;
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .order-form {
    margin-top: 50px;
    padding: 22px 18px;
  }

.member {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 5vw;
  padding-top: 110px;
  padding-bottom: 120px;
  border-top: 1px solid var(--line);
}

.member-copy h2 {
  margin: 25px 0 22px;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.15;
}

.member-copy > p:not(.section-index):not(.member-status) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.member-status,
.member-gate {
  color: var(--pink);
  font-size: 14px;
  line-height: 1.7;
}

.member-copy .button {
  margin-top: 24px;
  cursor: pointer;
}

.member-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.member-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 25px;
  border: 1px solid var(--line);
  background: rgba(16, 18, 29, 0.8);
}

.member-panel h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.member-panel label {
  display: grid;
  gap: 7px;
  color: #c9c9d5;
  font-size: 13px;
}

.member-panel input {
  width: 100%;
  border: 1px solid var(--line);
  padding: 11px;
  outline: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
}

.member-panel input:focus {
  border-color: var(--pink);
}

.member-panel .button {
  width: fit-content;
  margin-top: 5px;
  cursor: pointer;
}

.member-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

  .member {
    display: block;
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .member-panels {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .member-panel {
    padding: 20px;
  }

  .copyright {
    padding-top: 80px;
    padding-bottom: 86px;
  }

  .copyright-panel {
    display: block;
    margin-top: 40px;
    padding: 25px 20px;
  }

  .copyright-symbol {
    margin-bottom: 26px;
  }

  .site-footer {
    display: grid;
    gap: 18px;
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .art-dialog[open] {
    display: block;
    width: calc(100vw - 28px);
    max-height: 90vh;
    overflow-y: auto;
  }

  .dialog-image-wrap {
    min-height: auto;
    height: 60vh;
  }

  .dialog-copy {
    padding: 30px 23px 34px;
  }

  .dialog-copy h2 {
    font-size: 31px;
  }
}

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