/*
Fresh Custom Originals
White minimalist gallery styles.
Separation between areas uses spacing and soft background shifts,
never single sided borders.
*/

:root {
	--ink: #171717;
	--muted: #6f6a64;
	--bg: #ffffff;
	--soft: #f6f5f2;
	--line: #e7e4df;
	--serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	--sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
	--brand: 'Josefin Sans', 'Century Gothic', 'Futura', sans-serif;
	--header-h: 84px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--sans);
	font-weight: 300;
	font-size: 17px;
	line-height: 1.7;
	color: var(--ink);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--serif);
	font-weight: 500;
	line-height: 1.15;
}

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

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

.container {
	width: min(1200px, 100% - 48px);
	margin-inline: auto;
}

/* Accessibility helpers */

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 2000;
	background: var(--ink);
	color: #fff;
	padding: 10px 18px;
}

.skip-link:focus {
	width: auto;
	height: auto;
	clip: auto;
}

/* Buttons */

.fco-btn {
	display: inline-block;
	font-family: var(--sans);
	font-weight: 400;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 15px 34px;
	border: 1px solid var(--ink);
	color: var(--ink);
	background: transparent;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.fco-btn:hover,
.fco-btn:focus-visible {
	background: var(--ink);
	color: #fff;
}

.fco-btn-solid {
	background: var(--ink);
	color: #fff;
}

.fco-btn-solid:hover,
.fco-btn-solid:focus-visible {
	background: transparent;
	color: var(--ink);
}

.fco-btn-light {
	border-color: #fff;
	color: #fff;
}

.fco-btn-light:hover,
.fco-btn-light:focus-visible {
	background: #fff;
	color: var(--ink);
}

/* Header */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #fff;
	color: var(--ink);
	box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
	transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

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

body.fco-has-hero .site-header {
	background: transparent;
	color: #fff;
	box-shadow: none;
}

body.fco-has-hero .site-header.is-scrolled,
body.nav-open .site-header {
	background: #fff;
	color: var(--ink);
	box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	height: var(--header-h);
	width: min(1400px, 100% - 48px);
	margin-inline: auto;
}

.site-title {
	font-family: var(--brand);
	font-size: 21px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	white-space: nowrap;
}

.custom-logo {
	max-height: 52px;
	width: auto;
}

.main-navigation ul {
	display: flex;
	gap: 36px;
	list-style: none;
}

.main-navigation a {
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	opacity: 0.92;
}

.main-navigation a:hover,
.main-navigation a:focus-visible,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
	opacity: 1;
	text-decoration: underline;
	text-underline-offset: 7px;
	text-decoration-thickness: 1px;
}

.main-navigation .sub-menu {
	display: none;
}

.nav-toggle {
	display: none;
	background: none;
	border: 0;
	color: inherit;
	cursor: pointer;
	padding: 10px;
}

.nav-toggle-bars {
	display: flex;
	flex-direction: column;
	gap: 7px;
	width: 26px;
}

.nav-toggle-bars span {
	display: block;
	height: 1.5px;
	width: 100%;
	background: currentColor;
	transition: transform 0.3s ease;
}

body.nav-open .nav-toggle-bars span:first-child {
	transform: translateY(4.25px) rotate(45deg);
}

body.nav-open .nav-toggle-bars span:last-child {
	transform: translateY(-4.25px) rotate(-45deg);
}

/* Hero slider */

.hero-slider {
	position: relative;
	height: 100vh;
	height: 100svh;
	min-height: 620px;
	overflow: hidden;
	background: #101010;
}

.hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 24px;
	background-size: cover;
	background-position: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1.1s ease, visibility 1.1s ease;
}

.hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.35) 0%,
		rgba(0, 0, 0, 0.08) 30%,
		rgba(0, 0, 0, 0) 45%,
		rgba(0, 0, 0, 0.1) 68%,
		rgba(0, 0, 0, 0.4) 100%
	);
}

.hero-caption {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 0 24px 96px;
	color: #fff;
}

.hero-heading {
	font-size: clamp(44px, 7vw, 82px);
	font-weight: 500;
	color: #fff;
	text-shadow: 0 1px 26px rgba(0, 0, 0, 0.28);
}

.hero-sub {
	max-width: 900px;
	margin-top: 16px;
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-align: center;
	opacity: 0.92;
	text-shadow: 0 1px 18px rgba(0, 0, 0, 0.3);
}

.hero-caption .fco-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 21px 52px;
	font-size: 14px;
	background: rgba(255, 255, 255, 0.6);
	border-color: #fff;
	color: var(--ink);
}

.hero-caption .fco-btn:hover,
.hero-caption .fco-btn:focus-visible {
	background: #fff;
	color: var(--ink);
}

.hero-slide.is-dark-text .hero-caption {
	color: var(--ink);
}

.hero-slide.is-dark-text .hero-heading,
.hero-slide.is-dark-text .hero-sub {
	color: var(--ink);
	text-shadow: none;
}

.hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	background: transparent;
	border: 0;
	color: #fff;
	opacity: 0.75;
	cursor: pointer;
	padding: 12px;
	transition: opacity 0.25s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
	opacity: 1;
}

.hero-prev {
	left: 22px;
}

.hero-next {
	right: 22px;
}

.hero-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 34px;
	z-index: 3;
	display: flex;
	justify-content: center;
	gap: 12px;
}

.hero-dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 1px solid #fff;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	opacity: 0.9;
	transition: background 0.25s ease;
}

.hero-dot.is-active {
	background: #fff;
}

/* Layout offsets for inner pages under the fixed header */

.site-main {
	min-height: 55vh;
	padding-bottom: 110px;
}

body:not(.fco-has-hero) .site-main {
	padding-top: calc(var(--header-h) + 56px);
}

body.fco-has-hero .site-main {
	padding-bottom: 0;
}

/* Front page sections */

.front-section {
	padding: 110px 0;
}

.section-kicker {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 14px;
}

.section-title {
	font-size: clamp(32px, 4vw, 46px);
}

.section-header {
	text-align: center;
	margin-bottom: 64px;
}

.section-action {
	text-align: center;
	margin-top: 68px;
}

/* Works grid */

.works-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 56px 40px;
}

.work-media {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--soft);
	aspect-ratio: 4 / 5;
}

.work-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--bg);
	color: var(--ink);
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 7px 12px;
}

.work-badge-print {
	background: var(--ink);
	color: var(--bg);
}

.work-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

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

.work-title {
	font-size: 24px;
	margin-top: 22px;
}

.work-title a:hover,
.work-title a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 5px;
	text-decoration-thickness: 1px;
}

.work-meta {
	color: var(--muted);
	font-size: 14px;
	letter-spacing: 0.04em;
	margin-top: 6px;
}

.works-note {
	text-align: center;
	color: var(--muted);
	font-size: 14px;
	margin-top: 44px;
}

/* About section */

.about-section {
	background: var(--soft);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.about-body .section-title {
	margin-bottom: 22px;
}

.about-text {
	margin-bottom: 32px;
	max-width: 52ch;
}

/* Visit section */

.visit-inner {
	text-align: center;
	max-width: 680px;
}

.visit-text {
	margin: 20px auto 36px;
	color: var(--muted);
}

/* Footer */

.site-footer {
	background: var(--soft);
	text-align: center;
	padding: 72px 0 44px;
}

.footer-title {
	font-family: var(--brand);
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
}

.footer-tagline {
	color: var(--muted);
	font-size: 14px;
	margin-top: 8px;
}

.footer-navigation ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 28px;
	list-style: none;
	margin: 28px 0;
}

.footer-navigation a,
.footer-social a {
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.footer-navigation a:hover,
.footer-social a:hover {
	text-decoration: underline;
	text-underline-offset: 6px;
}

.footer-social {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-bottom: 8px;
}

.footer-copyright {
	color: var(--muted);
	font-size: 12.5px;
	letter-spacing: 0.06em;
	margin-top: 22px;
}

/* Archives */

.archive-header {
	text-align: center;
	margin-bottom: 64px;
}

.archive-header .section-kicker {
	margin-bottom: 12px;
}

.archive-description {
	color: var(--muted);
	max-width: 620px;
	margin: 16px auto 0;
}

.archive-empty {
	text-align: center;
	color: var(--muted);
	padding: 40px 0;
}

.navigation.pagination {
	margin-top: 70px;
	text-align: center;
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.page-numbers {
	padding: 8px 14px;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.page-numbers.current,
a.page-numbers:hover,
a.page-numbers:focus-visible {
	text-decoration: underline;
	text-underline-offset: 6px;
}

/* Single artwork */

.artwork-single {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 72px;
	align-items: start;
}

.artwork-image {
	background: var(--soft);
}

.artwork-back {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 30px;
}

.artwork-back:hover,
.artwork-back:focus-visible {
	color: var(--ink);
}

.artwork-title {
	font-size: clamp(32px, 4vw, 44px);
	margin-bottom: 26px;
}

.artwork-specs {
	margin-bottom: 30px;
}

.artwork-spec {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding: 11px 0;
}

.artwork-spec dt {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--muted);
}

.artwork-spec dd {
	font-size: 15px;
	text-align: right;
}

.artwork-content p {
	margin-bottom: 1.4em;
}

.artwork-buy {
	margin-top: 34px;
	padding-top: 30px;
	border-top: 1px solid var(--line);
}

.artwork-buy-print {
	margin-top: 20px;
	padding-top: 24px;
}

.artwork-price {
	font-family: var(--serif);
	font-size: 30px;
	margin-bottom: 16px;
}

.artwork-price-label {
	font-family: var(--sans);
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
	margin-left: 8px;
}

.artwork-print-meta {
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 16px;
}

.artwork-sold {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--muted);
	border: 1px solid var(--line);
	padding: 12px 22px;
}

.artwork-preorder-note {
	font-size: 13px;
	color: var(--muted);
	margin-top: 14px;
}

.artwork-buy-notice {
	font-size: 14px;
	padding: 16px 20px;
	margin-bottom: 26px;
	background: var(--soft);
}

/*
Plex Pay renders its own form markup (plugin, not theme), and only on the
Checkout page. It carries no styling of its own, so the rules below turn its
plain fields into something that matches the gallery.
*/

.Plexpay-form p {
	margin-bottom: 18px;
}

.Plexpay-amount {
	display: none;
}

.Plexpay-form label {
	display: block;
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

.Plexpay-form label br {
	display: none;
}

.Plexpay-form input[type='text'],
.Plexpay-form input[type='email'],
.Plexpay-form input[type='tel'] {
	display: block;
	width: 100%;
	margin-top: 8px;
	padding: 13px 16px;
	border: 1px solid var(--line);
	background: #fff;
	font-size: 15px;
	font-family: var(--sans);
	font-weight: 300;
	letter-spacing: normal;
	text-transform: none;
	color: var(--ink);
}

.Plexpay-methods {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 22px;
	margin-bottom: 22px;
}

.Plexpay-methods label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: normal;
	text-transform: none;
	color: var(--ink);
}

.Plexpay-block {
	margin-top: 4px;
	margin-bottom: 22px;
}

.gp-field {
	display: block;
	width: 100%;
	min-height: 46px;
	margin-top: 8px;
	border: 1px solid var(--line);
	background: #fff;
	padding: 4px 12px;
}

.gp-field iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

#gp-submit {
	margin: 22px 0;
}

#gp-submit button {
	width: 100%;
	font-family: var(--sans);
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 15px 34px;
	border: 1px solid var(--ink);
	background: var(--ink);
	color: #fff;
	cursor: pointer;
}

#gp-error {
	margin-bottom: 16px;
	font-size: 13px;
}

.Plexpay-note {
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 18px;
}

.Plexpay-btn {
	display: block;
	width: 100%;
	font-family: var(--sans);
	font-weight: 400;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 15px 34px;
	border: 1px solid var(--ink);
	background: var(--ink);
	color: #fff;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease;
}

.Plexpay-btn:hover,
.Plexpay-btn:focus-visible {
	background: transparent;
	color: var(--ink);
}

.artwork-nav {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 72px;
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.artwork-nav a:hover,
.artwork-nav a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 6px;
}

.artwork-nav-next {
	margin-left: auto;
}

/* Pages and posts */

.entry-narrow {
	max-width: 760px;
	margin-inline: auto;
}

.entry-header {
	margin-bottom: 36px;
}

.entry-title {
	font-size: clamp(34px, 4.5vw, 52px);
}

.entry-thumb {
	margin-bottom: 36px;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
	margin-bottom: 1.4em;
}

.entry-content ul,
.entry-content ol {
	padding-left: 24px;
}

.entry-content h2,
.entry-content h3 {
	margin: 1.6em 0 0.6em;
}

.entry-content a {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.entry-content blockquote {
	font-family: var(--serif);
	font-size: 24px;
	font-style: italic;
	padding: 12px 40px;
	margin: 1.6em 0;
	color: #3d3a36;
}

.entry-content img {
	margin-inline: auto;
}

/* Blog list */

.post-list article {
	max-width: 760px;
	margin: 0 auto 76px;
}

.post-thumb {
	display: block;
	margin-bottom: 26px;
	overflow: hidden;
}

.post-date {
	font-size: 12px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 10px;
}

.post-title {
	font-size: 30px;
	margin-bottom: 12px;
}

.post-title a:hover,
.post-title a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 5px;
}

.post-excerpt {
	color: var(--muted);
}

/* 404 */

.error-404 {
	text-align: center;
	padding: 50px 0;
}

.error-code {
	font-family: var(--serif);
	font-size: clamp(90px, 12vw, 140px);
	line-height: 1;
	color: var(--line);
}

.error-text {
	color: var(--muted);
	margin: 18px 0 36px;
}

/* Forms */

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='number'],
input[type='url'],
input[type='search'],
textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--line);
	background: #fff;
	font-family: inherit;
	font-size: 15px;
	color: var(--ink);
	line-height: 1.4;
}

input[type='text']:focus-visible,
input[type='email']:focus-visible,
input[type='tel']:focus-visible,
input[type='number']:focus-visible,
textarea:focus-visible {
	outline: none;
	border-color: var(--ink);
}

input:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
	outline: 1px solid var(--ink);
	outline-offset: 3px;
}

/* WordPress core classes */

.alignleft {
	float: left;
	margin: 6px 28px 16px 0;
}

.alignright {
	float: right;
	margin: 6px 0 16px 28px;
}

.aligncenter {
	display: block;
	margin-inline: auto;
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text {
	font-size: 13px;
	color: var(--muted);
	text-align: center;
	padding: 8px 0;
}

.sticky,
.bypostauthor {
	display: revert;
}

/* Responsive */

@media (max-width: 1000px) {
	.works-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 48px 28px;
	}

	.about-grid {
		gap: 48px;
	}

	.artwork-single {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}

@media (max-width: 900px) {
	.main-navigation {
		position: fixed;
		inset: 0;
		z-index: 900;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #fff;
		color: var(--ink);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	body.nav-open .main-navigation {
		opacity: 1;
		visibility: visible;
	}

	.main-navigation ul {
		flex-direction: column;
		align-items: center;
		gap: 30px;
	}

	.main-navigation a {
		font-family: var(--serif);
		font-size: 30px;
		letter-spacing: 0.06em;
		text-transform: none;
	}

	.nav-toggle {
		display: block;
		position: relative;
		z-index: 1001;
	}

	body.nav-open {
		overflow: hidden;
	}
}

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

@media (max-width: 640px) {
	:root {
		--header-h: 70px;
	}

	body {
		font-size: 16px;
	}

	.site-title {
		font-size: 14px;
	}

	.container {
		width: min(1200px, 100% - 40px);
	}

	.front-section {
		padding: 72px 0;
	}

	.works-grid {
		grid-template-columns: 1fr;
		gap: 44px;
	}

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

	.hero-slider {
		min-height: 520px;
	}

	.hero-sub {
		font-size: 13px;
	}

	.hero-caption {
		padding-bottom: 72px;
	}

	.hero-arrow {
		padding: 8px;
	}

	.hero-prev {
		left: 6px;
	}

	.hero-next {
		right: 6px;
	}

	.hero-dots {
		bottom: 24px;
	}

	.section-header {
		margin-bottom: 44px;
	}

	.artwork-nav {
		flex-direction: column;
		gap: 14px;
	}

	.artwork-nav-next {
		margin-left: 0;
	}
}

/* Contact page */

.contact-intro {
	max-width: 680px;
	margin: 0 auto 70px;
	text-align: center;
}

.contact-centered {
	max-width: 720px;
	margin: 0 auto;
}

.faq-section {
	max-width: 900px;
	margin: 100px auto 0;
}

.faq-heading {
	font-size: 30px;
	text-align: center;
	margin-bottom: 44px;
}

.faq-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px 56px;
}

.faq-item h3 {
	font-size: 20px;
	margin-bottom: 8px;
}

.faq-item p {
	color: var(--muted);
	font-size: 15px;
}

.faq-item a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.about-signature {
	font-family: var(--serif);
	font-size: 26px;
	margin-top: 36px;
}

.about-signature span {
	display: block;
	margin-top: 6px;
	font-family: var(--sans);
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
}

.form-notice {
	padding: 16px 20px;
	margin-bottom: 28px;
	border: 1px solid var(--line);
	background: var(--soft);
	font-size: 15px;
}

.form-notice a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.form-notice-success {
	border-color: #bfd6bf;
	background: #f3f8f3;
}

.form-notice-error {
	border-color: #d8bebe;
	background: #faf4f4;
}

.contact-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-group {
	margin-bottom: 22px;
}

.form-group label {
	display: block;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 8px;
}

select.form-control {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid var(--line);
	background: #fff;
	font-family: inherit;
	font-size: 15px;
	color: var(--ink);
}

.contact-submit {
	width: 100%;
}

/* About page */

.about-page-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 72px;
	align-items: start;
}

.about-page-media img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.about-page-body .section-title {
	margin-bottom: 26px;
}

.page-cta {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 96px;
}

/* Policy pages */

.policy-note {
	background: var(--soft);
	padding: 22px 28px;
	margin-top: 44px;
}

.policy-note p {
	margin-bottom: 0;
}

@media (max-width: 900px) {
	.about-page-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}

@media (max-width: 640px) {
	.contact-form .form-row {
		grid-template-columns: 1fr;
	}

	.faq-list {
		grid-template-columns: 1fr;
	}

	.page-cta {
		margin-top: 64px;
	}
}

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

/* ==========================================================================
   Store: cart link, product Add to Cart, cart page, checkout
   ========================================================================== */

/* Narrower reading measure for cart and checkout */
.container-narrow {
	width: min(980px, 100% - 48px);
}

/* Header cart link (sits at the right of the bar, beside the menu) */
.main-navigation {
	margin-left: auto;
}

.cart-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	color: inherit;
}

.cart-link svg {
	display: block;
}

.cart-count {
	position: absolute;
	top: -7px;
	right: -9px;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 9px;
	background: var(--ink);
	color: #fff;
	font-family: var(--sans);
	font-size: 10px;
	font-weight: 500;
	line-height: 17px;
	text-align: center;
}

body.fco-has-hero .site-header:not(.is-scrolled) .cart-count {
	background: #fff;
	color: var(--ink);
}

/* Price on the gallery cards */
.work-price {
	margin-top: 6px;
	font-size: 14px;
	letter-spacing: 0.04em;
	color: var(--ink);
}

.work-price-sold {
	color: var(--muted);
}

/* Product page Add to Cart */
.artwork-buy-note {
	padding: 14px 18px;
	margin-bottom: 22px;
	background: var(--soft);
	font-size: 14px;
}

.artwork-buy-note a {
	margin-left: 6px;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.artwork-buy-note--err {
	background: #faf4f4;
}

.artwork-add {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
}

.artwork-add .fco-btn {
	cursor: pointer;
}

.artwork-qty {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
}

.artwork-qty input {
	width: 74px;
}

/* Cart page */
.cart-empty {
	text-align: center;
	padding: 24px 0 8px;
}

.cart-empty p {
	color: var(--muted);
	margin-bottom: 24px;
}

.cart-row {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 0;
	border-top: 1px solid var(--line);
}

.cart-row:last-of-type {
	border-bottom: 1px solid var(--line);
}

.cart-thumb {
	flex: 0 0 68px;
	width: 68px;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--soft);
}

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

.cart-info {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.cart-title {
	font-family: var(--serif);
	font-size: 20px;
	line-height: 1.2;
}

.cart-title:hover {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.cart-kind {
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

.cart-flag {
	font-size: 12.5px;
	color: #9c3b2a;
}

.cart-line-total {
	flex: 0 0 auto;
	min-width: 72px;
	text-align: right;
	white-space: nowrap;
	font-size: 15px;
}

.cart-qty {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 10px;
}

.cart-qty input {
	width: 62px;
}

.cart-qty-fixed {
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
	white-space: nowrap;
}

.cart-update {
	background: none;
	border: 0;
	padding: 0;
	font-family: var(--sans);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.cart-update:hover {
	color: var(--ink);
}

.cart-remove {
	grid-area: remove;
	justify-self: end;
	background: none;
	border: 0;
	font-size: 24px;
	line-height: 1;
	color: var(--muted);
	cursor: pointer;
}

.cart-remove:hover {
	color: var(--ink);
}

.cart-summary {
	margin-top: 30px;
}

.cart-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 17px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.cart-summary-row strong {
	font-family: var(--serif);
	font-size: 28px;
	letter-spacing: 0;
	text-transform: none;
}

.cart-summary-note {
	color: var(--muted);
	font-size: 13px;
	margin-top: 10px;
}

.cart-actions {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.cart-clear {
	margin-top: 18px;
	text-align: right;
}

.cart-clear-btn {
	background: none;
	border: 0;
	font-family: var(--sans);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	cursor: pointer;
}

.cart-clear-btn:hover {
	color: var(--ink);
}

/* One-page store: order on the left, delivery and payment on the right */
.checkout-grid {
	display: grid;
	grid-template-columns: 1.35fr 0.85fr;
	gap: 56px;
	align-items: start;
}

.checkout-main-title,
.checkout-aside-title {
	font-size: 22px;
	margin-bottom: 18px;
}

.checkout-aside {
	background: var(--soft);
	padding: 28px;
	position: sticky;
	top: calc(var(--header-h) + 20px);
}

.order-delivery {
	margin-top: 28px;
	padding-top: 26px;
	border-top: 1px solid var(--line);
}

.artwork-buy-replica {
	margin-top: 20px;
	padding-top: 24px;
}

.checkout-section + .checkout-section {
	margin-top: 28px;
	padding-top: 26px;
	border-top: 1px solid var(--line);
}

.checkout-section-title {
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 16px;
}

.checkout-methods {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.checkout-method {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
}

.checkout-field {
	margin-top: 16px;
}

.checkout-field label {
	display: block;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 8px;
}

.checkout-save {
	margin-top: 16px;
	background: none;
	border: 0;
	padding: 0;
	font-family: var(--sans);
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.checkout-save:hover {
	color: var(--ink);
}

.checkout-two {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.checkout-place {
	margin-top: 4px;
}

.checkout-place .fco-btn {
	display: block;
	width: 100%;
	cursor: pointer;
}

.checkout-place-note {
	margin-top: 12px;
	font-size: 13px;
	color: var(--muted);
}

.checkout-or {
	position: relative;
	margin: 20px 0;
	text-align: center;
}

.checkout-or::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 1px;
	background: var(--line);
}

.checkout-or span {
	position: relative;
	padding: 0 14px;
	background: var(--soft);
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--muted);
}

.checkout-need {
	margin-bottom: 12px;
	font-size: 13px;
	color: #9c3b2a;
}

@media (max-width: 640px) {
	.checkout-two {
		grid-template-columns: 1fr;
	}
}

/*
Defensive base styling for whatever fields Plex Pay renders inside the
payment column, so its inputs match the gallery even when their own class
names differ from the ones targeted in the Plex Pay block above.
*/
.checkout-pay {
	margin-top: 4px;
}

.checkout-pay input[type='text'],
.checkout-pay input[type='email'],
.checkout-pay input[type='tel'],
.checkout-pay select {
	width: 100%;
	margin-top: 8px;
	padding: 13px 16px;
	border: 1px solid var(--line);
	background: #fff;
	font-family: var(--sans);
	font-weight: 300;
	font-size: 15px;
	color: var(--ink);
}

.checkout-pay label {
	display: block;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

.checkout-notice {
	padding: 18px 20px;
	background: #fff;
	font-size: 14px;
}

.checkout-notice a {
	margin-left: 6px;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.checkout-summary {
	margin-bottom: 12px;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	font-size: 14px;
	padding: 9px 0;
}

.summary-row em {
	font-style: normal;
	margin-left: 5px;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

.summary-total {
	margin-top: 6px;
	padding-top: 15px;
	border-top: 1px solid var(--line);
	font-size: 16px;
}

.summary-total strong {
	font-family: var(--serif);
	font-size: 23px;
}

.checkout-thanks {
	max-width: 620px;
}

.checkout-thanks-lead {
	font-size: 18px;
	margin-bottom: 26px;
}

@media (max-width: 900px) {
	.checkout-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.checkout-aside {
		position: static;
	}
}
