/* =========================================================================
   DEN OF EVE — GLOBAL DESIGN SYSTEM
   Warm earth tones. Natural texture. Elegant, modern, premium.
   Calm. Grounded. Feminine. Strong. Knowledgeable.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------------------- */
:root {
	/* Color — earth & botanical palette */
	--doe-bark:        #2B2118;
	--doe-earth:        #4A3324;
	--doe-clay:          #BE7452;
	--doe-terracotta:    #A85C3B;
	--doe-sage:          #7C9473;
	--doe-moss:          #5B6E52;
	--doe-gold:          #B8935A;
	--doe-gold-light:    #D8B87E;
	--doe-cream:         #F7F1E6;
	--doe-linen:         #EFE5D4;
	--doe-white:         #FFFFFF;
	--doe-ink:           #2B2521;
	--doe-ink-soft:      #574C41;

	/* Semantic aliases */
	--doe-color-bg:            var(--doe-cream);
	--doe-color-surface:       var(--doe-white);
	--doe-color-text:          var(--doe-ink);
	--doe-color-text-muted:    var(--doe-ink-soft);
	--doe-color-heading:       var(--doe-earth);
	--doe-color-accent:        var(--doe-terracotta);
	--doe-color-accent-alt:    var(--doe-sage);
	--doe-color-border:        rgba(74, 51, 36, 0.14);

	/* Typography */
	--doe-font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
	--doe-font-body: 'Jost', 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--doe-fs-base: 1.0625rem;
	--doe-lh-base: 1.7;

	/* Layout */
	--doe-container-width: 1200px;
	--doe-container-pad: clamp(1.25rem, 4vw, 2.5rem);
	--doe-radius-sm: 4px;
	--doe-radius-md: 10px;
	--doe-radius-lg: 24px;
	--doe-shadow-soft: 0 12px 36px rgba(43, 33, 24, 0.10);
	--doe-shadow-lift: 0 20px 48px rgba(43, 33, 24, 0.16);
	--doe-transition: 220ms ease;
}

/* -------------------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.den-of-eve-site,
body.den-of-eve-site.custom-background {
	background-color: var(--doe-color-bg);
	color: var(--doe-color-text);
	font-family: var(--doe-font-body);
	font-size: var(--doe-fs-base);
	line-height: var(--doe-lh-base);
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.den-of-eve-site h1,
.den-of-eve-site h2,
.den-of-eve-site h3,
.den-of-eve-site h4,
.den-of-eve-site h5,
.den-of-eve-site h6 {
	font-family: var(--doe-font-heading);
	color: var(--doe-color-heading);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 0.01em;
}

.den-of-eve-site a:not(.doe-btn) {
	color: var(--doe-color-accent);
	text-decoration: none;
	transition: color var(--doe-transition);
}

.den-of-eve-site a:not(.doe-btn):hover,
.den-of-eve-site a:not(.doe-btn):focus {
	color: var(--doe-earth);
}

.den-of-eve-site img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	width: 100%;
	max-width: var(--doe-container-width);
	margin-inline: auto;
	padding-inline: var(--doe-container-pad);
}

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

.skip-link.screen-reader-text {
	z-index: 100000;
	background: var(--doe-earth);
	color: var(--doe-white);
	padding: 0.75em 1.25em;
	border-radius: var(--doe-radius-sm);
}

.skip-link.screen-reader-text:focus {
	position: fixed;
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	clip: auto;
}

/* -------------------------------------------------------------------------
   3. BUTTONS
   ------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	padding: 0.95em 2em;
	border-radius: 999px;
	font-family: var(--doe-font-body);
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color var(--doe-transition), color var(--doe-transition), border-color var(--doe-transition), transform var(--doe-transition);
}

.btn:hover,
.btn:focus {
	transform: translateY(-2px);
}

.btn--gold {
	background-color: var(--doe-gold);
	color: var(--doe-white);
}

.btn--gold:hover,
.btn--gold:focus {
	background-color: var(--doe-earth);
	color: var(--doe-white);
}

.btn--dark {
	background-color: var(--doe-earth);
	color: var(--doe-cream);
}

.btn--dark:hover,
.btn--dark:focus {
	background-color: var(--doe-bark);
	color: var(--doe-cream);
}

.btn--outline {
	background-color: transparent;
	border-color: currentColor;
	color: var(--doe-earth);
}

.btn--outline:hover,
.btn--outline:focus {
	background-color: var(--doe-earth);
	color: var(--doe-cream);
}

/* -------------------------------------------------------------------------
   4. SITE HEADER
   ------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background-color: rgba(247, 241, 230, 0.92);
	backdrop-filter: saturate(140%) blur(10px);
	border-bottom: 1px solid var(--doe-color-border);
	transition: box-shadow var(--doe-transition), background-color var(--doe-transition);
}

.site-header[data-scroll-state="scrolled"] {
	box-shadow: var(--doe-shadow-soft);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-block: 1.1rem;
}

.site-branding__title {
	font-family: var(--doe-font-heading);
	font-size: 1.6rem;
	font-weight: 700;
	margin: 0;
	letter-spacing: 0.02em;
}

/* #masthead anchor boosts specificity above the sitewide
   `.den-of-eve-site a:not(.doe-btn)` rule (global.css:92), which
   otherwise silently wins and renders this in the lighter
   --doe-color-accent instead of the intended --doe-earth — the same
   specificity issue the v0.2.0 button-contrast fix addressed for
   .doe-btn, left unaddressed here until now. */
#masthead .site-branding__title a {
	color: var(--doe-earth);
}

.site-branding__tagline {
	margin: 0;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--doe-color-text-muted);
}

.main-navigation {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
}

.primary-menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 2.1rem;
	margin: 0;
	padding: 0;
}

/* #masthead anchor: same specificity fix as .site-branding__title a
   above — without it, the sitewide a:not(.doe-btn) rule overrides
   this to the lighter --doe-color-accent instead of --doe-earth. */
#masthead .primary-menu a {
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--doe-earth);
	font-weight: 500;
	position: relative;
	padding-bottom: 4px;
}

.primary-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 0;
	height: 1px;
	background-color: var(--doe-gold);
	transition: right var(--doe-transition);
}

.primary-menu a:hover::after,
.primary-menu a:focus::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after {
	right: 0;
}

.primary-menu ul {
	list-style: none;
	margin: 0.5rem 0 0;
	padding: 0.75rem 0;
	position: absolute;
	background: var(--doe-white);
	border-radius: var(--doe-radius-md);
	box-shadow: var(--doe-shadow-lift);
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity var(--doe-transition), transform var(--doe-transition), visibility var(--doe-transition);
}

.primary-menu li {
	position: relative;
}

.primary-menu li:hover > ul,
.primary-menu li:focus-within > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.primary-menu ul li a {
	display: block;
	padding: 0.5rem 1.25rem;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.site-header__cart {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--doe-earth);
	font-weight: 500;
}

.site-header__cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 999px;
	background-color: var(--doe-terracotta);
	color: var(--doe-white);
	font-size: 0.7rem;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 34px;
	height: 34px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}

.menu-toggle__bar {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--doe-earth);
	transition: transform var(--doe-transition), opacity var(--doe-transition);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* -------------------------------------------------------------------------
   5. HERO
   ------------------------------------------------------------------------- */
.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: min(88vh, 820px);
	padding-block: 6rem;
	background-color: var(--doe-earth);
	background-size: cover;
	background-position: center;
	color: var(--doe-cream);
	overflow: hidden;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(43, 33, 24, 0.55) 0%, rgba(43, 33, 24, 0.78) 100%);
}

.hero__inner {
	position: relative;
	z-index: 1;
	max-width: 760px;
}

.hero__eyebrow {
	font-size: 0.8rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--doe-gold-light);
	margin: 0 0 1.25rem;
	font-weight: 500;
}

.hero__heading {
	color: var(--doe-white);
	font-size: clamp(2.6rem, 5vw, 4.2rem);
	margin: 0 0 1.5rem;
}

.hero__subheading {
	font-size: 1.15rem;
	color: rgba(247, 241, 230, 0.92);
	max-width: 560px;
	margin-bottom: 2.25rem;
}

.hero__subheading p {
	margin: 0 0 1em;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.hero__actions .btn--outline {
	color: var(--doe-cream);
}

.hero__actions .btn--outline:hover,
.hero__actions .btn--outline:focus {
	background-color: var(--doe-cream);
	color: var(--doe-earth);
}

/* -------------------------------------------------------------------------
   6. INTRO STATEMENT
   ------------------------------------------------------------------------- */
.intro {
	padding-block: 5rem;
}

.intro__inner {
	max-width: 780px;
	text-align: center;
	margin-inline: auto;
}

.intro__copy {
	font-family: var(--doe-font-heading);
	font-size: clamp(1.35rem, 2.4vw, 1.85rem);
	font-weight: 500;
	line-height: 1.55;
	color: var(--doe-earth);
	margin: 0;
}

/* -------------------------------------------------------------------------
   7. SECTION HEADINGS
   ------------------------------------------------------------------------- */
.section-heading {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 3rem;
}

.section-heading__eyebrow {
	font-size: 0.78rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--doe-moss);
	font-weight: 600;
	margin: 0 0 0.75rem;
}

.section-heading__title {
	font-size: clamp(1.9rem, 3.2vw, 2.6rem);
	margin: 0;
	/* max-width (in ch, so it scales with font-size) is the fallback for
	   browsers without text-wrap: balance support — it keeps long
	   headings from stretching edge-to-edge and leaving a lone trailing
	   word; text-wrap: balance progressively improves the break itself. */
	max-width: 26ch;
	margin-inline: auto;
	text-wrap: balance;
}

/* -------------------------------------------------------------------------
   8. PILLARS GRID
   ------------------------------------------------------------------------- */
.pillars {
	padding-block: 5rem;
	background-color: var(--doe-linen);
}

.pillars__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1.75rem;
}

.pillar-card {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	background-color: var(--doe-white);
	border: 1px solid var(--doe-color-border);
	border-radius: var(--doe-radius-lg);
	padding: 2.25rem 1.85rem;
	color: var(--doe-color-text);
	box-shadow: var(--doe-shadow-soft);
	transition: transform var(--doe-transition), box-shadow var(--doe-transition), border-color var(--doe-transition);
}

.pillar-card:hover,
.pillar-card:focus {
	transform: translateY(-6px);
	box-shadow: var(--doe-shadow-lift);
	border-color: var(--doe-gold);
	color: var(--doe-color-text);
}

.pillar-card__title {
	font-size: 1.4rem;
	margin: 0;
}

.pillar-card__excerpt {
	font-size: 0.95rem;
	color: var(--doe-color-text-muted);
	margin: 0;
	flex-grow: 1;
}

.pillar-card__link {
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--doe-terracotta);
	margin-top: 0.5rem;
}

/* -------------------------------------------------------------------------
   9. CTA BANDS (Shop / Membership)
   ------------------------------------------------------------------------- */
.cta-band {
	padding-block: 5.5rem;
}

.cta-band__inner {
	max-width: 640px;
	text-align: center;
	margin-inline: auto;
}

.cta-band__heading {
	font-size: clamp(1.9rem, 3vw, 2.5rem);
	margin: 0.5rem 0 1rem;
	max-width: 26ch;
	margin-inline: auto;
	text-wrap: balance;
}

.cta-band__copy-text {
	color: var(--doe-color-text-muted);
	margin-bottom: 1.5rem;
}

.cta-band--shop {
	background-color: var(--doe-cream);
}

.cta-band--membership {
	background-color: var(--doe-earth);
}

.cta-band--membership .section-heading__eyebrow {
	color: var(--doe-gold-light);
}

.cta-band--membership .cta-band__heading {
	color: var(--doe-white);
}

.cta-band--membership .cta-band__copy-text {
	color: rgba(247, 241, 230, 0.85);
}

/* -------------------------------------------------------------------------
   10. FOOTER
   ------------------------------------------------------------------------- */
.site-footer {
	background-color: var(--doe-bark);
	color: rgba(247, 241, 230, 0.82);
	margin-top: 0;
}

.site-footer__pre {
	background-color: var(--doe-moss);
	padding-block: 4rem;
}

.site-footer__pre-inner {
	max-width: 620px;
	text-align: center;
	margin-inline: auto;
	color: var(--doe-cream);
}

.site-footer__pre-eyebrow {
	font-size: 0.78rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--doe-gold-light);
	font-weight: 600;
	margin: 0 0 0.75rem;
}

.site-footer__pre-heading {
	color: var(--doe-white);
	font-size: clamp(1.6rem, 2.6vw, 2.1rem);
	margin: 0 0 0.85rem;
}

.site-footer__pre-copy {
	margin: 0 0 1.75rem;
	color: rgba(247, 241, 230, 0.9);
}

.newsletter-widget form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

.newsletter-widget input[type="email"] {
	padding: 0.85em 1.25em;
	border-radius: 999px;
	border: 1px solid rgba(247, 241, 230, 0.4);
	background-color: rgba(247, 241, 230, 0.08);
	color: var(--doe-white);
	min-width: 260px;
}

.site-footer__main {
	padding-block: 4.5rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 2fr;
	gap: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(247, 241, 230, 0.12);
}

.footer-grid__brand .site-footer__brand-name {
	font-family: var(--doe-font-heading);
	font-size: 1.6rem;
	color: var(--doe-white);
	margin: 0 0 1rem;
}

.footer-grid__brand .site-branding__logo--footer img {
	max-height: 56px;
	width: auto;
	margin-bottom: 1rem;
}

.footer-grid__brand .site-footer__brand-copy {
	max-width: 320px;
	font-size: 0.9rem;
	color: rgba(247, 241, 230, 0.68);
}

.footer-grid__widgets {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.footer-widget__title {
	color: var(--doe-white);
	font-size: 1.05rem;
	margin: 0 0 1rem;
}

.footer-widget-area ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-widget-area li {
	margin-bottom: 0.6rem;
	font-size: 0.9rem;
}

.footer-widget-area a {
	color: rgba(247, 241, 230, 0.75);
}

.footer-widget-area a:hover,
.footer-widget-area a:focus {
	color: var(--doe-gold-light);
}

.footer-navigation {
	padding-top: 2.5rem;
}

.footer-menu {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 1.75rem;
	margin: 0;
	padding: 0;
}

.footer-menu a {
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(247, 241, 230, 0.72);
}

.footer-menu a:hover,
.footer-menu a:focus {
	color: var(--doe-gold-light);
}

.site-footer__bottom {
	border-top: 1px solid rgba(247, 241, 230, 0.1);
	padding-block: 1.5rem;
}

.site-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem;
	font-size: 0.8rem;
	color: rgba(247, 241, 230, 0.55);
}

.site-footer__bottom p {
	margin: 0;
}

/* -------------------------------------------------------------------------
   10a. GENERIC PAGE HERO + CONTENT (interior pages, e.g. Start Here)
   ------------------------------------------------------------------------- */
.page-hero {
	padding-block: 5.5rem 3.5rem;
	background-color: var(--doe-linen);
	text-align: center;
}

.page-hero__inner {
	max-width: 700px;
	margin-inline: auto;
}

.page-hero__eyebrow {
	font-size: 0.78rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--doe-moss);
	font-weight: 600;
	margin: 0 0 1rem;
}

.page-hero__heading {
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	margin: 0 0 1rem;
	max-width: 24ch;
	margin-inline: auto;
	text-wrap: balance;
}

.page-hero__subheading {
	color: var(--doe-color-text-muted);
	font-size: 1.05rem;
	margin: 0;
}

.start-here-steps {
	padding-block: 5rem;
}

.start-here-content {
	padding-block: 1rem 5rem;
}

.start-here-content__inner {
	/* ch scales with font-size and measures actual character width, so
	   this holds body copy to a ~70-character reading measure exactly —
	   more reliable than the previous fixed 720px, which ran slightly
	   wide. This is the shared wrapper page.php also uses for any Page
	   without a dedicated template (e.g. About, Contact, Offerings). */
	max-width: 70ch;
	margin-inline: auto;
}

.start-here-content__inner > *:first-child {
	margin-top: 0;
}

/* -------------------------------------------------------------------------
   10b. HOMEPAGE — FOUR PATHS
   ------------------------------------------------------------------------- */
.four-paths {
	padding-block: 5rem;
	background-color: var(--doe-cream);
}

.four-paths__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}

.path-card {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	text-align: center;
	background-color: var(--doe-white);
	border: 1px solid var(--doe-color-border);
	border-top: 3px solid var(--doe-sage);
	border-radius: var(--doe-radius-md);
	padding: 2.5rem 1.5rem;
	color: var(--doe-color-text);
	transition: transform var(--doe-transition), box-shadow var(--doe-transition), border-color var(--doe-transition);
}

.path-card:hover,
.path-card:focus {
	transform: translateY(-4px);
	box-shadow: var(--doe-shadow-soft);
	border-top-color: var(--doe-gold);
	color: var(--doe-color-text);
}

.path-card__title {
	font-size: 1.5rem;
	margin: 0;
	letter-spacing: 0.03em;
}

.path-card__excerpt {
	font-size: 0.92rem;
	color: var(--doe-color-text-muted);
	margin: 0;
}

/* -------------------------------------------------------------------------
   10c. HOMEPAGE — START HERE BAND
   ------------------------------------------------------------------------- */
.start-here-band {
	padding-block: 4.5rem;
	background-color: var(--doe-linen);
	text-align: center;
	border-top: 1px solid var(--doe-color-border);
	border-bottom: 1px solid var(--doe-color-border);
}

.start-here-band__inner {
	max-width: 640px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.75rem;
}

.start-here-band__message {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-style: italic;
	margin: 0;
}

/* -------------------------------------------------------------------------
   10d. HOMEPAGE — FEATURED GUIDES
   ------------------------------------------------------------------------- */
.guides {
	padding-block: 5rem;
}

.guides__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.75rem;
}

.guide-card {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	background-color: var(--doe-white);
	border: 1px solid var(--doe-color-border);
	border-radius: var(--doe-radius-lg);
	padding: 2rem 1.75rem;
	color: var(--doe-color-text);
	box-shadow: var(--doe-shadow-soft);
	transition: transform var(--doe-transition), box-shadow var(--doe-transition), border-color var(--doe-transition);
}

.guide-card:hover,
.guide-card:focus {
	transform: translateY(-6px);
	box-shadow: var(--doe-shadow-lift);
	border-color: var(--doe-moss);
	color: var(--doe-color-text);
}

.guide-card__title {
	font-size: 1.3rem;
	margin: 0;
}

.guide-card__excerpt {
	font-size: 0.92rem;
	color: var(--doe-color-text-muted);
	margin: 0;
	flex-grow: 1;
}

.guide-card__link {
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--doe-moss);
}

/* -------------------------------------------------------------------------
   10e. HOMEPAGE — STARTER KIT OPT-IN
   ------------------------------------------------------------------------- */
.optin {
	padding-block: 5.5rem;
	background-color: var(--doe-moss);
	text-align: center;
}

.optin__inner {
	max-width: 640px;
	margin-inline: auto;
}

.optin__heading {
	color: var(--doe-white);
	font-size: clamp(1.9rem, 3vw, 2.5rem);
	margin: 0.5rem 0 1rem;
}

.optin__copy {
	color: rgba(247, 241, 230, 0.9);
	margin-bottom: 2.25rem;
}

.optin .section-heading__eyebrow {
	color: var(--doe-gold-light);
}

.optin__embed {
	min-height: 64px;
	background-color: rgba(247, 241, 230, 0.08);
	border: 1px dashed rgba(247, 241, 230, 0.4);
	border-radius: var(--doe-radius-md);
	padding: 1.5rem;
}

/* -------------------------------------------------------------------------
   10f. HOMEPAGE — PRODUCT GRIDS (Foundation / Transformation)
   ------------------------------------------------------------------------- */
.products {
	padding-block: 5rem;
}

.products--foundation {
	background-color: var(--doe-cream);
}

.products--transformation {
	background-color: var(--doe-linen);
}

.products__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.75rem;
}

.products__grid--featured {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	max-width: 900px;
	margin-inline: auto;
}

.product-card {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	background-color: var(--doe-white);
	border: 1px solid var(--doe-color-border);
	border-radius: var(--doe-radius-lg);
	padding: 2.25rem 1.85rem;
	color: var(--doe-color-text);
	box-shadow: var(--doe-shadow-soft);
	transition: transform var(--doe-transition), box-shadow var(--doe-transition), border-color var(--doe-transition);
}

.product-card:hover,
.product-card:focus {
	transform: translateY(-6px);
	box-shadow: var(--doe-shadow-lift);
	border-color: var(--doe-gold);
	color: var(--doe-color-text);
}

.product-card--featured {
	padding: 2.75rem 2.25rem;
	border-top: 3px solid var(--doe-gold);
}

.product-card__title {
	font-size: 1.4rem;
	margin: 0;
}

.product-card__excerpt {
	font-size: 0.95rem;
	color: var(--doe-color-text-muted);
	margin: 0;
	flex-grow: 1;
}

.product-card__link {
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--doe-terracotta);
}

/* -------------------------------------------------------------------------
   10g. HOMEPAGE — EVE'S INNER CIRCLE
   ------------------------------------------------------------------------- */
.inner-circle {
	padding-block: 5.5rem;
	background-color: var(--doe-bark);
	color: rgba(247, 241, 230, 0.88);
	text-align: center;
}

.inner-circle__inner {
	max-width: 680px;
	margin-inline: auto;
}

.inner-circle .section-heading__eyebrow {
	color: var(--doe-gold-light);
}

.inner-circle__heading {
	color: var(--doe-white);
	font-size: clamp(1.9rem, 3.2vw, 2.6rem);
	margin: 0.5rem 0 1rem;
}

.inner-circle__copy {
	color: rgba(247, 241, 230, 0.85);
	margin-bottom: 2rem;
}

.inner-circle__list {
	list-style: none;
	margin: 0 0 2.5rem;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	text-align: left;
}

.inner-circle__list li {
	position: relative;
	padding-left: 1.5rem;
	font-size: 0.92rem;
	color: rgba(247, 241, 230, 0.85);
}

.inner-circle__list li::before {
	content: "\2022";
	position: absolute;
	left: 0;
	color: var(--doe-gold-light);
}

/* -------------------------------------------------------------------------
   10h. HOMEPAGE — PHILOSOPHY
   ------------------------------------------------------------------------- */
.philosophy {
	padding-block: 6rem;
	background-color: var(--doe-cream);
	text-align: center;
}

.philosophy__inner {
	max-width: 680px;
	margin-inline: auto;
}

.philosophy__line {
	font-family: var(--doe-font-heading);
	font-style: italic;
	font-size: clamp(1.35rem, 2.6vw, 1.9rem);
	line-height: 1.5;
	color: var(--doe-earth);
	margin: 0 0 1.5rem;
}

.philosophy__line:last-child {
	margin-bottom: 0;
}

/* -------------------------------------------------------------------------
   10i. HOMEPAGE — FINAL CTA
   ------------------------------------------------------------------------- */
.final-cta {
	padding-block: 6rem;
	background-color: var(--doe-earth);
	text-align: center;
}

.final-cta__inner {
	max-width: 620px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.final-cta__heading {
	color: var(--doe-white);
	font-size: clamp(2rem, 3.6vw, 2.8rem);
	margin: 0;
}

/* -------------------------------------------------------------------------
   11. WOOCOMMERCE — light-touch brand alignment
   ------------------------------------------------------------------------- */
.den-of-eve-site .woocommerce ul.products li.product .price,
.den-of-eve-site .woocommerce div.product p.price,
.den-of-eve-site .woocommerce div.product span.price {
	color: var(--doe-terracotta);
	font-family: var(--doe-font-heading);
}

.den-of-eve-site .woocommerce a.button,
.den-of-eve-site .woocommerce button.button,
.den-of-eve-site .woocommerce input.button,
.den-of-eve-site .woocommerce #respond input#submit,
.den-of-eve-site .woocommerce-page a.button {
	background-color: var(--doe-earth);
	color: var(--doe-cream);
	border-radius: 999px;
	padding: 0.8em 1.8em;
	font-family: var(--doe-font-body);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 0.85rem;
}

.den-of-eve-site .woocommerce a.button:hover,
.den-of-eve-site .woocommerce button.button:hover,
.den-of-eve-site .woocommerce input.button:hover {
	background-color: var(--doe-terracotta);
	color: var(--doe-white);
}

.den-of-eve-site .woocommerce span.onsale {
	background-color: var(--doe-gold);
	color: var(--doe-white);
}

/* -------------------------------------------------------------------------
   12. RESPONSIVE
   ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid__widgets {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 782px) {
	.main-navigation {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(320px, 82vw);
		height: 100vh;
		background-color: var(--doe-cream);
		box-shadow: var(--doe-shadow-lift);
		padding: 6.5rem 2rem 2rem;
		transform: translateX(100%);
		transition: transform var(--doe-transition);
		z-index: 998;
	}

	.main-navigation.is-open {
		transform: translateX(0);
	}

	.primary-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
	}

	.primary-menu ul {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		padding-left: 1rem;
	}

	.menu-toggle {
		display: flex;
	}

	.footer-grid__widgets {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.site-footer__bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	.inner-circle__list {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.inner-circle__list li {
		padding-left: 0;
	}

	.inner-circle__list li::before {
		content: none;
	}
}

@media (max-width: 560px) {
	.hero {
		padding-block: 4rem;
		min-height: auto;
	}

	.hero__actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.cta-band {
		padding-block: 3.5rem;
	}

	.four-paths,
	.guides,
	.products,
	.start-here-band,
	.optin,
	.inner-circle,
	.philosophy,
	.final-cta {
		padding-block: 3.5rem;
	}

	.start-here-band__inner,
	.final-cta__inner {
		align-items: stretch;
		text-align: center;
	}
}

/* =========================================================================
   DEN OF EVE — PRODUCTION COMPONENT LIBRARY
   Reusable, doe- prefixed components: section-header, hero, card,
   cta-band, newsletter, seasonal-banner.

   These tokens and classes are intentionally namespaced (--doe-color-*,
   --doe-surface, --doe-text-*, .doe-*) so they do NOT collide with or
   change the values of the legacy --doe-* tokens and bare classes above.
   Nothing in this section alters the rendered output of any existing
   page — it only becomes visible where a component template part is
   deliberately included.
   ========================================================================= */

/* -------------------------------------------------------------------------
   13. COMPONENT LIBRARY — DESIGN TOKENS
   ------------------------------------------------------------------------- */
:root {
	/* Official production design-system tokens — exact names/values as specified */
	--doe-color-forest:       #3F5A3F;
	--doe-color-moss:         #6F7F5A;
	--doe-color-sage:         #A9B59A;
	--doe-color-clay:         #B38A63;
	--doe-color-bark:         #4C3A2D;
	--doe-color-linen:        #EFE4D4;
	--doe-color-cream:        #F7F2EA;
	--doe-color-harvest-gold: #D7B46A;

	/*
	 * Backwards-compat bridge aliases. Purely additive — nothing in the
	 * legacy CSS above references these names yet, so defining them here
	 * cannot change any existing rendered output.
	 */
	--doe-forest:    var(--doe-color-forest);
	--doe-moss-new:  var(--doe-color-moss);
	--doe-sage-new:  var(--doe-color-sage);
	--doe-clay-new:  var(--doe-color-clay);
	--doe-bark-new:  var(--doe-color-bark);
	--doe-linen-new: var(--doe-color-linen);
	--doe-cream-new: var(--doe-color-cream);
	--doe-gold-new:  var(--doe-color-harvest-gold);

	/* Semantic aliases */
	--doe-surface:       var(--doe-color-cream);
	--doe-surface-alt:   var(--doe-color-linen);
	--doe-surface-card:  #FFFFFF;
	--doe-text-primary:  var(--doe-color-bark);
	--doe-text-muted:    rgba(76, 58, 45, 0.68);
	--doe-heading-color: var(--doe-color-forest);
	--doe-accent:        var(--doe-color-clay);
	--doe-accent-strong: var(--doe-color-harvest-gold);
	--doe-border-soft:   rgba(76, 58, 45, 0.16);
	--doe-focus-ring:    var(--doe-color-harvest-gold);

	/* Typography */
	--doe-font-serif: Georgia, 'Times New Roman', Times, serif;
	--doe-font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

	/* Spacing scale */
	--doe-space-1: 0.5rem;
	--doe-space-2: 1rem;
	--doe-space-3: 1.5rem;
	--doe-space-4: 2rem;
	--doe-space-5: 3rem;
	--doe-space-6: 4rem;
	--doe-space-7: 6rem;

	/* Seasonal accents */
	--doe-season-spring:    #7C9473;
	--doe-season-summer:    #D7B46A;
	--doe-season-autumn:    #B36A3C;
	--doe-season-winter:    #5A6B73;
	--doe-season-spring-bg: #EAF0E4;
	--doe-season-summer-bg: #FBF2DC;
	--doe-season-autumn-bg: #F5E3D3;
	--doe-season-winter-bg: #E7ECEE;
}

/* -------------------------------------------------------------------------
   14. COMPONENT LIBRARY — CONTAINER & BUTTONS
   ------------------------------------------------------------------------- */
.doe-container {
	width: 100%;
	max-width: var(--doe-container-width);
	margin-inline: auto;
	padding-inline: var(--doe-container-pad);
}

.doe-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	padding: 0.9em 2em;
	border-radius: 999px;
	font-family: var(--doe-font-sans);
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: background-color var(--doe-transition), color var(--doe-transition), border-color var(--doe-transition), transform var(--doe-transition);
}

.doe-btn:hover,
.doe-btn:focus {
	transform: translateY(-2px);
}

.doe-btn:focus-visible {
	outline: 3px solid var(--doe-focus-ring);
	outline-offset: 2px;
}

.doe-btn--primary {
	background-color: var(--doe-color-forest);
	color: var(--doe-color-cream);
}

.doe-btn--primary:hover,
.doe-btn--primary:focus {
	background-color: var(--doe-color-bark);
	color: var(--doe-color-cream);
}

.doe-btn--secondary {
	background-color: transparent;
	border-color: currentColor;
	color: var(--doe-color-forest);
}

.doe-btn--secondary:hover,
.doe-btn--secondary:focus {
	background-color: var(--doe-color-forest);
	color: var(--doe-color-cream);
}

.doe-btn--accent {
	background-color: var(--doe-color-harvest-gold);
	color: var(--doe-color-bark);
}

.doe-btn--accent:hover,
.doe-btn--accent:focus {
	background-color: var(--doe-color-clay);
	color: var(--doe-color-cream);
}

/* -------------------------------------------------------------------------
   15. COMPONENT LIBRARY — SECTION HEADER
   ------------------------------------------------------------------------- */
.doe-section-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto var(--doe-space-5);
}

.doe-section-header--left {
	text-align: left;
	margin-inline: 0;
}

.doe-eyebrow {
	font-family: var(--doe-font-sans);
	font-size: 0.78rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--doe-color-moss);
	font-weight: 600;
	margin: 0 0 0.75rem;
}

.doe-section-title {
	font-family: var(--doe-font-serif);
	color: var(--doe-heading-color);
	font-size: clamp(1.9rem, 3.2vw, 2.6rem);
	line-height: 1.15;
	margin: 0 0 0.75rem;
	max-width: 30ch;
	margin-inline: auto;
	text-wrap: balance;
}

/* .doe-section-header--left keeps its heading flush left rather than
   centered, so the max-width above must not re-center it. */
.doe-section-header--left .doe-section-title {
	margin-inline: 0;
}

.doe-section-copy {
	font-family: var(--doe-font-sans);
	color: var(--doe-text-muted);
	font-size: 1.05rem;
	line-height: 1.7;
	margin: 0;
}

/* -------------------------------------------------------------------------
   16. COMPONENT LIBRARY — HERO
   ------------------------------------------------------------------------- */
.doe-hero {
	position: relative;
	background-color: var(--doe-surface-alt);
	overflow: hidden;
}

.doe-hero-inner {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: var(--doe-space-6);
	align-items: center;
	padding-block: var(--doe-space-7);
}

.doe-hero-content {
	display: flex;
	flex-direction: column;
	gap: var(--doe-space-3);
}

.doe-hero-eyebrow {
	font-family: var(--doe-font-sans);
	font-size: 0.8rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--doe-accent);
	font-weight: 600;
	margin: 0;
}

.doe-hero-headline {
	font-family: var(--doe-font-serif);
	color: var(--doe-heading-color);
	font-size: clamp(2.4rem, 4.6vw, 3.8rem);
	line-height: 1.1;
	margin: 0;
	max-width: 34ch;
	text-wrap: balance;
}

.doe-hero-subheadline {
	font-family: var(--doe-font-sans);
	color: var(--doe-text-muted);
	font-size: 1.15rem;
	line-height: 1.7;
	max-width: 520px;
	margin: 0;
}

.doe-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	/* No margin-top here on purpose — .doe-hero-content's flex gap
	   already spaces every child (eyebrow/heading/subheadline/actions)
	   evenly; an extra margin here would break that rhythm. */
}

.doe-hero-media {
	position: relative;
	border-radius: var(--doe-radius-lg);
	overflow: hidden;
	min-height: 320px;
	background: linear-gradient(160deg, var(--doe-color-sage) 0%, var(--doe-color-forest) 100%);
	box-shadow: var(--doe-shadow-lift);
}

.doe-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.doe-hero-media-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(247, 242, 234, 0.85);
	font-family: var(--doe-font-serif);
	font-style: italic;
	font-size: 1.1rem;
	text-align: center;
	padding: 2rem;
}

/* -------------------------------------------------------------------------
   17. COMPONENT LIBRARY — CARDS
   ------------------------------------------------------------------------- */
.doe-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--doe-space-4);
}

.doe-card {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	background-color: var(--doe-surface-card);
	border: 1px solid var(--doe-border-soft);
	border-radius: var(--doe-radius-lg);
	padding: var(--doe-space-4);
	color: var(--doe-text-primary);
	box-shadow: var(--doe-shadow-soft);
	text-decoration: none;
	transition: transform var(--doe-transition), box-shadow var(--doe-transition), border-color var(--doe-transition);
}

a.doe-card:hover,
a.doe-card:focus {
	transform: translateY(-6px);
	box-shadow: var(--doe-shadow-lift);
	border-color: var(--doe-color-harvest-gold);
	color: var(--doe-text-primary);
}

a.doe-card:focus-visible {
	outline: 3px solid var(--doe-focus-ring);
	outline-offset: 2px;
}

.doe-card-media {
	border-radius: var(--doe-radius-md);
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.doe-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.doe-card-title {
	font-family: var(--doe-font-serif);
	color: var(--doe-heading-color);
	font-size: 1.3rem;
	margin: 0;
}

.doe-card-text {
	font-family: var(--doe-font-sans);
	color: var(--doe-text-muted);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
	flex-grow: 1;
}

.doe-card-cta {
	font-family: var(--doe-font-sans);
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--doe-accent);
	margin-top: 0.25rem;
}

a.doe-card-cta.doe-btn {
	align-self: flex-start;
}

.doe-card--guide {
	border-top: 3px solid var(--doe-color-moss);
}

.doe-card--product {
	border-top: 3px solid var(--doe-color-clay);
}

.doe-card--root {
	border-top: 3px solid var(--doe-color-forest);
}

.doe-card--seasonal {
	border-top: 3px solid var(--doe-color-sage);
}

.doe-card--membership {
	border-top: 3px solid var(--doe-color-harvest-gold);
	background-color: var(--doe-color-bark);
	color: var(--doe-color-cream);
}

.doe-card--membership .doe-card-title {
	color: var(--doe-color-cream);
}

.doe-card--membership .doe-card-text {
	color: rgba(247, 242, 234, 0.78);
}

.doe-card--membership .doe-card-cta {
	color: var(--doe-color-harvest-gold);
}

a.doe-card--membership:hover,
a.doe-card--membership:focus {
	color: var(--doe-color-cream);
	border-color: var(--doe-color-harvest-gold);
}

/* -------------------------------------------------------------------------
   18. COMPONENT LIBRARY — CTA BAND
   ------------------------------------------------------------------------- */
.doe-cta-band {
	padding-block: var(--doe-space-6);
	background-color: var(--doe-color-forest);
	color: var(--doe-color-cream);
	text-align: center;
}

.doe-cta-band-inner {
	max-width: 680px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.doe-cta-band-eyebrow {
	font-family: var(--doe-font-sans);
	font-size: 0.78rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--doe-color-harvest-gold);
	font-weight: 600;
	margin: 0;
}

.doe-cta-band-heading {
	font-family: var(--doe-font-serif);
	color: var(--doe-color-cream);
	font-size: clamp(1.9rem, 3.4vw, 2.6rem);
	margin: 0;
	max-width: 30ch;
	text-wrap: balance;
}

.doe-cta-band-copy {
	font-family: var(--doe-font-sans);
	color: rgba(247, 242, 234, 0.85);
	margin: 0;
}

.doe-cta-band-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.doe-cta-band--muted {
	background-color: var(--doe-color-linen);
	color: var(--doe-text-primary);
}

.doe-cta-band--muted .doe-cta-band-eyebrow {
	color: var(--doe-color-clay);
}

.doe-cta-band--muted .doe-cta-band-heading {
	color: var(--doe-heading-color);
}

.doe-cta-band--muted .doe-cta-band-copy {
	color: var(--doe-text-muted);
}

.doe-cta-band--dark {
	background-color: var(--doe-color-bark);
}

/* -------------------------------------------------------------------------
   19. COMPONENT LIBRARY — NEWSLETTER / STARTER KIT
   ------------------------------------------------------------------------- */
.doe-newsletter {
	padding-block: var(--doe-space-6);
	background-color: var(--doe-color-moss);
}

.doe-newsletter-card {
	max-width: 620px;
	margin-inline: auto;
	text-align: center;
	background-color: rgba(247, 242, 234, 0.08);
	border: 1px solid rgba(247, 242, 234, 0.35);
	border-radius: var(--doe-radius-lg);
	padding: var(--doe-space-5);
}

.doe-newsletter-eyebrow {
	font-family: var(--doe-font-sans);
	font-size: 0.78rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--doe-color-harvest-gold);
	font-weight: 600;
	margin: 0 0 0.75rem;
}

.doe-newsletter-heading {
	font-family: var(--doe-font-serif);
	color: var(--doe-color-cream);
	font-size: clamp(1.7rem, 2.8vw, 2.2rem);
	margin: 0 0 0.85rem;
}

.doe-newsletter-copy {
	font-family: var(--doe-font-sans);
	color: rgba(247, 242, 234, 0.88);
	margin: 0 0 1.75rem;
}

.doe-kit-placeholder {
	min-height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(247, 242, 234, 0.08);
	border: 1px dashed rgba(247, 242, 234, 0.45);
	border-radius: var(--doe-radius-md);
	padding: 1.5rem;
	color: rgba(247, 242, 234, 0.7);
	font-family: var(--doe-font-sans);
	font-size: 0.85rem;
}

/* -------------------------------------------------------------------------
   20. COMPONENT LIBRARY — FORMS (primitives for future use)
   ------------------------------------------------------------------------- */
.doe-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

.doe-field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	text-align: left;
	flex: 1 1 220px;
}

.doe-label {
	font-family: var(--doe-font-sans);
	font-size: 0.78rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--doe-text-muted);
}

.doe-input {
	font-family: var(--doe-font-sans);
	font-size: 1rem;
	padding: 0.85em 1.1em;
	border-radius: 999px;
	border: 1px solid var(--doe-border-soft);
	background-color: var(--doe-surface-card);
	color: var(--doe-text-primary);
}

.doe-input:focus-visible {
	outline: 3px solid var(--doe-focus-ring);
	outline-offset: 2px;
	border-color: var(--doe-accent-strong);
}

.doe-form-actions {
	display: flex;
	align-items: flex-end;
}

/* -------------------------------------------------------------------------
   21. COMPONENT LIBRARY — SEASONAL BANNER
   ------------------------------------------------------------------------- */
.doe-seasonal-banner {
	padding-block: var(--doe-space-5);
	padding-inline: var(--doe-space-1);
	text-align: center;
	border-radius: var(--doe-radius-lg);
	border-top: 4px solid var(--doe-season-accent, var(--doe-color-sage));
}

.doe-seasonal-banner-inner {
	max-width: 640px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
}

.doe-seasonal-banner-eyebrow {
	font-family: var(--doe-font-sans);
	font-size: 0.78rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--doe-text-muted);
	margin: 0;
}

.doe-seasonal-banner-heading {
	font-family: var(--doe-font-serif);
	color: var(--doe-heading-color);
	font-size: clamp(1.6rem, 2.8vw, 2.1rem);
	margin: 0;
	max-width: 22ch;
	text-wrap: balance;
}

.doe-seasonal-banner-copy {
	font-family: var(--doe-font-sans);
	color: var(--doe-text-primary);
	margin: 0;
}

.doe-season--spring {
	--doe-season-accent: var(--doe-season-spring);
	background-color: var(--doe-season-spring-bg);
}

.doe-season--summer {
	--doe-season-accent: var(--doe-season-summer);
	background-color: var(--doe-season-summer-bg);
}

.doe-season--autumn {
	--doe-season-accent: var(--doe-season-autumn);
	background-color: var(--doe-season-autumn-bg);
}

.doe-season--winter {
	--doe-season-accent: var(--doe-season-winter);
	background-color: var(--doe-season-winter-bg);
}

/* -------------------------------------------------------------------------
   22. COMPONENT LIBRARY — REVEAL ANIMATION (paired with .doe-reveal in JS)
   ------------------------------------------------------------------------- */
.doe-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.doe-reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* -------------------------------------------------------------------------
   23. COMPONENT LIBRARY — ACCESSIBILITY & REDUCED MOTION
   ------------------------------------------------------------------------- */
.doe-btn:focus,
.doe-card:focus,
.doe-input:focus {
	outline: 3px solid transparent;
}

@media (prefers-reduced-motion: reduce) {
	.doe-btn,
	.doe-card,
	a.doe-card,
	.doe-reveal {
		transition: none !important;
	}

	.doe-reveal {
		opacity: 1 !important;
		transform: none !important;
	}
}

/* -------------------------------------------------------------------------
   24. COMPONENT LIBRARY — RESPONSIVE
   ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.doe-hero-inner {
		grid-template-columns: 1fr;
		padding-block: var(--doe-space-6);
	}

	.doe-hero-media {
		order: -1;
		min-height: 260px;
	}

	.doe-hero-content {
		text-align: center;
		align-items: center;
	}

	.doe-hero-actions {
		justify-content: center;
	}

	.doe-hero-subheadline {
		max-width: none;
	}
}

@media (max-width: 782px) {
	.doe-section-header {
		margin-bottom: var(--doe-space-4);
	}

	.doe-card-grid {
		gap: var(--doe-space-3);
	}

	.doe-cta-band,
	.doe-newsletter {
		padding-block: var(--doe-space-5);
	}
}

@media (max-width: 560px) {
	.doe-hero-inner {
		padding-block: var(--doe-space-5);
	}

	.doe-hero-headline {
		font-size: clamp(2rem, 8vw, 2.6rem);
	}

	.doe-hero-actions,
	.doe-cta-band-actions {
		flex-direction: column;
		width: 100%;
	}

	.doe-hero-actions .doe-btn,
	.doe-cta-band-actions .doe-btn {
		width: 100%;
	}

	.doe-newsletter-card {
		padding: var(--doe-space-4);
	}

	.doe-form {
		flex-direction: column;
	}

	.doe-field {
		flex: 1 1 auto;
	}
}

/* =========================================================================
   DEN OF EVE — HOMEPAGE SECTIONS
   Page-specific wrappers built from the component library above. Only
   used by front-page.php via the template-parts/homepage/* parts.
   ========================================================================= */

/* -------------------------------------------------------------------------
   25. HOMEPAGE — HERO (JOURNAL VARIANT)
   Old herbal journal meets warm greenhouse meets modern digital
   homestead. Builds on the shared .doe-hero* skeleton from the
   component library (section 16) with a `.doe-hero--journal` modifier
   and a CSS-only decorative botanical panel — no image asset needed.
   ------------------------------------------------------------------------- */
.doe-hero--journal {
	background-color: var(--doe-color-linen);
	background-image:
		radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.55) 0%, transparent 42%),
		radial-gradient(circle at 82% 4%, rgba(63, 90, 63, 0.07) 0%, transparent 45%);
}

.doe-hero--journal .doe-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
}

.doe-hero--journal .doe-hero-eyebrow::before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 2px;
	border-radius: 2px;
	background-color: var(--doe-color-clay);
}

.doe-hero--journal .doe-hero-headline {
	max-width: 620px;
}

.doe-hero--journal .doe-hero-media {
	min-height: 380px;
}

.doe-hero-botanical {
	position: absolute;
	inset: 0;
}

.doe-hero-botanical-shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(1px);
	animation: doe-hero-drift 11s ease-in-out infinite;
}

.doe-hero-botanical-shape--one {
	width: 220px;
	height: 220px;
	top: -60px;
	right: -50px;
	background: radial-gradient(circle at 30% 30%, var(--doe-color-sage) 0%, transparent 70%);
	opacity: 0.55;
}

.doe-hero-botanical-shape--two {
	width: 260px;
	height: 260px;
	bottom: -90px;
	left: -70px;
	background: radial-gradient(circle at 60% 60%, var(--doe-color-harvest-gold) 0%, transparent 70%);
	opacity: 0.35;
	animation-delay: -5s;
	animation-duration: 14s;
}

.doe-hero-botanical-leaf {
	position: absolute;
	background-color: rgba(247, 242, 234, 0.16);
	border: 1px solid rgba(247, 242, 234, 0.3);
}

.doe-hero-botanical-leaf--one {
	width: 90px;
	height: 140px;
	top: 18%;
	left: 12%;
	border-radius: 0 100% 0 100%;
	transform: rotate(-18deg);
}

.doe-hero-botanical-leaf--two {
	width: 70px;
	height: 110px;
	bottom: 20%;
	right: 16%;
	border-radius: 100% 0 100% 0;
	transform: rotate(24deg);
}

.doe-hero-botanical-leaf--three {
	width: 55px;
	height: 90px;
	top: 48%;
	left: 42%;
	border-radius: 0 100% 0 100%;
	transform: rotate(6deg);
}

.doe-hero-herb-labels {
	position: absolute;
	inset: auto 1.5rem 1.75rem auto;
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.5rem;
}

.doe-hero-herb-label {
	font-family: var(--doe-font-serif);
	font-style: italic;
	font-size: 0.85rem;
	color: rgba(247, 242, 234, 0.9);
	background-color: rgba(76, 58, 45, 0.3);
	border: 1px solid rgba(247, 242, 234, 0.3);
	padding: 0.3em 0.9em;
	border-radius: 999px;
	backdrop-filter: blur(2px);
}

@keyframes doe-hero-drift {
	0%,
	100% {
		transform: translateY(0) scale(1);
	}

	50% {
		transform: translateY(14px) scale(1.05);
	}
}

@media (prefers-reduced-motion: reduce) {
	.doe-hero-botanical-shape {
		animation: none;
	}
}

@media (max-width: 1024px) {
	.doe-hero--journal .doe-hero-media {
		order: 1;
	}
}

/* -------------------------------------------------------------------------
   26. HOMEPAGE — PHILOSOPHY
   ------------------------------------------------------------------------- */
.doe-philosophy {
	padding-block: var(--doe-space-7);
	background-color: var(--doe-surface);
	text-align: center;
}

.doe-philosophy .doe-container {
	max-width: 760px;
}

.doe-philosophy-copy {
	font-family: var(--doe-font-sans);
	color: var(--doe-text-muted);
	font-size: 1.05rem;
	line-height: 1.7;
	max-width: 680px;
	margin: 0 auto;
}

/* -------------------------------------------------------------------------
   27. HOMEPAGE — THE FIVE ROOTS
   ------------------------------------------------------------------------- */
.doe-roots {
	padding-block: var(--doe-space-7);
	background-color: var(--doe-surface-alt);
}

.doe-roots-grid {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.doe-root-topics {
	list-style: none;
	margin: 0.25rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.doe-root-topics li {
	font-size: 0.9rem;
}

.doe-root-topics a {
	color: var(--doe-text-primary);
	text-decoration: underline;
	text-decoration-color: var(--doe-border-soft);
	text-underline-offset: 3px;
}

.doe-root-topics a:hover,
.doe-root-topics a:focus {
	color: var(--doe-color-forest);
	text-decoration-color: currentColor;
}

.doe-card--root .doe-card-cta.doe-btn {
	margin-top: 0.5rem;
	align-self: flex-start;
}

/* -------------------------------------------------------------------------
   28. HOMEPAGE — SEASONAL SPOTLIGHT ACTIONS
   ------------------------------------------------------------------------- */
.doe-seasonal-banner-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-top: 0.5rem;
}

/* -------------------------------------------------------------------------
   29. HOMEPAGE — FEATURED GUIDES / LATEST WISDOM
   ------------------------------------------------------------------------- */
.doe-featured-guides,
.doe-latest-wisdom {
	padding-block: var(--doe-space-7);
	background-color: var(--doe-surface);
}

.doe-latest-wisdom {
	background-color: var(--doe-surface-alt);
}

/* -------------------------------------------------------------------------
   30. HOMEPAGE — KNOWLEDGE GARDEN
   ------------------------------------------------------------------------- */
.doe-knowledge-garden {
	padding-block: var(--doe-space-7);
	background-color: var(--doe-surface);
	text-align: center;
}

.doe-knowledge-intro {
	max-width: 720px;
	margin: 0 auto var(--doe-space-4);
	color: var(--doe-text-muted);
	font-family: var(--doe-font-sans);
	font-size: 1.05rem;
	line-height: 1.7;
}

.doe-knowledge-map {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin: 0 0 var(--doe-space-4);
}

.doe-knowledge-cta {
	margin: 0;
}

/* -------------------------------------------------------------------------
   31. HOMEPAGE — PRODUCT JOURNEY
   ------------------------------------------------------------------------- */
.doe-product-journey {
	padding-block: var(--doe-space-7);
	background-color: var(--doe-surface-alt);
}

.doe-journey-steps {
	counter-reset: doe-journey;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 820px;
	margin: 0 auto var(--doe-space-6);
	padding: 0;
}

.doe-journey-step {
	position: relative;
	flex: 1 1 0;
	text-align: center;
	padding-inline: 1rem;
	font-family: var(--doe-font-sans);
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--doe-text-primary);
}

.doe-journey-step::before {
	counter-increment: doe-journey;
	content: counter(doe-journey);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin: 0 auto 0.6rem;
	border-radius: 50%;
	background-color: var(--doe-color-forest);
	color: var(--doe-color-cream);
	font-family: var(--doe-font-serif);
	font-size: 1rem;
}

.doe-journey-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 17px;
	left: calc(50% + 30px);
	right: calc(-50% + 30px);
	height: 1px;
	background-color: var(--doe-border-soft);
}

.doe-product-journey-grid {
	margin-top: var(--doe-space-2);
}

/* -------------------------------------------------------------------------
   32. HOMEPAGE — EVE'S INNER CIRCLE
   ------------------------------------------------------------------------- */
.doe-inner-circle {
	padding-block: var(--doe-space-7);
	background-color: var(--doe-color-bark);
	text-align: center;
}

.doe-inner-circle-inner {
	max-width: 760px;
}

.doe-inner-circle .doe-eyebrow {
	color: var(--doe-color-harvest-gold);
}

.doe-inner-circle .doe-section-title {
	color: var(--doe-color-cream);
}

.doe-inner-circle .doe-section-copy {
	color: rgba(247, 242, 234, 0.85);
}

.doe-inner-circle-list {
	list-style: none;
	margin: 0 auto var(--doe-space-5);
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	text-align: left;
}

.doe-inner-circle-list li {
	position: relative;
	padding-left: 1.5rem;
	font-size: 0.92rem;
	color: rgba(247, 242, 234, 0.85);
}

.doe-inner-circle-list li::before {
	content: "\2022";
	position: absolute;
	left: 0;
	color: var(--doe-color-harvest-gold);
}

/* -------------------------------------------------------------------------
   33. HOMEPAGE — RESPONSIVE
   ------------------------------------------------------------------------- */
@media (max-width: 782px) {
	.doe-journey-steps {
		flex-direction: column;
		align-items: center;
		gap: 1.5rem;
		max-width: 320px;
	}

	.doe-journey-step:not(:last-child)::after {
		display: none;
	}
}

@media (max-width: 560px) {
	.doe-seasonal-banner-actions,
	.doe-knowledge-map {
		flex-direction: column;
		align-items: stretch;
	}

	.doe-seasonal-banner-actions .doe-btn,
	.doe-knowledge-map .doe-btn {
		width: 100%;
	}

	.doe-inner-circle-list {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.doe-inner-circle-list li {
		padding-left: 0;
	}

	.doe-inner-circle-list li::before {
		content: none;
	}
}

/* =========================================================================
   DEN OF EVE — FIELD GUIDES (THE HERBARIUM)
   Premium botanical reference library. Warm cream backgrounds, fine
   editorial spacing, earth tones — built to be read on screen and
   printed and kept. Uses only the design tokens already established
   above (--doe-color-*, --doe-space-*, --doe-font-*, --doe-radius-*,
   --doe-shadow-*) and the doe-fg- prefix to keep this subsystem easy
   to find and maintain.
   ========================================================================= */

/* -------------------------------------------------------------------------
   34. FIELD GUIDE — CARD BADGES
   Still used by the Knowledge Garden / archive card grids
   (.doe-fg-card-badges) even though the old hero badge row that
   originally introduced these classes is gone (see the Botanical Plate
   Card section further below, which replaced field-guide-hero.php).
   ------------------------------------------------------------------------- */
.doe-fg-badge {
	display: inline-flex;
	align-items: center;
	font-family: var(--doe-font-sans);
	font-size: 0.75rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 600;
	padding: 0.4em 1em;
	border-radius: 999px;
	border: 1px solid var(--doe-border-soft);
	background-color: var(--doe-surface-card);
	color: var(--doe-text-primary);
	text-decoration: none;
}

li > .doe-fg-badge,
span.doe-fg-badge {
	cursor: default;
}

a.doe-fg-badge:hover,
a.doe-fg-badge:focus-visible {
	border-color: var(--doe-color-forest);
	color: var(--doe-color-forest);
}

.doe-fg-badge--collection {
	border-color: var(--doe-color-moss);
}

.doe-fg-badge--difficulty {
	border-color: var(--doe-color-clay);
}

.doe-fg-badge--season {
	border-color: var(--doe-color-sage);
}

/* -------------------------------------------------------------------------
   35. FIELD GUIDE — BOTANICAL PLATE (shared illustration frame/fallback)
   .doe-fg-plate-frame / .doe-fg-plate-image / .doe-fg-plate-placeholder*
   are reused by both the Botanical Plate Card (below) and the Knowledge
   Garden's Featured Field Guide section
   (template-parts/knowledge-garden/featured-guide.php) — do not remove
   without checking both call sites.
   ------------------------------------------------------------------------- */
.doe-fg-plate-frame {
	/* 640px -> 720px (+12.5%): larger focal presentation per the hero
	   polish sprint, still capped by .doe-container's own padding on
	   narrower viewports and still non-cropping (.doe-fg-plate-image
	   uses width:100%/height:auto, not object-fit:cover). */
	max-width: 720px;
	margin-inline: auto;
	border-radius: var(--doe-radius-lg);
	overflow: hidden;
	box-shadow: var(--doe-shadow-lift);
	border: 1px solid var(--doe-border-soft);
	background-color: var(--doe-surface-card);
}

.doe-fg-plate-image {
	width: 100%;
	height: auto;
	display: block;
}

.doe-fg-plate-placeholder {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: linear-gradient(160deg, var(--doe-color-linen) 0%, var(--doe-color-sage) 100%);
}

.doe-fg-plate-placeholder-shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(1px);
	opacity: 0.45;
}

.doe-fg-plate-placeholder-shape--one {
	width: 160px;
	height: 160px;
	top: -40px;
	left: -30px;
	background: radial-gradient(circle at 30% 30%, var(--doe-color-cream) 0%, transparent 70%);
}

.doe-fg-plate-placeholder-shape--two {
	width: 200px;
	height: 200px;
	bottom: -60px;
	right: -50px;
	background: radial-gradient(circle at 60% 60%, var(--doe-color-forest) 0%, transparent 70%);
	opacity: 0.3;
}

.doe-fg-plate-placeholder-leaf {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90px;
	height: 140px;
	margin: -70px 0 0 -45px;
	border-radius: 0 100% 0 100%;
	background-color: rgba(247, 242, 234, 0.5);
	border: 1px solid rgba(247, 242, 234, 0.7);
	transform: rotate(-14deg);
}

/* -------------------------------------------------------------------------
   36. FIELD GUIDE — BOTANICAL PLATE CARD (Phase 1 of the Herbarium
   Plate visual direction). Replaces the former field-guide-hero.php +
   field-guide-plate.php pair (see template-parts/field-guides/
   botanical-plate-card.php).
   Token mapping from the approved reference design (no new tokens):
   parchment page/frame -> --doe-surface-alt / --doe-surface-card (the
   same relationship the old .doe-fg-plate / .doe-fg-plate-frame used),
   fine border accents -> --doe-border-soft, sage/moss labels ->
   --doe-color-moss / --doe-color-forest, ink text -> --doe-color-bark /
   --doe-text-primary. Reuses .doe-fg-plate-placeholder* and
   .doe-fg-plate-image as-is for the illustration fallback chain.
   ------------------------------------------------------------------------- */
.doe-fg-plate-card {
	padding-block: var(--doe-space-6);
	background-color: var(--doe-surface-alt);
	text-align: center;
	border-bottom: 1px solid var(--doe-border-soft);
}

.doe-fg-plate-card-inner {
	max-width: 760px;
	margin-inline: auto;
}

.doe-fg-plate-card-frame {
	position: relative;
	max-width: 720px;
	margin-inline: auto;
	padding: var(--doe-space-5) var(--doe-space-4) var(--doe-space-4);
	background-color: var(--doe-surface-card);
	border-radius: var(--doe-radius-lg);
	border: 1px solid var(--doe-border-soft);
	box-shadow: var(--doe-shadow-lift);
}

/* Fine inset border — classic botanical-plate presentation. */
.doe-fg-plate-card-frame::before {
	content: "";
	position: absolute;
	inset: var(--doe-space-1);
	border: 1px solid var(--doe-border-soft);
	border-radius: var(--doe-radius-md);
	pointer-events: none;
}

.doe-fg-plate-card-header {
	position: relative;
	margin-bottom: var(--doe-space-4);
	padding-bottom: var(--doe-space-3);
	border-bottom: 1px solid var(--doe-border-soft);
}

.doe-fg-plate-card-series {
	font-family: var(--doe-font-sans);
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--doe-text-muted);
	margin: 0 0 0.25rem;
}

.doe-fg-plate-card-collection {
	font-family: var(--doe-font-serif);
	font-style: italic;
	font-size: 0.85rem;
	color: var(--doe-color-clay);
	margin: 0 0 0.5rem;
}

.doe-fg-plate-card-eyebrow {
	font-family: var(--doe-font-sans);
	font-size: 0.78rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--doe-color-clay);
	font-weight: 600;
	margin: 0 0 0.75rem;
}

.doe-fg-plate-card-title {
	font-family: var(--doe-font-serif);
	color: var(--doe-heading-color);
	font-size: clamp(2.1rem, 4vw, 3rem);
	margin: var(--doe-space-1) 0 var(--doe-space-2);
	max-width: 24ch;
	margin-inline: auto;
	text-wrap: balance;
}

.doe-fg-plate-card-scientific {
	font-family: var(--doe-font-serif);
	font-style: italic;
	font-size: 1.2rem;
	color: var(--doe-text-muted);
	margin: 0;
}

.doe-fg-plate-card-illustration {
	/* Bleed into the frame's own inline padding (one --doe-space-4 unit
	   each side) so the plate reads ~10% larger than the header/notes
	   content column, without changing the card's own footprint. */
	position: relative;
	margin-inline: calc(var(--doe-space-4) * -1);
}

.doe-fg-plate-card-footer {
	position: relative;
	margin-top: var(--doe-space-4);
	padding-top: var(--doe-space-3);
	border-top: 1px solid var(--doe-border-soft);
}

.doe-fg-plate-card-number {
	font-family: var(--doe-font-sans);
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--doe-border-soft);
	margin: 0;
}

.doe-fg-plate-card-notes {
	max-width: 640px;
	margin: var(--doe-space-4) auto 0;
	padding: var(--doe-space-3) var(--doe-space-4);
	background-color: var(--doe-surface-card);
	border-left: 3px solid var(--doe-color-moss);
	border-radius: var(--doe-radius-sm);
	text-align: left;
}

.doe-fg-plate-card-notes-title {
	font-family: var(--doe-font-sans);
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--doe-color-forest);
	font-weight: 600;
	margin: 0 0 0.75rem;
}

.doe-fg-plate-card-notes-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 0.75rem;
	font-family: var(--doe-font-sans);
	font-size: 0.92rem;
	line-height: 1.6;
	margin-bottom: 0.4rem;
}

.doe-fg-plate-card-notes-row:last-child {
	margin-bottom: 0;
}

.doe-fg-plate-card-notes-key {
	flex: 0 0 90px;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--doe-color-moss);
	font-weight: 600;
}

.doe-fg-plate-card-notes-value {
	color: var(--doe-text-primary);
}

/* -------------------------------------------------------------------------
   37. FIELD GUIDE — MAIN CONTENT
   ------------------------------------------------------------------------- */
.doe-fg-content {
	padding-block: var(--doe-space-6);
}

.doe-fg-content-inner {
	/* ch scales with font-size and measures actual character width —
	   holds the "Meet the Plant" / "Identification" prose to a ~70
	   character reading measure exactly. */
	max-width: 70ch;
	margin-inline: auto;
	font-family: var(--doe-font-sans);
	color: var(--doe-text-primary);
	font-size: 1.05rem;
	line-height: 1.75;
}

.doe-fg-content-inner h2,
.doe-fg-content-inner h3 {
	font-family: var(--doe-font-serif);
	color: var(--doe-heading-color);
}

.doe-fg-content-inner h2 {
	margin-top: var(--doe-space-5);
}

.doe-fg-content-inner h3 {
	margin-top: var(--doe-space-4);
}

.doe-fg-content-inner p {
	margin: 0 0 1.25em;
}

.doe-fg-content-inner ul,
.doe-fg-content-inner ol {
	margin: 0 0 1.25em;
	padding-left: 1.5em;
}

.doe-fg-content-inner li + li {
	margin-top: 0.4em;
}

/* -------------------------------------------------------------------------
   38. FIELD GUIDE — QUICK REFERENCE
   ------------------------------------------------------------------------- */
.doe-fg-quick-ref {
	padding-block: var(--doe-space-6);
	background-color: var(--doe-surface-alt);
}

.doe-fg-quick-ref .doe-container {
	max-width: 900px;
}

.doe-fg-table {
	width: 100%;
	border-collapse: collapse;
	background-color: var(--doe-surface-card);
	border: 1px solid var(--doe-border-soft);
	border-radius: var(--doe-radius-md);
	overflow: hidden;
}

.doe-fg-table tr {
	border-bottom: 1px solid var(--doe-border-soft);
}

.doe-fg-table tr:last-child {
	border-bottom: none;
}

.doe-fg-table tr:nth-child(even) {
	background-color: var(--doe-surface-alt);
}

.doe-fg-table th,
.doe-fg-table td {
	padding: 0.85rem 1.25rem;
	text-align: left;
	font-family: var(--doe-font-sans);
	font-size: 0.98rem;
	vertical-align: top;
}

.doe-fg-table th {
	width: 38%;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--doe-color-moss);
	border-right: 1px solid var(--doe-border-soft);
}

.doe-fg-table td {
	color: var(--doe-text-primary);
}

/* -------------------------------------------------------------------------
   39. FIELD GUIDE — SUBSECTION CARDS
   Shared card pattern reused by Growing Guide, Harvest & Preserve,
   Culinary Uses, and Wildlife — each is structurally the same shape
   (a set of labeled sub-topics), so they share one CSS pattern.
   ------------------------------------------------------------------------- */
.doe-fg-growing-guide,
.doe-fg-culinary-uses {
	padding-block: var(--doe-space-6);
	background-color: var(--doe-surface);
}

.doe-fg-harvest-preserve,
.doe-fg-wildlife {
	padding-block: var(--doe-space-6);
	background-color: var(--doe-surface-alt);
}

.doe-fg-lede {
	font-family: var(--doe-font-serif);
	font-size: 1.2rem;
	line-height: 1.7;
	color: var(--doe-text-primary);
	max-width: 68ch;
	margin: 0 0 var(--doe-space-4);
}

.doe-fg-subsection-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.25rem;
}

.doe-fg-subsection-card {
	background-color: var(--doe-surface-card);
	border: 1px solid var(--doe-border-soft);
	border-radius: var(--doe-radius-md);
	padding: 1.5rem;
}

.doe-fg-subsection-card-title {
	font-family: var(--doe-font-serif);
	font-size: 1.15rem;
	color: var(--doe-heading-color);
	margin: 0 0 0.5rem;
}

.doe-fg-subsection-card-text {
	font-family: var(--doe-font-sans);
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--doe-text-primary);
	margin: 0;
}

/* -------------------------------------------------------------------------
   40. FIELD GUIDE — SEASONAL CALENDAR
   ------------------------------------------------------------------------- */
.doe-fg-seasonal-calendar {
	padding-block: var(--doe-space-6);
}

.doe-fg-seasonal-calendar .doe-container {
	max-width: 900px;
}

.doe-fg-seasonal-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.25rem;
}

.doe-fg-seasonal-card {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.25rem 1.5rem;
	border-radius: var(--doe-radius-md);
	border: 1px solid var(--doe-border-soft);
	border-top: 3px solid var(--doe-color-sage);
	background-color: var(--doe-surface-card);
}

.doe-fg-seasonal-card--spring {
	border-top-color: var(--doe-season-spring);
}

.doe-fg-seasonal-card--summer {
	border-top-color: var(--doe-season-summer);
}

.doe-fg-seasonal-card--autumn {
	border-top-color: var(--doe-season-autumn);
}

.doe-fg-seasonal-card--winter {
	border-top-color: var(--doe-season-winter);
}

.doe-fg-seasonal-card-title {
	font-family: var(--doe-font-serif);
	font-size: 1.2rem;
	color: var(--doe-heading-color);
	margin: 0;
}

.doe-fg-seasonal-card-text {
	font-family: var(--doe-font-sans);
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--doe-text-primary);
	margin: 0;
}

/* -------------------------------------------------------------------------
   41. FIELD GUIDE — TRADITIONAL KNOWLEDGE
   ------------------------------------------------------------------------- */
.doe-fg-traditional-use {
	padding-block: var(--doe-space-6);
	background-color: var(--doe-color-linen);
	border-top: 1px solid var(--doe-border-soft);
	border-bottom: 1px solid var(--doe-border-soft);
}

.doe-fg-traditional-use-inner {
	max-width: 720px;
}

.doe-fg-traditional-use-eyebrow {
	font-family: var(--doe-font-sans);
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--doe-color-clay);
	margin: 0 0 0.5rem;
}

.doe-fg-traditional-use-heading {
	font-family: var(--doe-font-serif);
	color: var(--doe-heading-color);
	font-size: clamp(1.5rem, 2.4vw, 1.9rem);
	margin: 0 0 1rem;
}

.doe-fg-traditional-use-disclaimer {
	font-family: var(--doe-font-sans);
	font-style: italic;
	color: var(--doe-text-primary);
	line-height: 1.7;
	margin: 0;
	padding-left: 1rem;
	border-left: 3px solid var(--doe-color-clay);
}

.doe-fg-traditional-use-extra {
	font-family: var(--doe-font-sans);
	color: var(--doe-text-muted);
	line-height: 1.7;
	margin: 1rem 0 0;
}

.doe-fg-traditional-use-block {
	margin-top: var(--doe-space-4);
}

.doe-fg-traditional-use-block:first-of-type {
	margin-top: 0;
}

.doe-fg-traditional-use-block-title {
	font-family: var(--doe-font-sans);
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--doe-heading-color);
	margin: 0 0 0.5rem;
}

.doe-fg-traditional-use-block p {
	font-family: var(--doe-font-sans);
	color: var(--doe-text-primary);
	line-height: 1.7;
	margin: 0;
}

.doe-fg-traditional-use-block--disclaimer {
	padding: 1.25rem 1.5rem;
	background-color: var(--doe-surface-card);
	border: 1px solid var(--doe-border-soft);
	border-radius: var(--doe-radius-md);
}

.doe-fg-traditional-use-block--safety {
	padding: 1.25rem 1.5rem;
	background-color: var(--doe-surface-card);
	border: 1px solid var(--doe-color-clay);
	border-left-width: 4px;
	border-radius: var(--doe-radius-md);
}

/* -------------------------------------------------------------------------
   42. FIELD GUIDE — FIELD NOTE
   ------------------------------------------------------------------------- */
.doe-fg-field-note {
	padding-block: var(--doe-space-5);
}

.doe-fg-field-note-inner {
	max-width: 640px;
	text-align: center;
}

.doe-fg-field-note-label {
	font-family: var(--doe-font-sans);
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--doe-color-moss);
	margin: 0 0 0.75rem;
}

.doe-fg-field-note-text {
	font-family: var(--doe-font-serif);
	font-style: italic;
	font-size: 1.25rem;
	line-height: 1.6;
	color: var(--doe-heading-color);
	margin: 0;
}

/* -------------------------------------------------------------------------
   43. FIELD GUIDE — RELATED LEARNING
   ------------------------------------------------------------------------- */
.doe-fg-related {
	padding-block: var(--doe-space-6);
	background-color: var(--doe-surface-alt);
}

.doe-fg-related-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: var(--doe-space-4);
}

.doe-fg-related-links-group {
	margin-top: var(--doe-space-4);
}

.doe-fg-related-links-title {
	font-family: var(--doe-font-serif);
	font-size: 1.2rem;
	color: var(--doe-heading-color);
	margin: 0 0 0.75rem;
}

.doe-fg-link-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
}

.doe-fg-link-list-item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: var(--doe-font-sans);
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--doe-color-forest);
	text-decoration: none;
}

.doe-fg-link-list-item:hover,
.doe-fg-link-list-item:focus-visible {
	text-decoration: underline;
}

/* -------------------------------------------------------------------------
   44. FIELD GUIDE — SOURCES & REFERENCES
   ------------------------------------------------------------------------- */
.doe-fg-sources {
	padding-block: var(--doe-space-6);
	background-color: var(--doe-surface-alt);
	border-top: 1px solid var(--doe-border-soft);
}

.doe-fg-sources .doe-container {
	max-width: 720px;
}

.doe-fg-sources-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.doe-fg-sources-list li {
	font-family: var(--doe-font-sans);
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--doe-text-muted);
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--doe-border-soft);
}

.doe-fg-sources-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

/* -------------------------------------------------------------------------
   45. FIELD GUIDE ARCHIVE — GRID
   ------------------------------------------------------------------------- */
.doe-fg-archive {
	padding-block: var(--doe-space-6);
}

.doe-fg-archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: var(--doe-space-4);
}

.doe-fg-card {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	background-color: var(--doe-surface-card);
	border: 1px solid var(--doe-border-soft);
	border-radius: var(--doe-radius-lg);
	padding: 1.75rem;
	color: var(--doe-text-primary);
	text-decoration: none;
	box-shadow: var(--doe-shadow-soft);
	transition: transform var(--doe-transition), box-shadow var(--doe-transition), border-color var(--doe-transition);
}

.doe-fg-card:hover,
.doe-fg-card:focus-visible {
	transform: translateY(-6px);
	box-shadow: var(--doe-shadow-lift);
	border-color: var(--doe-color-forest);
	color: var(--doe-text-primary);
}

.doe-fg-card-media {
	border-radius: var(--doe-radius-md);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	margin-bottom: 0.25rem;
}

.doe-fg-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.doe-fg-card-title {
	font-family: var(--doe-font-serif);
	color: var(--doe-heading-color);
	font-size: 1.35rem;
	margin: 0;
}

.doe-fg-card-botanical {
	font-family: var(--doe-font-serif);
	font-style: italic;
	color: var(--doe-text-muted);
	font-size: 0.95rem;
	margin: 0;
}

.doe-fg-card-excerpt {
	font-family: var(--doe-font-sans);
	font-size: 0.92rem;
	color: var(--doe-text-muted);
	margin: 0;
	flex-grow: 1;
}

.doe-fg-card-badges {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: 0;
	padding: 0;
}

.doe-fg-card-badges .doe-fg-badge {
	font-size: 0.68rem;
	padding: 0.3em 0.8em;
}

.doe-fg-card-link {
	font-family: var(--doe-font-sans);
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--doe-color-forest);
	margin-top: 0.25rem;
}

.doe-fg-empty-state {
	max-width: 520px;
	margin-inline: auto;
	text-align: center;
	padding-block: var(--doe-space-5);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.doe-fg-empty-state-text {
	font-family: var(--doe-font-sans);
	color: var(--doe-text-muted);
	font-size: 1.05rem;
	line-height: 1.7;
	margin: 0;
}

/* -------------------------------------------------------------------------
   46. FIELD GUIDES — RESPONSIVE
   ------------------------------------------------------------------------- */
@media (max-width: 782px) {
	.doe-fg-content-inner {
		font-size: 1rem;
	}

	.doe-fg-seasonal-grid,
	.doe-fg-subsection-grid {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	}

	.doe-fg-table th {
		width: 45%;
	}
}

@media (max-width: 560px) {
	.doe-fg-seasonal-grid,
	.doe-fg-subsection-grid,
	.doe-fg-archive-grid {
		grid-template-columns: 1fr;
	}

	.doe-fg-related-links {
		flex-direction: column;
	}

	.doe-fg-related-links .doe-btn {
		width: 100%;
	}

	.doe-fg-table,
	.doe-fg-table tbody,
	.doe-fg-table tr,
	.doe-fg-table th,
	.doe-fg-table td {
		display: block;
		width: auto;
	}

	.doe-fg-table th {
		border-right: none;
		padding-bottom: 0.25rem;
	}

	.doe-fg-table td {
		padding-top: 0;
	}

	.doe-fg-table tr {
		padding: 0.75rem 1.25rem;
	}
}

/* -------------------------------------------------------------------------
   47. FIELD GUIDES — PRINT
   ------------------------------------------------------------------------- */
@media print {
	.site-header,
	.site-footer,
	.doe-fg-related,
	.doe-fg-related-links,
	.doe-cta-band,
	.skip-link {
		display: none !important;
	}

	.doe-fg-content-inner,
	.doe-fg-quick-ref .doe-container,
	.doe-fg-seasonal-calendar .doe-container,
	.doe-fg-traditional-use-inner {
		max-width: 100%;
	}

	.doe-fg-hero,
	.doe-fg-plate,
	.doe-fg-quick-ref,
	.doe-fg-growing-guide,
	.doe-fg-seasonal-calendar,
	.doe-fg-harvest-preserve,
	.doe-fg-traditional-use,
	.doe-fg-culinary-uses,
	.doe-fg-wildlife,
	.doe-fg-field-note,
	.doe-fg-sources {
		background: none !important;
		border-color: #000 !important;
	}

	.doe-fg-table th,
	.doe-fg-table td,
	.doe-fg-table tr:nth-child(even) {
		background: none !important;
	}

	.doe-fg-content-inner,
	.doe-fg-table th,
	.doe-fg-table td,
	.doe-fg-subsection-card-text,
	.doe-fg-seasonal-card-text,
	.doe-fg-field-note-text,
	.doe-fg-traditional-use-disclaimer,
	.doe-fg-sources-list li {
		color: #000 !important;
	}

	.doe-fg-plate-placeholder {
		display: none;
	}

	a[href]::after {
		content: "";
	}
}

/* =========================================================================
   DEN OF EVE — KNOWLEDGE GARDEN PAGE
   Every section reuses existing component/Field-Guide classes and
   tokens; these are just the section-level wrapper rules (padding and
   background rhythm) that don't already exist elsewhere.
   ========================================================================= */

/* -------------------------------------------------------------------------
   48. KNOWLEDGE GARDEN — SECTION WRAPPERS
   ------------------------------------------------------------------------- */
.doe-kg-collections,
.doe-kg-seasonal-focus {
	padding-block: var(--doe-space-6);
	background-color: var(--doe-surface);
}

.doe-kg-featured-guide,
.doe-kg-latest-guides {
	padding-block: var(--doe-space-6);
	background-color: var(--doe-surface-alt);
}

.doe-kg-featured-guide-inner {
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
}

.doe-kg-featured-guide-content {
	margin-top: var(--doe-space-3);
}

.doe-kg-featured-guide-title {
	font-family: var(--doe-font-serif);
	color: var(--doe-heading-color);
	font-size: clamp(1.6rem, 2.8vw, 2.1rem);
	margin: 0 0 0.35rem;
}

.doe-kg-featured-guide-excerpt {
	font-family: var(--doe-font-sans);
	color: var(--doe-text-muted);
	font-size: 1.02rem;
	line-height: 1.7;
	max-width: 60ch;
	margin: 0.75rem auto 1.5rem;
}

.doe-kg-seasonal-focus .doe-seasonal-banner {
	max-width: 720px;
	margin-inline: auto;
}

.doe-kg-seasonal-focus .doe-seasonal-banner-inner {
	max-width: none;
	align-items: stretch;
}

.doe-kg-seasonal-focus .doe-fg-table {
	margin-bottom: var(--doe-space-3);
	text-align: left;
}

.doe-kg-seasonal-focus .doe-btn {
	align-self: center;
}

/* =========================================================================
   DEN OF EVE — HERBARIUM ARCHIVE EXPERIENCE
   Deliberately namespaced under doe-herbarium-* rather than reusing
   .doe-fg-card / .doe-fg-archive-grid / .doe-fg-plate-placeholder /
   .doe-fg-empty-state — those are also consumed by the Knowledge
   Garden page's template parts, which this sprint must not visually
   affect. Nothing in this section modifies an existing rule; it only
   adds new ones.
   ========================================================================= */

/* -------------------------------------------------------------------------
   49. HERBARIUM ARCHIVE — BREADCRUMB
   ------------------------------------------------------------------------- */
.doe-breadcrumb {
	margin-bottom: var(--doe-space-3);
}

.doe-breadcrumb-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	font-family: var(--doe-font-sans);
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--doe-text-muted);
}

.doe-breadcrumb-list li:not(:last-child)::after {
	content: "/";
	margin-left: 0.5rem;
	color: var(--doe-border-soft);
}

.doe-breadcrumb-list a {
	color: var(--doe-text-muted);
	text-decoration: underline;
	text-decoration-color: transparent;
	text-underline-offset: 3px;
}

.doe-breadcrumb-list a:hover,
.doe-breadcrumb-list a:focus-visible {
	color: var(--doe-color-forest);
	text-decoration-color: currentColor;
}

.doe-breadcrumb-list [aria-current="page"] {
	color: var(--doe-heading-color);
	font-weight: 600;
}

/* -------------------------------------------------------------------------
   50. HERBARIUM ARCHIVE — FILTER BAR
   ------------------------------------------------------------------------- */
.doe-herbarium-filters {
	padding-block: var(--doe-space-4);
	background-color: var(--doe-surface-alt);
	border-bottom: 1px solid var(--doe-border-soft);
}

.doe-herbarium-filters-form {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: var(--doe-space-3);
}

.doe-herbarium-filter-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	flex: 1 1 180px;
}

.doe-herbarium-filter-field--search {
	flex: 2 1 240px;
}

.doe-herbarium-filter-field--submit {
	flex: 0 0 auto;
}

.doe-herbarium-filter-field label {
	font-family: var(--doe-font-sans);
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--doe-color-moss);
}

.doe-herbarium-filter-field .doe-input {
	width: 100%;
}

/* -------------------------------------------------------------------------
   51. HERBARIUM ARCHIVE — GRID
   ------------------------------------------------------------------------- */
.doe-herbarium-archive {
	padding-block: var(--doe-space-6);
	background-color: var(--doe-surface);
}

.doe-herbarium-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--doe-space-4);
}

/* -------------------------------------------------------------------------
   52. HERBARIUM ARCHIVE — CARD
   ------------------------------------------------------------------------- */
.doe-herbarium-card {
	display: flex;
	flex-direction: column;
	background-color: var(--doe-surface-card);
	border: 1px solid var(--doe-border-soft);
	border-radius: var(--doe-radius-md);
	overflow: hidden;
	text-decoration: none;
	color: var(--doe-text-primary);
	transition: border-color var(--doe-transition), transform var(--doe-transition);
}

.doe-herbarium-card:hover,
.doe-herbarium-card:focus-visible {
	border-color: var(--doe-color-forest);
	transform: translateY(-3px);
	color: var(--doe-text-primary);
}

.doe-herbarium-card:focus-visible {
	outline: 3px solid var(--doe-focus-ring);
	outline-offset: 2px;
}

.doe-herbarium-card-media {
	aspect-ratio: 4 / 3;
	background-color: var(--doe-surface-alt);
	border-bottom: 1px solid var(--doe-border-soft);
}

.doe-herbarium-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.doe-herbarium-card-media-placeholder {
	position: relative;
	width: 100%;
	height: 100%;
	background: linear-gradient(160deg, var(--doe-color-linen) 0%, var(--doe-color-sage) 100%);
	overflow: hidden;
}

.doe-herbarium-card-media-placeholder-mark {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 46px;
	height: 72px;
	margin: -36px 0 0 -23px;
	border-radius: 0 100% 0 100%;
	background-color: rgba(247, 242, 234, 0.55);
	border: 1px solid rgba(247, 242, 234, 0.75);
	transform: rotate(-14deg);
}

.doe-herbarium-card-body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: var(--doe-space-3);
	flex-grow: 1;
}

.doe-herbarium-card-plate {
	font-family: var(--doe-font-sans);
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--doe-color-clay);
	margin: 0;
}

.doe-herbarium-card-title {
	font-family: var(--doe-font-serif);
	color: var(--doe-heading-color);
	font-size: 1.25rem;
	margin: 0;
}

.doe-herbarium-card-botanical {
	font-family: var(--doe-font-serif);
	font-style: italic;
	color: var(--doe-text-muted);
	font-size: 0.9rem;
	margin: 0;
}

.doe-herbarium-card-meta {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 0.25rem 0 0;
	padding: 0;
}

.doe-herbarium-card-meta li {
	display: flex;
	flex-direction: column;
	font-family: var(--doe-font-sans);
	font-size: 0.78rem;
}

.doe-herbarium-card-meta-label {
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--doe-color-moss);
	font-size: 0.68rem;
}

.doe-herbarium-card-meta-value {
	color: var(--doe-text-primary);
}

.doe-herbarium-card-excerpt {
	font-family: var(--doe-font-sans);
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--doe-text-muted);
	margin: 0.25rem 0 0;
	flex-grow: 1;
}

.doe-herbarium-card-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 0.75rem;
	padding: 0.6em 1.1em;
	border: 1px solid var(--doe-color-forest);
	border-radius: 999px;
	font-family: var(--doe-font-sans);
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--doe-color-forest);
	align-self: flex-start;
	transition: background-color var(--doe-transition), color var(--doe-transition);
}

.doe-herbarium-card:hover .doe-herbarium-card-cta,
.doe-herbarium-card:focus-visible .doe-herbarium-card-cta {
	background-color: var(--doe-color-forest);
	color: var(--doe-color-cream);
}

/* -------------------------------------------------------------------------
   53. HERBARIUM ARCHIVE — EMPTY STATE
   ------------------------------------------------------------------------- */
.doe-herbarium-empty-state {
	max-width: 480px;
	margin-inline: auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--doe-space-3);
	padding-block: var(--doe-space-5);
}

.doe-herbarium-empty-state-illustration {
	position: relative;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background-color: var(--doe-surface-alt);
	border: 1px solid var(--doe-border-soft);
	overflow: hidden;
}

.doe-herbarium-empty-state-shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(1px);
	opacity: 0.5;
}

.doe-herbarium-empty-state-shape--one {
	width: 90px;
	height: 90px;
	top: -20px;
	left: -20px;
	background: radial-gradient(circle at 30% 30%, var(--doe-color-sage) 0%, transparent 70%);
}

.doe-herbarium-empty-state-shape--two {
	width: 100px;
	height: 100px;
	bottom: -30px;
	right: -30px;
	background: radial-gradient(circle at 60% 60%, var(--doe-color-harvest-gold) 0%, transparent 70%);
	opacity: 0.35;
}

.doe-herbarium-empty-state-leaf {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 42px;
	height: 66px;
	margin: -33px 0 0 -21px;
	border-radius: 0 100% 0 100%;
	background-color: rgba(63, 90, 63, 0.18);
	border: 1px solid rgba(63, 90, 63, 0.3);
	transform: rotate(-12deg);
}

.doe-herbarium-empty-state-title {
	font-family: var(--doe-font-serif);
	color: var(--doe-heading-color);
	font-size: clamp(1.4rem, 2.4vw, 1.75rem);
	margin: 0;
	max-width: 22ch;
	text-wrap: balance;
}

.doe-herbarium-empty-state-text {
	font-family: var(--doe-font-sans);
	color: var(--doe-text-muted);
	font-size: 1rem;
	line-height: 1.7;
	margin: 0;
}

/* -------------------------------------------------------------------------
   54. HERBARIUM ARCHIVE — REDUCED MOTION
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	.doe-herbarium-card {
		transition: none;
	}
}

/* -------------------------------------------------------------------------
   55. HERBARIUM ARCHIVE — RESPONSIVE (4 / 2 / 1)
   ------------------------------------------------------------------------- */
@media (max-width: 782px) {
	.doe-herbarium-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.doe-herbarium-filters-form {
		flex-direction: column;
		align-items: stretch;
	}

	.doe-herbarium-filter-field,
	.doe-herbarium-filter-field--search {
		flex: 1 1 auto;
	}

	.doe-herbarium-filter-field--submit .doe-btn {
		width: 100%;
	}
}

@media (max-width: 560px) {
	.doe-herbarium-grid {
		grid-template-columns: 1fr;
	}

	.doe-breadcrumb-list {
		font-size: 0.72rem;
	}
}
