/* =========================================================
   Anna Vineyard — editorial theme
   Tokens → Base → Motion → Header → Hero → Chapters → Quote →
   Book spread → Freebie → Testimonials → Musings → Reads →
   Gallery/captions → Marginalia → About → Press Kit → Footer →
   Article → Utilities
   ========================================================= */

:root {
	/* ------- Palette ------- */
	--ivory:      #FAF7F1;
	--ivory-2:    #F3EBDB;
	--ivory-3:    #EDE4D1;
	--paper:      #FFFDF8;

	--sage:       #8FA58A;
	--sage-dark:  #6E8669;
	--sage-deep:  #425240;
	--sage-wash:  #DCE5D6;
	--sage-mist:  #EEF2E9;

	--ochre:      #C9A86B;
	--ochre-dark: #A8884D;

	--ink:        #2A2724;
	--ink-soft:   #585048;
	--ink-muted:  #8B8072;
	--rule:       #DFD6C3;

	/* ------- Type ------- */
	--font-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
	--font-body:    "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-hand:    "Homemade Apple", "Bradley Hand", cursive;

	--fs-micro: 0.72rem;
	--fs-xs:    0.8125rem;
	--fs-sm:    0.9375rem;
	--fs-base:  1.0625rem;
	--fs-lg:    1.25rem;
	--fs-xl:    1.75rem;
	--fs-2xl:   clamp(2rem, 4vw, 3rem);
	--fs-3xl:   clamp(2.75rem, 6vw, 4.5rem);
	--fs-hero:  clamp(3.5rem, 11vw, 10rem);

	/* ------- Spacing ------- */
	--space-1: 0.5rem;
	--space-2: 1rem;
	--space-3: 1.5rem;
	--space-4: 2rem;
	--space-5: 3rem;
	--space-6: 4.5rem;
	--space-7: 6.5rem;
	--space-8: 9rem;
	--space-9: 12rem;

	/* ------- Layout ------- */
	--wrap:        1200px;
	--wrap-narrow: 680px;
	--wrap-wide:   1360px;
	--wrap-reading:720px;
	--radius-sm:   3px;
	--radius:      10px;
	--radius-lg:   20px;

	--shadow-sm:  0 1px 2px rgba(42,39,36,.06), 0 1px 3px rgba(42,39,36,.04);
	--shadow:     0 18px 48px -20px rgba(42,39,36,.22), 0 4px 12px rgba(42,39,36,.06);
	--shadow-lg:  0 40px 80px -28px rgba(42,39,36,.28), 0 8px 24px rgba(42,39,36,.08);
	--shadow-book:0 40px 60px -30px rgba(42,39,36,.35), 0 10px 24px -8px rgba(42,39,36,.18);
}

/* ========== RESET-ish ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
	margin: 0;
	background: var(--ivory);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: var(--fs-base);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
	/* Cream paper texture — subtle SVG noise baked into background */
	background-image:
		radial-gradient(ellipse at 20% 10%, rgba(220,229,214,.35), transparent 50%),
		radial-gradient(ellipse at 80% 90%, rgba(220,229,214,.25), transparent 55%),
		url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.17  0 0 0 0 0.14  0 0 0 0.035 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
	background-attachment: fixed, fixed, fixed;
	background-size: auto, auto, 300px 300px;
}
img, svg, picture { max-width: 100%; display: block; }
.wc-img { display: block; height: auto; }

/* Chapter-mark fleuron sits small, colored by currentColor of parent .chapter-mark */
.av-fleuron { width: 56px; height: auto; color: inherit; }

a {
	color: var(--sage-deep);
	text-decoration: none;
	border-bottom: 1px solid rgba(66,82,64,.25);
	transition: color .2s ease, border-color .2s ease, opacity .2s ease;
}
a:hover { color: var(--ochre-dark); border-bottom-color: currentColor; }

h1, h2, h3, h4, h5 {
	font-family: var(--font-display);
	font-weight: 500;
	color: var(--ink);
	letter-spacing: -0.015em;
	line-height: 1.05;
	margin: 0 0 var(--space-3);
}
h1 { font-size: var(--fs-hero); font-weight: 500; letter-spacing: -0.025em; }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
p  { margin: 0 0 var(--space-3); }
small { font-size: var(--fs-sm); color: var(--ink-soft); }

::selection { background: var(--sage-wash); color: var(--ink); }

hr.rule {
	border: 0;
	height: 1px;
	background: var(--rule);
	max-width: 80px;
	margin: var(--space-4) auto;
	opacity: .7;
}

/* ========== MOTION ==========
   Fail-open: .reveal is visible by default. Animation only kicks in when
   theme.js opts in by adding `has-motion` to <html>. This way a JS failure
   (404, syntax error, slow network) doesn't leave the site invisible. */
.reveal { opacity: 1; transform: none; }

html.has-motion .reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 1s cubic-bezier(.2,.6,.2,1), transform 1s cubic-bezier(.2,.6,.2,1);
	transition-delay: var(--stagger, 0ms);
	will-change: transform, opacity;
}
html.has-motion .reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
	html.has-motion .reveal { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
	.ken-burns { animation: none !important; }
	.drift-leaf { animation: none !important; }
}

/* ========== LAYOUT ========== */
.wrap        { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--space-4); }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 var(--space-4); }
.wrap-wide   { max-width: var(--wrap-wide); margin: 0 auto; padding: 0 var(--space-4); }
.wrap-reading{ max-width: var(--wrap-reading); margin: 0 auto; padding: 0 var(--space-4); }

.section       { padding: var(--space-8) 0; position: relative; }
.section--sm   { padding: var(--space-6) 0; }
.section--tint { background: var(--ivory-2); }
.section--deep { background: var(--sage-deep); color: var(--sage-wash); }
.section--paper{ background: var(--paper); }

.text-center { text-align: center; }
.mt-3 { margin-top: var(--space-3); }
.mt-5 { margin-top: var(--space-5); }
.mt-7 { margin-top: var(--space-7); }

.visually-hidden {
	position: absolute !important;
	height: 1px; width: 1px; overflow: hidden;
	clip: rect(1px,1px,1px,1px);
	white-space: nowrap;
}

/* ========== HEADER ========== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: color-mix(in srgb, var(--ivory) 82%, transparent);
	backdrop-filter: saturate(150%) blur(14px);
	-webkit-backdrop-filter: saturate(150%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled {
	border-bottom-color: color-mix(in srgb, var(--rule) 70%, transparent);
	box-shadow: 0 8px 24px -18px rgba(42,39,36,.25);
}
.site-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--space-3);
	padding: 0.9rem 0;
}
.site-brand {
	display: inline-flex; align-items: center; gap: .7rem;
	font-family: var(--font-display);
	font-size: 1.65rem;
	font-weight: 500;
	font-style: italic;
	color: var(--ink);
	border: none;
	letter-spacing: -0.01em;
}
.site-brand:hover { color: var(--sage-deep); border: none; }
.site-brand svg,
.site-brand img.wc-img { width: 28px; height: auto; }

.site-nav ul {
	list-style: none;
	display: flex; gap: var(--space-4);
	margin: 0; padding: 0;
}
.site-nav a {
	color: var(--ink-soft);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	border: none;
	padding: 6px 2px;
	border-bottom: 1px solid transparent;
}
.site-nav a:hover,
.site-nav .current-menu-item a { color: var(--ink); border-bottom-color: var(--sage); }

.nav-toggle {
	display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
	display: block; width: 22px; height: 2px; background: var(--ink); position: relative;
	transition: transform .2s ease;
}
.nav-toggle span::before, .nav-toggle span::after {
	content: ""; position: absolute; left: 0;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }

@media (max-width: 900px) {
	.nav-toggle { display: inline-flex; }
	.site-nav {
		position: absolute; top: 100%; left: 0; right: 0;
		background: var(--ivory);
		border-bottom: 1px solid var(--rule);
		display: none; padding: var(--space-3) 0;
	}
	.site-nav.is-open { display: block; }
	.site-nav ul { flex-direction: column; gap: var(--space-2); padding: 0 var(--space-3); }
}

/* ========== BUTTONS ========== */
.btn {
	display: inline-flex; align-items: center; gap: .6rem;
	padding: 1rem 1.8rem;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	border-radius: 999px;
	border: 1px solid transparent;
	background: var(--sage-deep);
	color: var(--ivory);
	cursor: pointer;
	transition: transform .16s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
	box-shadow: 0 4px 20px -8px rgba(66,82,64,.4);
}
.btn:hover { background: var(--ink); color: var(--ivory); transform: translateY(-2px); border: 1px solid transparent; box-shadow: 0 14px 28px -10px rgba(42,39,36,.35); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); box-shadow: none; }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }
.btn--ochre { background: var(--ochre-dark); box-shadow: 0 4px 20px -8px rgba(168,136,77,.5); }
.btn--ochre:hover { background: var(--ochre); color: var(--ink); }

/* Bookmark-shaped button (for book CTAs) */
.btn--bookmark {
	position: relative;
	border-radius: 2px 2px 0 0;
	padding-bottom: 1.3rem;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), 50% 100%, 0 calc(100% - 10px));
	box-shadow: none;
}

/* ========== EYEBROW / CHAPTER MARKERS ========== */
.eyebrow {
	display: inline-flex; align-items: center; gap: .7rem;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: var(--fs-micro);
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--sage-dark);
	margin: 0 0 var(--space-2);
}
.eyebrow::before,
.eyebrow::after {
	content: ""; display: inline-block;
	width: 28px; height: 1px; background: var(--sage);
	opacity: .7;
}
.eyebrow--left::after, .eyebrow--right::before { display: none; }

.chapter-mark {
	display: flex; flex-direction: column; align-items: center;
	gap: .7rem;
	margin: 0 auto var(--space-3);
	color: var(--sage-dark);
}
.chapter-mark svg:not(.av-fleuron) { width: 28px; height: auto; opacity: .85; }
.chapter-mark .av-fleuron { width: 64px; opacity: .9; }
.chapter-mark__numeral {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: 1.25rem;
	letter-spacing: 0.4em;
	color: var(--ochre-dark);
	text-transform: uppercase;
}
.chapter-mark__label {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: var(--fs-micro);
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--sage-dark);
}

/* Section title block */
.section-title {
	text-align: center;
	max-width: 740px;
	margin: 0 auto var(--space-6);
}
.section-title h2 {
	font-size: var(--fs-3xl);
	font-weight: 400;
	font-style: italic;
	line-height: 1;
}
.section-title h2 em {
	font-style: normal;
}
.section-title p {
	color: var(--ink-soft);
	max-width: 54ch;
	margin: var(--space-3) auto 0;
	font-size: var(--fs-lg);
	font-style: italic;
	font-family: var(--font-display);
}

/* Divider leaf (decorative rule) — real watercolor sprig, sized small */
.divider-leaf {
	display: flex; align-items: center; justify-content: center;
	margin: var(--space-3) 0 var(--space-4);
	gap: var(--space-3);
}
.divider-leaf::before,
.divider-leaf::after {
	content: ""; display: block;
	height: 1px; width: 60px;
	background: var(--rule);
}
.divider-leaf img, .divider-leaf svg {
	width: 40px; height: auto;
	opacity: .85;
}

/* ========== HERO (photo-led) ========== */
.hero {
	position: relative;
	min-height: 92vh;
	display: grid;
	place-items: center;
	overflow: hidden;
	color: var(--ivory);
	isolation: isolate;
}
.hero__photo {
	position: absolute; inset: 0;
	z-index: 0;
	overflow: hidden;
}
.hero__photo img {
	width: 100%; height: 100%;
	object-fit: cover;
	filter: saturate(.9) contrast(1.02);
}
/* Ken Burns (plain) */
.hero__photo.ken-burns img { animation: kenBurns 28s ease-out forwards; }
@keyframes kenBurns {
	from { transform: scale(1.03); }
	to   { transform: scale(1.08); }
}
/* Mirror — must compose with Ken Burns so scaleX(-1) survives the animation */
.hero__photo.is-flipped img { transform: scaleX(-1) scale(1.03); }
.hero__photo.is-flipped.ken-burns img { animation: kenBurnsFlipped 28s ease-out forwards; }
@keyframes kenBurnsFlipped {
	from { transform: scaleX(-1) scale(1.03); }
	to   { transform: scaleX(-1) scale(1.08); }
}

/* Duotone overlay: warm sage multiply — mood only, keeps photo texture */
.hero__photo::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(42,50,40,.18) 0%, rgba(42,50,40,.1) 40%, rgba(20,26,20,.55) 100%);
	mix-blend-mode: multiply;
}
/* Sage text-column wash — sits above photo, below text. Widens the "green block" and keeps copy legible. */
.hero::before {
	content: "";
	position: absolute; inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(45,58,44,.85) 0%, rgba(66,82,64,.7) 35%, rgba(66,82,64,.35) 55%, rgba(66,82,64,0) 78%);
}
.hero__photo::before {
	content: "";
	position: absolute; inset: 0;
	background: rgba(250,247,241,.12);
	mix-blend-mode: screen;
}

.hero__branch {
	position: absolute; pointer-events: none;
	z-index: 2;
}
.hero__branch img { width: 100%; height: auto; display: block; }
/* Right-hand branch as soft white ghost — desaturate to white, low opacity */
.hero__branch--br {
	bottom: -60px; right: -60px;
	width: 340px;
	transform: rotate(8deg) scaleX(-1);
	opacity: .28;
	filter: brightness(0) invert(1);
	mix-blend-mode: screen;
}
@media (max-width: 720px) {
	.hero__branch--br { width: 180px; bottom: -30px; right: -50px; opacity: .32; }
}

.hero__inner {
	position: relative; z-index: 3;
	max-width: var(--wrap);
	width: 100%;
	margin: 0 auto;
	padding: var(--space-6) var(--space-4) var(--space-4);
	align-self: center;
	box-sizing: border-box;
}
/* Inside the .wrap-aligned container, clamp the text block width so it doesn't
   stretch across the hero and collide with the photo subject. */
.hero__inner > * { max-width: 620px; }
.hero--align-left  .hero__inner > * { margin-left: 0;  margin-right: auto; }
.hero--align-right .hero__inner > * { margin-right: 0; margin-left:  auto; }
.hero--align-center .hero__inner > * { margin-left: auto; margin-right: auto; max-width: 1000px; }
.hero--align-left  .hero__inner { text-align: left; }
.hero--align-right .hero__inner { text-align: right; }
.hero--align-center .hero__inner { text-align: center; }

.hero--align-left  .hero__eyebrow { justify-content: flex-start; }
.hero--align-left  .hero__eyebrow::after { display: none; }
.hero--align-right .hero__eyebrow { justify-content: flex-end; }
.hero--align-right .hero__eyebrow::before { display: none; }
.hero--align-left  .hero__ctas { justify-content: flex-start; }
.hero--align-right .hero__ctas { justify-content: flex-end; }
.hero--align-left  .hero__subhead,
.hero--align-right .hero__subhead { margin-left: 0; margin-right: 0; }
.hero__eyebrow {
	color: var(--sage-wash);
	letter-spacing: 0.3em;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-flex;
}
.hero__eyebrow::before,
.hero__eyebrow::after { background: var(--sage-wash); opacity: .7; }

.hero h1 {
	color: var(--ivory);
	font-size: clamp(2.5rem, 6vw, 5.25rem);
	font-weight: 400;
	font-style: italic;
	line-height: 1.02;
	margin: var(--space-4) 0 var(--space-4);
	letter-spacing: -0.02em;
	text-shadow: 0 2px 40px rgba(20,26,20,.6);
}
.hero--align-center h1 { font-size: clamp(3rem, 8vw, 7rem); }
.hero h1 .display-roman { font-style: normal; display: block; }
.hero h1 .display-em { display: block; font-style: italic; color: var(--ivory); }
.hero h1 .display-amp {
	display: inline-block;
	font-size: 0.55em;
	color: var(--ochre);
	font-style: italic;
	vertical-align: middle;
	margin: 0 0.2em;
	opacity: .9;
}
.hero__subhead {
	max-width: 54ch;
	margin: 0 auto var(--space-5);
	color: rgba(250,247,241,.86);
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(1.15rem, 2vw, 1.6rem);
	line-height: 1.45;
}
.hero__ctas {
	display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap;
}
/* Primary hero CTA — invert to ivory so it pops against the sage wash */
.hero__ctas .btn:not(.btn--ghost) {
	background: var(--ivory);
	color: var(--ink);
	box-shadow: 0 6px 24px -10px rgba(0,0,0,.45);
}
.hero__ctas .btn:not(.btn--ghost):hover { background: var(--paper); color: var(--ink); }

.hero__ctas .btn--ghost {
	color: var(--ivory);
	border-color: rgba(250,247,241,.7);
}
.hero__ctas .btn--ghost:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }

/* Actions cluster: CTAs + Begin stacked; container hugs CTA row width so Begin can center */
.hero__actions {
	display: inline-flex;
	flex-direction: column;
	align-items: stretch;
}
.hero__ctas { justify-content: flex-start; }

.hero__scroll {
	display: inline-flex; align-items: center; gap: .7rem;
	margin-top: var(--space-4);
	align-self: center;            /* centers beneath the two CTA buttons */
	color: var(--sage-wash);
	font-family: var(--font-body);
	font-size: 0.7rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	opacity: .85;
	border: none;
	padding: 8px 0;
	transition: opacity .2s ease, transform .2s ease;
}
.hero__scroll:hover { opacity: 1; color: var(--ivory); border: none; transform: translateY(1px); }
.hero__scroll svg { width: 18px; height: auto; color: var(--sage-wash); }
.hero__scroll .scroll-dot {
	stroke: var(--ivory);
	animation: scrollDot 2.4s ease-in-out infinite;
}
@keyframes scrollDot {
	0%   { transform: translateY(0); opacity: 1; }
	70%  { transform: translateY(14px); opacity: 0; }
	100% { transform: translateY(0); opacity: 0; }
}

.drift-leaf {
	position: absolute;
	top: 14%;
	right: 18%;
	width: 46px;
	z-index: 3;
	animation: driftLeaf 22s linear infinite;
	opacity: .8;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,.15));
}
.drift-leaf img { width: 100%; height: auto; display: block; }
@keyframes driftLeaf {
	0%   { transform: translate(0, -20px) rotate(0deg); opacity: 0; }
	10%  { opacity: .8; }
	80%  { opacity: .6; }
	100% { transform: translate(-200px, 70vh) rotate(420deg); opacity: 0; }
}

@media (max-width: 720px) {
	.hero { min-height: 88vh; }
	.hero__branch--tl { width: 200px; top: -20px; left: -60px; }
	.hero__branch--br { width: 200px; bottom: -20px; right: -60px; }
}

/* ========== PULL QUOTE ========== */
.pullquote {
	background: var(--sage-mist);
	padding: var(--space-8) var(--space-4) calc(var(--space-4) + 20px);
	text-align: center;
	position: relative;
	overflow: hidden;
}

/* Wildflower garden — a scatter of small sprigs along the bottom edge,
   each at a slightly different size/rotation/baseline so they feel like
   wildflowers growing up from the ground rather than a repeating pattern. */
.pullquote__garden {
	margin: var(--space-5) auto 0;
	max-width: 960px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1rem;
	padding: 0 var(--space-3);
	pointer-events: none;
}
.pullquote__sprig {
	display: inline-block;
	flex: 0 0 auto;
	line-height: 0;
	filter: drop-shadow(0 2px 4px rgba(60, 80, 60, 0.06));
}
.pullquote__sprig img {
	display: block;
	width: 100%;
	height: auto;
}
.pullquote__sprig--1 { width: 37px; transform: rotate(-8deg)  translateY(2px); }
.pullquote__sprig--2 { width: 46px; transform: rotate(4deg)   translateY(-6px); }
.pullquote__sprig--3 { width: 34px; transform: rotate(-14deg) translateY(0); }
.pullquote__sprig--4 { width: 44px; transform: rotate(10deg)  translateY(-4px); }
.pullquote__sprig--5 { width: 40px; transform: rotate(-6deg)  translateY(-2px); }
.pullquote__sprig--6 { width: 32px; transform: rotate(16deg)  translateY(4px); }
.pullquote__sprig--7 { width: 50px; transform: rotate(-4deg) translateY(-10px) scaleX(-1); }
@media (max-width: 820px) {
	.pullquote__garden { gap: 0.4rem; padding: 0 var(--space-2); }
	.pullquote__sprig--1 { width: 26px; }
	.pullquote__sprig--2 { width: 32px; }
	.pullquote__sprig--3 { width: 24px; }
	.pullquote__sprig--4 { width: 31px; }
	.pullquote__sprig--5 { width: 28px; }
	.pullquote__sprig--6 { width: 23px; }
	.pullquote__sprig--7 { width: 35px; }
}
@media (max-width: 520px) {
	/* Hide the outliers on very small screens so the row stays legible */
	.pullquote__sprig--3, .pullquote__sprig--6 { display: none; }
}

.pullquote blockquote {
	margin: 0 auto;
	max-width: 26ch;
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(2rem, 5vw, 3.8rem);
	line-height: 1.15;
	color: var(--sage-deep);
	position: relative;
	z-index: 1;
}
.pullquote blockquote::before {
	content: "\201C";
	display: block;
	font-family: var(--font-display);
	font-size: 8rem;
	line-height: .3;
	color: var(--sage);
	opacity: .45;
	margin-bottom: 0.1em;
}
.pullquote .signature {
	margin-top: var(--space-4);
	color: var(--sage-deep);
	position: relative; z-index: 1;
}

/* Signature — Homemade Apple reads like an adult writing with a ballpoint pen.
   A slight rotation makes it feel like it was actually scrawled. */
.av-signature {
	font-family: var(--font-hand);
	font-weight: 400;
	font-size: 2rem;
	color: var(--sage-deep);
	line-height: 1.2;
	margin: 0;
	letter-spacing: 0.01em;
	display: inline-block;
	transform: rotate(-2.5deg);
	transform-origin: left center;
}
.av-signature small {
	display: block;
	font-family: var(--font-body);
	font-size: var(--fs-micro);
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--ink-muted);
	margin-top: 1em;
	transform: rotate(2.5deg);     /* cancel the rotation for the small label */
}
.av-signature-svg {
	max-width: 220px; height: auto;
	margin: 0 auto;
	color: var(--sage-deep);
}

/* ========== FEATURED BOOK — AS A SPREAD ========== */
.book-spread {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: var(--space-7);
	align-items: center;
	max-width: 1120px;
	margin: 0 auto;
	position: relative;
}

.book-cover-3d {
	position: relative;
	aspect-ratio: 2 / 3;
	max-width: 360px;
	margin: 0 auto;
	perspective: 1400px;
}
.book-cover-3d__inner {
	position: relative;
	width: 100%; height: 100%;
	transform: rotateY(-6deg) rotateX(2deg);
	transform-style: preserve-3d;
	transition: transform .6s cubic-bezier(.2,.6,.2,1);
	box-shadow:
		-18px 22px 48px -18px rgba(42,39,36,.55),
		-4px 6px 18px -8px rgba(42,39,36,.28);
}
.book-cover-3d:hover .book-cover-3d__inner { transform: rotateY(-3deg) rotateX(1deg) translateY(-6px); }
.book-cover-3d__face {
	position: absolute; inset: 0;
	background: var(--sage-wash);
	overflow: hidden;
	border-radius: 2px 4px 4px 2px;
	background: linear-gradient(135deg, var(--sage-wash), var(--sage-mist));
}
.book-cover-3d__face img {
	width: 100%; height: 100%; object-fit: cover;
}
.book-cover-3d__face::before {
	/* thin spine highlight */
	content: "";
	position: absolute; left: 0; top: 0; bottom: 0; width: 8px;
	background: linear-gradient(90deg, rgba(0,0,0,.18), rgba(0,0,0,0));
}

/* When a featured image is present (assume pre-rendered 3D mockup with its own shadow)
   — strip all the fake-3D scaffolding, let the image flow naturally, float gently on hover. */
.book-cover-3d:has(img) {
	aspect-ratio: auto;
	max-width: 460px;
	perspective: none;
	background: transparent;
}
.book-cover-3d:has(img) .book-cover-3d__inner {
	position: static;
	height: auto;
	transform: none;
	box-shadow: none;
	transition: transform .5s cubic-bezier(.2,.6,.2,1);
}
.book-cover-3d:has(img):hover .book-cover-3d__inner { transform: translateY(-8px); }
.book-cover-3d:has(img) .book-cover-3d__face {
	position: static;
	inset: auto;
	background: transparent;
	border-radius: 0;
	overflow: visible;
}
.book-cover-3d:has(img) .book-cover-3d__face::before { display: none; }
.book-cover-3d:has(img) .book-cover-3d__face img {
	width: 100%;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 30px 40px rgba(42,39,36,.12));
}
.book-cover-3d__face--placeholder::after {
	content: "The Road\A Less Typical";
	white-space: pre;
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.7rem;
	line-height: 1.1;
	color: var(--sage-deep);
	text-align: center;
	padding: 1rem;
}

.book-spread__body .chapter-mark { align-items: flex-start; margin-bottom: var(--space-3); }
.book-spread__body h2 {
	font-size: clamp(2.5rem, 5.5vw, 4rem);
	font-weight: 400;
	font-style: italic;
	line-height: 1;
}
.book-spread__subtitle {
	font-family: var(--font-display);
	font-style: italic;
	color: var(--ink-soft);
	font-size: 1.25rem;
	margin: var(--space-2) 0 var(--space-4);
	padding-bottom: var(--space-3);
	border-bottom: 1px solid var(--rule);
	max-width: 42ch;
}
.book-spread__synopsis { font-size: var(--fs-lg); line-height: 1.6; max-width: 46ch; }
.book-spread__synopsis::first-letter {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 500;
	font-size: 4.5rem;
	line-height: 0.85;
	float: left;
	margin: 0.12em 0.12em 0 0;
	color: var(--sage-deep);
}
.book-spread__ctas {
	display: flex; gap: var(--space-3); flex-wrap: wrap;
	margin-top: var(--space-4);
}

@media (max-width: 860px) {
	.book-spread { grid-template-columns: 1fr; gap: var(--space-5); }
	.book-cover-3d { max-width: 260px; }
}

/* ========== FREE DOWNLOAD (Ostrich) ========== */
.freebie {
	background: var(--paper);
	border: 1px solid var(--rule);
	border-radius: var(--radius-lg);
	padding: clamp(1.5rem, 4vw, 3.5rem);
	display: grid;
	grid-template-columns: 0.9fr 1.2fr;
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: center;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
}
.freebie::before {
	/* watermark leaf tucked in corner */
	content: "";
	position: absolute; right: -40px; top: -40px; width: 180px; height: 180px;
	background:
		radial-gradient(circle at 30% 30%, rgba(143,165,138,.22), transparent 60%);
	pointer-events: none;
}
.freebie__cover {
	aspect-ratio: 3 / 4;
	background: linear-gradient(135deg, var(--ivory-2), var(--sage-mist));
	border-radius: var(--radius);
	overflow: hidden;
	position: relative;
	box-shadow: var(--shadow);
}
.freebie__cover img { width: 100%; height: 100%; object-fit: cover; }
.freebie__cover--placeholder::after {
	content: "The Voice of\A an Ostrich";
	white-space: pre;
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	text-align: center; padding: 1rem;
	font-family: var(--font-display); font-style: italic;
	font-size: 1.45rem; line-height: 1.1;
	color: var(--sage-deep);
}
.freebie__body h2 {
	font-style: italic;
	font-weight: 400;
	font-size: clamp(2rem, 4vw, 2.8rem);
}
.freebie__form {
	display: flex; gap: var(--space-2); margin-top: var(--space-3);
	flex-wrap: wrap;
}
.freebie__form input[type="email"] {
	flex: 1 1 260px;
	padding: 1rem 1.2rem;
	border: 1px solid var(--rule);
	border-radius: 999px;
	font: inherit;
	background: var(--ivory);
	color: var(--ink);
}
.freebie__form input[type="email"]:focus {
	outline: 2px solid var(--sage);
	outline-offset: 1px;
}
.freebie__privacy { margin-top: .6rem; color: var(--ink-muted); }

@media (max-width: 860px) {
	.freebie { grid-template-columns: 1fr; }
	.freebie__cover { max-width: 260px; margin: 0 auto; }
}

/* When a real cover image is uploaded — stacks nicely and handles landscape mockups. */
.freebie:has(img) {
	grid-template-columns: 1fr;
	gap: var(--space-5);
	text-align: center;
}
.freebie:has(img) .freebie__cover {
	aspect-ratio: auto;
	max-width: 720px;
	margin: 0 auto;
	background: transparent;
	overflow: visible;
	box-shadow: none;
}
.freebie:has(img) .freebie__cover img {
	width: 100%; height: auto;
	object-fit: contain;
	filter: drop-shadow(0 30px 40px rgba(42,39,36,.15));
}
.freebie:has(img) .freebie__body { max-width: 640px; margin: 0 auto; }
.freebie:has(img) .freebie__body .book-spread__subtitle { margin-left: auto; margin-right: auto; }
.freebie:has(img) .freebie__form { justify-content: center; }
.freebie:has(img) .eyebrow { justify-content: center; }

/* ========== TESTIMONIALS ========== */
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--space-4);
}
.testimonial {
	position: relative;
	padding: var(--space-5) var(--space-4) var(--space-4);
	background: var(--paper);
	border: 1px solid var(--rule);
	border-radius: var(--radius);
	transition: transform .3s ease, box-shadow .3s ease;
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.testimonial__quote {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.35rem;
	line-height: 1.45;
	color: var(--ink);
	margin: 0 0 var(--space-3);
}
.testimonial__cite {
	font-size: var(--fs-sm);
	color: var(--ink-soft);
	font-weight: 700;
	letter-spacing: 0.05em;
}
.testimonial__cite small {
	display: block;
	font-weight: 400;
	color: var(--ink-muted);
	letter-spacing: 0.04em;
	margin-top: 0.2em;
	font-style: italic;
}
.testimonial::before {
	content: "\201C";
	position: absolute;
	top: -16px; left: 18px;
	font-family: var(--font-display);
	font-size: 5rem;
	line-height: 1;
	color: var(--sage);
	opacity: .8;
}

/* ========== MUSINGS / POST CARDS ========== */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--space-5);
}
.post-card {
	background: var(--paper);
	border: 1px solid var(--rule);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease;
}
.post-card a { border: none; color: inherit; display: block; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.post-card__thumb {
	aspect-ratio: 3 / 2;
	background: linear-gradient(135deg, var(--sage-wash), var(--sage-mist));
	overflow: hidden;
}
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: var(--space-4); }
.post-card__date {
	font-size: var(--fs-micro);
	letter-spacing: 0.3em;
	color: var(--ink-muted);
	text-transform: uppercase;
	font-weight: 700;
}
.post-card__title {
	font-family: var(--font-display);
	font-size: 1.65rem; font-style: italic;
	margin: .5rem 0 .6rem;
	line-height: 1.15;
	color: var(--ink);
}
.post-card__excerpt {
	font-size: var(--fs-sm);
	color: var(--ink-soft);
	margin: 0;
}

/* ========== FAVOURITE READS ========== */
.reads-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--space-4);
}
.read-card { text-align: center; }
.read-card__cover {
	position: relative;
	aspect-ratio: 2 / 3;
	background: linear-gradient(135deg, var(--sage-wash), var(--sage-mist));
	border-radius: 2px;
	box-shadow: var(--shadow-sm), -10px 14px 30px -16px rgba(42,39,36,.3);
	overflow: hidden;
	margin-bottom: var(--space-2);
	transition: transform .3s ease;
}
/* Watercolor sprig fallback when a Favourite Read has no cover uploaded */
.read-card__cover:not(:has(img))::after {
	content: "";
	position: absolute;
	inset: 18% 28%;
	background: url("../img/watercolor/Nature02.svg") center/contain no-repeat;
	opacity: 0.5;
	pointer-events: none;
}
.read-card:hover .read-card__cover { transform: rotate(-1deg) translateY(-2px); }
.read-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.read-card__title {
	font-family: var(--font-display); font-style: italic; font-size: 1.15rem;
	margin: 0; line-height: 1.2;
}
.read-card__author { font-size: var(--fs-sm); color: var(--ink-soft); margin: 0; font-style: italic; }

/* ========== GALLERY CAPTIONS (museum-plaque style) ========== */
.gallery-fig {
	margin: var(--space-5) 0;
	display: flex; flex-direction: column; align-items: center;
}
.gallery-fig img {
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	max-width: 100%;
}
.gallery-fig figcaption {
	font-family: var(--font-display);
	font-style: italic;
	color: var(--ink-muted);
	font-size: var(--fs-sm);
	margin-top: var(--space-2);
	text-align: center;
	max-width: 52ch;
}
.gallery-fig figcaption::before {
	content: "";
	display: inline-block;
	width: 20px; height: 1px;
	background: var(--ink-muted);
	vertical-align: middle;
	margin-right: .6em; opacity: .6;
}

/* Horizontal scrolling gallery (optional) */
.gallery-scroll {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(260px, 320px);
	gap: var(--space-3);
	overflow-x: auto;
	padding-bottom: var(--space-3);
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}
.gallery-scroll::-webkit-scrollbar { height: 8px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 4px; }
.gallery-scroll > figure { scroll-snap-align: start; margin: 0; }
.gallery-scroll > figure img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow); }

/* ========== MARGINALIA (About page) ========== */
.reading {
	max-width: var(--wrap-reading);
	margin: 0 auto;
	padding: 0 var(--space-4);
	position: relative;
	font-size: 1.12rem;
	line-height: 1.8;
}
.reading > p:first-of-type::first-letter {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 500;
	font-size: 5.5rem;
	line-height: 0.85;
	float: left;
	margin: 0.08em 0.12em 0 -0.08em;
	color: var(--sage-deep);
}

.marginalia {
	position: relative;
	padding: var(--space-3) 0;
}
.marginalia__note {
	font-family: var(--font-display);
	font-style: italic;
	color: var(--sage-deep);
	font-size: 1.05rem;
	line-height: 1.35;
	position: absolute;
	width: 220px;
}
.marginalia__note--left  { left: calc(-220px - var(--space-4)); top: 0; text-align: right; }
.marginalia__note--right { right: calc(-220px - var(--space-4)); top: 0; text-align: left; }
.marginalia__note::before {
	content: "";
	display: inline-block; width: 40px; height: 1px;
	background: var(--sage); opacity: .5;
	vertical-align: middle; margin: 0 0.5em;
}
@media (max-width: 1080px) {
	.marginalia__note {
		position: static;
		display: block;
		width: auto;
		padding: var(--space-2) var(--space-3);
		border-left: 2px solid var(--sage);
		margin: var(--space-3) 0;
		text-align: left;
	}
	.marginalia__note::before { display: none; }
}

/* ========== ABOUT: BIO SPLIT ========== */
.bio-split {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: var(--space-7);
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
}
.bio-split__photo {
	position: relative;
	aspect-ratio: 4/5;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}
.bio-split__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.bio-split__photo::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 70%, rgba(42,39,36,.18));
	pointer-events: none;
}
.bio-split__caption {
	position: absolute; bottom: var(--space-2); left: var(--space-3);
	font-family: var(--font-display); font-style: italic; color: var(--ivory);
	font-size: var(--fs-sm);
	text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.bio-split__body h1 {
	font-size: clamp(3rem, 6vw, 5rem);
	font-style: italic; font-weight: 400;
	line-height: 1;
}
@media (max-width: 860px) {
	.bio-split { grid-template-columns: 1fr; }
	.bio-split__photo { max-width: 420px; margin: 0 auto; }
}

/* Credentials */
.credentials {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--space-4);
	margin-top: var(--space-5);
}
.credential {
	padding: var(--space-4);
	background: var(--paper);
	border-radius: var(--radius);
	border-top: 2px solid var(--sage);
	box-shadow: var(--shadow-sm);
	transition: transform .25s ease, box-shadow .25s ease;
}
.credential:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.credential h4 { font-family: var(--font-display); font-style: italic; margin: 0 0 .35rem; font-size: 1.35rem; }
.credential p { color: var(--ink-soft); font-size: var(--fs-sm); margin: 0; }

/* ========== PRESS KIT ========== */
.press-kit-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-4);
	margin-top: var(--space-5);
}
.press-card {
	padding: var(--space-4);
	background: var(--paper);
	border: 1px solid var(--rule);
	border-radius: var(--radius);
}
.press-card h3 {
	font-size: 1.4rem;
	font-style: italic;
	font-weight: 400;
}
.press-card a.btn { margin-top: var(--space-2); }
@media (max-width: 720px) { .press-kit-grid { grid-template-columns: 1fr; } }

/* ========== CONTACT ========== */
.contact {
	text-align: center;
	padding: var(--space-8) var(--space-4);
	position: relative;
}
.contact h2 { font-style: italic; font-size: var(--fs-3xl); font-weight: 400; }
.contact__email {
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	color: var(--sage-deep);
	display: inline-block;
	margin-top: var(--space-3);
	border-bottom: 1px solid var(--sage);
	font-style: italic;
}

/* ========== FOOTER ========== */
.site-footer {
	background: var(--sage-deep);
	color: var(--sage-wash);
	padding: var(--space-7) 0 var(--space-4);
	position: relative;
	overflow: hidden;
}
.site-footer::before {
	content: ""; position: absolute;
	top: -20px; left: -40px;
	width: 240px; height: 240px;
	background: radial-gradient(circle, rgba(143,165,138,.3), transparent 60%);
	opacity: .4;
}
.site-footer a { color: var(--ivory); border-bottom-color: color-mix(in srgb, var(--ivory) 30%, transparent); }
.site-footer a:hover { color: var(--paper); border-bottom-color: var(--paper); }
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: var(--space-6);
	align-items: start;
	position: relative; z-index: 1;
}
.site-footer__brand h3 {
	font-family: var(--font-display);
	font-size: 2rem; color: var(--ivory);
	font-style: italic; font-weight: 400;
	margin-bottom: var(--space-2);
}
.site-footer__brand p { color: var(--sage-wash); font-size: var(--fs-sm); margin: 0; max-width: 36ch; font-style: italic; }
.site-footer h4 {
	font-family: var(--font-body);
	font-size: var(--fs-micro);
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--paper);
	margin-bottom: var(--space-3);
	font-weight: 700;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: .6rem; font-size: var(--fs-sm); }
.site-footer__legal {
	margin-top: var(--space-6); padding-top: var(--space-3);
	border-top: 1px solid color-mix(in srgb, var(--sage-wash) 30%, transparent);
	font-size: var(--fs-xs); color: color-mix(in srgb, var(--sage-wash) 85%, transparent);
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-2);
	font-style: italic;
	position: relative; z-index: 1;
}
.socials { display: inline-flex; gap: var(--space-2); margin-top: var(--space-2); }
.socials a { border: none; color: var(--ivory); display: inline-flex; }
.socials svg { width: 22px; height: 22px; }

@media (max-width: 860px) {
	.site-footer__grid { grid-template-columns: 1fr; }
}

/* ========== ARTICLE / SINGLE POST ========== */
.article {
	max-width: var(--wrap-reading);
	margin: 0 auto;
	padding: var(--space-7) var(--space-4);
	font-size: 1.14rem;
	line-height: 1.8;
}
.article__meta {
	color: var(--ink-muted);
	font-size: var(--fs-micro);
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 700;
}
.article h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-style: italic;
	font-weight: 400;
	margin-top: var(--space-3);
	line-height: 1.05;
}
.article img { border-radius: var(--radius); margin: var(--space-5) 0; box-shadow: var(--shadow); }
.article blockquote {
	border-left: 3px solid var(--sage);
	padding: 0 var(--space-3);
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.6rem;
	color: var(--ink-soft);
	margin: var(--space-5) 0;
	line-height: 1.35;
}
.article p:first-of-type::first-letter {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 500;
	font-size: 5.25rem;
	line-height: 0.85;
	float: left;
	margin: 0.1em 0.12em 0 -0.08em;
	color: var(--sage-deep);
}

/* ========== COLOPHON ========== */
.colophon {
	border-top: 1px solid var(--rule);
	margin-top: var(--space-6);
	padding-top: var(--space-4);
	text-align: center;
	color: var(--ink-muted);
	font-family: var(--font-display);
	font-style: italic;
	font-size: var(--fs-sm);
}
.colophon strong { color: var(--ink-soft); font-weight: 500; }
.colophon p { margin: 0.3rem 0; }

/* ---------- Pullquote sizing (2026-04-22 content update) ---------- */
.pullquote blockquote {
	font-size: clamp(1.35rem, 1.1rem + 1vw, 2.1rem);
	line-height: 1.35;
}
.pullquote__line {
	display: block;
}
.pullquote__line + .pullquote__line {
	margin-top: 0.7em;
}

/* ---------- Published In strip (2026-04-22) ---------- */
.published-in__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: var(--space-4);
}
.published-in__card {
	display: block;
	padding: 1.6rem 1.8rem;
	background: var(--ivory, #fbf8f1);
	border: 1px solid color-mix(in srgb, var(--sage-deep, #5a7a5a) 20%, transparent);
	border-radius: 6px;
	color: inherit;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.published-in__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0,0,0,0.06);
	border-color: color-mix(in srgb, var(--sage-deep, #5a7a5a) 45%, transparent);
}
.published-in__card h3 {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.35rem;
	margin: 0.3rem 0 0.5rem;
}
.published-in__meta {
	color: var(--sage-deep, #5a7a5a);
	margin: 0;
}
.published-in__link {
	display: inline-block;
	margin-top: 0.9rem;
	font-size: 0.92rem;
	color: var(--ochre, #b28a3c);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ---------- Contact form (2026-04-22) ---------- */
.contact-form { max-width: 40rem; margin: 0 auto; }
.contact-form__hp { position: absolute; left: -9999px; top: -9999px; }
.contact-form__notice {
	padding: 1.2rem 1.4rem;
	border-radius: 6px;
	margin-bottom: 1.6rem;
	font-size: 0.95rem;
}
.contact-form__notice--ok {
	background: color-mix(in srgb, var(--sage-deep, #5a7a5a) 12%, transparent);
	border: 1px solid color-mix(in srgb, var(--sage-deep, #5a7a5a) 35%, transparent);
	color: var(--sage-deep, #3d5a3d);
}
.contact-form__notice--err {
	background: rgba(168,90,58,0.08);
	border: 1px solid rgba(168,90,58,0.3);
	color: #a85a3a;
}
.contact-form__row { display: flex; flex-direction: column; margin-bottom: 1.2rem; }
.contact-form__row label {
	font-family: var(--font-display);
	font-style: italic;
	color: var(--sage-deep, #5a7a5a);
	margin-bottom: 0.35rem;
	font-size: 0.95rem;
}
.contact-form__row input,
.contact-form__row textarea {
	font: inherit;
	font-family: var(--font-body);
	padding: 0.75rem 0.9rem;
	background: var(--ivory, #fbf8f1);
	border: 1px solid color-mix(in srgb, var(--sage-deep, #5a7a5a) 25%, transparent);
	border-radius: 4px;
	color: var(--charcoal, #2c2c2c);
	transition: border-color 150ms ease, box-shadow 150ms ease;
}
.contact-form__row textarea { resize: vertical; min-height: 10rem; }
.contact-form__row input:focus,
.contact-form__row textarea:focus {
	outline: none;
	border-color: var(--sage-deep, #5a7a5a);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--sage-deep, #5a7a5a) 18%, transparent);
}
.contact-form__row--submit { margin-top: 0.6rem; }
