:root {
	--ink: #07070c;
	--panel: #0e0e17;
	--panel-2: #14141f;
	--line: rgba(255, 255, 255, .08);
	--txt: #f4f2ff;
	--muted: #9a97b8;
	--gold: #f7c23b;
	--gold-2: #ffe08a;
	--orange: #ef8f3c;
	--orange-deep: #e2732a;
	--grad: linear-gradient(135deg, #ffe08a 0%, #f7c23b 45%, #ef8f3c 100%);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background:
		radial-gradient(1200px 600px at 80% -10%, rgba(247, 194, 59, .12), transparent 60%),
		radial-gradient(900px 500px at -10% 10%, rgba(239, 143, 60, .08), transparent 55%),
		var(--ink);
	color: var(--txt);
	font-family: 'Rubik', system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

/* Donor breadcrumbs are unboxed text rows on every page. */
.crumbs {
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
}

.wrap {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px;
}

a {
	color: inherit;
	text-decoration: none;
}

.display {
	font-family: 'Unbounded', sans-serif;
}

.site-nav {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(14px);
	background: linear-gradient(180deg, rgba(7, 7, 12, .92), rgba(7, 7, 12, .55));
	border-bottom: 1px solid var(--line);
}

.nav-in {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 88px;
	gap: 40px;
	max-width: 1860px;
	margin: 0 auto;
	padding: 0 30px;
}

.nav-l {
	display: flex;
	align-items: center;
	gap: 56px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.logo .emblem {
	width: 54px;
	height: 54px;
	overflow: hidden;
	flex-shrink: 0;
	display: block;
}

.logo .emblem img {
	height: 54px;
	max-width: none;
	display: block;
}

.logo .wordmark {
	display: flex;
	flex-direction: column;
	font-family: 'Unbounded', sans-serif;
	font-weight: 800;
	line-height: .92;
	letter-spacing: -.5px;
	font-size: 21px;
	background: linear-gradient(180deg, #f4d992 0%, #e8b45f 55%, #c98a4e 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.nav-links {
	display: flex;
	gap: 34px;
	font-size: 18px;
	color: var(--txt);
	letter-spacing: -.36px;
}

.nav-links a {
	position: relative;
	color: var(--txt);
	font-weight: 500;
	padding: 7px 0;
	transition: color .22s;
}

.nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--grad);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .28s cubic-bezier(.2, .85, .3, 1);
}

.nav-links a:hover,
.nav-links a.on,
.nav-links a.current-menu-item {
	color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.on::after,
.nav-links a.current-menu-item::after {
	transform: scaleX(1);
}

.nav-links a.on,
.nav-links a.current-menu-item {
	font-weight: 600;
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 39px;
}

.hmenu {
	display: flex;
	gap: 19px;
	align-items: flex-start;
}

.hitem {
	width: 86px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: center;
	position: relative;
	cursor: pointer;
	color: #cfc7b6;
	transition: color .25s ease;
}

.hitem svg {
	width: 24px;
	height: 24px;
	display: block;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform .25s ease, filter .25s ease;
}

.hitem:hover {
	color: var(--gold-2);
}

.hitem:hover svg {
	transform: translateY(-3px) scale(1.1);
	filter: drop-shadow(0 4px 8px rgba(247, 194, 59, .4));
}

.hitem span {
	font-size: 16px;
	color: var(--txt);
	line-height: 24px;
}

.hitem .tag {
	position: absolute;
	top: -6px;
	left: calc(50% + 8px);
	padding: 1px 5px 2px;
	border-radius: 96px;
	background: linear-gradient(-90deg, #e3c569, #cb8e50);
	font-family: 'Rubik', sans-serif;
	font-weight: 600;
	font-size: 12px;
	font-style: normal;
	line-height: 16px;
	color: #fff;
}

.tag.is-empty,
.dbadge.is-empty {
	display: none;
}

.avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 1px solid #e3c569;
	padding: 4px;
	object-fit: cover;
	box-sizing: border-box;
	background-clip: content-box;
}

.account-control {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
	min-width: 52px;
	color: var(--txt);
}

.account-control__icon {
	display: grid;
	width: 46px;
	height: 46px;
	flex: 0 0 auto;
	place-items: center;
	border: 1px solid rgba(247, 194, 59, .4);
	border-radius: 50%;
	background: rgba(247, 194, 59, .07);
	color: var(--gold-2);
}

.account-control__icon svg,
.maccount__icon svg,
.dock-ava > svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.account-control__copy {
	display: grid;
	gap: 1px;
	max-width: 104px;
}

.account-control__copy strong {
	overflow: hidden;
	font-size: 13px;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.account-control__copy small {
	color: var(--muted);
	font-size: 10px;
}

.account-control:hover .account-control__icon {
	border-color: var(--gold);
	background: rgba(247, 194, 59, .12);
}

.burger {
	display: none;
	width: 46px;
	height: 46px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: rgba(255, 255, 255, .03);
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
}

.burger i {
	position: absolute;
	left: 12px;
	right: 12px;
	height: 2px;
	border-radius: 2px;
	background: var(--gold-2);
	transition: transform .3s, opacity .2s;
}

.burger i:nth-child(1) { top: 15px; }
.burger i:nth-child(2) { top: 22px; }
.burger i:nth-child(3) { top: 29px; }
.burger.on i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.on i:nth-child(2) { opacity: 0; }
.burger.on i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mnav {
	position: fixed;
	top: 72px;
	left: 0;
	right: 0;
	z-index: 49;
	padding: 18px 20px 24px;
	background: linear-gradient(180deg, rgba(8, 8, 12, .99), rgba(8, 8, 12, .97));
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(14px);
	transform: translateY(-120%);
	transition: transform .35s cubic-bezier(.2, .85, .3, 1);
	visibility: hidden;
}

.mnav.on {
	transform: translateY(0);
	visibility: visible;
}

.mnav a.ml {
	display: block;
	padding: 13px 4px;
	font-size: 17px;
	border-bottom: 1px solid var(--line);
	color: var(--txt);
}

.mnav a.ml:last-of-type { border-bottom: none; }
.mnav a.ml.on { color: var(--gold); }

.mnav .mtools {
	margin-top: 14px;
	display: flex;
	gap: 10px;
}

.mnav .mtools a {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 12px 6px;
	border-radius: 12px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, .02);
	font-size: 12px;
	color: var(--muted);
}

.mnav .mtools svg {
	width: 22px;
	height: 22px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.maccount {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 12px;
	padding: 12px;
	border: 1px solid rgba(247, 194, 59, .18);
	border-radius: 14px;
	background: rgba(247, 194, 59, .055);
}

.maccount > img,
.maccount__icon {
	display: grid;
	width: 40px;
	height: 40px;
	flex: 0 0 auto;
	place-items: center;
	border: 1px solid rgba(247, 194, 59, .36);
	border-radius: 50%;
	object-fit: cover;
	color: var(--gold-2);
}

.maccount > span:not(.maccount__icon) {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.maccount strong {
	overflow: hidden;
	font-size: 14px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.maccount small {
	color: var(--muted);
	font-size: 11px;
}

.maccount > i {
	margin-left: auto;
	color: var(--gold);
	font-style: normal;
}

footer {
	border-top: 1px solid var(--line);
	background: radial-gradient(900px 420px at 12% 20%, rgba(247, 194, 59, .05), transparent 62%), var(--panel);
}

.foot-in {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 50px;
	align-items: center;
	padding: 56px 0;
}

.foot-zep {
	display: grid;
	place-items: center;
}

.foot-zep img {
	max-width: 540px;
	width: 100%;
	filter: drop-shadow(0 26px 46px rgba(0, 0, 0, .6));
	animation: zepFloat 7s ease-in-out infinite;
	transform-origin: 60% 50%;
	will-change: transform;
}

@keyframes zepFloat {
	0%, 100% { transform: translateY(0) rotate(-1.2deg); }
	50% { transform: translateY(-14px) rotate(1.2deg); }
}

.foot-zep:hover img { animation-duration: 3.2s; }

.foot-links {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
	font-size: 16px;
	font-weight: 500;
	color: #ece7da;
}

.foot-links a {
	color: #ece7da;
	transition: color .2s;
}

.foot-links a:hover { color: var(--gold); }

.foot-phone {
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.foot-phone b {
	font-family: 'Unbounded', sans-serif;
	font-weight: 700;
	font-size: clamp(20px, 2.2vw, 27px);
	color: var(--txt);
}

.mail-btn,
.vk-btn {
	width: 40px;
	height: 40px;
	border-radius: 11px;
	display: grid;
	place-items: center;
	transition: transform .25s, box-shadow .25s, border-color .25s, color .25s, background .25s;
}

.mail-btn {
	background: var(--grad);
	color: #1a1206;
}

.mail-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(247, 194, 59, .35);
}

.vk-btn {
	flex-shrink: 0;
	border: 1px solid rgba(247, 224, 180, .22);
	background: rgba(255, 255, 255, .03);
	color: #ece7da;
}

.vk-btn:hover {
	transform: translateY(-2px);
	border-color: rgba(247, 194, 59, .55);
	color: var(--gold);
	background: rgba(247, 194, 59, .07);
}

.vk-btn svg { width: 19px; height: 19px; }

.mail-btn svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.foot-sub { margin-top: 26px; }

.foot-sub h4 {
	font-family: 'Unbounded', sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.35;
	max-width: 330px;
}

.sub-row {
	margin-top: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	max-width: 430px;
	padding: 6px 6px 6px 18px;
	border-radius: 13px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, .02);
	transition: border-color .25s;
}

.sub-row:focus-within { border-color: rgba(247, 194, 59, .45); }

.sub-row input {
	flex: 1;
	min-width: 0;
	border: none;
	background: none;
	outline: none;
	color: var(--txt);
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
}

.sub-row input::placeholder { color: var(--muted); }

.sub-row button {
	padding: 11px 20px;
	border-radius: 9px;
	border: none;
	cursor: pointer;
	background: var(--grad);
	color: #1a1206;
	font-family: 'Rubik', sans-serif;
	font-weight: 700;
	font-size: 13px;
	flex-shrink: 0;
	transition: transform .22s, box-shadow .22s;
}

.sub-row button:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(247, 194, 59, .35);
}

.consent {
	margin-top: 12px;
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 11.5px;
	color: var(--muted);
}

.consent input {
	accent-color: var(--gold);
	width: 13px;
	height: 13px;
}

.foot-bot {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	padding: 20px 0 30px;
	border-top: 1px solid var(--line);
	font-size: 13px;
	color: #9d968a;
}

.foot-bot a:hover { color: var(--gold); }

.dock {
	position: fixed;
	left: 50%;
	bottom: 26px;
	z-index: 95;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px;
	border-radius: 99px;
	background: linear-gradient(180deg, rgba(24, 20, 14, .92), rgba(12, 10, 7, .92));
	border: 1px solid rgba(247, 224, 180, .16);
	backdrop-filter: blur(18px) saturate(1.2);
	box-shadow: 0 24px 60px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .06);
	transition: transform .45s cubic-bezier(.2, .85, .3, 1), opacity .35s;
}

.dock.hide {
	transform: translateX(-50%) translateY(140%);
	opacity: 0;
	pointer-events: none;
}

.dock-logo {
	width: 46px;
	height: 46px;
	flex-shrink: 0;
	border-radius: 50%;
	overflow: hidden;
	display: grid;
	place-items: center;
	background: radial-gradient(circle at 35% 28%, #2b2114, #140f08 74%);
	border: 1px solid rgba(247, 194, 59, .42);
	transition: transform .3s, border-color .25s;
}

.dock-logo img {
	width: 34px;
	height: 34px;
	object-fit: cover;
	object-position: left;
	max-width: none;
}

.dock-logo:hover {
	transform: rotate(-8deg) scale(1.06);
	border-color: var(--gold);
}

.dock-items {
	display: flex;
	align-items: center;
	gap: 2px;
}

.di {
	position: relative;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: none;
	background: none;
	cursor: pointer;
	display: grid;
	place-items: center;
	color: #cfc7b6;
	transition: color .22s, background .22s, transform .22s;
}

.di:hover,
.di.on {
	color: var(--gold-2);
	background: rgba(247, 194, 59, .1);
}

.di:hover { transform: translateY(-3px); }

.di svg {
	width: 21px;
	height: 21px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.di .dbadge {
	position: absolute;
	top: 5px;
	right: 5px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 99px;
	background: var(--grad);
	color: #1a1206;
	font-size: 10px;
	font-weight: 800;
	font-style: normal;
	display: grid;
	place-items: center;
	line-height: 1;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .5);
}

.di::after {
	content: attr(data-tip);
	position: absolute;
	bottom: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%) translateY(4px);
	padding: 6px 11px;
	border-radius: 8px;
	white-space: nowrap;
	font-size: 12px;
	font-weight: 600;
	color: var(--txt);
	background: rgba(16, 13, 9, .97);
	border: 1px solid rgba(247, 224, 180, .14);
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s, transform .2s;
}

.di:hover::after {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.dock-sep {
	width: 1px;
	height: 26px;
	background: rgba(247, 224, 180, .14);
	margin: 0 4px;
	flex-shrink: 0;
}

.dock-ava {
	width: 46px;
	height: 46px;
	flex-shrink: 0;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid rgba(247, 194, 59, .45);
	padding: 3px;
	background-clip: content-box;
	transition: transform .25s, border-color .25s;
}

.dock-ava img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	display: block;
	max-width: none;
}

.dock-ava:hover {
	transform: scale(1.07);
	border-color: var(--gold);
}

.dock-ava.is-guest {
	position: relative;
	display: grid;
	place-items: center;
	background: rgba(247, 194, 59, .08);
	color: var(--gold-2);
	overflow: visible;
}

.dock-ava__status {
	position: absolute;
	top: 0;
	right: 0;
	width: 9px;
	height: 9px;
	border: 2px solid #171109;
	border-radius: 50%;
	background: var(--orange);
}

@media (max-width: 1540px) and (min-width: 1081px) {
	.nav-in {
		gap: 22px;
		padding-inline: 22px;
	}

	.nav-l {
		gap: clamp(20px, 2.6vw, 40px);
	}

	.nav-links {
		gap: clamp(16px, 1.55vw, 26px);
		font-size: 16px;
	}

	.nav-right {
		gap: 18px;
	}

	.hmenu {
		gap: 2px;
	}

	.hitem {
		width: 70px;
	}

	.hitem span {
		font-size: 13px;
	}

	.account-control__copy {
		display: none;
	}
}

@media (max-width: 1240px) and (min-width: 1081px) {
	.nav-links {
		gap: 14px;
		font-size: 14px;
	}

	.logo .wordmark {
		display: none;
	}
}

.dock-pop {
	position: fixed;
	left: 50%;
	bottom: 88px;
	z-index: 96;
	transform: translateX(-50%) translateY(10px);
	display: flex;
	flex-direction: column;
	min-width: 190px;
	padding: 8px;
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(24, 20, 14, .98), rgba(12, 10, 7, .98));
	border: 1px solid rgba(247, 224, 180, .16);
	backdrop-filter: blur(18px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, .6);
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s, transform .3s cubic-bezier(.2, .85, .3, 1), visibility .25s;
}

.dock-pop.on {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.dock-pop a {
	padding: 11px 14px;
	border-radius: 10px;
	font-size: 14.5px;
	color: #e6e0d3;
	transition: background .2s, color .2s;
}

.dock-pop a:hover {
	background: rgba(247, 194, 59, .1);
	color: var(--gold-2);
}

.dock,
.dock-pop {
	display: none;
}

/*
 * WooCommerce can inject notices directly into forms and content grids after
 * an AJAX request. Keep every wrapper and notice in its own full-width row so
 * it can never become an accidental catalogue, account or checkout column.
 */
.woocommerce :where(
	.woocommerce-notices-wrapper,
	.woocommerce-NoticeGroup,
	.woocommerce-error,
	.woocommerce-info,
	.woocommerce-message
) {
	min-width: 0;
	max-width: 100%;
}

.woocommerce :where(
	.woocommerce-notices-wrapper,
	.woocommerce-NoticeGroup,
	.woocommerce-error,
	.woocommerce-info,
	.woocommerce-message
) {
	grid-column: 1 / -1;
	justify-self: stretch;
}

.woocommerce :where(.woocommerce-notices-wrapper, .woocommerce-NoticeGroup) {
	width: 100%;
}

.woocommerce :where(.woocommerce-notices-wrapper, .woocommerce-NoticeGroup):empty {
	display: none;
}

/* Safe fallback for extension notices that do not use a page-specific skin. */
.woocommerce :where(.woocommerce-error, .woocommerce-info, .woocommerce-message) {
	position: relative;
	margin: 0 0 20px;
	padding: 16px 18px 16px 50px;
	border: 1px solid rgba(247, 194, 59, .24);
	border-radius: 14px;
	background: rgba(247, 194, 59, .07);
	color: var(--txt);
	list-style: none;
	line-height: 1.5;
}

.woocommerce :where(.woocommerce-error, .woocommerce-info, .woocommerce-message)::before {
	top: 16px;
	left: 18px;
	margin: 0;
	line-height: 1;
}

@media (max-width: 1080px) {
	body.home .site-nav,
	body.home .mnav {
		display: none;
	}

	body.home .dock,
	body.home .dock-pop {
		display: flex;
	}

	body.home { padding-bottom: 96px; }

	body:not(.home) .site-nav,
	body:not(.home) .mnav {
		display: block;
	}

	body:not(.home) .dock,
	body:not(.home) .dock-pop {
		display: none;
	}

	body:not(.home) .nav-links,
	body:not(.home) .hmenu,
	body:not(.home) .nav-right > a {
		display: none;
	}

	body:not(.home) .burger {
		display: block;
	}

	body:not(.home) .nav-in {
		height: 72px;
		padding: 0 20px;
		gap: 16px;
	}

	body:not(.home) .logo .emblem {
		width: 44px;
		height: 44px;
	}

	body:not(.home) .logo .emblem img {
		height: 44px;
	}

	body:not(.home) .logo .wordmark {
		font-size: 17px;
	}
}

@media (max-width: 760px) {
	.wrap { padding: 0 18px; }
}

@media (max-width: 560px) {
	.foot-in {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 40px 0;
	}

	.foot-zep img { max-width: 300px; }

	.foot-bot {
		flex-direction: column;
		gap: 10px;
	}

	.dock {
		left: 14px;
		right: 14px;
		bottom: 14px;
		transform: none;
		justify-content: space-between;
		padding: 7px;
		gap: 2px;
	}

	.dock.hide { transform: translateY(140%); }
	.dock-logo,
	.di,
	.dock-ava { width: 42px; height: 42px; }
	.di::after { display: none; }

	.dock-pop {
		left: 14px;
		right: 14px;
		bottom: 70px;
		transform: translateY(10px);
	}

	.dock-pop.on { transform: translateY(0); }
}

@media (max-width: 420px) {
	.dock-logo {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nav-links a::after,
	.mnav,
	.dock,
	.dock-pop,
	.di {
		transition: none;
	}

	.foot-zep img {
		animation: none;
	}
}
