:root {
  --black: #f6f6f2;
  --ink: #1d1e1e;
  --paper: #efefea;
  --paper-deep: #dedbd2;
  --cream: #242524;
  --warm-white: #121313;
  --muted: rgba(31, 32, 31, 0.62);
  --muted-dark: rgba(31, 32, 31, 0.58);
  --gold: #a48648;
  --gold-soft: rgba(164, 134, 72, 0.26);
  --red: #a13a2f;
  --line: rgba(31, 32, 31, 0.16);
  --dark-line: rgba(31, 32, 31, 0.18);
  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body: "Jost", Inter, system-ui, sans-serif;
  --ff-jp: "Noto Serif JP", serif;
  --progress: 0%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--ff-body);
  font-weight: 300;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(200, 169, 110, 0.075), transparent 19rem),
    radial-gradient(circle at 12% 54%, rgba(161, 58, 47, 0.052), transparent 16rem),
    linear-gradient(180deg, rgba(247, 246, 240, 0.018), transparent 170px),
    linear-gradient(115deg, transparent 0 58%, rgba(200, 169, 110, 0.028) 58.1% 58.22%, transparent 58.34%),
    #030303;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(200, 169, 110, 0.032) 1px, transparent 1px) 50% 0 / 116px 100%,
    linear-gradient(180deg, rgba(247, 246, 240, 0.022) 1px, transparent 1px) 0 0 / 100% 94px,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  opacity: 0.26;
  mix-blend-mode: screen;
}

.site-shell > main,
.site-shell > section:not(.modal) {
  position: relative;
  z-index: 1;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: calc(76px + env(safe-area-inset-top));
  padding: max(14px, env(safe-area-inset-top)) 18px 12px;
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.86), transparent);
  transition: background 0.28s ease, color 0.28s ease;
}

.brand-mark,
.menu-button {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(200, 169, 110, 0.45);
  border-radius: 50%;
  background: rgba(3, 3, 3, 0.42);
  color: var(--gold);
  backdrop-filter: blur(18px);
}

.brand-mark {
  position: absolute;
  left: 18px;
  top: max(14px, env(safe-area-inset-top));
  display: grid;
  place-items: center;
  justify-items: center;
  align-content: center;
  color: var(--gold);
  font-family: var(--ff-display);
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
}

.brand-wordmark-main {
  display: block;
  width: 42px;
  color: var(--gold);
  font-size: 6.7px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-align: center;
  white-space: nowrap;
}

.brand-wordmark-sub {
  display: grid;
  grid-template-columns: 8px auto 8px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 40px;
  margin-top: 5px;
  font-family: var(--ff-body);
  font-size: 4px;
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 1;
}

.brand-wordmark-sub i {
  display: block;
  height: 1px;
  background: rgba(200, 169, 110, 0.76);
}

.brand-wordmark-sub span::after {
  content: "™";
  position: relative;
  top: -0.46em;
  margin-left: 1px;
  font-size: 4px;
  letter-spacing: 0;
}

.nav-section {
  position: fixed;
  top: max(21px, calc(env(safe-area-inset-top) + 21px));
  left: 50%;
  z-index: 92;
  transform: translateX(-50%);
  margin: 0;
  color: var(--gold);
  font-family: var(--ff-jp);
  font-size: 15px;
  letter-spacing: 0.22em;
}

.menu-button {
  position: absolute;
  right: 18px;
  top: max(14px, env(safe-area-inset-top));
  padding: 0;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 15px;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: top 0.25s ease, transform 0.25s ease;
}

.menu-button span:first-child {
  top: 20px;
}

.menu-button span:last-child {
  top: 29px;
}

.menu-open .menu-button span:first-child {
  top: 24px;
  transform: rotate(45deg);
}

.menu-open .menu-button span:last-child {
  top: 24px;
  transform: rotate(-45deg);
}

.progress-rail {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 2px;
}

.progress-rail span {
  display: block;
  width: var(--progress);
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 17px;
  padding: 104px 28px 30px;
  background:
    radial-gradient(circle at 76% 16%, rgba(161, 58, 47, 0.16), transparent 13rem),
    linear-gradient(180deg, rgba(3, 3, 3, 0.98), rgba(3, 3, 3, 0.995)),
    #030303;
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-open .drawer {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.drawer-eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.drawer a:not(.drawer-cta) {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: baseline;
  gap: 12px;
  width: fit-content;
  font-family: var(--ff-display);
  font-size: clamp(38px, 12vw, 62px);
  font-style: italic;
  line-height: 0.9;
}

.drawer a span {
  color: var(--gold);
  font-family: var(--ff-jp);
  font-size: 19px;
  font-style: normal;
}

.drawer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  margin-top: 14px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 92px 18px 58px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 22px 18px;
  z-index: -2;
  border: 1px solid rgba(200, 169, 110, 0.08);
  pointer-events: none;
}

.hero-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-kanji {
  position: absolute;
  left: 50%;
  top: 39%;
  color: rgba(200, 169, 110, 0.045);
  font-family: var(--ff-jp);
  font-size: 330px;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.hero-vertical {
  position: absolute;
  right: 18px;
  top: 154px;
  color: rgba(200, 169, 110, 0.42);
  font-family: var(--ff-jp);
  font-size: 12px;
  letter-spacing: 0.32em;
  writing-mode: vertical-rl;
}

.hero-card {
  width: min(100%, 360px);
  text-align: center;
}

.studio-status {
  display: inline-flex;
  align-items: center;
  gap: clamp(7px, 1.8vw, 10px);
  margin: -8px 0 0;
  color: rgba(239, 230, 211, 0.74);
  font-size: clamp(9px, 2.05vw, 11px);
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.studio-status > span:not(.status-light) {
  letter-spacing: 0.28em;
}

.studio-status i {
  display: block;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

.status-light {
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(161, 58, 47, 0.74);
}

.studio-status.is-open .status-light {
  background: #55c982;
  box-shadow: 0 0 18px rgba(85, 201, 130, 0.74);
}

.studio-wordmark {
  display: grid;
  justify-items: center;
  margin: 26px 0 0;
  color: var(--warm-white);
  text-transform: uppercase;
}

.wordmark-main {
  font-family: var(--ff-display);
  font-size: clamp(48px, 14vw, 72px);
  font-weight: 400;
  letter-spacing: 0.065em;
  line-height: 0.9;
}

.wordmark-sub {
  display: grid;
  grid-template-columns: minmax(42px, 1fr) auto minmax(42px, 1fr);
  align-items: center;
  gap: 15px;
  width: min(270px, 78vw);
  margin-top: 15px;
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.56em;
  line-height: 1;
}

.wordmark-sub i {
  height: 1px;
  background: rgba(200, 169, 110, 0.72);
}

.hero-jp {
  margin: 22px 0 0;
  color: rgba(239, 230, 211, 0.48);
  font-family: var(--ff-jp);
  font-size: 13px;
  letter-spacing: 0.34em;
}

.rule {
  width: 74px;
  height: 1px;
  margin: 22px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-copy {
  margin: 0 auto;
  max-width: 280px;
  color: rgba(239, 230, 211, 0.76);
  font-family: var(--ff-display);
  font-size: 18px;
  font-style: italic;
  line-height: 1.58;
}

.hero-meta {
  margin: 24px 0 0;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.chapter {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 44px 20px 68px;
  background:
    radial-gradient(circle at 82% 18%, rgba(200, 169, 110, 0.07), transparent 15rem),
    radial-gradient(circle at 12% 72%, rgba(247, 246, 240, 0.035), transparent 13rem),
    linear-gradient(180deg, rgba(247, 246, 240, 0.018), transparent 138px),
    linear-gradient(155deg, transparent 0 44%, rgba(200, 169, 110, 0.026) 44.08% 44.18%, transparent 44.28%),
    linear-gradient(180deg, #030303 0%, #060504 46%, #030303 100%);
}

.chapter + .chapter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.62), transparent);
}

.chapter::after {
  content: none;
}

.chapter-watermark {
  position: absolute;
  top: 72px;
  right: clamp(18px, 7vw, 46px);
  z-index: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.02em;
  width: 0.92em;
  color: rgba(200, 169, 110, 0.046);
  font-family: var(--ff-jp);
  font-size: clamp(112px, 30vw, 176px);
  font-weight: 400;
  line-height: 0.82;
  pointer-events: none;
  text-align: center;
}

.chapter-watermark span {
  display: block;
  width: 1em;
  text-align: center;
}

.chapter > *:not(.chapter-watermark) {
  position: relative;
  z-index: 1;
}

.chapter-head {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.chapter-head::after {
  content: "";
  width: min(136px, 34vw);
  height: 1px;
  margin-top: 2px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.6), transparent);
}

.seal {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 2px;
  background: var(--red);
  color: #fff3df;
  font-family: var(--ff-jp);
  font-size: 20px;
  transform: rotate(-2deg);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

.chapter-kicker {
  margin: 0;
  padding-top: 1px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.chapter h2 {
  margin: 0;
  color: var(--warm-white);
  font-family: var(--ff-display);
  font-size: clamp(36px, 9.6vw, 56px);
  font-weight: 300;
  line-height: 1.02;
}

.chapter h2 em {
  font-style: italic;
  font-weight: 300;
}

.chapter-head > p:last-child {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-family: var(--ff-display);
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
}

.tonal-section {
  background:
    linear-gradient(180deg, rgba(200, 169, 110, 0.022), transparent 120px),
    linear-gradient(180deg, #030303 0%, #070604 48%, #030303 100%);
  color: var(--cream);
}

.tonal-section h2 {
  color: var(--warm-white);
}

.tonal-section .chapter-head > p:last-child {
  color: var(--muted-dark);
}

.gallery {
  background:
    radial-gradient(circle at 86% 24%, rgba(200, 169, 110, 0.09), transparent 14rem),
    radial-gradient(circle at 16% 68%, rgba(247, 246, 240, 0.04), transparent 12rem),
    linear-gradient(128deg, transparent 0 54%, rgba(200, 169, 110, 0.05) 54.1% 54.24%, transparent 54.36%),
    linear-gradient(90deg, transparent 0 12%, rgba(200, 169, 110, 0.038) 12.1% 12.22%, transparent 12.34% 88%, rgba(200, 169, 110, 0.03) 88.1% 88.22%, transparent 88.34%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.68), rgba(3, 3, 3, 0.94) 52%, #030303),
    #030303;
}

.nichi {
  background:
    radial-gradient(circle at 12% 18%, rgba(161, 58, 47, 0.14), transparent 15rem),
    radial-gradient(circle at 88% 36%, rgba(200, 169, 110, 0.09), transparent 13rem),
    linear-gradient(115deg, transparent 0 22%, rgba(161, 58, 47, 0.075) 22.12% 22.28%, transparent 22.42%),
    linear-gradient(90deg, transparent 0 14%, rgba(200, 169, 110, 0.04) 14.1% 14.22%, transparent 14.34% 86%, rgba(200, 169, 110, 0.032) 86.1% 86.22%, transparent 86.34%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.74), #030303 48%, rgba(6, 4, 3, 0.98)),
    #030303;
}

.presets {
  background:
    radial-gradient(circle at 82% 24%, rgba(58, 91, 88, 0.12), transparent 15rem),
    radial-gradient(circle at 18% 66%, rgba(200, 169, 110, 0.07), transparent 13rem),
    linear-gradient(90deg, rgba(3, 3, 3, 0.96) 0 20%, rgba(200, 169, 110, 0.07) 20.2% 20.36%, transparent 20.52%),
    linear-gradient(150deg, transparent 0 63%, rgba(247, 246, 240, 0.035) 63.08% 63.18%, transparent 63.3%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.68), #030303 42%, rgba(7, 6, 4, 0.98)),
    #030303;
}

.studio {
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.82), #030303 54%, rgba(6, 5, 4, 0.98)),
    linear-gradient(90deg, transparent 0 18%, rgba(200, 169, 110, 0.04) 18.1% 18.22%, transparent 18.34% 82%, rgba(200, 169, 110, 0.035) 82.1% 82.22%, transparent 82.34%),
    #030303;
}

.contact {
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.72), #030303 44%, rgba(8, 5, 4, 0.98)),
    linear-gradient(145deg, transparent 0 46%, rgba(161, 58, 47, 0.12) 46.08% 46.3%, transparent 46.45%),
    #030303;
}

.gallery-entry,
.object-card,
.preset-entry,
.studio-ledger,
.contact-button,
.colophon,
.price-strip,
.nichi-purchase {
  margin-top: 26px;
}

.gallery-entry,
.preset-entry {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: inherit;
}

.print-card,
.object-card {
  margin-inline: auto;
  width: min(100%, 520px);
  padding: 0;
  background: transparent;
  color: var(--cream);
  box-shadow: none;
}

.print-card img,
.object-card img {
  width: 100%;
  min-height: 280px;
  max-height: 470px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
  box-shadow:
    0 0 0 1px rgba(200, 169, 110, 0.12),
    0 22px 54px rgba(0, 0, 0, 0.5);
}

.print-card:not(.print-wide) img {
  aspect-ratio: 4 / 5;
}

.print-wide img {
  aspect-ratio: 4 / 3;
}

.editorial-feature {
  width: min(100%, 620px);
}

.feature-image {
  position: relative;
  min-height: 420px;
  margin-inline: -20px;
  overflow: hidden;
  isolation: isolate;
  background: #080807;
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.05), rgba(3, 3, 3, 0.08) 48%, rgba(3, 3, 3, 0.72)),
    linear-gradient(90deg, rgba(3, 3, 3, 0.36), transparent 42%);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: none;
  object-fit: cover;
  object-position: 55% 50%;
  filter: saturate(0.96) contrast(1.04);
  box-shadow: none;
  transform: scale(1.012);
}

.feature-label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 74px;
  z-index: 2;
  display: grid;
  gap: 8px;
  color: var(--warm-white);
  text-align: left;
}

.feature-label span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.feature-label strong {
  font-family: var(--ff-jp);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.16em;
}

.feature-specs {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid rgba(200, 169, 110, 0.42);
}

.feature-specs span {
  color: rgba(247, 246, 240, 0.72);
  font-size: 9px;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
}

.print-card figcaption,
.object-card figcaption,
.print-card .card-caption,
.object-card .card-caption {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 24px 6px 0;
  text-align: center;
}

.journal-object figcaption,
.preset-object .card-caption {
  padding-top: 34px;
}

.print-card figcaption span,
.object-card figcaption span,
.print-card .card-caption span,
.object-card .card-caption span,
.price-strip small {
  color: rgba(200, 169, 110, 0.72);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.print-card figcaption strong,
.object-card figcaption strong,
.print-card .card-caption strong,
.object-card .card-caption strong {
  font-family: var(--ff-display);
  font-size: 25px;
  font-style: italic;
  font-weight: 400;
}

.print-card figcaption small,
.object-card figcaption small,
.print-card .card-caption small,
.object-card .card-caption small {
  color: rgba(239, 230, 211, 0.58);
  font-family: var(--ff-display);
  font-size: 15px;
  font-style: italic;
}

.journal-object,
.preset-object {
  padding: 0;
  background: transparent;
  color: var(--cream);
}

.journal-object + .nichi-purchase {
  margin-top: 36px;
}

.journal-object figcaption span,
.preset-object figcaption span,
.journal-object .card-caption span,
.preset-object .card-caption span,
.journal-object figcaption small,
.preset-object figcaption small,
.journal-object .card-caption small,
.preset-object .card-caption small {
  color: rgba(239, 230, 211, 0.62);
}

.journal-object figcaption strong,
.preset-object figcaption strong,
.journal-object .card-caption strong,
.preset-object .card-caption strong {
  color: var(--cream);
}

.journal-object img,
.preset-object img {
  object-fit: contain;
  background: #050505;
}

.journal-object img {
  width: min(100%, 342px);
  min-height: 0;
  max-height: none;
  margin-inline: auto;
  object-fit: contain;
  background: transparent;
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.54),
    0 0 0 1px rgba(200, 169, 110, 0.13);
}

.preset-object img {
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.56));
}

.product-stage {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 0;
  padding-top: 12px;
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 66px 12% auto;
  height: 190px;
  background:
    radial-gradient(circle at 50% 44%, rgba(200, 169, 110, 0.08), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  filter: blur(22px);
}

.preset-object .preset-box {
  position: relative;
  z-index: 2;
  width: min(78%, 285px);
  margin-top: 8px;
}

.preset-object .card-caption {
  max-width: 350px;
  margin-inline: auto;
  padding-top: 28px;
}

.preset-object .card-caption strong {
  font-size: 28px;
}

.preset-object .card-caption small {
  max-width: 245px;
  line-height: 1.45;
}

.price-strip {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: baseline;
  gap: 3px 14px;
  color: var(--cream);
  text-align: center;
}

.entry-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 52px;
  margin-top: 22px;
  padding: 0 14px;
  border: 1px solid rgba(200, 169, 110, 0.52);
  color: rgba(200, 169, 110, 0.88);
  font-family: var(--ff-body);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.entry-cta b {
  color: var(--cream);
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0;
}

.price-strip span {
  color: var(--red);
  font-family: var(--ff-display);
  font-size: 34px;
  font-style: italic;
}

.price-strip s {
  color: rgba(239, 230, 211, 0.38);
  font-size: 18px;
}

.price-strip small {
  grid-column: 1 / -1;
  max-width: none;
  line-height: 1.4;
}

.nichi-purchase {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 16px;
  width: min(100%, 560px);
  margin-inline: auto;
  padding: 18px 0 18px;
  border: 0;
  border-top: 1px solid rgba(200, 169, 110, 0.26);
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}

.availability-mark {
  position: static;
  grid-row: 1 / 3;
  display: grid;
  justify-items: center;
  align-self: start;
  color: rgba(161, 58, 47, 0.86);
  font-family: var(--ff-jp);
}

.availability-mark strong {
  writing-mode: vertical-rl;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.nichi-copy {
  display: grid;
  gap: 6px;
}

.nichi-copy p {
  margin: 0;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nichi-copy h3 {
  margin: 0;
  color: var(--cream);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.nichi-copy h3 em {
  font-family: var(--ff-display);
  font-size: 23px;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: none;
}

.nichi-purchase a {
  display: flex;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 10px 0 0;
  border: 0;
  border-top: 1px solid rgba(200, 169, 110, 0.2);
  color: var(--gold);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nichi-purchase a strong {
  color: var(--cream);
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 300;
}

.edition-note {
  margin: 18px 0 0;
  color: rgba(232, 230, 223, 0.42);
  font-family: var(--ff-display);
  font-size: 20px;
  font-style: italic;
}

.about-entry {
  position: relative;
  display: grid;
  gap: 10px;
  width: 100%;
  margin-top: 26px;
  padding: 24px 54px 24px 20px;
  border: 1px solid rgba(200, 169, 110, 0.46);
  background: transparent;
  color: var(--cream);
  text-align: left;
  cursor: pointer;
}

.about-entry span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.about-entry strong {
  font-family: var(--ff-display);
  font-size: 33px;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}

.about-entry small {
  color: var(--muted);
  font-family: var(--ff-jp);
  font-size: 13px;
}

.about-entry b {
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--gold);
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 300;
  transform: translateY(-50%);
}

.contact {
  min-height: auto;
  display: block;
}

.contact .chapter-head {
  gap: 10px;
  max-width: 640px;
  margin-inline: auto;
}

.contact .chapter-head h2 {
  font-size: clamp(36px, 9.6vw, 56px);
  line-height: 1.02;
}

.contact .chapter-head > p:last-child {
  max-width: 300px;
  font-size: 16px;
  line-height: 1.6;
}

.contact-button {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: min(100%, 420px);
  min-height: 50px;
  margin: 26px auto 0;
  padding: 0 10px;
  border: 0;
  border-top: 1px solid rgba(200, 169, 110, 0.5);
  border-bottom: 1px solid rgba(200, 169, 110, 0.32);
  background: linear-gradient(90deg, rgba(200, 169, 110, 0.035), transparent);
  color: rgba(200, 169, 110, 0.9);
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-button strong {
  color: rgba(247, 246, 240, 0.82);
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 300;
}

.colophon {
  color: rgba(239, 230, 211, 0.48);
  font-size: 10px;
  letter-spacing: 0.28em;
  line-height: 1.8;
  text-align: center;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2, .8, .2, 1);
}

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

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  background: rgba(3, 3, 3, 0.96);
  color: var(--cream);
}

.modal.is-open {
  display: block;
}

.modal-panel {
  height: 100%;
  overflow-y: auto;
  padding: max(18px, env(safe-area-inset-top)) 18px 34px;
  background:
    radial-gradient(circle at 80% 0%, rgba(161, 58, 47, 0.12), transparent 18rem),
    var(--black);
}

.modal-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0 20px;
  background: linear-gradient(180deg, var(--black) 72%, rgba(3, 3, 3, 0));
}

.modal-head span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: var(--ff-jp);
  font-size: 16px;
  letter-spacing: 0.22em;
}

.modal-head h3 {
  margin: 0;
  font-family: var(--ff-display);
  font-size: 42px;
  font-style: italic;
  font-weight: 300;
  line-height: 0.95;
}

.modal-close {
  display: grid;
  place-items: center;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(3, 3, 3, 0.6);
  color: var(--gold);
  font-family: var(--ff-display);
  font-size: 34px;
  line-height: 1;
}

.gallery-showcase {
  display: grid;
  gap: 24px;
  padding-top: 10px;
}

.gallery-showcase figure {
  margin: 0;
}

.gallery-showcase img {
  width: 100%;
  max-height: 72svh;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(200, 169, 110, 0.14);
}

.gallery-showcase figure:nth-child(2) img,
.gallery-showcase figure:nth-child(4) img,
.gallery-showcase figure:nth-child(6) img {
  aspect-ratio: 4 / 5;
}

.gallery-showcase figure:nth-child(1) img,
.gallery-showcase figure:nth-child(3) img,
.gallery-showcase figure:nth-child(5) img {
  aspect-ratio: 4 / 3;
}

.gallery-showcase figcaption {
  display: grid;
  gap: 5px;
  padding-top: 12px;
}

.gallery-showcase figcaption span,
.before-after-meta span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.gallery-showcase figcaption strong {
  font-family: var(--ff-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
}

.gallery-showcase figcaption small {
  color: var(--muted);
  font-family: var(--ff-display);
  font-size: 15px;
  font-style: italic;
}

.preset-summary {
  display: grid;
  gap: 30px;
  padding: 28px 0 42px;
}

.preset-summary img {
  width: min(100%, 330px);
  margin-inline: auto;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.6));
}

.preset-summary p {
  margin: 0;
  color: var(--muted);
  font-family: var(--ff-display);
  font-size: 18px;
  font-style: italic;
  line-height: 1.55;
  text-align: center;
}

.slider-grid {
  display: grid;
  gap: 44px;
}

.before-after-card {
  display: grid;
  gap: 18px;
}

.before-after {
  --split: 50%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #090807;
  box-shadow: 0 0 0 1px rgba(200, 169, 110, 0.12);
}

.before-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after .before {
  filter: none;
}

.before-after .after {
  clip-path: inset(0 0 0 var(--split));
}

.before-after::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 2;
  width: 1px;
  background: var(--gold);
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: var(--split);
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  width: 34px;
  height: 24px;
  border: 1px solid rgba(200, 169, 110, 0.58);
  background: rgba(3, 3, 3, 0.52);
  color: var(--gold);
  transform: translate(-50%, -50%);
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.slider-handle span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: var(--ff-display);
  font-size: 17px;
  line-height: 1;
}

.slider-handle span:first-child::before {
  content: "‹";
}

.slider-handle span:last-child::before {
  content: "›";
}

.before-after::after {
  content: "Before   After";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  color: rgba(247, 246, 240, 0.78);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.before-after input {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.before-after-meta {
  display: grid;
  gap: 8px;
}

.before-after-meta strong {
  font-family: var(--ff-display);
  font-size: 27px;
  font-style: italic;
  font-weight: 300;
}

.before-after-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.about-modal-panel {
  display: grid;
  gap: 30px;
}

.about-hero {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding-top: 6px;
  text-align: center;
}

.about-hero p {
  margin: 0;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.about-hero h3 {
  margin: 0;
  font-family: var(--ff-display);
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

.about-hero h3 em {
  font-style: italic;
}

.about-hero small {
  color: var(--muted);
  font-family: var(--ff-display);
  font-size: 17px;
  font-style: italic;
  line-height: 1.55;
}

.rakkann-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  min-height: 420px;
  padding: 44px 24px 30px;
  border: 1px solid rgba(200, 169, 110, 0.3);
  box-shadow: inset 0 0 0 6px rgba(200, 169, 110, 0.045);
}

.rakkann-mark {
  display: grid;
  place-items: center;
  width: 82px;
  height: 100px;
  margin: auto 0;
  border: 1px solid rgba(200, 169, 110, 0.54);
  color: var(--gold);
  font-family: var(--ff-jp);
  font-size: 31px;
  line-height: 1.1;
  text-align: center;
}

.rakkann-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.studio-lockup {
  display: grid;
  justify-items: center;
  width: min(100%, 290px);
  margin-top: auto;
  color: var(--warm-white);
  text-align: center;
  text-transform: uppercase;
}

.studio-lockup-main {
  display: block;
  color: var(--warm-white);
  font-family: var(--ff-display);
  font-size: clamp(38px, 12vw, 54px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 0.9;
}

.studio-lockup-sub {
  display: grid;
  grid-template-columns: 58px auto 58px;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
  color: var(--warm-white);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.54em;
  line-height: 1;
}

.studio-lockup-sub i {
  display: block;
  height: 1px;
  background: rgba(247, 246, 240, 0.76);
}

.studio-lockup-sub span {
  color: var(--warm-white);
}

.studio-lockup-sub span::after {
  content: "™";
  position: relative;
  top: -0.55em;
  margin-left: 2px;
  font-size: 7px;
  letter-spacing: 0;
}

.rakkann-card > span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.about-copy {
  display: grid;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(200, 169, 110, 0.18);
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.82;
}

.about-copy p span {
  float: left;
  margin: 7px 9px 0 0;
  color: var(--gold);
  font-family: var(--ff-display);
  font-size: 54px;
  line-height: 0.72;
}

.about-copy em {
  color: var(--gold);
  font-family: var(--ff-display);
}

.about-principles {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(200, 169, 110, 0.18);
}

.about-principles article {
  display: grid;
  gap: 9px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.18);
}

.about-principles span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.about-principles strong {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 300;
}

.about-principles p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-modal-panel {
  padding-bottom: 46px;
}

.contact-sheet {
  display: grid;
  gap: 32px;
  padding-top: 14px;
}

.contact-intro {
  display: grid;
  gap: 18px;
}

.contact-intro > p {
  margin: 0;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.contact-intro h3 {
  margin: 0;
  color: var(--warm-white);
  font-family: var(--ff-display);
  font-size: clamp(42px, 12vw, 70px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.94;
}

.contact-intro h3 em {
  font-style: italic;
}

.contact-intro small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.contact-intro dl {
  display: grid;
  gap: 16px;
  margin: 10px 0 0;
  padding-top: 26px;
  border-top: 1px solid rgba(200, 169, 110, 0.2);
}

.contact-intro dl div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
}

.contact-intro dt {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.contact-intro dd {
  margin: 0;
  color: rgba(232, 230, 223, 0.72);
  font-size: 15px;
  line-height: 1.45;
}

.contact-intro a {
  border-bottom: 1px solid rgba(200, 169, 110, 0.5);
  color: var(--cream);
}

.studio-form {
  display: grid;
  gap: 20px;
  padding: 22px 0 0;
  border: 0;
  border-top: 1px solid rgba(200, 169, 110, 0.24);
  background: rgba(0, 0, 0, 0.14);
}

.form-grid {
  display: grid;
  gap: 22px;
}

.studio-form label {
  display: grid;
  gap: 13px;
}

.studio-form label span {
  color: rgba(232, 230, 223, 0.58);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.studio-form input,
.studio-form select,
.studio-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(232, 230, 223, 0.22);
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  font: inherit;
  font-size: 16px;
  outline: none;
}

.studio-form input,
.studio-form select {
  height: 46px;
}

.studio-form select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%) calc(100% - 13px) 53% / 7px 7px no-repeat,
    linear-gradient(135deg, var(--gold) 50%, transparent 50%) calc(100% - 8px) 53% / 7px 7px no-repeat;
}

.studio-form textarea {
  min-height: 210px;
  padding: 14px;
  border: 1px solid rgba(232, 230, 223, 0.22);
  resize: vertical;
}

.studio-form input:focus,
.studio-form select:focus,
.studio-form textarea:focus {
  border-color: rgba(200, 169, 110, 0.78);
}

.studio-form button {
  justify-self: start;
  min-width: 220px;
  min-height: 58px;
  margin-top: 2px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.studio-form p {
  margin: 0;
  color: rgba(232, 230, 223, 0.46);
  font-family: var(--ff-display);
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
}

/* Light gallery edition */
body {
  background: #f6f6f2;
  color: var(--ink);
}

.site-shell {
  background:
    radial-gradient(circle at 82% 18%, rgba(164, 134, 72, 0.12), transparent 20rem),
    radial-gradient(circle at 8% 54%, rgba(161, 58, 47, 0.06), transparent 17rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(240, 240, 234, 0.92)),
    #f6f6f2;
}

.site-shell::before {
  background:
    linear-gradient(90deg, rgba(31, 32, 31, 0.055) 1px, transparent 1px) 50% 0 / 116px 100%,
    linear-gradient(180deg, rgba(31, 32, 31, 0.04) 1px, transparent 1px) 0 0 / 100% 94px,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  opacity: 0.28;
  mix-blend-mode: multiply;
}

.nav {
  background: linear-gradient(180deg, rgba(246, 246, 242, 0.92), rgba(246, 246, 242, 0));
}

.brand-mark,
.menu-button {
  border-color: rgba(31, 32, 31, 0.2);
  background: rgba(246, 246, 242, 0.72);
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(31, 32, 31, 0.08);
}

.brand-wordmark-main,
.brand-wordmark-sub {
  color: var(--ink);
}

.brand-wordmark-sub i,
.wordmark-sub i,
.chapter-head::after,
.rule {
  background: linear-gradient(90deg, transparent, rgba(31, 32, 31, 0.52), transparent);
}

.nav-section,
.hero-vertical,
.drawer-eyebrow,
.drawer a span,
.hero-meta,
.chapter-kicker,
.print-card figcaption span,
.object-card figcaption span,
.print-card .card-caption span,
.object-card .card-caption span,
.price-strip small,
.nichi-copy p,
.nichi-purchase a,
.about-entry span,
.about-entry b,
.contact-button,
.gallery-showcase figcaption span,
.before-after-meta span,
.about-hero p,
.rakkann-mark,
.rakkann-card > span,
.about-copy p span,
.about-copy em,
.about-principles span,
.contact-intro > p,
.contact-intro dt {
  color: var(--gold);
}

.drawer {
  background:
    radial-gradient(circle at 76% 16%, rgba(161, 58, 47, 0.06), transparent 13rem),
    linear-gradient(180deg, rgba(246, 246, 242, 0.98), rgba(237, 237, 231, 0.995)),
    #f6f6f2;
  color: var(--ink);
}

.drawer-cta {
  border-color: rgba(31, 32, 31, 0.55);
  color: var(--ink);
}

.hero::before {
  border-color: rgba(31, 32, 31, 0.08);
}

.hero-kanji,
.chapter-watermark {
  color: rgba(31, 32, 31, 0.048);
}

.studio-status {
  color: rgba(31, 32, 31, 0.72);
}

.studio-wordmark,
.wordmark-main,
.chapter h2,
.print-card figcaption strong,
.object-card figcaption strong,
.print-card .card-caption strong,
.object-card .card-caption strong,
.journal-object .card-caption strong,
.preset-object .card-caption strong,
.about-entry,
.contact-button strong,
.gallery-showcase figcaption strong,
.before-after-meta strong,
.about-hero h3,
.studio-lockup,
.studio-lockup-main,
.studio-lockup-sub,
.studio-lockup-sub span,
.about-principles strong,
.contact-intro h3 {
  color: var(--ink);
}

.wordmark-sub,
.hero-jp,
.hero-copy,
.chapter-head > p:last-child,
.tonal-section .chapter-head > p:last-child,
.print-card figcaption small,
.object-card figcaption small,
.print-card .card-caption small,
.object-card .card-caption small,
.journal-object .card-caption small,
.preset-object .card-caption small,
.edition-note,
.about-entry small,
.colophon,
.gallery-showcase figcaption small,
.preset-summary p,
.before-after-meta p,
.about-hero small,
.rakkann-card p,
.about-copy p,
.about-principles p,
.contact-intro small,
.contact-intro dd,
.studio-form p {
  color: rgba(31, 32, 31, 0.58);
}

.chapter,
.gallery,
.nichi,
.presets,
.studio,
.contact,
.tonal-section {
  background:
    radial-gradient(circle at 86% 22%, rgba(164, 134, 72, 0.115), transparent 15rem),
    radial-gradient(circle at 10% 74%, rgba(31, 32, 31, 0.035), transparent 13rem),
    linear-gradient(128deg, transparent 0 54%, rgba(31, 32, 31, 0.05) 54.1% 54.2%, transparent 54.32%),
    linear-gradient(90deg, transparent 0 14%, rgba(31, 32, 31, 0.045) 14.1% 14.2%, transparent 14.32% 86%, rgba(164, 134, 72, 0.05) 86.1% 86.2%, transparent 86.32%),
    linear-gradient(180deg, #f8f8f5 0%, #efefea 56%, #f6f6f2 100%);
}

.chapter + .chapter::before {
  background: linear-gradient(90deg, transparent, rgba(31, 32, 31, 0.34), transparent);
}

.seal {
  box-shadow: 0 14px 32px rgba(31, 32, 31, 0.18);
}

.feature-specs span,
.before-after::after {
  color: rgba(247, 246, 240, 0.72);
}

.feature-image {
  background: #111;
  box-shadow: 0 28px 70px rgba(31, 32, 31, 0.2);
}

.feature-label {
  color: #f7f6f0;
}

.feature-label span {
  color: #c8a96e;
}

.print-card img,
.object-card img,
.gallery-showcase img {
  box-shadow:
    0 0 0 1px rgba(31, 32, 31, 0.08),
    0 26px 58px rgba(31, 32, 31, 0.17);
}

.journal-object,
.preset-object,
.print-card,
.object-card {
  color: var(--ink);
}

.journal-object img {
  box-shadow:
    0 28px 60px rgba(31, 32, 31, 0.18),
    0 0 0 1px rgba(31, 32, 31, 0.07);
}

.preset-object img,
.preset-summary img {
  filter: drop-shadow(0 28px 42px rgba(31, 32, 31, 0.22));
}

.product-stage::before {
  background:
    radial-gradient(circle at 50% 44%, rgba(164, 134, 72, 0.14), transparent 54%),
    linear-gradient(180deg, rgba(31, 32, 31, 0.045), transparent);
}

.entry-cta,
.nichi-purchase,
.about-entry,
.contact-button,
.rakkann-card,
.about-copy,
.about-principles,
.about-principles article,
.contact-intro dl,
.studio-form {
  border-color: rgba(31, 32, 31, 0.18);
}

.entry-cta {
  border-color: rgba(31, 32, 31, 0.36);
  color: var(--ink);
}

.entry-cta b,
.nichi-purchase a strong {
  color: var(--ink);
}

.nichi-purchase {
  border-top-color: rgba(31, 32, 31, 0.22);
  border-bottom-color: rgba(31, 32, 31, 0.16);
}

.nichi-purchase a {
  border-top-color: rgba(31, 32, 31, 0.16);
}

.modal {
  background: rgba(246, 246, 242, 0.96);
  color: var(--ink);
}

.modal-panel {
  background:
    radial-gradient(circle at 80% 0%, rgba(161, 58, 47, 0.06), transparent 18rem),
    #f6f6f2;
}

.modal-head {
  background: linear-gradient(180deg, #f6f6f2 72%, rgba(246, 246, 242, 0));
}

.modal-close {
  border-color: rgba(31, 32, 31, 0.42);
  background: rgba(246, 246, 242, 0.72);
  color: var(--ink);
}

.before-after {
  background: #151515;
  box-shadow: 0 0 0 1px rgba(31, 32, 31, 0.12);
}

.slider-handle {
  border-color: rgba(164, 134, 72, 0.6);
  background: rgba(246, 246, 242, 0.82);
  color: var(--ink);
}

.rakkann-card {
  box-shadow: inset 0 0 0 6px rgba(31, 32, 31, 0.035);
}

.studio-lockup-sub i {
  background: rgba(31, 32, 31, 0.62);
}

.contact-intro a {
  border-bottom-color: rgba(31, 32, 31, 0.26);
  color: var(--ink);
}

/* White gallery refinement */
:root {
  --black: #fbfbf9;
  --paper: #fbfbf9;
  --paper-deep: #fbfbf9;
}

html,
body,
.site-shell {
  background: #fbfbf9;
}

.site-shell {
  background: #fbfbf9;
}

.site-shell::before {
  display: none;
}

.hero::before {
  display: none;
}

.nav {
  background: linear-gradient(180deg, rgba(251, 251, 249, 0.94), rgba(251, 251, 249, 0));
}

.drawer,
.chapter,
.gallery,
.nichi,
.presets,
.studio,
.contact,
.tonal-section,
.modal-panel {
  background: #fbfbf9;
}

.chapter {
  padding: 36px 20px 46px;
}

.chapter + .chapter {
  padding-top: 24px;
}

.chapter-watermark {
  top: 72px;
  right: clamp(42px, 10vw, 82px);
  width: 1em;
  color: rgba(31, 32, 31, 0.04);
  font-size: clamp(64px, 16vw, 100px);
  line-height: 0.92;
}

.chapter-head {
  max-width: 640px;
}

.chapter h2,
.contact .chapter-head h2 {
  font-size: clamp(36px, 9.6vw, 56px);
  line-height: 1.02;
}

.chapter-head > p:last-child,
.contact .chapter-head > p:last-child {
  max-width: 300px;
  font-size: 16px;
  line-height: 1.6;
}

.hero-kanji {
  color: rgba(31, 32, 31, 0.038);
  font-size: clamp(190px, 48vw, 280px);
  top: 33%;
}

.seal {
  transform: none;
}

.chapter-head::after,
.rule {
  background: linear-gradient(90deg, transparent, rgba(31, 32, 31, 0.28), transparent);
}

.chapter + .chapter::before {
  display: none;
}

.journal-object img,
.preset-object .preset-box {
  width: min(78vw, 318px);
  max-height: none;
  background: transparent;
  object-fit: contain;
}

.journal-object img {
  box-shadow:
    0 28px 58px rgba(31, 32, 31, 0.14),
    0 0 0 1px rgba(31, 32, 31, 0.055);
}

.preset-object .preset-box {
  box-shadow: none;
  filter: drop-shadow(0 24px 34px rgba(31, 32, 31, 0.16));
}

.product-stage {
  padding-top: 18px;
}

.product-stage::before {
  display: none;
}

.preset-object .card-caption {
  width: min(100%, 480px);
  max-width: none;
  padding-top: 34px;
}

.entry-cta,
.contact-button {
  background: transparent;
}

.modal-head {
  background: linear-gradient(180deg, #fbfbf9 72%, rgba(251, 251, 249, 0));
}

/* Unified editorial action system */
.print-card .card-caption,
.object-card .card-caption,
.preset-object .card-caption {
  width: min(100%, 520px);
  margin-inline: auto;
  padding: 34px 0 0;
  gap: 10px;
}

.print-card .card-caption span,
.object-card .card-caption span,
.preset-object .card-caption span,
.nichi-copy p,
.about-entry span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.34em;
}

.print-card .card-caption strong,
.object-card .card-caption strong,
.preset-object .card-caption strong {
  color: var(--ink);
  font-size: clamp(29px, 7.8vw, 39px);
  line-height: 1.1;
}

.print-card .card-caption small,
.object-card .card-caption small,
.preset-object .card-caption small {
  color: rgba(31, 32, 31, 0.54);
  font-size: 16px;
  line-height: 1.45;
}

.entry-cta,
.nichi-purchase a,
.contact-button {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: min(100%, 480px);
  min-height: 62px;
  margin: 30px auto 0;
  padding: 0 22px;
  border: 0;
  border-top: 1px solid rgba(31, 32, 31, 0.22);
  border-bottom: 1px solid rgba(31, 32, 31, 0.22);
  background: transparent;
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-align: left;
  text-transform: uppercase;
}

.entry-cta b,
.nichi-purchase a strong,
.contact-button strong {
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
}

.nichi-purchase {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  width: min(100%, 480px);
  margin: 36px auto 0;
  padding: 0;
  border: 0;
  text-align: center;
}

.availability-mark {
  display: none;
}

.availability-mark strong {
  writing-mode: horizontal-tb;
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.3em;
}

.nichi-copy {
  justify-items: center;
  gap: 10px;
  width: 100%;
}

.nichi-copy h3 {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.2em;
  line-height: 1.45;
  text-align: center;
}

.nichi-copy h3 em {
  display: block;
  margin-bottom: 2px;
  font-size: clamp(29px, 7.8vw, 39px);
  line-height: 1.05;
}

.nichi-purchase a {
  justify-content: stretch;
  margin-top: 24px;
}

.edition-note {
  width: min(100%, 520px);
  margin: 24px auto 0;
  text-align: center;
}

.about-entry {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(100%, 480px);
  min-height: 62px;
  margin: 30px auto 0;
  padding: 0 22px;
  border: 0;
  border-top: 1px solid rgba(31, 32, 31, 0.22);
  border-bottom: 1px solid rgba(31, 32, 31, 0.22);
  color: var(--ink);
}

.about-entry span {
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.about-entry b {
  position: static;
  grid-column: 2;
  align-self: center;
  justify-self: end;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  transform: none;
}

.feature-image::after {
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.02), rgba(3, 3, 3, 0.1) 42%, rgba(3, 3, 3, 0.52) 69%, rgba(3, 3, 3, 0.86)),
    linear-gradient(90deg, rgba(3, 3, 3, 0.48), rgba(3, 3, 3, 0.14) 58%, transparent);
}

.feature-label,
.feature-specs {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.92);
}

.feature-label span {
  color: #e0bf75;
  font-weight: 500;
  opacity: 0.98;
}

.feature-label strong {
  text-shadow:
    0 1px 14px rgba(0, 0, 0, 0.92),
    0 0 1px rgba(0, 0, 0, 0.8);
}

@media (min-width: 720px) {
  .nav {
    padding-inline: 42px;
  }

  .brand-mark {
    left: 42px;
  }

  .menu-button {
    right: 42px;
  }

  .hero h1 {
    font-size: 104px;
  }

  .chapter {
    padding: 54px 9vw 66px;
  }

  .chapter + .chapter {
    padding-top: 38px;
  }

  .chapter + .chapter::before {
    left: 9vw;
    right: 9vw;
  }

  .gallery-showcase,
  .slider-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-modal-panel {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .about-modal-panel .modal-head,
  .about-hero,
  .about-principles {
    grid-column: 1 / -1;
  }

  .contact-sheet {
    grid-template-columns: 0.9fr 1fr;
    gap: 7vw;
    align-items: start;
    padding: 54px 6vw 0;
  }

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

  .studio-form {
    padding: 54px;
  }
}

/* =========================================================================
   CREAM EDITORIAL THEME — overrides for the cover, chapters, drawer & CTAs.
   Targets the cream/light layout from 2026-05-16 design pass.
   ========================================================================= */

body {
  background: #fbfbf9;
  color: var(--ink);
}

.site-shell {
  background:
    radial-gradient(circle at 78% 14%, rgba(164, 134, 72, 0.10), transparent 22rem),
    radial-gradient(circle at 12% 56%, rgba(161, 58, 47, 0.045), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent 220px),
    #fbfbf9;
}

.site-shell::before {
  background:
    linear-gradient(90deg, rgba(164, 134, 72, 0.038) 1px, transparent 1px) 50% 0 / 116px 100%,
    linear-gradient(180deg, rgba(31, 32, 31, 0.024) 1px, transparent 1px) 0 0 / 100% 94px;
  opacity: 0.5;
  mix-blend-mode: multiply;
}

/* Top nav — cream */
.nav {
  background: linear-gradient(180deg, rgba(245, 239, 229, 0.94), rgba(245, 239, 229, 0.0));
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-section {
  grid-column: 2;
  margin: 0;
  color: var(--gold);
  font-family: var(--ff-jp);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-align: center;
}
.menu-button {
  grid-column: 3;
  justify-self: end;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(164, 134, 72, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 3px 0;
  background: var(--ink);
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Progress rail in gold */
.progress-rail {
  background: rgba(164, 134, 72, 0.14);
}
.progress-rail span {
  background: var(--gold);
}

/* Drawer — cream sheet with italic Cormorant list */
.drawer {
  background: #fbfbf9;
  color: var(--ink);
}
.drawer-eyebrow {
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.drawer > a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 10px 0;
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 44px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
}
.drawer > a > span {
  display: inline-block;
  color: var(--gold);
  font-family: var(--ff-jp);
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0;
}
.drawer-cta {
  display: inline-block !important;
  width: max-content;
  margin-top: 22px;
  padding: 16px 28px;
  border: 1px solid rgba(31, 32, 31, 0.55);
  font-family: var(--ff-body) !important;
  font-size: 11px !important;
  font-style: normal !important;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  grid-template-columns: none !important;
}

/* ---- HERO COVER ---- */
.hero {
  padding-top: 110px;
}
.hero::before { border-color: transparent; }

.hero-eyebrow-kanji {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--ff-jp);
  font-size: 22px;
  letter-spacing: 0.2em;
  text-align: center;
}

.hero-kanji {
  color: rgba(31, 32, 31, 0.055);
  top: 45%;
  font-size: clamp(280px, 78vw, 420px);
}
.hero-vertical {
  color: rgba(164, 134, 72, 0.62);
  top: 200px;
  font-size: 13px;
  letter-spacing: 0.34em;
}

.studio-status {
  color: rgba(31, 32, 31, 0.66);
  margin: 0 0 28px;
  font-size: 11px;
  letter-spacing: 0.28em;
}

.studio-wordmark {
  display: grid;
  justify-items: center;
  margin: 0;
  color: var(--ink);
}
.wordmark-main {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin: 0;
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: clamp(64px, 18vw, 96px);
  font-weight: 400;
  letter-spacing: 0.045em;
  line-height: 0.92;
  text-transform: uppercase;
}
.wordmark-main span {
  display: block;
  font-style: normal;
  font-weight: 400;
}
.wordmark-sub {
  grid-template-columns: minmax(60px, 1fr) auto minmax(60px, 1fr);
  gap: 16px;
  width: min(320px, 84vw);
  margin: 18px 0 0;
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}
.wordmark-sub i {
  background: rgba(31, 32, 31, 0.55);
}
.hero-jp {
  margin: 14px 0 0;
  color: rgba(31, 32, 31, 0.5);
  font-family: var(--ff-jp);
  font-size: 14px;
  letter-spacing: 0.32em;
  text-align: center;
}
.hero-copy {
  margin: 32px auto 0;
  max-width: 320px;
  color: rgba(31, 32, 31, 0.78);
  font-family: var(--ff-display);
  font-size: 19px;
  font-style: italic;
  line-height: 1.55;
}
.hero-meta {
  margin: 24px 0 0;
  color: var(--gold);
  font-size: 10.5px;
  letter-spacing: 0.36em;
}

/* ---- CHAPTERS — cream ---- */
.chapter {
  padding: 64px 24px 78px;
  background:
    radial-gradient(circle at 86% 16%, rgba(164, 134, 72, 0.085), transparent 17rem),
    radial-gradient(circle at 14% 76%, rgba(161, 58, 47, 0.028), transparent 14rem),
    #fbfbf9;
}
.tonal-section {
  background:
    radial-gradient(circle at 86% 16%, rgba(164, 134, 72, 0.08), transparent 17rem),
    #efeae0;
}
.chapter + .chapter::before {
  background: linear-gradient(90deg, transparent, rgba(164, 134, 72, 0.4), transparent);
}
.chapter h2 {
  color: var(--ink);
  font-weight: 400;
  font-size: clamp(38px, 10vw, 60px);
}
.chapter-head > p:last-child {
  color: rgba(31, 32, 31, 0.66);
  font-size: 17px;
}
.chapter-head::after {
  background: linear-gradient(90deg, transparent, rgba(164, 134, 72, 0.55), transparent);
  margin-top: 18px;
}
.chapter-kicker { color: var(--gold); }
.seal {
  width: 48px;
  height: 48px;
  font-size: 22px;
  box-shadow: 0 12px 26px rgba(31, 32, 31, 0.14);
  transform: rotate(0);
}
.chapter-watermark {
  color: rgba(31, 32, 31, 0.055);
  top: 90px;
  right: clamp(12px, 4vw, 28px);
  font-size: clamp(124px, 32vw, 184px);
}

/* ---- PRINT / OBJECT CARDS on cream ---- */
.print-card, .object-card {
  color: var(--ink);
}
.print-card img, .object-card img {
  box-shadow: none;
  filter: none;
}
.print-card .card-caption,
.object-card .card-caption,
.print-card figcaption,
.object-card figcaption {
  padding-top: 22px;
  color: var(--ink);
}
.print-card .card-caption strong,
.object-card .card-caption strong,
.print-card figcaption strong,
.object-card figcaption strong {
  color: var(--ink);
  font-size: 32px;
  font-weight: 400;
}
.print-card .card-caption small,
.object-card .card-caption small,
.print-card figcaption small,
.object-card figcaption small {
  color: rgba(31, 32, 31, 0.58);
  font-family: var(--ff-display);
  font-size: 16px;
  font-style: italic;
}
.print-card .card-caption span,
.object-card .card-caption span,
.print-card figcaption span,
.object-card figcaption span {
  color: var(--gold);
  font-size: 10.5px;
  letter-spacing: 0.36em;
}

/* Preset object — clean box on cream, no frame, no shadow halo */
.preset-object img {
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 22px 38px rgba(31, 32, 31, 0.18));
  width: min(80%, 360px);
  margin: 0 auto;
}
.journal-object img {
  background: transparent;
  box-shadow: 0 24px 56px rgba(31, 32, 31, 0.18);
  width: min(78%, 340px);
}

/* ---- GALLERY full-bleed photo with overlay caption + meta strip ---- */
.gallery-entry { display: block; }
.gallery-entry .print-card.print-wide {
  margin-inline: -24px;
  width: calc(100% + 48px);
}
.gallery-entry .print-card.print-wide .photo-frame {
  position: relative;
  isolation: isolate;
}
.gallery-entry .print-card.print-wide img {
  aspect-ratio: 4 / 5;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  display: block;
}
.photo-watermark {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--ff-jp);
  font-size: 38px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.photo-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 64px;
  z-index: 2;
  display: grid;
  gap: 8px;
  color: #f7f6f0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}
.photo-overlay span {
  color: #d9b977;
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.photo-overlay strong {
  font-family: var(--ff-jp);
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.05;
}
.photo-meta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
  padding: 14px 0 0;
  list-style: none;
  border-top: 1px solid rgba(247, 246, 240, 0.45);
  color: rgba(247, 246, 240, 0.85);
  font-family: var(--ff-body);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.photo-meta li:nth-child(2) { text-align: center; }
.photo-meta li:nth-child(3) { text-align: right; }

.gallery-entry .card-caption {
  padding: 28px 12px 0;
}
.gallery-entry .card-caption strong {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 36px;
}

/* ---- ENTRY CTA — hairline-rule framed (top + bottom only) ---- */
.entry-cta--block,
.entry-cta--gallery {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  margin: 28px 0 0;
  padding: 22px 4px;
  border: 0;
  border-top: 1px solid rgba(164, 134, 72, 0.42);
  border-bottom: 1px solid rgba(164, 134, 72, 0.42);
  background: transparent;
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
}
.entry-cta--block b,
.entry-cta--gallery b {
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

/* Studio "about-entry" rebuild — kill old multi-line layout */
.about-entry { display: none; }

/* Contact button replaced by entry-cta--block; hide legacy if rendered */
.contact-button { display: none; }
.colophon {
  margin-top: 38px;
  color: rgba(31, 32, 31, 0.5);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-align: center;
}
.edition-note {
  margin-top: 22px;
  color: rgba(31, 32, 31, 0.5);
  font-family: var(--ff-display);
  font-size: 15px;
  font-style: italic;
  text-align: center;
}

/* Hide legacy nichi-purchase block (replaced by figcaption + entry-cta) */
.nichi-purchase { display: none; }

/* Modal overlays — keep dark for editorial feel inside, but soften shadow */
.modal { background: rgba(31, 32, 31, 0.6); }

/* =========================================================================
   HARD OVERRIDES — match target IMG_0240. Force white bg + correct hero
   layout (wordmark above, cards below). Last block; wins the cascade.
   ========================================================================= */

html, body { background: #fbfbf9 !important; color: var(--ink) !important; }
.nork-mobile,
.nork-mobile .site-shell { background: #fbfbf9 !important; }
.nork-mobile .site-shell::before { display: none !important; }

/* Disable reveal opacity on hero — was leaving wordmark invisible behind cards */
.nork-mobile .hero .reveal,
.nork-mobile .hero-card { opacity: 1 !important; transform: none !important; }

/* Force vertical column layout in source order */
.nork-mobile .hero {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  padding: 28px 22px 64px !important;
  height: auto !important;
  min-height: auto !important;
  background: #fbfbf9 !important;
}
.nork-mobile .hero-field { z-index: 0 !important; }
.nork-mobile .hero-eyebrow-kanji { order: 1 !important; }
.nork-mobile .hero-card { order: 2 !important; width: 100% !important; max-width: 360px !important; position: relative !important; z-index: 2 !important; }

/* Hide any decorative second nav button (brand-mark on left) */
.nork-mobile .brand-mark { display: none !important; }

/* Nav: center 静, push menu-button to right */
.nork-mobile .nav {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  padding: 14px 22px !important;
  background: #fbfbf9 !important;
}
.nork-mobile .nav-section {
  grid-column: 2 !important;
  justify-self: center !important;
  margin: 0 !important;
  color: var(--gold) !important;
  font-family: var(--ff-jp) !important;
  font-size: 16px !important;
}
.nork-mobile .menu-button {
  grid-column: 3 !important;
  justify-self: end !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  border: 1.5px solid var(--gold) !important;
  background: #fbfbf9 !important;
  display: grid !important;
  place-items: center !important;
}
.nork-mobile .menu-button span {
  display: block !important;
  width: 22px !important;
  height: 1.5px !important;
  margin: 3.5px 0 !important;
  background: var(--ink) !important;
}

/* Wordmark — stacked NORTH / OAK with hairline rule + STUDIOS */
.nork-mobile .studio-status {
  display: inline-flex !important;
  margin: 18px 0 26px !important;
  color: var(--ink) !important;
  font-family: var(--ff-body) !important;
  font-size: 11px !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase !important;
}
.nork-mobile .studio-status .status-light {
  display: inline-block !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: var(--vermilion, #c4302b) !important;
  margin-right: 12px !important;
}
.nork-mobile .wordmark-main {
  font-family: var(--ff-display) !important;
  font-size: clamp(72px, 19vw, 104px) !important;
  font-weight: 400 !important;
  line-height: 0.92 !important;
  letter-spacing: 0.04em !important;
  color: var(--ink) !important;
}
.nork-mobile .wordmark-main span { display: block !important; text-align: center !important; }
.nork-mobile .wordmark-sub {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  gap: 18px !important;
  align-items: center !important;
  width: min(320px, 78vw) !important;
  margin: 22px 0 0 !important;
  color: var(--ink) !important;
  font-size: 12px !important;
  letter-spacing: 0.42em !important;
}
.nork-mobile .wordmark-sub i {
  display: block !important;
  height: 1px !important;
  background: rgba(31,32,31,0.55) !important;
}
.nork-mobile .hero-jp {
  margin: 16px 0 0 !important;
  color: rgba(31,32,31,0.5) !important;
  font-family: var(--ff-jp) !important;
  font-size: 14px !important;
  letter-spacing: 0.3em !important;
  text-align: center !important;
}
.nork-mobile .hero-copy {
  margin: 32px auto 0 !important;
  max-width: 320px !important;
  color: rgba(31,32,31,0.78) !important;
  font-family: var(--ff-display) !important;
  font-size: 19px !important;
  font-style: italic !important;
  line-height: 1.55 !important;
  text-align: center !important;
}
.nork-mobile .hero-meta {
  margin: 24px 0 0 !important;
  color: var(--gold) !important;
  font-family: var(--ff-body) !important;
  font-size: 11px !important;
  letter-spacing: 0.36em !important;
  text-align: center !important;
}

/* Big hero kanji watermark — pale, behind everything */
.nork-mobile .hero-kanji {
  color: rgba(31,32,31,0.05) !important;
  font-size: clamp(280px, 80vw, 440px) !important;
  top: 50% !important;
}
.nork-mobile .hero-vertical {
  color: var(--gold) !important;
  opacity: 0.7 !important;
  top: 180px !important;
  font-size: 12px !important;
  letter-spacing: 0.34em !important;
}

/* =========================================================================
   GALLERY ENTRY — full-bleed photo with overlay caption + button below.
   Force single-column layout: photo (with overlay) on top, card-caption
   below, ENTER GALLERY framed at bottom.
   ========================================================================= */
.nork-mobile .gallery-entry {
  display: block !important;
  width: 100% !important;
  margin: 56px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  text-align: left !important;
}
.nork-mobile .gallery-entry .print-card,
.nork-mobile .gallery-entry .print-card.print-wide {
  display: flex !important;
  flex-direction: column !important;
  width: calc(100% + 48px) !important;
  margin: 0 -24px !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.nork-mobile .gallery-entry .photo-frame {
  position: relative !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  isolation: isolate !important;
  overflow: hidden !important;
}
.nork-mobile .gallery-entry .photo-frame img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
  object-position: 50% 45% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  filter: none !important;
  box-shadow: none !important;
}
.nork-mobile .gallery-entry .photo-watermark { display: none !important; }
.nork-mobile .gallery-entry .photo-frame::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important; right: 0 !important; bottom: 0 !important;
  height: 50% !important;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
.nork-mobile .gallery-entry .photo-overlay {
  position: absolute !important;
  left: 24px !important;
  right: 24px !important;
  bottom: 64px !important;
  z-index: 2 !important;
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  text-shadow: 0 1px 14px rgba(0,0,0,0.7) !important;
}
.nork-mobile .gallery-entry .photo-overlay span {
  color: #e6c179 !important;
  font-family: var(--ff-body) !important;
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  letter-spacing: 0.36em !important;
  text-transform: uppercase !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.85), 0 0 12px rgba(0,0,0,0.5) !important;
}
.nork-mobile .gallery-entry .photo-overlay strong {
  color: #ffffff !important;
  font-family: var(--ff-jp) !important;
  font-size: 26px !important;
  font-weight: 300 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.1 !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85) !important;
}
.nork-mobile .gallery-entry .photo-meta {
  position: absolute !important;
  left: 24px !important;
  right: 24px !important;
  bottom: 22px !important;
  z-index: 2 !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 14px 0 0 !important;
  list-style: none !important;
  border-top: 1px solid rgba(164, 134, 72, 0.55) !important;
  color: #f7f6f0 !important;
  font-family: var(--ff-body) !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7) !important;
}
.nork-mobile .gallery-entry .photo-meta li {
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
}
.nork-mobile .gallery-entry .photo-meta li:nth-child(2) { text-align: center !important; }
.nork-mobile .gallery-entry .photo-meta li:nth-child(3) { text-align: right !important; }

/* Caption block below photo — centered stack */
.nork-mobile .gallery-entry .card-caption {
  display: grid !important;
  justify-items: center !important;
  gap: 8px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 24px 24px 0 !important;
  text-align: center !important;
  background: transparent !important;
}
.nork-mobile .gallery-entry .card-caption span {
  color: var(--gold) !important;
  font-family: var(--ff-body) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.36em !important;
  text-transform: uppercase !important;
}
.nork-mobile .gallery-entry .card-caption strong {
  color: var(--ink) !important;
  font-family: var(--ff-display) !important;
  font-size: 36px !important;
  font-style: italic !important;
  font-weight: 400 !important;
  line-height: 1.05 !important;
}
.nork-mobile .gallery-entry .card-caption small {
  color: rgba(31,32,31,0.55) !important;
  font-family: var(--ff-display) !important;
  font-size: 16px !important;
  font-style: italic !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* ENTER GALLERY framed CTA — last child of gallery-entry */
.nork-mobile .entry-cta--block,
.nork-mobile .entry-cta--gallery {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  width: 100% !important;
  margin: 26px 0 0 !important;
  padding: 16px 2px !important;
  border: 0 !important;
  border-top: 1px solid rgba(58,52,46,0.26) !important;
  border-bottom: 1px solid rgba(58,52,46,0.26) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #2a241f !important;
  font-family: var(--ff-body) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transition: color 0.3s ease, border-color 0.3s ease !important;
}
.nork-mobile .entry-cta--block:active,
.nork-mobile .entry-cta--gallery:active {
  color: #b08433 !important;
  border-color: rgba(176,132,51,0.5) !important;
}
.nork-mobile .entry-cta--block b,
.nork-mobile .entry-cta--gallery b {
  display: grid !important;
  place-items: center !important;
  width: 26px !important;
  height: 26px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(58,52,46,0.35) !important;
  background: transparent !important;
  color: #2a241f !important;
  font-family: var(--ff-body) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  justify-self: end !important;
}

/* NAV — white backdrop so wordmark doesn't bleed through on scroll */
.nork-mobile .nav {
  background: linear-gradient(180deg, rgba(251,251,249,0.96) 0%, rgba(251,251,249,0.92) 70%, rgba(251,251,249,0) 100%) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}
.nork-mobile .nav-section {
  color: var(--gold) !important;
}
.nork-mobile .menu-button {
  background: rgba(251,251,249,0.85) !important;
  border-color: rgba(164,134,72,0.55) !important;
  color: var(--gold) !important;
  backdrop-filter: blur(8px) !important;
}

/* ALL SECTIONS WHITE — kill every cream/tonal background */
.nork-mobile,
.nork-mobile body,
.nork-mobile .site-shell,
.nork-mobile main,
.nork-mobile section,
.nork-mobile .chapter,
.nork-mobile .tonal-section,
.nork-mobile .chapter.nichi,
.nork-mobile .chapter.studio,
.nork-mobile .chapter.presets,
.nork-mobile .chapter.contact,
.nork-mobile .chapter.gallery,
.nork-mobile .hero {
  background: #fbfbf9 !important;
  background-image: none !important;
}
.nork-mobile .site-shell::before,
.nork-mobile .site-shell::after,
.nork-mobile .tonal-section::before,
.nork-mobile .tonal-section::after,
.nork-mobile .chapter::before,
.nork-mobile .chapter::after {
  background: transparent !important;
  background-image: none !important;
}
.nork-mobile .tonal-section h2,
.nork-mobile .tonal-section .chapter-head > p:last-child,
.nork-mobile .tonal-section p,
.nork-mobile .tonal-section h3,
.nork-mobile .tonal-section span,
.nork-mobile .tonal-section strong,
.nork-mobile .tonal-section small,
.nork-mobile .tonal-section li {
  color: var(--ink) !important;
}
.nork-mobile .tonal-section .chapter-eyebrow,
.nork-mobile .tonal-section [class*="eyebrow"] {
  color: var(--gold) !important;
}

/* Watermarks — hidden per request; only the big hero 静 remains */
.nork-mobile .chapter-watermark {
  display: none !important;
}

/* ============================================================
   Mobile editorial polish — added with the desktop-parity pass
   ============================================================ */

/* Aggressively tighten chapter padding — kills the big white gaps */
.nork-mobile .chapter { padding: 36px 22px 36px !important; }
.nork-mobile .chapter + .chapter { padding-top: 22px !important; }
.nork-mobile .chapter-head { gap: 8px !important; margin-bottom: 18px !important; }
.nork-mobile .edition-note { margin-top: 10px !important; margin-bottom: 0 !important; }
.nork-mobile .entry-cta--block,
.nork-mobile .entry-cta--gallery { margin-top: 48px !important; }

/* ============================================================
   Book-style folio divider between sections — Nº II —— 日々.
   Mirrors the desktop mb-ed-folio running-header language:
   italic serif numeral + hairline rule + serif kanji, all in
   gold. Replaces the faint gold seam; gives the scroll a
   chaptered, fine-press rhythm without competing with the seal.
   ============================================================ */
.nork-mobile .chapter + .chapter::before { display: none !important; }
.nork-mobile .chapter:has(> .nork-section-break) { padding-top: 10px !important; }
/* Folio already names the chapter — drop the redundant centered kicker */
.nork-mobile .chapter:has(> .nork-section-break) .chapter-kicker { display: none !important; }
.nork-mobile .nork-section-break {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  width: 100% !important;
  margin: 8px 0 34px !important;
}
.nork-mobile .nork-section-break .nsb-num {
  flex: 0 0 auto !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-style: italic !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: var(--gold) !important;
  letter-spacing: 0.05em !important;
  line-height: 1 !important;
}
.nork-mobile .nork-section-break .nsb-rule {
  flex: 1 1 auto !important;
  height: 1px !important;
  background: linear-gradient(
    90deg,
    rgba(164, 134, 72, 0.42),
    rgba(31, 32, 31, 0.12) 50%,
    rgba(164, 134, 72, 0.42)
  ) !important;
}
.nork-mobile .nork-section-break .nsb-jp {
  flex: 0 0 auto !important;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold) !important;
  -webkit-text-stroke: 0 !important;
  letter-spacing: 0.14em !important;
  line-height: 1 !important;
}

/* Hero bottom gap — last cards already finish the cover */
.nork-mobile .hero { padding-bottom: 28px !important; }

/* Trim wasted vertical space below the journal/preset object card */
.nork-mobile .journal-object,
.nork-mobile .preset-entry { margin-bottom: 14px !important; }

/* Force seal kanji to true cream-white — override global text-stroke rule
   (index.css ~L12976 sets -webkit-text-stroke + color:transparent on JP) */
.nork-mobile .seal,
.nork-mobile .chapter-head .seal {
  color: #fff3df !important;
  -webkit-text-fill-color: #fff3df !important;
  -webkit-text-stroke: 0 !important;
  font-weight: 700 !important;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif !important;
  text-shadow: none !important;
}

/* Fine Art gallery-entry: dark (not gold) eyebrow + tighten the gap to CTA */
.nork-mobile .gallery-entry .card-caption {
  padding: 64px 12px 0 !important;
  gap: 10px !important;
}
.nork-mobile .gallery-entry .print-card,
.nork-mobile .gallery-entry .print-card.print-wide {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  gap: 0 !important;
}
.nork-mobile .gallery-entry { padding-bottom: 0 !important; margin-bottom: 0 !important; }
.nork-mobile .gallery-entry .entry-cta--gallery {
  display: flex !important;
  grid-template-columns: none !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 16px !important;
  margin: 48px 0 0 !important;
  padding: 16px 2px !important;
  min-height: 0 !important;
}
.nork-mobile .gallery-entry .entry-cta--gallery b {
  justify-self: auto !important;
}
.nork-mobile .gallery-entry .card-caption span { color: #1a1411 !important; }
.nork-mobile .gallery-entry .card-caption strong { color: #1a1411 !important; }
.nork-mobile .gallery-entry .card-caption small { color: #4a4039 !important; }

/* Colophon: dark/ink like the rest (user request — no gold accents) */
.nork-mobile .mobile-colophon {
  border-top-color: rgba(31, 32, 31, 0.32) !important;
  border-bottom: none !important;
  background: transparent !important;
}
.nork-mobile .mobile-colophon .mc-eyebrow { color: #1a1411 !important; }
.nork-mobile .mobile-colophon .mc-jp { color: #1a1411 !important; }
.nork-mobile .mobile-colophon .mc-bar {
  background: linear-gradient(90deg, rgba(31, 32, 31, 0.45), rgba(31, 32, 31, 0)) !important;
}
.nork-mobile .mobile-colophon dt { color: #1a1411 !important; }
.nork-mobile .mobile-colophon .mc-rows > div {
  border-bottom-color: rgba(31, 32, 31, 0.12) !important;
}
.nork-mobile .mobile-colophon dd span { color: #1a1411 !important; }

/* Shrink the Lightroom preset box — was too dominant on mobile */
.nork-mobile .preset-object img {
  width: min(58vw, 230px) !important;
  filter: drop-shadow(0 18px 28px rgba(31, 32, 31, 0.22)) !important;
}
.nork-mobile .preset-object .card-caption { margin-top: 14px !important; }

/* Presets modal — readability on the light panel */
.nork-mobile .modal-panel { background: #fbfbf9 !important; color: #1a1411 !important; }
.nork-mobile #presets-modal .modal-head h3,
.nork-mobile #presets-modal .modal-head span { color: #1a1411 !important; }
.nork-mobile .preset-summary img {
  width: min(60vw, 240px) !important;
  filter: drop-shadow(0 18px 28px rgba(31, 32, 31, 0.22)) !important;
}
.nork-mobile .preset-summary p {
  color: #2a221d !important;
  font-style: italic !important;
}
.nork-mobile .before-after { background: #efece4 !important; }
.nork-mobile .before-after-meta span {
  color: #b8924f !important;
  font-family: "Inter", sans-serif !important;
  font-size: 10.5px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
}
.nork-mobile .before-after-meta strong {
  color: #1a1411 !important;
  font-family: "Cormorant Garamond", serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: 20px !important;
}
.nork-mobile .before-after-meta p {
  color: #4a4039 !important;
  font-family: "Cormorant Garamond", serif !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
}
.nork-mobile .modal-close { color: #1a1411 !important; }

/* -- Fine Art · quiet label above the 6-print list --------- */
.nork-mobile .mobile-print-index-label {
  margin: 40px auto 0;
  padding: 0 18px;
  max-width: 480px;
  text-align: center;
  color: #6b6058;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.nork-mobile .mobile-print-index-label + .mobile-print-index {
  margin-top: 14px !important;
}

/* -- Fine Art · 6-print index strip ------------------------- */
.nork-mobile .mobile-print-index {
  list-style: none;
  margin: 34px auto 0;
  padding: 18px 18px 6px;
  max-width: 480px;
  border-top: 1px solid rgba(31, 32, 31, 0.18);
  border-bottom: 1px solid rgba(31, 32, 31, 0.18);
  display: grid;
  gap: 0;
}
.nork-mobile .mobile-print-index li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(31, 32, 31, 0.08);
}
.nork-mobile .mobile-print-index li:last-child { border-bottom: 0; }
.nork-mobile .mobile-print-index .mpi-no {
  font-family: var(--ff-jp, "Noto Serif JP", serif);
  font-size: 16px;
  color: #c4302b;
  line-height: 1;
}
.nork-mobile .mobile-print-index strong {
  font-family: var(--ff-display, "Cormorant Garamond", serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: #1a1411;
  line-height: 1.25;
}
.nork-mobile .mobile-print-index em {
  font-style: normal;
  font-family: var(--ff-jp, "Noto Serif JP", serif);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #6b6058;
  white-space: nowrap;
}

/* -- Nichi · chapter teaser TOC ----------------------------- */
.nork-mobile .mobile-nichi-toc {
  list-style: none;
  margin: 28px auto 8px;
  padding: 0;
  max-width: 460px;
  display: grid;
  gap: 0;
}
.nork-mobile .mobile-nichi-toc li {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: baseline;
  gap: 14px;
  padding: 14px 4px;
  border-top: 1px solid rgba(31, 32, 31, 0.12);
}
.nork-mobile .mobile-nichi-toc li:last-of-type { border-bottom: 1px solid rgba(31, 32, 31, 0.12); }
.nork-mobile .mobile-nichi-toc li > span:first-child {
  font-family: var(--ff-sans, "Inter", sans-serif);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b8924f;
}
.nork-mobile .mobile-nichi-toc strong {
  font-family: var(--ff-display, "Cormorant Garamond", serif);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  color: #1a1411;
  line-height: 1.25;
}
.nork-mobile .mobile-nichi-toc em {
  font-style: normal;
  font-family: var(--ff-jp, "Noto Serif JP", serif);
  font-size: 12px;
  color: #6b6058;
  white-space: nowrap;
}
.nork-mobile .mobile-nichi-toc li.mpi-foot {
  display: block;
  border-top: 0;
  padding-top: 14px;
  text-align: center;
  font-family: var(--ff-display, "Cormorant Garamond", serif);
  font-style: italic;
  font-size: 14px;
  color: #6b6058;
}
.nork-mobile .mobile-nichi-toc li.mpi-foot span { color: #c4302b; margin-right: 6px; }

/* -- Presets · stat strip ---------------------------------- */
.nork-mobile .mobile-preset-specs {
  margin: 28px auto 10px;
  padding: 20px 8px;
  max-width: 420px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(31, 32, 31, 0.18);
  border-bottom: 1px solid rgba(31, 32, 31, 0.18);
}
.nork-mobile .mobile-preset-specs > div {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 10px 6px;
  border-right: 1px solid rgba(31, 32, 31, 0.1);
}
.nork-mobile .mobile-preset-specs > div:last-child { border-right: 0; }
.nork-mobile .mobile-preset-note {
  margin: 0 auto 18px;
  max-width: 420px;
  text-align: center;
  font-family: var(--ff-sans, "Inter", sans-serif);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b6058;
  line-height: 1.7;
}
.nork-mobile .mobile-preset-specs dt {
  font-family: var(--ff-display, "Cormorant Garamond", serif);
  font-style: italic;
  font-weight: 300;
  font-size: 36px;
  line-height: 1;
  color: #1a1411;
}
.nork-mobile .mobile-preset-specs dd {
  margin: 0;
  font-family: var(--ff-sans, "Inter", sans-serif);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b6058;
  text-align: center;
  line-height: 1.4;
}

/* -- Studio · compact colophon ----------------------------- */
.nork-mobile .mobile-colophon {
  margin: 28px auto 18px;
  padding: 24px 22px 22px;
  max-width: 480px;
  background: rgba(247, 246, 240, 0.55);
  border-top: 1px solid rgba(184, 146, 79, 0.45);
  border-bottom: 1px solid rgba(184, 146, 79, 0.45);
}
.nork-mobile .mobile-colophon .mc-eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-sans, "Inter", sans-serif);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #6b6058;
}
.nork-mobile .mobile-colophon .mc-jp {
  font-family: var(--ff-jp, "Noto Serif JP", serif);
  font-size: 13px;
  letter-spacing: 0;
  color: #c4302b;
}
.nork-mobile .mobile-colophon .mc-bar {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 146, 79, 0.6), rgba(184, 146, 79, 0));
}
.nork-mobile .mobile-colophon .mc-rows { margin: 0; display: grid; gap: 10px; }
.nork-mobile .mobile-colophon .mc-rows > div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(31, 32, 31, 0.07);
  align-items: baseline;
}

/* Fine Art gallery (mobile): the gallery-entry card reserved ~240px of empty
   height below the photo, opening a large gap before "The six works · 六".
   Reset the card boxes so they size to the photo (height comes from the img's
   4/3 aspect-ratio), closing the gap. */
.nork-mobile .gallery-entry,
.nork-mobile .gallery-entry .print-card,
.nork-mobile .gallery-entry .photo-frame {
  min-height: 0 !important;
  height: auto !important;
}

/* ============================================================
   Section entries — every mobile-home section is now rendered as
   ONE clean "Contents Index" entry: big folio number + gold kanji,
   italic display title, one-line description, gold kicker link, and
   a single framed plate on the right. Mirrors the hero .hi-entry
   language at a larger, full-width scale. Palette + fonts unchanged
   (gold, ink, Cormorant / Jost / Noto Serif JP).
   ============================================================ */
.nork-mobile .ed-section {
  padding: 0 22px !important;
  background: var(--paper, #f6f1e7) !important;
}
.nork-mobile .ed-section + .ed-section { padding-top: 0 !important; }

/* Contents · 目次 header — single index lead-in directly above the
   section list (the hero is now a clean full-screen cover). */
.nork-mobile .ed-toc-head {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  padding: 46px 24px 12px !important;
  margin: 0 !important;
  background: var(--paper, #f6f1e7) !important;
  border-bottom: 1px solid rgba(31, 32, 31, 0.14) !important;
}
.nork-mobile .ed-toc-head .hi-contents {
  font-family: var(--ff-body) !important;
  font-weight: 400 !important;
  font-size: 11px !important;
  letter-spacing: 0.4em !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
}
.nork-mobile .ed-toc-head .hi-mokuji {
  font-family: var(--ff-jp) !important;
  font-size: 12px !important;
  letter-spacing: 0.3em !important;
  color: var(--gold) !important;
}
/* first entry: header already supplies the rule above it */
.nork-mobile .ed-section#fine-art .hi-entry {
  border-top: 0 !important;
  padding-top: 24px !important;
}
.nork-mobile .ed-section::before,
.nork-mobile .ed-section::after { content: none !important; display: none !important; }

.nork-mobile .ed-section .hi-entry {
  display: flex !important;
  align-items: stretch !important;
  gap: 22px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 32px 2px !important;
  aspect-ratio: auto !important;
  min-height: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-top: 1px solid rgba(31, 32, 31, 0.14) !important;
  box-shadow: none !important;
  overflow: visible !important;
  isolation: auto !important;
  text-align: left !important;
  text-decoration: none !important;
  color: var(--ink) !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  cursor: pointer !important;
}
.nork-mobile .ed-section:last-of-type .hi-entry {
  border-bottom: 1px solid rgba(31, 32, 31, 0.14) !important;
}
.nork-mobile .ed-section .hi-entry::after { content: none !important; display: none !important; }

.nork-mobile .ed-section .hi-text {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  margin: 0 !important;
}
.nork-mobile .ed-section .hi-folio {
  display: flex !important;
  align-items: baseline !important;
  gap: 12px !important;
  margin: 0 0 10px !important;
}
.nork-mobile .ed-section .hi-num {
  font-family: var(--ff-display) !important;
  font-weight: 400 !important;
  font-size: 34px !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
  color: var(--ink) !important;
}
.nork-mobile .ed-section .hi-jp {
  font-family: var(--ff-jp) !important;
  font-size: 14px !important;
  letter-spacing: 0.12em !important;
  color: var(--gold) !important;
}
.nork-mobile .ed-section .hi-title {
  margin: 0 0 8px !important;
  font-family: var(--ff-display) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: 29px !important;
  line-height: 1.08 !important;
  color: var(--ink) !important;
}
.nork-mobile .ed-section .hi-desc {
  margin: 0 0 16px !important;
  font-family: var(--ff-body) !important;
  font-weight: 300 !important;
  font-size: 12.5px !important;
  line-height: 1.55 !important;
  color: var(--muted) !important;
}
.nork-mobile .ed-section .hi-kicker {
  margin-top: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  font-family: var(--ff-body) !important;
  font-weight: 400 !important;
  font-size: 10px !important;
  letter-spacing: 0.26em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
}
.nork-mobile .ed-section .hi-kicker b { font-size: 14px !important; letter-spacing: 0 !important; }

/* Thumbnail — single framed plate, app ink frame */
.nork-mobile .ed-section .hi-thumb {
  flex: 0 0 104px !important;
  width: 104px !important;
  height: 138px !important;
  align-self: center !important;
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  background: var(--ink) !important;
  box-shadow: 0 1px 0 rgba(31, 32, 31, 0.12) !important;
}
.nork-mobile .ed-section .hi-thumb img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 50% 50% !important;
  filter: none !important;
  z-index: 0 !important;
}
.nork-mobile .ed-section#fine-art .hi-thumb img { object-position: 60% 40% !important; }
.nork-mobile .ed-section#nichi .hi-thumb img { object-position: 50% 25% !important; }
.nork-mobile .ed-section#presets .hi-thumb img {
  object-fit: contain !important;
  padding: 10px !important;
  box-sizing: border-box !important;
}
.nork-mobile .ed-section#studio .hi-thumb img { object-position: 50% 50% !important; }
.nork-mobile .ed-section#contact .hi-thumb img { object-position: 50% 45% !important; }

/* Closing colophon under the last entry */
.nork-mobile .ed-section#contact { padding-bottom: 34px !important; }
.nork-mobile .ed-section#contact .colophon {
  margin: 24px 0 0 !important;
  text-align: center !important;
}
