* {
	box-sizing: border-box;
}

/* Mock refinement: 2026-06-24 */
:root {
	--color-black: #050505;
	--color-dark: #070707;
	--color-panel: #100f0e;
	--color-gold: #d9a900;
	--color-gold-light: #f0c36a;
	--color-text: rgba(255, 255, 255, 0.9);
	--font-mincho: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
}

body {
	background:
		linear-gradient(rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.94)),
		url("../../common/bg-gold-wave.png") center top / 2200px auto repeat-y,
		#050505;
	font-family: var(--font-mincho);
}

.site-header {
	position: sticky;
	background: rgba(4, 4, 4, 0.98);
}

.site-header__inner {
	width: min(1720px, calc(100% - 64px));
	min-height: 104px;
	gap: 42px;
}

.site-header__inner--home {
	justify-content: center;
	min-height: 66px;
}

.site-brand__logo {
	width: min(420px, 31vw);
	filter: none;
}

.site-nav--header {
	margin-left: auto;
}

.site-header__inner--home .site-nav--header {
	margin-left: 0;
}

.site-nav__list {
	gap: 0;
}

.site-nav__list li {
	position: relative;
}

.site-nav__list li + li::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 2px;
	height: 30px;
	background: var(--color-gold);
	content: "";
	transform: translateY(-50%);
}

.site-nav__list a {
	min-height: 60px;
	padding: 0 26px;
	color: var(--color-gold);
	font-size: clamp(18px, 1.65vw, 32px);
	font-weight: 600;
	line-height: 1;
	text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

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

.fixed-actions {
	top: 126px;
	right: 46px;
	z-index: 80;
	width: 104px;
	gap: 18px;
}

.fixed-actions__item {
	width: 104px;
	height: 104px;
	background: #e8b56c;
	border-radius: 4px;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
	overflow: hidden;
}

.home .fixed-actions {
	top: 102px;
}

.home-hero {
	min-height: 410px;
	place-items: center;
	background:
		linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.28)),
		var(--color-black);
}

.home-hero::before {
	background: url("../../common/bg-gold-wave.png") center 48% / 1860px auto no-repeat;
	opacity: 0.98;
}

.home-hero::after {
	height: 28%;
	background: linear-gradient(rgba(5, 5, 5, 0), #0a0908);
}

.home-hero__inner {
	width: min(1150px, calc(100% - 130px));
	transform: translateY(4px);
}

.home-hero__logo {
	width: min(1080px, 100%);
	filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.7));
}

.home-about {
	background:
		linear-gradient(rgba(7, 7, 7, 0.96), rgba(7, 7, 7, 0.96)),
		#070707;
}

.home-about::before {
	display: none;
}

.home-about__inner {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
	width: min(1100px, calc(100% - 120px));
	padding: 34px 0 34px;
}

.home-section-heading {
	display: grid;
	grid-template-columns: 88px 1fr;
	grid-column: 1 / -1;
	align-items: center;
}

.home-section-heading__icon {
	display: grid;
	width: 64px;
	height: 64px;
	place-items: center;
	color: var(--color-gold);
	border: 2px solid var(--color-gold);
	border-radius: 50%;
	font-size: 34px;
	line-height: 1;
}

.home-section-heading__title {
	position: relative;
	margin: 0;
	color: #ffffff;
	font-size: clamp(42px, 4.5vw, 58px);
	font-weight: 500;
	line-height: 1;
}

.home-section-heading__line {
	grid-column: 2;
	width: 235px;
	margin-top: 12px;
}

.home-about__body {
	grid-column: 2;
	padding: 0 0 0 24px;
	border-top: 0;
	border-left: 2px solid var(--color-gold);
}

.home-about__body p {
	margin: 0 0 1.25em;
	font-size: clamp(20px, 2vw, 28px);
	line-height: 1.62;
}

.home-about__body p:last-child {
	margin-bottom: 0;
}

.home-links {
	padding: 18px 0 36px;
	background: #070707;
}

.home-links__inner {
	width: min(1100px, calc(100% - 120px));
	gap: 28px;
}

.home-link-card {
	min-height: 430px;
	border: 4px solid rgba(218, 191, 143, 0.72);
	background: #0b0a09;
}

.home-link-card__image {
	position: static;
	width: 100%;
	height: 320px;
	object-fit: cover;
}

.home-link-card__overlay {
	display: none;
}

.home-link-card__content {
	position: relative;
	right: auto;
	bottom: auto;
	left: auto;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 6px 16px;
	align-items: center;
	padding: 18px 28px 22px;
	background: rgba(5, 5, 5, 0.96);
}

.home-link-card__title {
	grid-column: 1;
	font-size: clamp(34px, 4.2vw, 48px);
	font-weight: 500;
}

.home-link-card__more {
	grid-column: 1;
	color: var(--color-gold);
	font-size: clamp(18px, 2vw, 25px);
	font-weight: 500;
}

.home-link-card__arrow {
	grid-column: 2;
	grid-row: 1 / span 2;
	color: var(--color-gold);
	font-size: 46px;
	line-height: 1;
}

.page-title {
	min-height: 360px;
	background:
		linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62)),
		url("../../common/bg-gold-wave.png") center 44% / cover no-repeat,
		var(--color-black);
}

.page-title__inner {
	padding: 78px 0 72px;
}

.page-title__heading {
	font-size: clamp(64px, 6vw, 92px);
	font-weight: 500;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.page-title__line {
	width: min(340px, 42vw);
	height: 2px;
	margin-top: 16px;
}

.artist-profile,
.works-archive,
.partner-page,
.contact-page {
	background: #050505;
}

.artist-profile__inner {
	width: min(1180px, calc(100% - 160px));
	padding: 0 0 56px;
}

.artist-profile__figure {
	margin: -96px auto 22px;
}

.artist-profile__image {
	width: min(560px, 100%);
	box-shadow: none;
}

.artist-profile__content {
	width: min(1180px, 100%);
}

.artist-profile__name {
	font-size: clamp(34px, 3.2vw, 48px);
	font-weight: 500;
	text-transform: none;
}

.artist-profile__role {
	margin-top: 14px;
	color: #ffffff;
	font-size: clamp(18px, 2vw, 28px);
	font-weight: 500;
	text-transform: none;
}

.artist-profile__text {
	margin-top: 34px;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(18px, 1.8vw, 26px);
	line-height: 1.72;
}

.artist-profile__text p {
	margin-bottom: 1.5em;
}

.works-archive__inner {
	width: min(1680px, calc(100% - 140px));
	padding: 42px 0 52px;
}

.works-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 42px;
}

.works-card__category {
	margin-bottom: 34px;
	padding: 14px 12px;
	color: #ffffff;
	font-size: clamp(24px, 2.2vw, 38px);
	font-weight: 500;
	line-height: 1;
	background: rgba(65, 59, 49, 0.78);
	border: 2px solid var(--color-gold);
}

.works-card__image-wrap {
	border: 0;
	box-shadow: none;
}

.works-card__line {
	display: none;
}

.partner-page__inner {
	width: min(1260px, calc(100% - 180px));
	padding: 42px 0 68px;
}

.partner-list {
	gap: 48px;
}

.partner-item {
	grid-template-columns: 230px minmax(0, 1fr);
	gap: 92px;
	padding: 0;
	border-bottom: 0;
}

.partner-item__media {
	min-height: 190px;
	padding: 0;
	background: #ffffff;
	border: 0;
}

.partner-item__image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.partner-item__name {
	font-size: clamp(34px, 3.4vw, 48px);
	font-weight: 500;
	text-transform: none;
}

.partner-item__description {
	margin-top: 12px;
	font-size: clamp(20px, 2vw, 30px);
	line-height: 1.45;
}

.contact-page__inner {
	width: min(840px, calc(100% - 80px));
	padding: 54px 0 96px;
}

.contact-page__lead {
	margin-bottom: 42px;
	text-align: left;
}

.contact-page__lead p,
.privacy-guideline p {
	margin: 0 0 0.8em;
	font-size: 16px;
	line-height: 1.7;
}

.contact-form-heading {
	margin: 0 auto 28px;
	text-align: center;
}

.contact-form-heading h2 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(34px, 4vw, 48px);
	font-weight: 600;
	line-height: 1;
}

.contact-form-heading span {
	display: block;
	width: 260px;
	height: 2px;
	margin: 14px auto 0;
	background: var(--color-gold);
}

.contact-form-note {
	margin: 0 0 20px;
	font-size: 15px;
}

.contact-form {
	display: grid;
	gap: 0;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.contact-form__row {
	position: relative;
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	align-items: stretch;
}

.contact-form__row label {
	display: flex;
	align-items: center;
	min-height: 66px;
	padding: 0 14px;
	color: #111111;
	font-size: 18px;
	font-weight: 600;
	background: #efe190;
	border-bottom: 2px solid #050505;
}

.contact-form__row label span {
	color: #ff5a2f;
}

.contact-form__row label::after {
	position: absolute;
	top: 50%;
	left: 280px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #efe190;
	content: "";
	transform: translateY(-50%);
}

.contact-form__row input,
.contact-form__row textarea {
	width: calc(100% - 20px);
	min-height: 44px;
	margin: 11px 0 11px 20px;
	padding: 10px 14px;
	color: #ffffff;
	background: #050505;
	border: 2px solid #d6c562;
	border-radius: 6px;
}

.contact-form__row--short input {
	width: min(150px, calc(100% - 20px));
}

.contact-form__row--textarea label {
	min-height: 160px;
}

.contact-form__row textarea {
	min-height: 132px;
	resize: vertical;
}

.contact-form__submit {
	width: min(480px, 100%);
	margin: 42px auto 0;
	padding: 26px 26px 30px;
	text-align: center;
	background: rgba(101, 84, 48, 0.86);
	border: 2px solid #d6c562;
	border-radius: 8px;
}

.contact-form__submit label {
	display: block;
	margin-bottom: 18px;
	color: #ffffff;
	font-size: 15px;
}

.contact-form__submit button {
	min-width: 184px;
	min-height: 46px;
	color: #111111;
	font: inherit;
	background: #f3b636;
	border: 0;
	border-radius: 3px;
	cursor: pointer;
}

.privacy-guideline {
	margin-top: 68px;
}

.privacy-guideline h2 {
	margin: 0 0 24px;
	padding: 5px 12px;
	color: #111111;
	font-size: 18px;
	background: #efe190;
}

.site-footer {
	background: #050505;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(300px, 520px) 2px minmax(420px, 1fr);
	gap: 110px;
	align-items: center;
	width: min(1200px, calc(100% - 160px));
	padding: 54px 0 10px;
	text-align: left;
}

.site-footer__company {
	padding: 28px 44px;
	background: rgba(18, 17, 15, 0.8);
}

.site-footer__company p {
	margin: 0 0 12px;
	color: #ffffff;
	font-size: clamp(22px, 2.2vw, 34px);
	line-height: 1.25;
}

.site-footer__company p:last-child {
	margin-bottom: 0;
}

.site-footer__divider {
	display: block;
	width: 2px;
	height: 112px;
	background: var(--color-gold);
}

.site-footer .site-nav__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(150px, 1fr));
	grid-template-rows: repeat(3, auto);
	grid-auto-flow: column;
	gap: 18px 80px;
	justify-content: start;
}

.site-footer .site-nav__list li::before {
	display: none;
}

.site-footer .site-nav__list a {
	min-height: 0;
	padding: 0;
	color: #ffffff;
	font-size: clamp(24px, 2.4vw, 34px);
	font-weight: 500;
	text-transform: uppercase;
}

.site-footer .site-nav__list a::before {
	color: var(--color-gold);
	content: "›";
	margin-right: 12px;
}

.site-footer__copy {
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(18px, 2vw, 26px);
	text-align: center;
}

@media (max-width: 900px) {
	.site-header__inner,
	.site-header__inner--home {
		min-height: 86px;
	}

	.site-brand__logo {
		width: 260px;
	}

	.site-nav--header {
		margin-left: 0;
	}

	.site-nav--header .site-nav__list li + li::before {
		display: none;
	}

	.fixed-actions {
		top: 112px;
		right: 18px;
		width: 76px;
	}

	.home .fixed-actions {
		top: 96px;
	}

	.home-hero {
		min-height: 360px;
	}

	.home-about__inner,
	.home-links__inner,
	.artist-profile__inner,
	.works-archive__inner,
	.partner-page__inner {
		width: min(1120px, calc(100% - 48px));
	}

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

	.partner-item {
		grid-template-columns: 190px minmax(0, 1fr);
		gap: 36px;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 28px;
		width: min(760px, calc(100% - 48px));
	}

	.site-footer__divider {
		width: 100%;
		height: 2px;
	}
}

@media (max-width: 720px) {
	.site-header__inner {
		width: min(1120px, calc(100% - 32px));
	}

	.site-brand__logo {
		width: 210px;
	}

	.fixed-actions {
		top: auto;
		right: 12px;
		bottom: 12px;
	}

	.home-hero {
		min-height: 300px;
	}

	.home-hero__inner {
		width: min(100%, calc(100% - 36px));
	}

	.home-about__inner {
		grid-template-columns: 1fr;
		padding: 32px 0;
	}

	.home-section-heading {
		grid-template-columns: 64px 1fr;
	}

	.home-about__body {
		grid-column: 1;
		padding-left: 18px;
	}

	.home-links__inner {
		grid-template-columns: 1fr;
	}

	.works-grid {
		grid-template-columns: 1fr;
		width: min(320px, 100%);
	}

	.partner-item {
		grid-template-columns: 1fr;
	}

	.partner-item__media {
		width: 220px;
	}

	.contact-page__inner {
		width: min(840px, calc(100% - 32px));
	}

	.contact-form__row {
		grid-template-columns: 1fr;
	}

	.contact-form__row label::after {
		display: none;
	}

	.contact-form__row input,
	.contact-form__row textarea {
		width: 100%;
		margin: 10px 0 18px;
	}

	.site-footer .site-nav__list {
		grid-template-columns: 1fr;
	}
}

/* Typography and ARTISTS image fixes: 2026-06-24 */
*,
button,
input,
textarea,
select {
	font-family: var(--font-mincho);
}

input::placeholder,
textarea::placeholder {
	font-family: var(--font-mincho);
}

.artist-profile__figure {
	margin: 0 auto 22px;
	overflow: visible;
}

.artist-profile__image {
	display: block;
	width: min(600px, 100%);
	height: auto;
	object-fit: contain;
}

/* Global font size down adjustment: 2026-06-24 */
.site-nav__list a {
	font-size: clamp(16px, 1.45vw, 28px);
}

.page-title__heading {
	font-size: clamp(56px, 5.4vw, 82px);
}

.home-section-heading__title {
	font-size: clamp(36px, 4vw, 52px);
}

.home-about__body p {
	font-size: clamp(18px, 1.75vw, 25px);
}

.home-link-card__title {
	font-size: clamp(30px, 3.7vw, 42px);
}

.home-link-card__more {
	font-size: clamp(16px, 1.7vw, 22px);
}

.home-link-card__arrow {
	font-size: 40px;
}

.artist-profile__name,
.partner-item__name {
	font-size: clamp(30px, 3vw, 42px);
}

.artist-profile__role {
	font-size: clamp(16px, 1.75vw, 24px);
}

.artist-profile__text {
	font-size: clamp(16px, 1.55vw, 23px);
}

.works-card__category {
	font-size: clamp(21px, 1.95vw, 34px);
}

.partner-item__description {
	font-size: clamp(18px, 1.75vw, 26px);
}

.site-footer__company p,
.site-footer .site-nav__list a {
	font-size: clamp(20px, 2vw, 30px);
}

.site-footer__copy {
	font-size: clamp(16px, 1.7vw, 23px);
}

/* Final mock recheck overrides: 2026-06-24 */
.site-header__inner:not(.site-header__inner--home) {
	min-height: clamp(76px, 6.6vw, 123px);
}

.site-brand__logo {
	width: clamp(300px, 27vw, 500px);
	max-height: clamp(70px, 6vw, 112px);
	object-fit: contain;
}

.site-nav__list a {
	min-height: clamp(52px, 3.7vw, 68px);
	padding-right: clamp(10px, 1.15vw, 26px);
	padding-left: clamp(10px, 1.15vw, 26px);
	font-size: clamp(17px, 1.5vw, 30px);
}

.fixed-actions {
	top: clamp(98px, 8.5vw, 158px);
	right: clamp(18px, 3vw, 46px);
	width: clamp(78px, 6.7vw, 104px);
}

.home .fixed-actions {
	top: 102px;
}

.admin-bar .fixed-actions {
	top: calc(clamp(98px, 8.5vw, 158px) + 32px);
}

.admin-bar.home .fixed-actions {
	top: 134px;
}

.fixed-actions__item {
	width: clamp(78px, 6.7vw, 104px);
	height: clamp(78px, 6.7vw, 104px);
}

.page-title {
	min-height: clamp(218px, 19.4vw, 360px);
}

.page-title__heading {
	font-size: clamp(60px, 5vw, 92px);
}

.home-about__inner {
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 20px;
	width: min(1100px, calc(100% - 96px));
}

.home-section-heading {
	grid-template-columns: 110px 1fr;
}

.home-about__body {
	grid-column: 1 / -1;
	margin-left: 80px;
	padding-left: 20px;
}

.artist-profile__inner {
	width: min(1280px, calc(100% - clamp(120px, 20vw, 320px)));
}

.artist-profile__figure {
	margin: -24px auto 22px;
	overflow: visible;
}

.artist-profile__image {
	display: block;
	width: min(545px, 100%);
	height: auto;
	object-fit: contain;
}

.artist-profile__content,
.artist-profile__name,
.artist-profile__role,
.artist-profile__text {
	width: 100%;
}

.home-about__body,
.artist-profile__role,
.artist-profile__text,
.partner-item__description,
.contact-page__lead,
.privacy-guideline {
	font-weight: 400;
}

.partner-page__inner {
	width: min(1290px, calc(100% - 216px));
	padding-top: 58px;
}

.partner-item {
	grid-template-columns: 190px minmax(0, 1fr);
	gap: 120px;
}

.partner-item__media {
	width: 190px;
	min-height: 190px;
}

.contact-page__inner {
	padding-top: 54px;
}

@media (max-width: 900px) {
	.site-header__inner:not(.site-header__inner--home) {
		min-height: 86px;
	}

	.page-title {
		min-height: 280px;
	}

	.home-about__body {
		margin-left: 0;
	}

	.artist-profile__inner,
	.partner-page__inner {
		width: min(1120px, calc(100% - 48px));
	}

	.partner-item {
		grid-template-columns: 190px minmax(0, 1fr);
		gap: 36px;
	}
}

@media (max-width: 720px) {
	.home-section-heading {
		grid-template-columns: 64px 1fr;
	}

	.home-about__body {
		grid-column: 1;
		margin-left: 0;
		padding-left: 18px;
	}

	.artist-profile__figure {
		margin-top: 0;
	}
}

/* WordPress live safety fixes at EOF: 2026-06-25 */
.artist-profile__figure {
	height: auto !important;
	max-height: none !important;
	overflow: visible !important;
}

.artist-profile__image {
	width: min(545px, 100%) !important;
	max-width: 100% !important;
	height: auto !important;
	max-height: none !important;
	aspect-ratio: auto !important;
	object-fit: contain !important;
}

.contact-page__inner,
.contact-form,
.contact-form__row,
.contact-form__submit,
.privacy-guideline {
	box-sizing: border-box;
}

.contact-form__row label,
.contact-form__row input,
.contact-form__row textarea {
	box-sizing: border-box;
}

.works-archive__content,
.artist-profile__page-content,
.contact-page__content,
.partner-page__content {
	display: none;
}

/* WordPress live safety fixes at EOF: 2026-06-25 */
.artist-profile__figure {
	height: auto !important;
	max-height: none !important;
	overflow: visible !important;
}

.artist-profile__image {
	width: min(545px, 100%) !important;
	max-width: 100% !important;
	height: auto !important;
	max-height: none !important;
	aspect-ratio: auto !important;
	object-fit: contain !important;
}

.contact-page__inner,
.contact-form,
.contact-form__row,
.contact-form__submit,
.privacy-guideline {
	box-sizing: border-box;
}

.contact-form__row label,
.contact-form__row input,
.contact-form__row textarea {
	box-sizing: border-box;
}

.works-archive__content,
.artist-profile__page-content,
.contact-page__content,
.partner-page__content {
	display: none;
}

/* WordPress live safety fixes: 2026-06-25 */
.artist-profile__figure {
	height: auto !important;
	max-height: none !important;
	overflow: visible !important;
}

.artist-profile__image {
	width: min(545px, 100%) !important;
	max-width: 100% !important;
	height: auto !important;
	max-height: none !important;
	aspect-ratio: auto !important;
	object-fit: contain !important;
}

.contact-page__inner,
.contact-form,
.contact-form__row,
.contact-form__submit,
.privacy-guideline {
	box-sizing: border-box;
}

.contact-form__row label,
.contact-form__row input,
.contact-form__row textarea {
	box-sizing: border-box;
}

.works-archive__content,
.artist-profile__page-content,
.contact-page__content,
.partner-page__content {
	display: none;
}

/* Mock recheck overrides: 2026-06-24 */
.site-header__inner:not(.site-header__inner--home) {
	min-height: clamp(76px, 6.6vw, 123px);
}

.site-brand__logo {
	width: clamp(300px, 27vw, 500px);
	max-height: clamp(70px, 6vw, 112px);
	object-fit: contain;
}

.site-nav__list a {
	min-height: clamp(52px, 3.7vw, 68px);
	padding-right: clamp(14px, 1.4vw, 28px);
	padding-left: clamp(14px, 1.4vw, 28px);
	font-size: clamp(18px, 1.55vw, 30px);
}

.fixed-actions {
	top: clamp(98px, 8.5vw, 158px);
	right: clamp(18px, 3vw, 46px);
	width: clamp(78px, 6.7vw, 104px);
}

.home .fixed-actions {
	top: 102px;
}

.admin-bar .fixed-actions {
	top: calc(clamp(98px, 8.5vw, 158px) + 32px);
}

.admin-bar.home .fixed-actions {
	top: 134px;
}

.fixed-actions__item {
	width: clamp(78px, 6.7vw, 104px);
	height: clamp(78px, 6.7vw, 104px);
}

.page-title {
	min-height: clamp(218px, 19.4vw, 360px);
}

.page-title__heading {
	font-size: clamp(60px, 5vw, 92px);
}

.home-about__inner {
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 20px;
	width: min(1100px, calc(100% - 96px));
}

.home-section-heading {
	grid-template-columns: 110px 1fr;
}

.home-about__body {
	grid-column: 1 / -1;
	margin-left: 80px;
	padding-left: 20px;
}

.artist-profile__inner {
	width: min(1280px, calc(100% - clamp(120px, 20vw, 320px)));
}

.artist-profile__figure {
	margin: -24px auto 22px;
}

.artist-profile__image {
	width: min(545px, 100%);
}

.artist-profile__content,
.artist-profile__name,
.artist-profile__role,
.artist-profile__text {
	width: 100%;
}

.partner-page__inner {
	width: min(1290px, calc(100% - 216px));
	padding-top: 58px;
}

.partner-item {
	grid-template-columns: 190px minmax(0, 1fr);
	gap: 120px;
}

.partner-item__media {
	min-height: 190px;
}

.contact-page__inner {
	padding-top: 54px;
}

@media (max-width: 900px) {
	.site-header__inner:not(.site-header__inner--home) {
		min-height: 86px;
	}

	.page-title {
		min-height: 280px;
	}

	.home-about__body {
		margin-left: 0;
	}

	.artist-profile__inner,
	.partner-page__inner {
		width: min(1120px, calc(100% - 48px));
	}

	.partner-item {
		grid-template-columns: 190px minmax(0, 1fr);
		gap: 36px;
	}
}

@media (max-width: 720px) {
	.home-section-heading {
		grid-template-columns: 64px 1fr;
	}

	.home-about__body {
		grid-column: 1;
		margin-left: 0;
		padding-left: 18px;
	}

	.artist-profile__figure {
		margin-top: 0;
	}
}

html,
body {
	overflow-x: hidden;
}

:root {
	--color-black: #040404;
	--color-dark: #080808;
	--color-dark-soft: #111111;
	--color-panel: #151515;
	--color-gold: #d8ad67;
	--color-gold-light: #f0cf8a;
	--color-text: rgba(255, 255, 255, 0.88);
	--color-muted: rgba(255, 255, 255, 0.72);
	--font-mincho: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
}

body {
	margin: 0;
	color: var(--color-text);
	font-family: var(--font-mincho);
	line-height: 1.7;
	background: var(--color-black);
}

a {
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.site-header,
.site-footer {
	background: var(--color-black);
	color: #ffffff;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
}

.site-header__inner,
.site-footer__inner,
.page-section__inner {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 104px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.site-brand__logo {
	display: block;
	width: 96px;
	filter: brightness(0) invert(1);
}

.site-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 7px;
	width: 52px;
	height: 52px;
	padding: 0;
	color: var(--color-gold);
	background: transparent;
	border: 1px solid rgba(216, 173, 103, 0.72);
	cursor: pointer;
}

.site-nav-toggle__bar {
	display: block;
	width: 24px;
	height: 2px;
	background: currentColor;
	transition: opacity 180ms ease, transform 180ms ease;
}

.site-header.is-nav-open .site-nav-toggle__bar:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.site-header.is-nav-open .site-nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.site-header.is-nav-open .site-nav-toggle__bar:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

.site-nav {
	color: var(--color-gold);
	font-family: var(--font-mincho);
	letter-spacing: 0;
}

.site-nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(18px, 3vw, 40px);
	align-items: center;
	justify-content: flex-end;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--color-gold);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 180ms ease;
}

.site-nav__list a::after {
	position: absolute;
	right: 0;
	bottom: 6px;
	left: 0;
	height: 1px;
	background: currentColor;
	content: "";
	opacity: 0;
	transform: scaleX(0.6);
	transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
	color: var(--color-gold-light);
}

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

.fixed-actions {
	position: fixed;
	top: 148px;
	right: 24px;
	z-index: 20;
	display: flex;
	flex-direction: column;
	width: 92px;
}

.fixed-actions__item {
	display: block;
	width: 92px;
	height: 96px;
	background: var(--color-gold);
	text-decoration: none;
	transition: filter 180ms ease, transform 180ms ease;
}

.fixed-actions__item:hover,
.fixed-actions__item:focus-visible {
	filter: brightness(1.08);
	transform: translateX(-4px);
}

.fixed-actions__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.site-main {
	min-height: 60vh;
}

.home-hero {
	position: relative;
	display: grid;
	min-height: calc(100vh - 104px);
	place-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 46%, rgba(216, 173, 103, 0.2), rgba(4, 4, 4, 0) 38%),
		var(--color-black);
}

.home-hero::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: url("../../common/bg-gold-wave.png") center 47% / min(1550px, 122vw) auto no-repeat;
	content: "";
	opacity: 0.92;
}

.home-hero::after {
	position: absolute;
	inset: auto 0 0;
	z-index: 1;
	height: 34%;
	background: linear-gradient(rgba(4, 4, 4, 0), var(--color-black));
	content: "";
}

.home-hero__inner {
	position: relative;
	z-index: 2;
	width: min(1280px, calc(100% - 160px));
	margin: 0 auto;
	text-align: center;
}

.home-hero__logo {
	display: block;
	width: min(1060px, 100%);
	margin: 0 auto;
	filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.72));
}

.home-about {
	position: relative;
	overflow: hidden;
	color: #ffffff;
	background: var(--color-black);
}

.home-about::before {
	position: absolute;
	inset: 0;
	background: url("../../common/bg-gold-wave.png") center top / cover no-repeat;
	content: "";
	opacity: 0.28;
}

.home-about__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 0.86fr 1.14fr;
	gap: 72px;
	align-items: center;
	width: min(1120px, calc(100% - 160px));
	margin: 0 auto;
	padding: 104px 0;
}

.home-section-heading__eyebrow {
	margin: 0 0 12px;
	color: var(--color-gold);
	font-family: var(--font-mincho);
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
}

.home-section-heading__title {
	margin: 0;
	color: #ffffff;
	font-family: var(--font-mincho);
	font-size: clamp(42px, 5vw, 72px);
	font-weight: 600;
	line-height: 1;
}

.home-section-heading__line {
	display: block;
	width: 160px;
	height: 1px;
	margin-top: 28px;
	background: var(--color-gold);
}

.home-about__body {
	padding-top: 36px;
	border-top: 1px solid rgba(216, 173, 103, 0.48);
}

.home-about__body p {
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 17px;
	line-height: 2.15;
}

.home-links {
	padding: 112px 0 128px;
	background: #080808;
}

.home-links__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
	width: min(1120px, calc(100% - 160px));
	margin: 0 auto;
}

.home-link-card {
	position: relative;
	display: block;
	min-height: 390px;
	overflow: hidden;
	color: #ffffff;
	text-decoration: none;
	background: #151515;
	border: 1px solid rgba(216, 173, 103, 0.42);
}

.home-link-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease, filter 420ms ease;
}

.home-link-card__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34)),
		linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));
}

.home-link-card__content {
	position: absolute;
	right: 40px;
	bottom: 36px;
	left: 40px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.home-link-card__title {
	font-family: var(--font-mincho);
	font-size: clamp(42px, 5vw, 68px);
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}

.home-link-card__line {
	display: block;
	width: 132px;
	height: 1px;
	margin: 22px 0 18px;
	background: var(--color-gold);
}

.home-link-card__more {
	color: var(--color-gold);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
}

.home-link-card:hover .home-link-card__image,
.home-link-card:focus-visible .home-link-card__image {
	filter: brightness(1.08);
	transform: scale(1.045);
}

.page-title {
	position: relative;
	display: grid;
	min-height: 300px;
	place-items: center;
	overflow: hidden;
	color: #ffffff;
	text-align: center;
	background:
		linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.72)),
		url("../../common/bg-gold-wave.png") center / cover no-repeat,
		var(--color-black);
}

.page-title__inner {
	position: relative;
	z-index: 1;
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	padding: 72px 0;
}

.page-title__heading {
	margin: 0;
	color: #ffffff;
	font-family: var(--font-mincho);
	font-size: clamp(42px, 8vw, 96px);
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}

.page-title__line {
	display: block;
	width: min(180px, 44vw);
	height: 1px;
	margin: 28px auto 0;
	background: var(--color-gold);
}

.artist-profile {
	background:
		linear-gradient(rgba(4, 4, 4, 0.9), rgba(4, 4, 4, 0.96)),
		url("../../common/bg-gold-wave.png") center top / cover no-repeat,
		var(--color-black);
}

.artist-profile__inner {
	width: min(920px, calc(100% - 160px));
	margin: 0 auto;
	padding: 96px 0 120px;
	text-align: center;
}

.artist-profile__figure {
	margin: 0 auto 46px;
}

.artist-profile__image {
	display: block;
	width: min(600px, 100%);
	margin: 0 auto;
	box-shadow: 0 22px 48px rgba(0, 0, 0, 0.16);
}

.artist-profile__content {
	width: min(720px, 100%);
	margin: 0 auto;
}

.artist-profile__name {
	margin: 0;
	color: #ffffff;
	font-family: var(--font-mincho);
	font-size: clamp(34px, 4.4vw, 54px);
	font-weight: 600;
	line-height: 1.12;
	text-transform: uppercase;
}

.artist-profile__role {
	margin: 14px 0 0;
	color: var(--color-gold);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.6;
	text-transform: uppercase;
}

.artist-profile__line {
	display: block;
	width: 112px;
	height: 1px;
	margin: 28px auto 34px;
	background: var(--color-gold);
}

.artist-profile__text {
	color: var(--color-text);
	font-size: 16px;
	line-height: 2.2;
	text-align: left;
}

.artist-profile__text p {
	margin: 0 0 1.6em;
}

.artist-profile__text p:last-child {
	margin-bottom: 0;
}

.works-archive {
	background: var(--color-dark);
}

.works-archive__inner {
	width: min(1160px, calc(100% - 120px));
	margin: 0 auto;
	padding: 96px 0 118px;
}

.works-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 34px;
	align-items: start;
}

.works-card {
	text-align: center;
}

.works-card__category {
	margin: 0 0 24px;
	color: #ffffff;
	font-family: var(--font-mincho);
	font-size: clamp(22px, 2vw, 30px);
	font-weight: 600;
	line-height: 1.1;
	text-transform: uppercase;
}

.works-card__image-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
	background: var(--color-panel);
	border: 1px solid rgba(216, 173, 103, 0.32);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
}

.works-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.works-card__line {
	display: block;
	width: 72px;
	height: 1px;
	margin: 24px auto 0;
	background: var(--color-gold);
}

.works-archive__content {
	width: min(760px, 100%);
	margin: 64px auto 0;
	font-size: 16px;
	line-height: 2;
}

.contact-page {
	background:
		linear-gradient(rgba(8, 8, 8, 0.96), rgba(8, 8, 8, 0.98)),
		url("../../common/bg-gold-wave.png") center top / cover no-repeat,
		var(--color-dark);
}

.contact-page__inner {
	width: min(820px, calc(100% - 160px));
	margin: 0 auto;
	padding: 88px 0 118px;
}

.contact-page__lead {
	margin: 0 0 44px;
	text-align: center;
}

.contact-page__lead p {
	margin: 0;
	color: var(--color-text);
	font-size: 16px;
	line-height: 2;
}

.contact-form {
	padding: 54px 64px 62px;
	background: rgba(17, 17, 17, 0.94);
	border: 1px solid rgba(216, 173, 103, 0.55);
	box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42);
}

.contact-form .wpcf7 {
	margin: 0;
}

.contact-form p {
	margin: 0 0 28px;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.8;
}

.contact-form label {
	display: block;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.8;
}

.contact-form .wpcf7-form-control-wrap {
	display: block;
	margin-top: 10px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form input[type="number"],
.contact-form input[type="date"],
.contact-form select,
.contact-form textarea {
	width: 100%;
	min-height: 52px;
	padding: 12px 16px;
	color: #ffffff;
	font: inherit;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 0;
	outline: none;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
	min-height: 180px;
	resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: var(--color-gold);
	box-shadow: 0 0 0 3px rgba(216, 173, 103, 0.16);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.48);
}

.contact-form input:-webkit-autofill,
.contact-form textarea:-webkit-autofill {
	-webkit-text-fill-color: #ffffff;
	box-shadow: 0 0 0 1000px #202020 inset;
}

.contact-form input[type="submit"],
.contact-form button[type="submit"] {
	display: block;
	width: min(280px, 100%);
	min-height: 56px;
	margin: 38px auto 0;
	color: #111111;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	background: var(--color-gold);
	border: 1px solid var(--color-gold);
	border-radius: 0;
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.contact-form input[type="submit"]:hover,
.contact-form input[type="submit"]:focus-visible,
.contact-form button[type="submit"]:hover,
.contact-form button[type="submit"]:focus-visible {
	color: #ffffff;
	background: #111111;
	border-color: #111111;
}

.contact-form .wpcf7-not-valid-tip {
	margin-top: 8px;
	color: #b00020;
	font-size: 13px;
	font-weight: 500;
}

.contact-form .wpcf7-response-output {
	margin: 28px 0 0;
	padding: 14px 18px;
	border-color: var(--color-gold);
	font-size: 14px;
	line-height: 1.7;
}

.contact-page__content {
	margin-top: 56px;
	color: var(--color-text);
	font-size: 16px;
	line-height: 2;
}

.partner-page {
	background: var(--color-dark);
}

.partner-page__inner {
	width: min(1040px, calc(100% - 140px));
	margin: 0 auto;
	padding: 94px 0 120px;
}

.partner-list {
	display: grid;
	gap: 48px;
}

.partner-item {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 56px;
	align-items: center;
	padding: 0 0 48px;
	border-bottom: 1px solid rgba(216, 173, 103, 0.34);
}

.partner-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.partner-item__media {
	display: grid;
	min-height: 210px;
	place-items: center;
	padding: 32px 28px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(216, 173, 103, 0.32);
}

.partner-item__image {
	display: block;
	max-width: 243px;
	max-height: 180px;
	object-fit: contain;
}

.partner-item__name {
	margin: 0;
	color: #ffffff;
	font-family: var(--font-mincho);
	font-size: clamp(30px, 3vw, 44px);
	font-weight: 600;
	line-height: 1.18;
}

.partner-item__line {
	display: block;
	width: 96px;
	height: 1px;
	margin: 22px 0 26px;
	background: var(--color-gold);
}

.partner-item__description {
	margin: 0;
	color: var(--color-text);
	font-size: 16px;
	line-height: 2.05;
}

.partner-page__content {
	width: min(760px, 100%);
	margin: 64px auto 0;
	color: var(--color-text);
	font-size: 16px;
	line-height: 2;
}

.page-section {
	padding: 56px 0;
}

.page-section--hero {
	padding: 80px 0;
	background: var(--color-dark);
}

.page-section--hero h1 {
	margin: 0;
	font-size: clamp(36px, 8vw, 72px);
	line-height: 1.1;
}

.page-section--hero p {
	margin: 16px 0 0;
	font-size: 18px;
}

.site-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	padding: 56px 0 32px;
	text-align: center;
}

.site-footer__brand {
	display: inline-flex;
}

.site-footer__logo {
	width: 104px;
	filter: brightness(0) invert(1);
}

.site-footer .site-nav__list {
	justify-content: center;
}

.site-footer p {
	margin: 0;
}

.site-footer__copy {
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	letter-spacing: 0;
}

@media (max-width: 900px) {
	.site-header__inner {
		position: relative;
		width: min(1120px, calc(100% - 32px));
		min-height: 88px;
	}

	.site-nav-toggle {
		display: inline-flex;
	}

	.site-nav--header {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		width: 100%;
		max-height: 0;
		overflow: hidden;
		background: rgba(4, 4, 4, 0.98);
		border-top: 1px solid rgba(216, 173, 103, 0.34);
		box-shadow: 0 24px 42px rgba(0, 0, 0, 0.28);
		opacity: 0;
		pointer-events: none;
		transition: max-height 240ms ease, opacity 180ms ease;
	}

	.site-header.is-nav-open .site-nav--header {
		max-height: 420px;
		opacity: 1;
		pointer-events: auto;
	}

	.site-nav--header .site-nav__list {
		display: flex;
		flex-direction: column;
		gap: 0;
		align-items: stretch;
		padding: 14px 0;
	}

	.site-nav--header .site-nav__list a {
		justify-content: center;
		min-height: 52px;
		padding: 0 16px;
		font-size: 17px;
	}

	.fixed-actions {
		top: 120px;
		right: 20px;
		width: 76px;
	}

	.fixed-actions__item {
		width: 76px;
		height: 80px;
	}

	.home-hero {
		min-height: 68vh;
	}

	.home-hero::before {
		background-size: min(1200px, 150vw) auto;
	}

	.home-hero__inner,
	.home-about__inner,
	.home-links__inner,
	.artist-profile__inner,
	.works-archive__inner,
	.contact-page__inner,
	.partner-page__inner {
		width: min(1120px, calc(100% - 48px));
	}

	.home-about__inner {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 88px 0;
	}

	.home-links__inner {
		gap: 28px;
	}

	.works-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 36px 26px;
	}

	.partner-item {
		grid-template-columns: 260px minmax(0, 1fr);
		gap: 36px;
	}

	.partner-item__media {
		min-height: 190px;
	}
}

@media (max-width: 720px) {
	.site-header__inner {
		align-items: center;
		flex-direction: row;
		justify-content: space-between;
		padding: 18px 0;
	}

	.site-brand__logo {
		width: 76px;
	}

	.site-nav__list {
		justify-content: flex-start;
		gap: 8px 18px;
	}

	.site-footer .site-nav__list {
		justify-content: center;
	}

	.site-nav__list a {
		min-height: 36px;
		font-size: 14px;
	}

	.site-nav--header .site-nav__list a {
		min-height: 50px;
		font-size: 16px;
	}

	.fixed-actions {
		top: auto;
		right: 16px;
		bottom: 12px;
		width: auto;
		gap: 8px;
	}

	.fixed-actions__item {
		width: 68px;
		height: 70px;
		border-radius: 4px;
		overflow: hidden;
	}

	.home-hero {
		min-height: 58vh;
	}

	.home-hero__inner,
	.home-about__inner,
	.home-links__inner {
		width: min(1120px, calc(100% - 32px));
	}

	.home-about__inner,
	.home-links__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.home-about__inner {
		padding: 72px 0;
	}

	.home-links {
		padding: 72px 0 88px;
	}

	.home-link-card {
		min-height: 300px;
	}

	.home-link-card__content {
		right: 28px;
		bottom: 28px;
		left: 28px;
	}

	.artist-profile__inner {
		width: min(920px, calc(100% - 32px));
		padding: 64px 0 80px;
	}

	.artist-profile__figure {
		margin-bottom: 34px;
	}

	.artist-profile__text {
		font-size: 15px;
		line-height: 2;
	}

	.works-archive__inner {
		width: min(1160px, calc(100% - 32px));
		padding: 64px 0 84px;
	}

	.works-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 42px;
		width: min(260px, 100%);
		margin: 0 auto;
	}

	.works-card__category {
		margin-bottom: 16px;
		font-size: 22px;
	}

	.works-card__line {
		margin-top: 18px;
	}

	.contact-page__inner {
		width: min(820px, calc(100% - 32px));
		padding: 64px 0 84px;
	}

	.contact-form {
		padding: 32px 22px 40px;
	}

	.contact-form textarea {
		min-height: 150px;
	}

	.partner-page__inner {
		width: min(1040px, calc(100% - 32px));
		padding: 64px 0 84px;
	}

	.partner-list {
		gap: 40px;
	}

	.partner-item {
		grid-template-columns: 1fr;
		gap: 24px;
		padding-bottom: 40px;
	}

	.partner-item__media {
		min-height: 170px;
	}

	.partner-item__line {
		margin: 18px 0 20px;
	}

	.page-title {
		min-height: 220px;
	}

	.page-title__inner {
		padding: 56px 0;
	}

	.page-title__line {
		margin-top: 20px;
	}
}

/* Final mock overrides: 2026-06-24 */
:root {
	--color-black: #050505;
	--color-dark: #070707;
	--color-panel: #100f0e;
	--color-gold: #d9a900;
	--color-gold-light: #f0c36a;
	--color-text: rgba(255, 255, 255, 0.9);
	--font-mincho: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
}

body {
	background: #050505;
	font-family: var(--font-mincho);
}

.site-header {
	background: rgba(4, 4, 4, 0.98);
}

.site-header__inner {
	width: min(1720px, calc(100% - 64px));
	min-height: 104px;
	gap: 42px;
}

.site-header__inner--home {
	justify-content: center;
	min-height: 66px;
}

.site-brand__logo {
	width: min(420px, 31vw);
	filter: none;
}

.site-nav--header {
	margin-left: auto;
}

.site-header__inner--home .site-nav--header {
	margin-left: 0;
}

.site-nav__list {
	gap: 0;
}

.site-nav__list li {
	position: relative;
}

.site-nav__list li + li::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 2px;
	height: 30px;
	background: var(--color-gold);
	content: "";
	transform: translateY(-50%);
}

.site-nav__list a {
	min-height: 60px;
	padding: 0 26px;
	color: var(--color-gold);
	font-size: clamp(18px, 1.65vw, 32px);
	font-weight: 600;
	line-height: 1;
	text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

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

.fixed-actions {
	top: 126px;
	right: 46px;
	z-index: 80;
	width: 104px;
	gap: 18px;
}

.home .fixed-actions {
	top: 102px;
}

.fixed-actions__item {
	width: 104px;
	height: 104px;
	background: #e8b56c;
	border-radius: 4px;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
	overflow: hidden;
}

.home-hero {
	min-height: 410px;
	place-items: center;
	background:
		linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.28)),
		var(--color-black);
}

.home-hero::before {
	background: url("../../common/bg-gold-wave.png") center 48% / 1860px auto no-repeat;
	opacity: 0.98;
}

.home-hero::after {
	height: 28%;
	background: linear-gradient(rgba(5, 5, 5, 0), #0a0908);
}

.home-hero__inner {
	width: min(1150px, calc(100% - 130px));
	transform: translateY(4px);
}

.home-hero__logo {
	width: min(1080px, 100%);
	filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.7));
}

.home-about {
	background: #070707;
}

.home-about::before {
	display: none;
}

.home-about__inner {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
	width: min(1100px, calc(100% - 120px));
	padding: 34px 0 34px;
}

.home-section-heading {
	display: grid;
	grid-template-columns: 88px 1fr;
	grid-column: 1 / -1;
	align-items: center;
}

.home-section-heading__eyebrow {
	display: none;
}

.home-section-heading__icon {
	display: grid;
	width: 64px;
	height: 64px;
	place-items: center;
	color: var(--color-gold);
	border: 2px solid var(--color-gold);
	border-radius: 50%;
	font-size: 34px;
	line-height: 1;
}

.home-section-heading__title {
	position: relative;
	margin: 0;
	color: #ffffff;
	font-size: clamp(42px, 4.5vw, 58px);
	font-weight: 500;
	line-height: 1;
}

.home-section-heading__line {
	grid-column: 2;
	width: 235px;
	margin-top: 12px;
}

.home-about__body {
	grid-column: 2;
	padding: 0 0 0 24px;
	border-top: 0;
	border-left: 2px solid var(--color-gold);
}

.home-about__body p {
	margin: 0 0 1.25em;
	font-size: clamp(20px, 2vw, 28px);
	line-height: 1.62;
}

.home-about__body p:last-child {
	margin-bottom: 0;
}

.home-links {
	padding: 18px 0 36px;
	background: #070707;
}

.home-links__inner {
	width: min(1100px, calc(100% - 120px));
	gap: 28px;
}

.home-link-card {
	min-height: 430px;
	border: 4px solid rgba(218, 191, 143, 0.72);
	background: #0b0a09;
}

.home-link-card__image {
	position: static;
	width: 100%;
	height: 320px;
	object-fit: cover;
}

.home-link-card__overlay,
.home-link-card__line {
	display: none;
}

.home-link-card__content {
	position: relative;
	right: auto;
	bottom: auto;
	left: auto;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 6px 16px;
	align-items: center;
	padding: 18px 28px 22px;
	background: rgba(5, 5, 5, 0.96);
}

.home-link-card__title {
	grid-column: 1;
	font-size: clamp(34px, 4.2vw, 48px);
	font-weight: 500;
}

.home-link-card__more {
	grid-column: 1;
	color: var(--color-gold);
	font-size: clamp(18px, 2vw, 25px);
	font-weight: 500;
}

.home-link-card__arrow {
	grid-column: 2;
	grid-row: 1 / span 2;
	color: var(--color-gold);
	font-size: 46px;
	line-height: 1;
}

.page-title {
	min-height: 360px;
	background:
		linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62)),
		url("../../common/bg-gold-wave.png") center 44% / cover no-repeat,
		var(--color-black);
}

.page-title__inner {
	padding: 78px 0 72px;
}

.page-title__heading {
	font-size: clamp(64px, 6vw, 92px);
	font-weight: 500;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.page-title__line {
	width: min(340px, 42vw);
	height: 2px;
	margin-top: 16px;
}

.artist-profile,
.works-archive,
.partner-page,
.contact-page {
	background: #050505;
}

.artist-profile__inner {
	width: min(1180px, calc(100% - 160px));
	padding: 0 0 56px;
}

.artist-profile__figure {
	margin: -96px auto 22px;
}

.artist-profile__image {
	width: min(560px, 100%);
	box-shadow: none;
}

.artist-profile__content {
	width: min(1180px, 100%);
}

.artist-profile__name {
	font-size: clamp(34px, 3.2vw, 48px);
	font-weight: 500;
	text-transform: none;
}

.artist-profile__role {
	margin-top: 14px;
	color: #ffffff;
	font-size: clamp(18px, 2vw, 28px);
	font-weight: 500;
	text-transform: none;
}

.artist-profile__line {
	display: none;
}

.artist-profile__text {
	margin-top: 34px;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(18px, 1.8vw, 26px);
	line-height: 1.72;
}

.works-archive__inner {
	width: min(1680px, calc(100% - 140px));
	padding: 42px 0 52px;
}

.works-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 42px;
	width: auto;
}

.works-card__category {
	margin-bottom: 34px;
	padding: 14px 12px;
	color: #ffffff;
	font-size: clamp(24px, 2.2vw, 38px);
	font-weight: 500;
	line-height: 1;
	background: rgba(65, 59, 49, 0.78);
	border: 2px solid var(--color-gold);
}

.works-card__image-wrap {
	border: 0;
	box-shadow: none;
}

.works-card__line {
	display: none;
}

.partner-page__inner {
	width: min(1260px, calc(100% - 180px));
	padding: 42px 0 68px;
}

.partner-list {
	gap: 48px;
}

.partner-item {
	grid-template-columns: 230px minmax(0, 1fr);
	gap: 92px;
	padding: 0;
	border-bottom: 0;
}

.partner-item__media {
	min-height: 190px;
	padding: 0;
	background: #ffffff;
	border: 0;
}

.partner-item__image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.partner-item__name {
	font-size: clamp(34px, 3.4vw, 48px);
	font-weight: 500;
	text-transform: none;
}

.partner-item__description {
	margin-top: 12px;
	font-size: clamp(20px, 2vw, 30px);
	line-height: 1.45;
}

.contact-page__inner {
	width: min(840px, calc(100% - 80px));
	padding: 54px 0 96px;
}

.contact-page__lead {
	margin-bottom: 42px;
	text-align: left;
}

.contact-page__lead p,
.privacy-guideline p {
	margin: 0 0 0.8em;
	font-size: 16px;
	line-height: 1.7;
}

.contact-form-heading {
	margin: 0 auto 28px;
	text-align: center;
}

.contact-form-heading h2 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(34px, 4vw, 48px);
	font-weight: 600;
	line-height: 1;
}

.contact-form-heading span {
	display: block;
	width: 260px;
	height: 2px;
	margin: 14px auto 0;
	background: var(--color-gold);
}

.contact-form-note {
	margin: 0 0 20px;
	font-size: 15px;
}

.contact-form {
	display: grid;
	gap: 0;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.contact-form__row {
	position: relative;
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	align-items: stretch;
}

.contact-form__row label {
	display: flex;
	align-items: center;
	min-height: 66px;
	padding: 0 14px;
	color: #111111;
	font-size: 18px;
	font-weight: 600;
	background: #efe190;
	border-bottom: 2px solid #050505;
}

.contact-form__row label span {
	color: #ff5a2f;
}

.contact-form__row label::after {
	position: absolute;
	top: 50%;
	left: 280px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #efe190;
	content: "";
	transform: translateY(-50%);
}

.contact-form__row input,
.contact-form__row textarea {
	width: calc(100% - 20px);
	min-height: 44px;
	margin: 11px 0 11px 20px;
	padding: 10px 14px;
	color: #ffffff;
	background: #050505;
	border: 2px solid #d6c562;
	border-radius: 6px;
}

.contact-form__row--short input {
	width: min(150px, calc(100% - 20px));
}

.contact-form__row--textarea label {
	min-height: 160px;
}

.contact-form__row textarea {
	min-height: 132px;
	resize: vertical;
}

.contact-form__submit {
	width: min(480px, 100%);
	margin: 42px auto 0;
	padding: 26px 26px 30px;
	text-align: center;
	background: rgba(101, 84, 48, 0.86);
	border: 2px solid #d6c562;
	border-radius: 8px;
}

.contact-form__submit label {
	display: block;
	margin-bottom: 18px;
	color: #ffffff;
	font-size: 15px;
}

.contact-form__submit button {
	min-width: 184px;
	min-height: 46px;
	color: #111111;
	font: inherit;
	background: #f3b636;
	border: 0;
	border-radius: 3px;
	cursor: pointer;
}

.privacy-guideline {
	margin-top: 68px;
}

.privacy-guideline h2 {
	margin: 0 0 24px;
	padding: 5px 12px;
	color: #111111;
	font-size: 18px;
	background: #efe190;
}

.site-footer {
	background: #050505;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(300px, 520px) 2px minmax(420px, 1fr);
	gap: 110px;
	align-items: center;
	width: min(1200px, calc(100% - 160px));
	padding: 54px 0 10px;
	text-align: left;
}

.site-footer__company {
	padding: 28px 44px;
	background: rgba(18, 17, 15, 0.8);
}

.site-footer__company p {
	margin: 0 0 12px;
	color: #ffffff;
	font-size: clamp(22px, 2.2vw, 34px);
	line-height: 1.25;
}

.site-footer__company p:last-child {
	margin-bottom: 0;
}

.site-footer__divider {
	display: block;
	width: 2px;
	height: 112px;
	background: var(--color-gold);
}

.site-footer .site-nav__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(150px, 1fr));
	grid-template-rows: repeat(3, auto);
	grid-auto-flow: column;
	gap: 18px 80px;
	justify-content: start;
}

.site-footer .site-nav__list li::before {
	display: none;
}

.site-footer .site-nav__list a {
	min-height: 0;
	padding: 0;
	color: #ffffff;
	font-size: clamp(24px, 2.4vw, 34px);
	font-weight: 500;
	text-transform: uppercase;
}

.site-footer .site-nav__list a::before {
	color: var(--color-gold);
	content: "›";
	margin-right: 12px;
}

.site-footer__copy {
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(18px, 2vw, 26px);
	text-align: center;
}

@media (max-width: 900px) {
	.site-header__inner,
	.site-header__inner--home {
		min-height: 86px;
	}

	.site-brand__logo {
		width: 260px;
	}

	.site-nav--header {
		margin-left: 0;
	}

	.site-nav--header .site-nav__list li + li::before {
		display: none;
	}

	.fixed-actions {
		top: 112px;
		right: 18px;
		width: 76px;
	}

	.home .fixed-actions {
		top: 96px;
	}

	.home-hero {
		min-height: 360px;
	}

	.home-about__inner,
	.home-links__inner,
	.artist-profile__inner,
	.works-archive__inner,
	.partner-page__inner {
		width: min(1120px, calc(100% - 48px));
	}

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

	.partner-item {
		grid-template-columns: 190px minmax(0, 1fr);
		gap: 36px;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 28px;
		width: min(760px, calc(100% - 48px));
	}

	.site-footer__divider {
		width: 100%;
		height: 2px;
	}
}

@media (max-width: 720px) {
	.site-header__inner {
		width: min(1120px, calc(100% - 32px));
	}

	.site-brand__logo {
		width: 210px;
	}

	.fixed-actions {
		top: auto;
		right: 12px;
		bottom: 12px;
	}

	.home-hero {
		min-height: 300px;
	}

	.home-hero__inner {
		width: min(100%, calc(100% - 36px));
	}

	.home-about__inner {
		grid-template-columns: 1fr;
		padding: 32px 0;
	}

	.home-section-heading {
		grid-template-columns: 64px 1fr;
	}

	.home-about__body {
		grid-column: 1;
		padding-left: 18px;
	}

	.home-links__inner {
		grid-template-columns: 1fr;
	}

	.works-grid {
		grid-template-columns: 1fr;
		width: min(320px, 100%);
	}

	.partner-item {
		grid-template-columns: 1fr;
	}

	.partner-item__media {
		width: 220px;
	}

	.contact-page__inner {
		width: min(840px, calc(100% - 32px));
	}

	.contact-form__row {
		grid-template-columns: 1fr;
	}

	.contact-form__row label::after {
		display: none;
	}

	.contact-form__row input,
	.contact-form__row textarea {
		width: 100%;
		margin: 10px 0 18px;
	}

	.site-footer .site-nav__list {
		grid-template-columns: 1fr;
	}
}

/* Final typography and ARTISTS image fixes: 2026-06-24 */
*,
button,
input,
textarea,
select {
	font-family: var(--font-mincho);
}

input::placeholder,
textarea::placeholder {
	font-family: var(--font-mincho);
}

.artist-profile__figure {
	margin: 0 auto 22px;
	overflow: visible;
}

.artist-profile__image {
	display: block;
	width: min(600px, 100%);
	height: auto;
	object-fit: contain;
}

/* Final global font size down adjustment: 2026-06-24 */
.site-nav__list a {
	font-size: clamp(16px, 1.45vw, 28px);
}

.page-title__heading {
	font-size: clamp(56px, 5.4vw, 82px);
}

.home-section-heading__title {
	font-size: clamp(36px, 4vw, 52px);
}

.home-about__body p {
	font-size: clamp(18px, 1.75vw, 25px);
}

.home-link-card__title {
	font-size: clamp(30px, 3.7vw, 42px);
}

.home-link-card__more {
	font-size: clamp(16px, 1.7vw, 22px);
}

.home-link-card__arrow {
	font-size: 40px;
}

.artist-profile__name,
.partner-item__name {
	font-size: clamp(30px, 3vw, 42px);
}

.artist-profile__role {
	font-size: clamp(16px, 1.75vw, 24px);
}

.artist-profile__text {
	font-size: clamp(16px, 1.55vw, 23px);
}

.works-card__category {
	font-size: clamp(21px, 1.95vw, 34px);
}

.partner-item__description {
	font-size: clamp(18px, 1.75vw, 26px);
}

.site-footer__company p,
.site-footer .site-nav__list a {
	font-size: clamp(20px, 2vw, 30px);
}

.site-footer__copy {
	font-size: clamp(16px, 1.7vw, 23px);
}

/* Final mock recheck overrides at EOF: 2026-06-24 */
.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1000;
}

.admin-bar .site-header {
	top: 32px;
}

.site-main {
	padding-top: clamp(76px, 6.6vw, 123px);
}

.site-header__inner:not(.site-header__inner--home) {
	min-height: clamp(76px, 6.6vw, 123px);
}

.site-brand__logo {
	width: clamp(300px, 27vw, 500px);
	max-height: clamp(70px, 6vw, 112px);
	object-fit: contain;
}

.site-nav__list a {
	min-height: clamp(52px, 3.7vw, 68px);
	padding-right: clamp(10px, 1.15vw, 26px);
	padding-left: clamp(10px, 1.15vw, 26px);
	font-size: clamp(17px, 1.5vw, 30px);
}

.fixed-actions {
	top: clamp(98px, 8.5vw, 158px);
	right: clamp(18px, 3vw, 46px);
	width: clamp(78px, 6.7vw, 104px);
}

.home .fixed-actions {
	top: 102px;
}

.admin-bar .fixed-actions {
	top: calc(clamp(98px, 8.5vw, 158px) + 32px);
}

.admin-bar.home .fixed-actions {
	top: 134px;
}

.fixed-actions__item {
	width: clamp(78px, 6.7vw, 104px);
	height: clamp(78px, 6.7vw, 104px);
}

.page-title {
	min-height: clamp(218px, 19.4vw, 360px);
}

.page-title__heading {
	font-size: clamp(60px, 5vw, 92px);
}

.home-about__inner {
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 20px;
	width: min(1100px, calc(100% - 96px));
}

.home-section-heading {
	grid-template-columns: 110px 1fr;
}

.home-about__body {
	grid-column: 1 / -1;
	margin-left: 80px;
	padding-left: 20px;
}

.artist-profile__inner {
	width: min(1280px, calc(100% - clamp(120px, 20vw, 320px)));
}

.artist-profile__figure {
	margin: -24px auto 22px;
	height: auto !important;
	max-height: none !important;
	overflow: visible !important;
}

.artist-profile__image {
	display: block;
	width: min(545px, 100%) !important;
	max-width: 100% !important;
	height: auto !important;
	max-height: none !important;
	aspect-ratio: auto !important;
	object-fit: contain !important;
}

.artist-profile__content,
.artist-profile__name,
.artist-profile__role,
.artist-profile__text {
	width: 100%;
}

.partner-page__inner {
	width: min(1290px, calc(100% - 216px));
	padding-top: 58px;
}

.partner-item {
	grid-template-columns: 190px minmax(0, 1fr);
	gap: 120px;
}

.partner-item__media {
	width: 190px;
	min-height: 190px;
}

.contact-page__inner {
	padding-top: 54px;
}

.works-archive__inner {
	width: min(1680px, calc(100% - 140px));
}

.works-card__category-button {
	appearance: none;
	display: block;
	width: 100%;
	font-family: var(--font-mincho);
	text-align: center;
	cursor: pointer;
}

.works-card__category-button:hover,
.works-card__category-button:focus-visible,
.works-card__category-button.is-active {
	color: #0a0908;
	background: var(--color-gold);
	outline: none;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.works-results {
	display: grid;
	gap: 28px;
	width: min(1180px, 100%);
	margin: 54px auto 0;
}

.works-result {
	display: none;
	grid-template-columns: 190px minmax(0, 1fr);
	gap: 34px;
	align-items: start;
	padding: 24px;
	background: rgba(13, 12, 11, 0.94);
	border-left: 3px solid var(--color-gold);
}

.works-result.is-visible {
	display: grid;
}

.works-result__image-wrap {
	width: 190px;
	aspect-ratio: 1 / 1;
	background: #ffffff;
	overflow: hidden;
}

.works-result__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.works-result__category {
	margin: 0 0 6px;
	color: var(--color-gold);
	font-size: 15px;
	line-height: 1.4;
}

.works-result__title {
	margin: 0;
	color: #ffffff;
	font-size: clamp(24px, 2.5vw, 38px);
	font-weight: 500;
	line-height: 1.25;
}

.works-result__meta {
	margin: 10px 0 0;
	color: var(--color-gold);
	font-size: clamp(15px, 1.3vw, 18px);
	line-height: 1.5;
}

.works-result__description {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(16px, 1.45vw, 21px);
	line-height: 1.8;
}

.contact-page__inner,
.contact-form,
.contact-form__row,
.contact-form__submit,
.privacy-guideline,
.contact-form__row label,
.contact-form__row input,
.contact-form__row textarea {
	box-sizing: border-box;
}

.contact-form__row textarea,
.contact-form textarea {
	color: #ffffff !important;
	background: #050505 !important;
	border: 2px solid #d6c562 !important;
	border-radius: 6px !important;
	box-shadow: none !important;
}

.home .site-header__inner {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: min(1720px, calc(100% - 64px)) !important;
	min-height: clamp(76px, 6.6vw, 123px) !important;
	gap: 42px !important;
}

.home .site-brand {
	display: inline-flex !important;
}

.home .site-brand__logo {
	display: block !important;
	width: clamp(300px, 27vw, 500px) !important;
	max-height: clamp(70px, 6vw, 112px) !important;
	object-fit: contain !important;
}

.home .site-nav--header {
	display: block !important;
	margin-left: auto !important;
}

.home .site-nav-toggle {
	display: none !important;
}

.home .site-nav--header .site-nav__list {
	display: flex !important;
	flex-wrap: nowrap !important;
	justify-content: flex-end !important;
}

.works-archive__content,
.artist-profile__page-content,
.contact-page__content,
.partner-page__content {
	display: none;
}

@media (max-width: 900px) {
	.site-main {
		padding-top: 86px;
	}

	.home .site-nav-toggle {
		display: inline-flex !important;
	}

	.home .site-nav--header {
		display: none !important;
	}

	.home .site-header.is-nav-open .site-nav--header {
		display: block !important;
	}

	.site-header__inner:not(.site-header__inner--home) {
		min-height: 86px;
	}

	.page-title {
		min-height: 280px;
	}

	.home-about__body {
		margin-left: 0;
	}

	.artist-profile__inner,
	.partner-page__inner {
		width: min(1120px, calc(100% - 48px));
	}

	.partner-item {
		grid-template-columns: 190px minmax(0, 1fr);
		gap: 36px;
	}

	.works-filter {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.works-result {
		grid-template-columns: 150px minmax(0, 1fr);
		gap: 22px;
	}

	.works-result__image-wrap {
		width: 150px;
	}
}

@media (max-width: 720px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.admin-bar .fixed-actions,
	.admin-bar.home .fixed-actions {
		top: auto;
	}

	.home-section-heading {
		grid-template-columns: 64px 1fr;
	}

	.home-about__body {
		grid-column: 1;
		margin-left: 0;
		padding-left: 18px;
	}

	.artist-profile__figure {
		margin-top: 0;
	}

	.works-archive__inner {
		width: min(100%, calc(100% - 32px));
	}

	.works-filter {
		grid-template-columns: 1fr;
	}

	.works-result {
		grid-template-columns: 1fr;
		padding: 18px;
	}

	.works-result__image-wrap {
		width: min(220px, 100%);
	}
}


/* User requested refinements: 2026-06-25
   - prevent home fixed buttons from overlapping the fixed header
   - keep all typography in Yu Mincho
   - prevent home/artist/works images from being cropped
   - adjust heading underline widths to match heading text
   - enlarge and harmonize CONTACT form text/fields
*/
html,
body,
body *,
button,
input,
textarea,
select {
	font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif !important;
}

/* Fixed header/action spacing */
.site-header {
	z-index: 1000;
}

.fixed-actions,
.home .fixed-actions {
	top: calc(clamp(76px, 6.6vw, 123px) + 24px) !important;
	z-index: 900;
}

.admin-bar .fixed-actions,
.admin-bar.home .fixed-actions {
	top: calc(clamp(76px, 6.6vw, 123px) + 56px) !important;
}

.site-main {
	padding-top: clamp(76px, 6.6vw, 123px) !important;
}

/* Page-title underline follows the text length */
.page-title__inner {
	display: inline-flex !important;
	width: auto !important;
	max-width: calc(100% - 32px) !important;
	flex-direction: column;
	align-items: stretch;
}

.page-title__heading {
	white-space: nowrap;
}

.page-title__line {
	width: 100% !important;
	max-width: none !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
}

/* Home card images: show the complete image without cropping */
.home-link-card {
	display: flex !important;
	min-height: 0 !important;
	flex-direction: column;
	overflow: visible !important;
}

.home-link-card__image {
	position: static !important;
	display: block !important;
	width: 100% !important;
	height: auto !important;
	max-height: 360px;
	aspect-ratio: auto !important;
	object-fit: contain !important;
	background: #050505;
	transform: none !important;
}

.home-link-card:hover .home-link-card__image,
.home-link-card:focus-visible .home-link-card__image {
	filter: none !important;
	transform: none !important;
}

/* ARTISTS main image: never crop */
.artist-profile__figure {
	height: auto !important;
	max-height: none !important;
	overflow: visible !important;
}

.artist-profile__image {
	display: block !important;
	width: min(560px, 100%) !important;
	height: auto !important;
	max-height: none !important;
	aspect-ratio: auto !important;
	object-fit: contain !important;
}

/* WORKS archive/result thumbnails: keep the whole artwork visible */
.works-card__image-wrap,
.works-result__image-wrap {
	background: #050505 !important;
	overflow: visible !important;
}

.works-card__image,
.works-result__image {
	object-fit: contain !important;
	background: #050505 !important;
}

/* CONTACT page: increase text size and harmonize input/textarea color */
.contact-page__lead p,
.privacy-guideline p {
	font-size: 18px !important;
	line-height: 1.85 !important;
}

.contact-form-note,
.contact-form__submit label,
.contact-form p,
.contact-form label {
	font-size: 17px !important;
	line-height: 1.75 !important;
}

.contact-form__row label {
	font-size: 20px !important;
}

.contact-form__row input,
.contact-form__row textarea,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form input[type="number"],
.contact-form input[type="date"],
.contact-form select,
.contact-form textarea {
	font-size: 18px !important;
	color: #ffffff !important;
	background: #050505 !important;
	border: 2px solid #d6c562 !important;
	border-radius: 6px !important;
	box-shadow: none !important;
}

.contact-form__row textarea,
.contact-form textarea {
	background: #050505 !important;
}

.privacy-guideline h2 {
	font-size: 20px !important;
}

.contact-form-heading {
	display: inline-flex;
	width: auto;
	max-width: 100%;
	flex-direction: column;
	align-items: stretch;
	margin-right: auto !important;
	margin-left: auto !important;
}

.contact-form-heading span {
	width: 100% !important;
}

@media (max-width: 900px) {
	.fixed-actions,
	.home .fixed-actions {
		top: calc(86px + 18px) !important;
	}

	.admin-bar .fixed-actions,
	.admin-bar.home .fixed-actions {
		top: calc(86px + 50px) !important;
	}

	.site-main {
		padding-top: 86px !important;
	}
}

@media (max-width: 720px) {
	.fixed-actions,
	.home .fixed-actions,
	.admin-bar .fixed-actions,
	.admin-bar.home .fixed-actions {
		top: auto !important;
		right: 12px !important;
		bottom: 12px !important;
	}

	.page-title__heading {
		white-space: normal;
	}

	.home-link-card__image {
		max-height: none;
	}

	.contact-page__lead p,
	.privacy-guideline p {
		font-size: 17px !important;
	}

	.contact-form__row label,
	.contact-form__row input,
	.contact-form__row textarea,
	.contact-form input[type="text"],
	.contact-form input[type="email"],
	.contact-form input[type="tel"],
	.contact-form textarea {
		font-size: 17px !important;
	}
}

/* Follow-up fixes: ARTISTS portrait and CONTACT text scale */
.artist-profile {
	overflow: visible !important;
}

.artist-profile__inner,
.artist-profile__figure,
.artist-profile__content {
	overflow: visible !important;
}

.artist-profile__figure {
	display: grid !important;
	width: min(720px, 100%) !important;
	height: auto !important;
	max-height: none !important;
	aspect-ratio: auto !important;
	place-items: center !important;
	margin: 0 auto 34px !important;
	padding: 0 !important;
	background: transparent !important;
}

.artist-profile__image {
	position: static !important;
	display: block !important;
	width: 100% !important;
	max-width: 600px !important;
	height: auto !important;
	max-height: none !important;
	aspect-ratio: auto !important;
	object-fit: contain !important;
	object-position: center center !important;
	transform: none !important;
}

.contact-page,
.contact-page__lead,
.contact-form,
.contact-form p,
.contact-form label,
.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-page__content,
.privacy-guideline,
.privacy-guideline p {
	font-size: clamp(16px, 1.55vw, 23px) !important;
	line-height: 1.85 !important;
}

.contact-form__row label,
.contact-form label {
	font-size: clamp(16px, 1.55vw, 23px) !important;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form input[type="number"],
.contact-form input[type="date"],
.contact-form select,
.contact-form textarea,
.contact-form__row input,
.contact-form__row textarea {
	font-size: clamp(16px, 1.55vw, 23px) !important;
	line-height: 1.55 !important;
}

.contact-form input[type="submit"],
.contact-form button[type="submit"],
.contact-form__submit label {
	font-size: clamp(16px, 1.45vw, 21px) !important;
}

@media (max-width: 720px) {
	.artist-profile__figure {
		width: 100% !important;
		margin-bottom: 28px !important;
	}

	.artist-profile__image {
		width: 100% !important;
		max-width: 600px !important;
	}

	.contact-page,
	.contact-page__lead,
	.contact-form,
	.contact-form p,
	.contact-form label,
	.contact-form input,
	.contact-form select,
	.contact-form textarea,
	.contact-page__content,
	.privacy-guideline,
	.privacy-guideline p,
	.contact-form__row label,
	.contact-form__row input,
	.contact-form__row textarea {
		font-size: 16px !important;
	}
}

/* Follow-up fix v3: keep CONTACT form fields at original size, enlarge only surrounding text */
.contact-form__row label {
	font-size: 18px !important;
	line-height: normal !important;
}

.contact-form__row input,
.contact-form__row textarea,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form input[type="number"],
.contact-form input[type="date"],
.contact-form select,
.contact-form textarea {
	font-size: initial !important;
	line-height: normal !important;
}

.contact-form__submit label {
	font-size: 15px !important;
	line-height: 1.7 !important;
}

.contact-page__lead p,
.contact-form-note,
.privacy-guideline,
.privacy-guideline p {
	font-size: clamp(16px, 1.55vw, 23px) !important;
	line-height: 2.2 !important;
}

@media (max-width: 720px) {
	.contact-form__row label {
		font-size: 18px !important;
	}

	.contact-form__row input,
	.contact-form__row textarea,
	.contact-form input[type="text"],
	.contact-form input[type="email"],
	.contact-form input[type="tel"],
	.contact-form textarea {
		font-size: initial !important;
	}

	.contact-page__lead p,
	.contact-form-note,
	.privacy-guideline,
	.privacy-guideline p {
		font-size: 16px !important;
		line-height: 2.2 !important;
	}
}

/* Follow-up fix v4: slimmer header and text-box widths */
.site-header__inner,
.site-header__inner:not(.site-header__inner--home),
.home .site-header__inner {
	min-height: clamp(64px, 5.4vw, 96px) !important;
}

.site-brand__logo,
.home .site-brand__logo {
	width: clamp(260px, 23vw, 430px) !important;
	max-height: clamp(56px, 4.8vw, 86px) !important;
}

.site-nav__list a {
	min-height: clamp(44px, 3.2vw, 58px) !important;
	font-size: clamp(16px, 1.35vw, 27px) !important;
}

.site-main {
	padding-top: clamp(64px, 5.4vw, 96px) !important;
}

.fixed-actions,
.home .fixed-actions {
	top: calc(clamp(64px, 5.4vw, 96px) + 22px) !important;
}

.admin-bar .fixed-actions,
.admin-bar.home .fixed-actions {
	top: calc(clamp(64px, 5.4vw, 96px) + 54px) !important;
}

/* ABOUT US: make the text box follow the intended line width */
.home-about__body {
	width: fit-content !important;
	max-width: calc(100% - 80px) !important;
}

.home-about__body p {
	width: fit-content !important;
	max-width: 100% !important;
}

/* CONTACT: tighten only the upper/lower text areas, not the form */
.contact-page__lead,
.privacy-guideline {
	width: min(760px, 100%) !important;
	max-width: 100% !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

.contact-page__lead p,
.privacy-guideline p {
	max-width: 100% !important;
}

@media (max-width: 900px) {
	.site-header__inner,
	.site-header__inner:not(.site-header__inner--home),
	.home .site-header__inner {
		min-height: 74px !important;
	}

	.site-main {
		padding-top: 74px !important;
	}

	.fixed-actions,
	.home .fixed-actions {
		top: 92px !important;
	}

	.home-about__body {
		max-width: 100% !important;
	}
}

@media (max-width: 720px) {
	.site-header__inner,
	.site-header__inner:not(.site-header__inner--home),
	.home .site-header__inner {
		min-height: 70px !important;
	}

	.site-brand__logo,
	.home .site-brand__logo {
		width: clamp(210px, 58vw, 300px) !important;
		max-height: 60px !important;
	}

	.site-main {
		padding-top: 70px !important;
	}
}
