/* ==========================================================================
   Option 2 — Artist's Atelier
   Tactile, personal, warm.
   - Background: Jenni's own paper texture, set on <body>, with a soft
     Taupe (#D2B48C) overlay at 20% opacity.
   - Signature logo (handwritten PNG) top-left.
   - Category banners: cover photo, backdrop-filter: blur(10px), overlaid
     with a La Belle Aurore script line ("For art loving dog lovers").
   - 4-column grid, gap: 40px, left-aligned metadata.
   - Open Sans (light) for body, Playfair Display for structural heads.
   ========================================================================== */

:root {
	--o2-ink: #2a211a;
	--o2-ink-2: #55463b;
	--o2-mute: #7a6a58;
	--o2-paper: #f4ebd7;
	--o2-taupe: rgba(210, 180, 140, 0.20); /* #D2B48C @ 20% */
	--o2-accent: #8a3d28;
	--o2-line: rgba(42, 33, 26, 0.15);
	--o2-serif: "Playfair Display", Georgia, "Times New Roman", serif;
	--o2-script: "La Belle Aurore", "Homemade Apple", "Brush Script MT", cursive;
	--o2-sans: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* -------------------------------------------------------------------------
   X/Pro site-wide background / Backstretch: keep base colour & layout; texture
   URL is set in option-2.php with !important on background-image.
   ------------------------------------------------------------------------- */
html body.opt2,
body.opt2 {
	background-color: var(--o2-paper) !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center top !important;
	background-attachment: fixed !important;
}
body.opt2 .backstretch {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

body.opt2 {
	margin: 0;
	color: var(--o2-ink);
	font-family: var(--o2-sans);
	font-weight: 300;
	font-size: 15px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	position: relative;
	min-height: 100vh;
}
body.opt2 * { box-sizing: border-box; }
body.opt2 img { display: block; max-width: 100%; }
body.opt2 a { color: inherit; text-decoration: none; }
body.opt2 h1, body.opt2 h2, body.opt2 h3 { font-family: var(--o2-serif); font-weight: 400; margin: 0; letter-spacing: -0.005em; }
body.opt2 p { margin: 0 0 1rem; }

/* 20% taupe wash over the whole page */
.opt2-taupe-wash {
	position: fixed; inset: 0;
	background: var(--o2-taupe);
	pointer-events: none;
	z-index: 0;
}
body.opt2 > *:not(.opt2-taupe-wash) { position: relative; z-index: 1; }

.opt2-kicker {
	font-family: var(--o2-sans);
	font-size: 10.5px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--o2-mute);
	font-weight: 500;
	margin: 0 0 14px;
}
.opt2-kicker--light { color: rgba(255, 252, 240, 0.85); }

/* -------------------------------------------------- Masthead (logo top-left) */
.opt2-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 28px 48px 20px;
}
.opt2-logo { display: inline-flex; align-items: center; }
.opt2-logo img {
	height: 80px;
	width: auto;
	max-width: 280px;
	object-fit: contain;
	filter: drop-shadow(0 1px 0 rgba(0,0,0,0.04));
}
.opt2-logo__fallback {
	font-family: var(--o2-script);
	font-size: 42px;
	color: var(--o2-accent);
	line-height: 1;
}
.opt2-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.opt2-nav a {
	font-size: 11.5px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--o2-ink);
	font-weight: 500;
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
	transition: border-color .25s ease, color .25s ease;
}
.opt2-nav a:hover { border-bottom-color: var(--o2-accent); color: var(--o2-accent); }

/* -------------------------------------------------- Hero intro */
.opt2-hero {
	max-width: 1040px;
	margin: 40px auto 60px;
	padding: 0 48px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.opt2-hero > * {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.opt2-hero__title {
	font-size: clamp(44px, 6vw, 84px);
	line-height: 1.02;
	letter-spacing: -0.012em;
	margin: 10px 0 24px;
	font-weight: 400;
	color: var(--o2-ink);
	text-wrap: balance;
}
.opt2-hero__title span { display: block; }
.opt2-hero__script {
	font-family: var(--o2-script);
	font-size: 1.25em;
	color: var(--o2-accent);
	letter-spacing: 0;
	line-height: 0.85;
	margin-top: 18px;
}
.opt2-hero__lede {
	max-width: 60ch;
	margin: 0 auto;
	color: var(--o2-ink-2);
	font-size: 15px;
	line-height: 1.7;
	text-align: center;
	text-wrap: balance;
}

/* -------------------------------------------------- Category banner */
.opt2-portfolio { padding: 0 0 80px; }
.opt2-series { margin: 0 0 80px; }

.opt2-banner {
	position: relative;
	margin: 0 auto 40px;
	max-width: 1360px;
	min-height: 280px;
	background-size: cover;
	background-position: center 40%;
	overflow: hidden;
	isolation: isolate;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
}
.opt2-banner__veil {
	position: absolute; inset: 0;
	background: rgba(42, 33, 26, 0.28);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 1;
}
/* Subtle inner sheen so the taupe wash doesn't wash out the text */
.opt2-banner::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(42,33,26,0.10), rgba(42,33,26,0.45));
	z-index: 2;
}
.opt2-banner__inner {
	position: relative;
	z-index: 3;
	padding: 56px 32px;
	max-width: 780px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.opt2-banner__script {
	font-family: var(--o2-script);
	font-weight: 400;
	font-size: clamp(44px, 6vw, 78px);
	line-height: 1;
	margin: 0 0 18px;
	color: #fff;
	text-shadow: 0 2px 18px rgba(0,0,0,0.25);
	letter-spacing: 0;
}
.opt2-banner__blurb {
	max-width: 56ch;
	margin: 0 auto;
	color: rgba(255, 252, 240, 0.92);
	font-size: 14.5px;
	line-height: 1.65;
}

/* -------------------------------------------------- 4-column grid */
.opt2-grid {
	list-style: none;
	margin: 0 auto;
	padding: 0 48px;
	max-width: 1400px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 40px;
}
.opt2-card { margin: 0; }
.opt2-card__link { display: block; color: inherit; }
.opt2-card__frame {
	position: relative;
	width: 100%;
	display: block;
	background: transparent;
}
.opt2-card__frame img {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: top;
	transition: transform .4s ease, filter .4s ease, opacity .4s ease;
	box-shadow: 0 14px 34px -22px rgba(42, 33, 26, 0.45);
}
.opt2-card__link:hover .opt2-card__frame img { transform: translateY(-3px); }

/* Handwritten "sold." stamped in La Belle Aurore script, overlapping the
   bottom-right corner of the image. Warm terracotta to echo the banner headings. */
.opt2-card__sold-mark {
	position: absolute;
	right: 10px;
	bottom: 8px;
	font-family: var(--o2-script);
	font-weight: 400;
	font-size: clamp(44px, 4.5vw, 64px);
	line-height: 0.85;
	color: var(--o2-accent);
	transform: rotate(-6deg);
	transform-origin: right bottom;
	text-shadow:
		0 2px 14px rgba(255, 252, 240, 0.55),
		0 1px 0 rgba(255, 252, 240, 0.4);
	letter-spacing: 0;
	pointer-events: none;
	z-index: 2;
}
.opt2-card.sold .opt2-card__frame img {
	filter: sepia(0.12) saturate(0.75);
	opacity: 0.88;
}
.opt2-card.sold:hover .opt2-card__frame img {
	filter: sepia(0.12) saturate(0.85);
	opacity: 0.95;
}
.opt2-card.sold .opt2-card__title { color: var(--o2-mute); }

.opt2-card__meta { margin-top: 14px; text-align: left; }
.opt2-card__title {
	font-family: var(--o2-serif);
	font-style: italic;
	font-weight: 400;
	font-size: 17px;
	color: var(--o2-ink);
	margin: 0 0 4px;
	letter-spacing: -0.005em;
}
.opt2-card__line {
	font-family: var(--o2-sans);
	font-size: 11.5px;
	color: var(--o2-mute);
	letter-spacing: 0.03em;
	margin: 0 0 2px;
	font-weight: 300;
}
.opt2-card__price {
	font-family: var(--o2-sans);
	font-size: 12px;
	letter-spacing: 0.12em;
	font-weight: 500;
	color: var(--o2-ink);
	text-transform: uppercase;
	margin: 0;
}
.opt2-sold { color: var(--o2-accent); letter-spacing: 0.24em; }

/* -------------------------------------------------- View more */
.opt2-view-more {
	display: flex;
	justify-content: center;
	padding: 48px 48px 0;
	max-width: 1400px;
	margin: 0 auto;
}
.opt2-view-more__btn {
	appearance: none;
	background: transparent;
	border: 1.5px solid var(--o2-ink);
	color: var(--o2-ink);
	font-family: var(--o2-sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	padding: 16px 40px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.opt2-view-more__btn:hover {
	background: var(--o2-ink);
	color: #fff;
}
.opt2-view-more__btn:focus-visible { outline: 2px solid var(--o2-accent); outline-offset: 3px; }
.opt2-view-more__arrow {
	font-size: 14px;
	letter-spacing: 0;
	transition: transform .25s ease;
}
.opt2-view-more__btn:hover .opt2-view-more__arrow { transform: translateX(4px); }

/* -------------------------------------------------- Studio / About */
.opt2-studio { padding: 120px 0; border-top: 1px dashed var(--o2-line); border-bottom: 1px dashed var(--o2-line); }
.opt2-studio__inner {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 48px;
	text-align: center;
}
.opt2-studio__script {
	font-family: var(--o2-script);
	font-weight: 400;
	font-size: clamp(44px, 6vw, 76px);
	color: var(--o2-accent);
	line-height: 0.95;
	margin-bottom: 24px !important;
}
.opt2-studio p { color: var(--o2-ink-2); font-weight: 300; font-size: 15px; line-height: 1.75; }

.opt2-facts {
	list-style: none; padding: 0; margin: 32px 0 0;
	display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px;
	text-align: left;
}
.opt2-facts li {
	font-size: 12.5px;
	line-height: 1.55;
	border-top: 1px dashed var(--o2-line);
	padding-top: 10px;
	color: var(--o2-ink);
	font-weight: 300;
}
.opt2-facts strong {
	display: block;
	font-size: 10.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--o2-accent);
	font-weight: 500;
	margin-bottom: 4px;
}

/* -------------------------------------------------- Commissions */
.opt2-commission { padding: 120px 0; text-align: center; }
.opt2-commission__inner { max-width: 760px; margin: 0 auto; padding: 0 48px; }
.opt2-commission__script {
	font-family: var(--o2-script);
	font-weight: 400;
	font-size: clamp(48px, 7vw, 92px);
	color: var(--o2-accent);
	line-height: 0.9;
	margin-bottom: 18px !important;
}
.opt2-commission__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.opt2-commission p { color: var(--o2-ink-2); font-weight: 300; max-width: 56ch; margin: 0 auto 24px; text-align: center; }
.opt2-btn {
	display: inline-block;
	font-family: var(--o2-serif);
	font-style: italic;
	font-size: 22px;
	color: var(--o2-ink);
	border-bottom: 1px solid var(--o2-accent);
	padding: 4px 2px;
	transition: color .2s ease;
}
.opt2-btn:hover { color: var(--o2-accent); }

/* -------------------------------------------------- Footer */
.opt2-foot {
	padding: 28px 48px;
	border-top: 1px dashed var(--o2-line);
}
.opt2-foot__inner {
	max-width: 1360px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 16px; flex-wrap: wrap;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--o2-mute);
	font-weight: 500;
}

/* -------------------------------------------------- Responsive */
@media (max-width: 1100px) {
	.opt2-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 780px) {
	.opt2-head { flex-direction: column; gap: 16px; padding: 24px 24px 16px; }
	.opt2-nav { justify-content: center; gap: 18px; }
	.opt2-logo img { height: 62px; }
	.opt2-hero { padding: 0 24px; }
	.opt2-banner { min-height: 220px; margin: 0 0 28px; }
	.opt2-banner__inner { padding: 40px 24px; }
	.opt2-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 24px; gap: 28px; }
	.opt2-studio { padding: 72px 0; }
	.opt2-commission { padding: 80px 0; }
	.opt2-facts { grid-template-columns: 1fr; }
	.opt2-foot { padding: 24px; }
}
@media (max-width: 480px) {
	.opt2-grid { grid-template-columns: 1fr; gap: 28px; }
	.opt2-card__frame { height: 280px; }
}
