/* =========================================================================
   Manya — main stylesheet
   Elegant / feminine, mobile-first, WCAG-AA.
   Sections: 1 Tokens · 2 Reset · 3 Base type · 4 Layout · 5 Buttons/forms
             6 Header/nav · 7 Age gate · 8 Hero · 9 Cards/grids · 10 Topics
             11 Single post · 12 Sidebar/widgets · 13 Gallery/lightbox
             14 Contact · 15 Footer · 16 Utilities · 17 Motion
   ========================================================================= */

/* 1. Design tokens ------------------------------------------------------- */
:root {
	--blush:      #F7E8E8;
	--cream:      #FBF6F0;
	--mauve:      #C98B9E;
	--mauve-ink:  #A8637A;   /* darker mauve for AA text on light bg */
	--plum:       #6E2A46;
	--plum-deep:  #551F36;
	--charcoal:   #2B2B2B;
	--gold:       #C9A24B;
	--gold-deep:  #9A7A2F;
	--white:      #FFFFFF;
	--muted:      #6b5b60;

	--bg:         var(--cream);
	--surface:    var(--white);
	--text:       var(--charcoal);
	--heading:    var(--plum);
	--link:       var(--plum);
	--link-hover: var(--mauve-ink);
	--border:     #ecdfe0;

	/* Devanagari-first stacks (Hindi site). Latin fallbacks kept for numerals/URLs. */
	--font-serif: "Noto Serif Devanagari", "Tiro Devanagari Hindi", Georgia, serif;
	--font-sans:  "Mukta", "Noto Sans Devanagari", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

	--wrap:       1120px;
	--wrap-narrow: 720px;
	--measure:    68ch;

	--radius:     14px;
	--radius-sm:  8px;
	--radius-lg:  24px;

	--shadow-sm:  0 2px 10px rgba(110, 42, 70, 0.06);
	--shadow-md:  0 8px 30px rgba(110, 42, 70, 0.10);
	--shadow-lg:  0 20px 60px rgba(110, 42, 70, 0.16);

	--space:      clamp(1rem, 2.5vw, 1.5rem);
	--section:    clamp(3rem, 8vw, 6rem);

	--ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

/* 2. Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-sans);
	font-size: 1.0625rem;
	line-height: 1.85; /* Devanagari needs more leading than Latin */
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
ul, ol { padding-left: 1.25em; }
a { color: var(--link); text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color .2s var(--ease); }
a:hover { color: var(--link-hover); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 3px; }
body.nav-open, body.age-gate-pending { overflow: hidden; }

/* 3. Base typography -------------------------------------------------- */
h1, h2, h3, h4 {
	font-family: var(--font-serif);
	font-weight: 600;
	line-height: 1.35; /* room for shirorekha + matras */
	color: var(--heading);
	margin: 0 0 .5em;
	letter-spacing: 0; /* never track Devanagari */
	word-break: normal;
	overflow-wrap: break-word;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1.15em; }
strong { font-weight: 600; }
blockquote {
	margin: 1.8em 0;
	padding: .4em 0 .4em 1.4em;
	border-left: 3px solid var(--gold);
	font-family: var(--font-serif);
	font-size: 1.4rem;
	font-style: italic;
	color: var(--plum);
}
hr { border: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--mauve), transparent); margin: 2.5rem 0; }
code, pre { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em; }
pre { background: #2b2b2b; color: #f5eee9; padding: 1rem 1.2rem; border-radius: var(--radius-sm); overflow-x: auto; }
:where(p, li) code { background: var(--blush); padding: .1em .35em; border-radius: 4px; }
::selection { background: var(--mauve); color: #fff; }

/* 4. Layout ---------------------------------------------------------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--space); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.site-main { min-height: 50vh; }
.section { padding-block: var(--section); }
.section--tint { background: var(--blush); }
.section__head { text-align: center; max-width: 40rem; margin: 0 auto 2.5rem; }
.section__head p { color: var(--muted); margin: 0; }
.page-hero { text-align: center; padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 2.5rem); }
.page-hero p.lead { color: var(--muted); font-size: 1.2rem; max-width: 38rem; margin-inline: auto; }

/* 5. Buttons & forms ------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5em;
	font-family: var(--font-sans);
	font-size: 1rem; font-weight: 600; line-height: 1;
	padding: .95em 1.7em;
	border-radius: 999px;
	border: 1.5px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--plum); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--plum-deep); color: #fff; box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; border-color: var(--plum); color: var(--plum); }
.btn--ghost:hover { background: var(--plum); color: #fff; }
.btn--gold { background: var(--gold); color: var(--charcoal); }
.btn--gold:hover { background: var(--gold-deep); color: #fff; }

input, textarea, select {
	width: 100%;
	font: inherit;
	color: var(--text);
	background: var(--surface);
	border: 1.5px solid var(--border);
	border-radius: var(--radius-sm);
	padding: .8em 1em;
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
input:focus, textarea:focus, select:focus { border-color: var(--mauve); box-shadow: 0 0 0 3px rgba(201,139,158,.25); outline: none; }
label { display: block; font-weight: 600; margin-bottom: .4em; color: var(--plum); }
.form-row { margin-bottom: 1.25rem; }
.form-note { font-size: .9rem; color: var(--muted); }

/* 6. Header & navigation ------------------------------------------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(251, 246, 240, 0.85);
	backdrop-filter: saturate(180%) blur(10px);
	border-bottom: 1px solid transparent;
	transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--border); }
.site-header__inner {
	max-width: var(--wrap); margin-inline: auto;
	padding: .9rem var(--space);
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.site-title, .custom-logo-link { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 600; color: var(--plum); text-decoration: none; letter-spacing: .02em; }
.custom-logo { max-height: 56px; width: auto; }

.nav-toggle {
	appearance: none; background: none; border: 0; cursor: pointer;
	width: 44px; height: 44px; padding: 0; position: relative; color: var(--plum);
}
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after {
	content: ""; position: absolute; left: 10px; width: 24px; height: 2px;
	background: currentColor; border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle__bar { top: 21px; }
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after { transform: translateY(-7px) rotate(-45deg); }

.site-nav .menu { list-style: none; margin: 0; padding: 0; }
.site-nav a { display: block; text-decoration: none; color: var(--charcoal); font-weight: 500; }
.site-nav .current-menu-item > a { color: var(--plum); }

@media (max-width: 899px) {
	.site-nav {
		position: fixed; inset: 0 0 0 auto; width: min(320px, 80vw);
		background: var(--surface); box-shadow: var(--shadow-lg);
		padding: 5.5rem 2rem 2rem;
		transform: translateX(100%); transition: transform .3s var(--ease);
		overflow-y: auto;
	}
	.site-nav.is-open { transform: translateX(0); }
	.site-nav .menu li { border-bottom: 1px solid var(--border); }
	.site-nav .menu a { padding: 1rem 0; font-size: 1.15rem; }
}
@media (min-width: 900px) {
	.nav-toggle { display: none; }
	.site-nav .menu { display: flex; gap: 2rem; align-items: center; }
	.site-nav .menu a { padding: .4rem 0; position: relative; }
	.site-nav .menu a::after {
		content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
		background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
	}
	.site-nav .menu a:hover::after, .site-nav .current-menu-item > a::after { transform: scaleX(1); }
}

/* 7. Age gate ----------------------------------------------------- */
.age-gate {
	position: fixed; inset: 0; z-index: 1000;
	display: grid; place-items: center;
	padding: 1.5rem;
	background: linear-gradient(160deg, rgba(110,42,70,.55), rgba(43,43,43,.75));
	backdrop-filter: blur(6px);
}
.age-gate[hidden] { display: none; }
.age-gate__panel {
	background: var(--cream);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	max-width: 460px; width: 100%;
	padding: clamp(2rem, 5vw, 3rem);
	text-align: center;
	animation: manya-pop .35s var(--ease);
}
.age-gate.is-leaving { opacity: 0; transition: opacity .25s var(--ease); }
.age-gate__wordmark { font-family: var(--font-serif); font-size: 1.6rem; color: var(--plum); margin: 0 0 1rem; letter-spacing: .04em; }
.age-gate__title { font-size: 1.9rem; margin-bottom: .5rem; }
.age-gate__desc { color: var(--muted); margin-bottom: 1.5rem; }
.age-gate__actions { display: flex; flex-direction: column; gap: .75rem; }
.age-gate__fineprint { font-size: .82rem; color: var(--muted); margin: 1.25rem 0 0; }
@media (min-width: 420px) { .age-gate__actions { flex-direction: row; justify-content: center; } }

/* Fallback: if JS is disabled, still block content when gate is pending. */
.age-gate-pending .site-main,
.age-gate-pending .site-footer { filter: blur(6px); pointer-events: none; user-select: none; }

/* 8. Hero ------------------------------------------------------- */
.hero {
	position: relative;
	background: radial-gradient(120% 120% at 15% 0%, var(--blush) 0%, var(--cream) 55%);
	padding-block: clamp(3.5rem, 9vw, 7rem);
	overflow: hidden;
}
.hero__inner { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--space); display: grid; gap: 2.5rem; align-items: center; }
.hero__eyebrow {
	display: inline-block; font-family: var(--font-sans); font-size: .8rem; font-weight: 600;
	letter-spacing: .04em; text-transform: uppercase; color: var(--mauve-ink);
	margin-bottom: 1rem;
}
.hero h1 { margin-bottom: .35em; }
.hero__lead { font-size: 1.25rem; color: var(--muted); max-width: 34rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.75rem; }
.hero__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4 / 5; background: var(--mauve); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 860px) {
	.hero__inner { grid-template-columns: 1.05fr .95fr; gap: 4rem; }
}

/* 9. Cards & grids -------------------------------------------- */
.card-grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid--2, .card-grid--3, .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
	.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
	.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
	display: flex; flex-direction: column;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 3 / 2; background: var(--blush); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: 1.35rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.card__title { font-size: 1.4rem; margin: 0; }
.card__title a { text-decoration: none; color: var(--heading); }
.card__title a:hover { color: var(--mauve-ink); }
.card__excerpt { color: var(--muted); margin: 0; font-size: .98rem; }
.card__more { margin-top: auto; font-weight: 600; font-size: .95rem; text-decoration: none; }

/* Post meta line */
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem .8rem; font-size: .82rem; color: var(--muted); }
.post-meta a { color: var(--mauve-ink); text-decoration: none; font-weight: 600; }
.post-meta__cat { text-transform: uppercase; letter-spacing: .02em; }
.post-meta > * + *::before { content: "·"; margin-right: .8rem; color: var(--mauve); }

/* Category chip */
.chip {
	display: inline-block; font-size: .74rem; font-weight: 600; letter-spacing: .02em;
	text-transform: uppercase; color: var(--plum);
	background: var(--blush); padding: .35em .8em; border-radius: 999px; text-decoration: none;
}
.chip:hover { background: var(--mauve); color: #fff; }

/* 10. Topic cards -------------------------------------------- */
.topic-cards { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .topic-cards { grid-template-columns: repeat(3, 1fr); } }
.topic-card {
	display: flex; flex-direction: column; gap: .25rem;
	padding: 1.5rem 1.4rem;
	background: var(--surface); border: 1px solid var(--border);
	border-radius: var(--radius); text-decoration: none;
	transition: background .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.topic-card:hover { transform: translateY(-3px); border-color: var(--mauve); background: var(--blush); }
.topic-card__name { font-family: var(--font-serif); font-size: 1.4rem; color: var(--plum); }
.topic-card__count { font-size: .82rem; color: var(--muted); }

/* Newsletter band */
.newsletter-band { background: linear-gradient(135deg, var(--plum), var(--plum-deep)); color: #fff; text-align: center; border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 4rem); }
.newsletter-band h2 { color: #fff; }
.newsletter-band p { color: rgba(255,255,255,.85); max-width: 32rem; margin-inline: auto; }
.newsletter-band form { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1.5rem; }
.newsletter-band input { max-width: 320px; }

/* 11. Single post ------------------------------------------- */
.entry { max-width: var(--measure); margin-inline: auto; padding-inline: var(--space); }
.entry-header { max-width: var(--wrap-narrow); margin: 0 auto; padding: clamp(2rem,5vw,3.5rem) var(--space) 1.5rem; text-align: center; }
.entry-header h1 { margin-bottom: .5rem; }
.entry-header .post-meta { justify-content: center; }
.entry-featured { max-width: var(--wrap); margin: 1.5rem auto 2.5rem; padding-inline: var(--space); }
.entry-featured img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

.entry-content { font-size: 1.12rem; }
.entry-content > * { margin-bottom: 1.3em; }
.entry-content h2 { margin-top: 1.8em; }
.entry-content h3 { margin-top: 1.5em; }
.entry-content img { border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.entry-content ul, .entry-content ol { padding-left: 1.4em; }
.entry-content li { margin-bottom: .5em; }
.entry-content a { text-decoration: underline; }
.entry-content figcaption { font-size: .85rem; color: var(--muted); text-align: center; margin-top: .5rem; }

/* Disclaimer box */
.disclaimer-box {
	display: flex; gap: .9rem;
	background: var(--blush);
	border: 1px solid #ecd3d3;
	border-left: 4px solid var(--mauve-ink);
	border-radius: var(--radius-sm);
	padding: 1rem 1.2rem;
	margin: 0 0 2rem;
	font-size: .95rem;
	color: #5a4247;
}
.disclaimer-box p { margin: 0; }
.disclaimer-box__icon { font-size: 1.2rem; color: var(--mauve-ink); flex-shrink: 0; line-height: 1.4; }
.entry .disclaimer-box { margin-top: 0; }

/* Author box */
.author-box {
	display: flex; gap: 1.25rem; align-items: flex-start;
	background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
	padding: 1.5rem; margin: 3rem auto; max-width: var(--measure);
}
.author-box__img { border-radius: 50%; }
.author-box__name { margin: 0 0 .3rem; }
.author-box__bio { margin: 0; color: var(--muted); font-size: .96rem; }

/* Share */
.share { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin: 2rem auto; max-width: var(--measure); }
.share__label { font-weight: 600; color: var(--plum); }
.share__link { font-size: .85rem; padding: .4em .9em; border: 1px solid var(--border); border-radius: 999px; text-decoration: none; }
.share__link:hover { background: var(--plum); color: #fff; border-color: var(--plum); }

/* Related */
.related { background: var(--blush); padding-block: var(--section); margin-top: 3rem; }
.related__title { text-align: center; margin-bottom: 2rem; }
.related .card-grid { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--space); }

/* Comments */
.comments-area { max-width: var(--measure); margin: 3rem auto; padding-inline: var(--space); }
.comment-list { list-style: none; padding: 0; }
.comment-body { padding: 1.2rem 0; border-bottom: 1px solid var(--border); }
.comment-list .children { list-style: none; padding-left: 1.5rem; }

/* 12. Blog layout + sidebar -------------------------------- */
.blog-layout { max-width: var(--wrap); margin-inline: auto; padding: var(--section) var(--space); display: grid; gap: 3rem; }
@media (min-width: 980px) { .blog-layout { grid-template-columns: minmax(0, 1fr) 300px; } }

.category-filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.category-filter a { font-size: .85rem; padding: .45em 1em; border: 1px solid var(--border); border-radius: 999px; text-decoration: none; color: var(--charcoal); }
.category-filter a:hover, .category-filter a.is-active { background: var(--plum); color: #fff; border-color: var(--plum); }

.widget { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1.5rem; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); }
.widget__title { font-size: 1.2rem; margin-bottom: 1rem; }
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget li { padding: .5rem 0; border-bottom: 1px solid var(--border); }
.widget li:last-child { border-bottom: 0; }
.widget a { text-decoration: none; }
.widget .search-form { display: flex; gap: .5rem; }
.widget .search-form input[type="submit"] { width: auto; background: var(--plum); color: #fff; border-color: var(--plum); cursor: pointer; }

.popular-post { display: flex; gap: .8rem; align-items: center; }
.popular-post img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.popular-post a { font-family: var(--font-serif); font-size: 1.05rem; line-height: 1.25; }

/* Pagination */
.pagination { margin-top: 3rem; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.pagination .page-numbers {
	display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 .6rem;
	border: 1px solid var(--border); border-radius: var(--radius-sm); text-decoration: none; color: var(--charcoal);
}
.pagination .page-numbers.current { background: var(--plum); color: #fff; border-color: var(--plum); }
.pagination .page-numbers:hover:not(.current) { border-color: var(--mauve); }

/* 13. Gallery + lightbox ---------------------------------- */
.gallery-grid { columns: 2 200px; column-gap: 1rem; max-width: var(--wrap); margin: var(--section) auto; padding-inline: var(--space); }
@media (min-width: 720px) { .gallery-grid { columns: 3 260px; } }
.gallery-grid a { display: block; margin-bottom: 1rem; border-radius: var(--radius); overflow: hidden; break-inside: avoid; box-shadow: var(--shadow-sm); }
.gallery-grid img { width: 100%; transition: transform .4s var(--ease), filter .4s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.05); filter: brightness(1.05); }

.lightbox {
	position: fixed; inset: 0; z-index: 1000;
	display: grid; place-items: center; padding: 2rem;
	background: rgba(43, 43, 43, .92);
}
.lightbox[hidden] { display: none; }
.lightbox__img { max-width: 92vw; max-height: 88vh; width: auto; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox__close {
	position: absolute; top: 1.2rem; right: 1.4rem;
	background: none; border: 0; color: #fff; font-size: 2.5rem; line-height: 1; cursor: pointer;
}

/* 14. Contact -------------------------------------------- */
.contact-layout { max-width: var(--wrap); margin-inline: auto; padding: var(--section) var(--space); display: grid; gap: 3rem; }
@media (min-width: 900px) { .contact-layout { grid-template-columns: 1.4fr 1fr; } }
.contact-aside { background: var(--blush); border-radius: var(--radius-lg); padding: 2rem; align-self: start; }
.contact-aside h2 { font-size: 1.5rem; }
.form-feedback { padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; }
.form-feedback--ok { background: #e7f2e9; color: #245c33; border: 1px solid #bcd9c3; }
.form-feedback--err { background: #f8e4e4; color: #8a2b2b; border: 1px solid #e6b8b8; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* 15. Footer -------------------------------------------- */
.site-footer { background: var(--charcoal); color: #d9cfd2; margin-top: var(--section); }
.site-footer a { color: #efe3e6; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__inner {
	max-width: var(--wrap); margin-inline: auto; padding: var(--section) var(--space) 2.5rem;
	display: grid; gap: 2.5rem; grid-template-columns: 1fr;
}
@media (min-width: 700px) { .site-footer__inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .site-footer__inner { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; } }
.site-footer__wordmark { font-family: var(--font-serif); font-size: 1.6rem; color: #fff; margin: 0 0 .6rem; }
.site-footer__heading { font-size: 1rem; text-transform: uppercase; letter-spacing: .03em; color: #fff; margin-bottom: 1rem; }
.site-footer .menu, .social-links { list-style: none; padding: 0; margin: 0; }
.site-footer .menu li, .social-links li { padding: .35rem 0; }
.newsletter-form { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .8rem; }
.newsletter-form input { flex: 1; min-width: 160px; background: #3a3a3a; border-color: #4a4a4a; color: #fff; }
.newsletter-form input::placeholder { color: #9a8f92; }
.site-footer__bar {
	border-top: 1px solid #3d3d3d;
	max-width: var(--wrap); margin-inline: auto; padding: 1.5rem var(--space);
	display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; align-items: center; justify-content: space-between;
	font-size: .85rem;
}
.site-footer__copy { margin: 0; color: #a99fa2; }
.menu--legal { display: flex; flex-wrap: wrap; gap: 1rem; }
.menu--legal a { font-size: .85rem; }

/* 16. Utilities ---------------------------------------- */
.screen-reader-text {
	border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
	height: 1px; width: 1px; margin: -1px; padding: 0; overflow: hidden; position: absolute; word-wrap: normal !important;
}
.skip-link { position: absolute; left: -999px; top: 0; z-index: 2000; background: var(--plum); color: #fff; padding: .8em 1.2em; border-radius: 0 0 var(--radius-sm) 0; }
.skip-link:focus { left: 0; }
.text-center { text-align: center; }
.stack > * + * { margin-top: 1.25rem; }
.mt-section { margin-top: var(--section); }

/* 17. Motion ------------------------------------------ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes manya-pop { from { opacity: 0; transform: scale(.94) translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
	.reveal { opacity: 1; transform: none; }
}
