/* =========================================================================
   Manya — creator-platform skin  (loads AFTER main.css)
   18+ adult creator home. Soft dark romantic: black / deep plum / rose gold /
   cream text. Large cinematic photography, grain, vignette, locked tiles.
   Sections: 1 Tokens · 2 Base overrides · 3 Header + CTA · 4 Age gate
             5 Homepage: hero/about/offers/steps/locked/band/journal
             6 Guides hub · 7 Private/request page · 8 Gallery locks
             9 Blog/single on dark · 10 Footer · 11 Forms · 12 Motion
   ========================================================================= */

/* 1. Dark romantic tokens --------------------------------------------- */
:root {
	--cream:      #F4EAE4;   /* now = warm cream TEXT on dark */
	--blush:      #241820;   /* now = dark plum tint surface  */
	--mauve:      #C98B9E;
	--mauve-ink:  #E7A9BC;   /* lightened for AA on dark      */
	--plum:       #7A2E4C;
	--plum-deep:  #4A1C30;
	--charcoal:   #0E0A0D;
	--gold:       #E0AE6A;   /* rose gold */
	--gold-deep:  #C98F45;
	--rose:       #E88AA0;

	--bg:         #0E0A0D;
	--bg-2:       #150F14;
	--surface:    #1B131A;
	--surface-2:  #241A22;
	--text:       #EFE3DE;
	--heading:    #F7EDE8;
	--link:       #E6C79A;
	--link-hover: #F2DFC3;
	--border:     rgba(224, 174, 106, 0.18);
	--muted:      #B7A2AA;

	--shadow-sm:  0 2px 12px rgba(0, 0, 0, 0.35);
	--shadow-md:  0 12px 40px rgba(0, 0, 0, 0.45);
	--shadow-lg:  0 28px 80px rgba(0, 0, 0, 0.6);

	--grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* 2. Base overrides -------------------------------------------------- */
body {
	background: var(--bg);
	color: var(--text);
}
body::before { /* global grain */
	content: "";
	position: fixed; inset: 0; z-index: 1;
	pointer-events: none;
	background-image: var(--grain);
	opacity: 0.035;
	mix-blend-mode: overlay;
}
a { color: var(--link); }
a:hover { color: var(--link-hover); }
::selection { background: var(--rose); color: #1a0f14; }
hr { background: linear-gradient(90deg, transparent, var(--gold), transparent); }

.section--tint { background: var(--bg-2); }
.section__head p { color: var(--muted); }
.page-hero p.lead { color: var(--muted); }

.card { background: var(--surface); border-color: var(--border); }
.card__title a { color: var(--heading); }
.card__title a:hover { color: var(--mauve-ink); }
.card__media { background: var(--surface-2); }
.card__media img[src$=".svg"] { opacity: .3; filter: grayscale(.4); }
/* Card fallback: a muted photo behind the category name (posts w/o a thumbnail) */
.card__media--texture { position: relative; }
.card__media--texture img { filter: brightness(.42) saturate(.65) contrast(1.05); transform: scale(1.02); }
.card__media-label {
	position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
	font-family: var(--font-serif); font-size: 1.15rem; letter-spacing: .06em;
	color: rgba(255,255,255,.92); text-shadow: 0 2px 16px rgba(0,0,0,.7); padding: 1rem;
}
.card:hover .card__media--texture img { transform: scale(1.06); }
.chip { background: var(--surface-2); color: var(--gold); }
.chip:hover { background: var(--plum); color: #fff; }

.topic-card { background: var(--surface); border-color: var(--border); }
.topic-card:hover { background: var(--surface-2); border-color: var(--gold); }
.topic-card__name { color: var(--cream); }

.btn--primary { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #201013; box-shadow: 0 8px 26px rgba(224,174,106,.28); }
.btn--primary:hover { background: linear-gradient(135deg, #ecc084, var(--gold)); color: #201013; }
.btn--ghost { border-color: rgba(244,234,228,.4); color: var(--cream); }
.btn--ghost:hover { background: rgba(244,234,228,.1); color: #fff; }
.btn--gold { background: var(--gold); color: #201013; }

input, textarea, select {
	background: var(--surface-2);
	border-color: var(--border);
	color: var(--text);
}
input::placeholder, textarea::placeholder { color: #8b7a82; }
input:focus, textarea:focus, select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(224,174,106,.22); }
label { color: var(--cream); }

.disclaimer-box { background: var(--surface); border-color: var(--border); border-left-color: var(--gold); color: var(--muted); }
.disclaimer-box__icon { color: var(--gold); }
.widget { background: var(--surface); border-color: var(--border); }
.category-filter a { border-color: var(--border); color: var(--text); }
.author-box { background: var(--surface); border-color: var(--border); }

/* 3. Header + persistent CTA --------------------------------------- */
.site-header {
	background: linear-gradient(180deg, rgba(10, 6, 9, 0.82) 0%, rgba(10, 6, 9, 0.55) 100%);
	backdrop-filter: saturate(140%) blur(12px);
	border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { background: rgba(12, 8, 11, 0.94); }
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(0,0,0,.5); border-bottom-color: var(--border); }
.site-title, .custom-logo-link { color: var(--cream); letter-spacing: .04em; }
.nav-toggle { color: var(--cream); }
.site-nav a { color: var(--cream); }
.site-nav .current-menu-item > a { color: var(--gold); }

.site-header__inner { gap: .75rem; }
.header-cta {
	display: inline-flex; align-items: center; gap: .5em;
	font-family: var(--font-sans); font-weight: 700; font-size: .92rem;
	padding: .7em 1.25em; border-radius: 999px;
	background: linear-gradient(135deg, var(--gold), var(--gold-deep));
	color: #201013 !important; text-decoration: none; white-space: nowrap;
	box-shadow: 0 6px 20px rgba(224,174,106,.3);
	transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.header-cta:hover { transform: translateY(-2px); color: #201013 !important; box-shadow: 0 10px 28px rgba(224,174,106,.4); }
.header-cta__pulse { width: 7px; height: 7px; border-radius: 50%; background: #7d1f1f; box-shadow: 0 0 0 0 rgba(125,31,31,.6); animation: manya-pulse 2.4s infinite; }
@keyframes manya-pulse { 0%{box-shadow:0 0 0 0 rgba(125,31,31,.55)} 70%{box-shadow:0 0 0 8px rgba(125,31,31,0)} 100%{box-shadow:0 0 0 0 rgba(125,31,31,0)} }

.site-header__inner { flex-wrap: nowrap; }
.site-branding { flex: 1; min-width: 0; }
.header-cta__label { white-space: nowrap; }
@media (max-width: 899px) {
	.site-nav { background: var(--bg-2); box-shadow: -20px 0 60px rgba(0,0,0,.6); }
	.site-nav .menu li { border-bottom-color: var(--border); }
	.header-cta { order: 2; padding: .6em 1em; font-size: .82rem; }
	.nav-toggle { order: 3; }
}
@media (max-width: 380px) {
	.header-cta { padding: .55em .85em; font-size: .78rem; }
	.site-title, .custom-logo-link { font-size: 1.5rem; }
}
@media (min-width: 900px) {
	.site-header__inner { gap: 1.5rem; }
	.header-cta { flex-shrink: 0; }
}

/* 4. Age gate ----------------------------------------------------- */
.age-gate { background: linear-gradient(160deg, rgba(74,28,48,.85), rgba(6,4,6,.94)); backdrop-filter: blur(10px); }
.age-gate__panel {
	background: linear-gradient(180deg, var(--surface-2), var(--surface));
	border: 1px solid var(--border);
	color: var(--text);
	position: relative; overflow: hidden;
}
.age-gate__panel::after { content:""; position:absolute; inset:0; background: var(--grain); opacity:.05; pointer-events:none; }
.age-gate__wordmark { color: var(--gold); letter-spacing: .12em; text-transform: uppercase; font-size: 1.1rem; }
.age-gate__title { color: var(--heading); }
.age-gate__desc { color: var(--muted); }
.age-gate__fineprint { color: #8b7a82; }
.age-gate-pending .site-main, .age-gate-pending .site-footer { filter: blur(10px) brightness(.5); }

/* 5. HOMEPAGE ==================================================== */
.creator-home { position: relative; z-index: 2; }
.creator-home .btn { font-size: 1.02rem; }
.c-section { padding-block: clamp(3.5rem, 9vw, 7rem); }
.c-wrap { max-width: 1180px; margin-inline: auto; padding-inline: var(--space); }
.c-eyebrow {
	display: inline-block; font-weight: 700; font-size: .78rem; letter-spacing: .18em;
	text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.c-pill {
	display: inline-flex; align-items: center; gap: .4em;
	font-size: .72rem; font-weight: 700; letter-spacing: .08em;
	padding: .4em .8em; border-radius: 999px;
	border: 1px solid var(--gold); color: var(--gold);
}

/* --- A. Hero --- */
.c-hero {
	position: relative; min-height: 100svh;
	display: grid; align-items: end;
	overflow: hidden;
	background: #0b0709;
}
/* image-3 is a full-length portrait (woman in pink saree, temple courtyard).
   Desktop: keep her figure dominant, architecture recedes. Mobile: tighter,
   toward her face + pallu. The Grok watermark sits bottom-right and is covered
   by the bottom scrim + cropped out on mobile. */
.c-hero__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; will-change: transform; }
@media (min-width: 900px) { .c-hero__photo { object-position: 60% 44%; } }
@media (max-width: 600px)  { .c-hero__photo { object-position: 58% 30%; } }
.c-hero__scrim {
	position: absolute; inset: 0; pointer-events: none;
	background:
		linear-gradient(90deg, rgba(10,6,9,.9) 0%, rgba(10,6,9,.55) 38%, rgba(10,6,9,.12) 72%, rgba(10,6,9,.2) 100%),
		linear-gradient(0deg, rgba(10,6,9,.95) 0%, rgba(10,6,9,.35) 22%, rgba(10,6,9,0) 45%),
		linear-gradient(180deg, rgba(10,6,9,.55) 0%, rgba(10,6,9,0) 26%);
}
.c-hero__inner { position: relative; z-index: 2; padding: 7rem var(--space) clamp(4rem, 10vw, 7rem); max-width: 1180px; margin-inline: auto; width: 100%; }
.c-hero__wordmark {
	display: inline-flex; align-items: center; gap: .6rem;
	font-family: var(--font-serif); color: var(--gold);
	font-size: 1.35rem; margin-bottom: 1rem;
	text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.c-hero__wordmark::before { content: ""; width: 28px; height: 1px; background: var(--gold); opacity: .7; }
.c-hero__name {
	font-family: var(--font-serif); color: #fff; line-height: 1.12; font-weight: 600;
	font-size: clamp(2.1rem, 5.4vw, 3.9rem); margin: 0 0 .5rem; letter-spacing: 0;
	max-width: 20ch; text-shadow: 0 6px 40px rgba(0,0,0,.65);
}
.c-hero__sub { color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 34rem; margin: 0 0 2rem; text-shadow: 0 2px 16px rgba(0,0,0,.55); }
.c-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.c-hero__pillrow { margin-top: 1.75rem; }
.c-hero .c-pill { background: rgba(10,6,9,.5); backdrop-filter: blur(4px); }
.c-scrolldown { position: absolute; left: 50%; bottom: 1.6rem; z-index: 2; transform: translateX(-50%); width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.5); border-radius: 999px; display: grid; place-items: start center; padding-top: 7px; }
.c-scrolldown span { width: 4px; height: 8px; border-radius: 2px; background: rgba(255,255,255,.8); animation: manya-scroll 1.8s var(--ease) infinite; }
@keyframes manya-scroll { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }
@media (prefers-reduced-motion: reduce) { .c-scrolldown span { animation: none; } }

/* --- B. Who is Manya --- */
.c-about { display: grid; gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
@media (min-width: 860px) { .c-about { grid-template-columns: .85fr 1fr; } }
.c-about__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; position: relative; }
.c-about__media img { width: 100%; height: 100%; object-fit: cover; }
.c-about__media::after { content:""; position:absolute; inset:0; box-shadow: inset 0 0 120px rgba(0,0,0,.5); }
.c-about h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
.c-about p { color: var(--text); font-size: 1.12rem; }
.c-about .c-note { color: var(--muted); font-size: .98rem; }

/* --- C. Offer cards --- */
.c-offers { display: grid; gap: 1.4rem; }
@media (min-width: 760px) { .c-offers { grid-template-columns: repeat(3, 1fr); } }
.offer-card {
	display: flex; flex-direction: column; gap: .7rem;
	padding: 1.9rem 1.7rem 1.7rem;
	background: linear-gradient(180deg, var(--surface-2), var(--surface));
	border: 1px solid var(--border); border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.offer-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.offer-card__kicker { font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.offer-card h3 { margin: 0; font-size: 1.45rem; color: var(--heading); }
.offer-card p { margin: 0; color: var(--muted); flex: 1; }
.offer-card__cta { margin-top: .6rem; font-weight: 700; color: var(--gold); text-decoration: none; }
.offer-card__cta:hover { color: var(--link-hover); }
.offer-card__help { font-size: .82rem; color: #8b7a82; margin: 0; }

/* --- D. Steps strip --- */
.c-steps { display: grid; gap: 1.2rem; }
@media (min-width: 620px) { .c-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .c-steps { grid-template-columns: repeat(4, 1fr); } }
.step-card {
	position: relative; overflow: hidden;
	border-radius: var(--radius); border: 1px solid var(--border);
	background: var(--surface); display: flex; flex-direction: column;
}
.step-card__img { aspect-ratio: 4/5; width: 100%; object-fit: cover; filter: brightness(.72) saturate(.9); }
.step-card__n { position: absolute; top: .8rem; left: .9rem; font-family: var(--font-serif); font-size: 2rem; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.7); }
.step-card__body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.step-card__body h3 { margin: 0; font-size: 1.15rem; }
.step-card__body p { margin: 0; color: var(--muted); font-size: .92rem; flex: 1; }
.step-card__body a { font-weight: 700; text-decoration: none; font-size: .9rem; }

/* --- E. Locked / member tease --- */
.c-locked-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .c-locked-grid { grid-template-columns: repeat(4, 1fr); } }
.media-tile {
	position: relative; display: block; overflow: hidden;
	border-radius: var(--radius); border: 1px solid var(--border);
	aspect-ratio: 3/4; background: var(--surface-2);
}
.media-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.media-tile:hover img { transform: scale(1.05); }
.media-tile.is-locked img { filter: blur(14px) brightness(.55); transform: scale(1.1); }
.media-tile__lock { position: absolute; inset: 0; display: grid; place-items: center; font-size: 2rem; color: rgba(255,255,255,.9); }
.media-tile__cta {
	position: absolute; left: 0; right: 0; bottom: 0; text-align: center;
	font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
	padding: .7rem; color: #201013; background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}

/* --- F. Personal assistance dark band --- */
.c-band {
	background:
		linear-gradient(180deg, rgba(74,28,48,.55), rgba(74,28,48,.55)),
		radial-gradient(120% 120% at 0% 0%, var(--plum) 0%, var(--plum-deep) 60%, #1a0a12 100%);
	border-block: 1px solid var(--border);
}
.c-band__inner { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .c-band__inner { grid-template-columns: 1.1fr 1fr; } }
.c-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.c-band__list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: .7rem; }
.c-band__list li { position: relative; padding-left: 1.6rem; color: rgba(255,255,255,.9); }
.c-band__list li::before { content: "\2014"; position: absolute; left: 0; color: var(--gold); }
.c-band__note { color: rgba(255,255,255,.6); font-size: .85rem; margin-top: 1rem; }

/* --- G. Journal teaser --- */
.c-journal__head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.c-journal__head a { font-weight: 700; text-decoration: none; }

/* --- H. Newsletter --- */
.creator-home .newsletter-band { background: linear-gradient(135deg, var(--plum), var(--plum-deep)); border: 1px solid var(--border); }

/* 6. Guides hub ------------------------------------------------- */
.guides-group { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.guides-group__head { border-bottom: 1px solid var(--border); padding-bottom: .8rem; margin-bottom: 1.6rem; }
.guides-group__head h2 { margin: 0 0 .2em; }
.guides-group__head p { margin: 0; color: var(--muted); }
.guides-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
@media (min-width: 700px) { .guides-list { grid-template-columns: repeat(2, 1fr); } }
.guide-link {
	display: flex; justify-content: space-between; align-items: center; gap: 1rem;
	padding: 1.1rem 1.3rem; border: 1px solid var(--border); border-radius: var(--radius);
	background: var(--surface); text-decoration: none; color: var(--cream);
	transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.guide-link:hover { border-color: var(--gold); transform: translateX(3px); color: #fff; }
.guide-link span:last-child { color: var(--gold); }
.guides-more { margin-top: 1rem; }

/* 7. Private / request page ----------------------------------- */
.private-hero { position: relative; overflow: hidden; padding-block: clamp(3rem,8vw,5.5rem); text-align: center; }
.private-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(80% 100% at 50% 0%, var(--plum-deep), transparent 70%); opacity:.6; }
.private-layout { max-width: 1120px; margin-inline: auto; padding: 0 var(--space) var(--section); display: grid; gap: 3rem; }
@media (min-width: 920px) { .private-layout { grid-template-columns: 1.3fr 1fr; align-items: start; } }
.request-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem); }
.request-aside { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.request-aside h2 { font-size: 1.4rem; }
.request-aside ul { padding-left: 1.1rem; color: var(--muted); }

.check-group { display: grid; gap: .6rem; margin: .3rem 0 1.25rem; }
.check-group legend { font-weight: 700; color: var(--cream); margin-bottom: .5rem; padding: 0; }
.check-item { display: flex; gap: .6rem; align-items: flex-start; font-weight: 400; color: var(--text); cursor: pointer; }
.check-item input { width: auto; margin-top: .35em; accent-color: var(--gold); flex-shrink: 0; }
.check-item--age { border: 1px solid var(--gold); border-radius: var(--radius-sm); padding: .8rem 1rem; background: rgba(224,174,106,.06); }

/* 7b. About page extras -------------------------------------- */
.about-topics { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1rem; }
.about-topics li { padding-left: 1.4rem; position: relative; color: var(--muted); }
.about-topics li::before { content: ""; position: absolute; left: 0; top: .6em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.about-topics__t { display: block; font-family: var(--font-serif); font-size: 1.15rem; color: var(--heading); margin-bottom: .1rem; }
.about-topics__d { display: block; }

.about-yesno { display: grid; gap: 1.25rem; }
@media (min-width: 700px) { .about-yesno { grid-template-columns: 1fr 1fr; } }
.about-yesno__col { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.6rem; background: var(--surface); }
.about-yesno__col h3 { margin: 0 0 .8rem; font-size: 1.2rem; }
.about-yesno__col ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.about-yesno__col li { margin-bottom: .35rem; }
.about-yesno__col--yes { border-left: 4px solid #4f9d6b; }
.about-yesno__col--no  { border-left: 4px solid var(--mauve-ink); }

/* newsletter inline feedback */
.newsletter-band .form-feedback { max-width: 32rem; margin: 1rem auto 0; }

/* Honeypot — must be fully off-screen and zero-size (no stray "Company" text). */
.honeypot,
.newsletter-band .honeypot {
	position: absolute !important;
	left: -9999px !important;
	top: auto !important;
	height: 0 !important;
	width: 0 !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* Mask any residual bottom-right AI watermark on photos. */
.card__media, .entry-featured, .gallery-grid a, .c-about__media, .c-hero { position: relative; }
.card__media::after,
.entry-featured::after,
.gallery-grid a:not(.is-locked)::after,
.c-about__media::before {
	content: ""; position: absolute; right: 0; bottom: 0; width: 44%; height: 30%;
	background: radial-gradient(130% 130% at 100% 100%, rgba(10,6,9,.7), rgba(10,6,9,0) 72%);
	pointer-events: none; z-index: 1;
}
.card__media--texture::after { display: none; } /* already heavily darkened */

/* 8. Gallery locks ------------------------------------------- */
.gallery-grid a.is-locked { position: relative; display: block; }
.gallery-grid a.is-locked img { filter: blur(16px) brightness(.5); transform: scale(1.15); }
.gallery-grid a.is-locked::after {
	content: "\01F512"; position: absolute; inset: 0; display: grid; place-items: center;
	font-size: 2rem; color: rgba(255,255,255,.92);
}
.gallery-note { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--space); text-align: center; color: var(--muted); }

/* 9. Blog + single on dark --------------------------------- */
.entry-content { color: var(--text); }
.entry-content a { color: var(--link); }
.single-page .entry-content h2, .single-page .entry-content h3 { color: var(--heading); }
blockquote { color: var(--mauve-ink); }
.site-main { position: relative; z-index: 2; }

/* 10. Footer ----------------------------------------------- */
.site-footer { background: #0A0709; color: #b7a2aa; border-top: 1px solid var(--border); }
.site-footer a { color: #e7d3c5; }
.site-footer a:hover { color: var(--gold); }
.site-footer__wordmark, .site-footer__heading { color: #fff; }
.site-footer__legalline { color: #8b7a82; font-size: .85rem; margin-top: .6rem; }
.site-footer__age { color: var(--gold); }

/* 11. Forms feedback on dark ------------------------------ */
.form-feedback--ok { background: rgba(40,120,70,.16); color: #9fe0b6; border-color: rgba(120,200,150,.3); }
.form-feedback--err { background: rgba(160,50,50,.16); color: #f0b0b0; border-color: rgba(220,140,140,.3); }
.form-note { color: #8b7a82; }

/* 12. Motion --------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	.header-cta__pulse { animation: none; }
}
