:root {
	--bright-black: #111111;
	--polished-silver: #D5DDE6;
	--normal-silver: #C9D0D9;
	--dim-silver: #BDC4CC;
	--polished-gold: #D8A72E;
	--carolina-blue: #99BADD;
	--bronze: #CD7F32;
	--copper: #B87333;
	--brass: #B5A642;
	--antique: #6B5A45;
	--rust: #8B3A2E;
	--forest-green: #1B4332;
	--regular-green: #3FA34D;
	--bone-white: #E8E2D0;
	--brown-fur: #6A4A32;
	--polished-white: #F8F9FA;
	--glass: rgba(210,230,255,0.16);
	--page-bg: var(--bright-black);
	--panel-bg: var(--glass);
	--footer-bg: var(--bright-black);
	--footer-fg: var(--polished-silver);
	--bruce-bg: var(--carolina-blue);
	--quote-author-fg: #F0CC17;
	--text-main: var(--polished-white);
	--text-soft: var(--bone-white);
	--text-muted: var(--normal-silver);
	--line-soft: var(--dim-silver);
	--accent-main: var(--polished-gold);
	--accent-warm: var(--bronze);
	--accent-deep: var(--rust);
	--button-bg: var(--polished-gold);
	--button-text: var(--forest-green);
	--button-alt-bg: var(--antique);
	--button-alt-text: var(--polished-white);
	--card-bg: var(--glass);
	--card-border: var(--dim-silver);
	--shadow-main: var(--brown-fur);
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	background: #0000FF;
	color: #FFFFFF;
	min-height: 100%;
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
}


body {
	min-height: 100vh;
	margin: 0;
	background:
	linear-gradient(
		180deg,
		var(--forest-green) 0%,
					var(--dim-silver) 28%,
					var(--bright-black) 58%,
					var(--bright-black) 100%
	);
	background-size: 100% 160%;
	animation: slow-body-glow 24s ease-in-out infinite alternate;
	color: var(--text-main);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.5;
	padding-bottom: 52px;
}

@keyframes slow-body-glow {
	0% {
		background-position: center top;
		filter: brightness(1) saturate(1);
	}
	100% {
		background-position: center bottom;
		filter: brightness(1.08) saturate(1.12);
	}
}

img,
picture,
svg,
video {
	display: block;
	max-width: 100%;
}
a {
	color: inherit;
	text-decoration: none;
}
button,
input,
textarea,
select {
	font: inherit;
}
button {
	cursor: pointer;
}
.container {
	width: min(100% - 2rem, 72rem);
	margin-inline: auto;
}






.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	width: 100%;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background:
	linear-gradient(
		135deg,
		var(--bright-black) 0%,
					rgba(90, 72, 48, 0.34) 8%,
					var(--antique) 16%,
					rgba(72, 48, 34, 0.42) 24%,
					var(--bright-black) 34%,
					rgba(184, 115, 51, 0.22) 44%,
					rgba(181, 166, 66, 0.18) 52%,
					rgba(80, 64, 48, 0.42) 60%,
					var(--bright-black) 70%,
					rgba(139, 58, 46, 0.24) 80%,
					rgba(107, 90, 69, 0.36) 90%,
					var(--bright-black) 100%
	),
	linear-gradient(
		45deg,
		rgba(255, 255, 255, 0.05) 0%,
					transparent 18%,
				 rgba(205, 127, 50, 0.12) 34%,
					transparent 52%,
				 rgba(181, 166, 66, 0.10) 68%,
					transparent 84%,
				 rgba(255, 255, 255, 0.04) 100%
	),
	linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.38) 0%,
					transparent 35%,
				 rgba(255, 255, 255, 0.04) 50%,
					transparent 65%,
				 rgba(0, 0, 0, 0.38) 100%
	);
	background-size: 220% 220%;
	background-position: left center;
	animation: slow-header-shift 32s ease-in-out infinite alternate;
	border-bottom: 1px solid var(--polished-gold);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

@keyframes slow-header-shift {
	0% {
		background-position: left center;
		filter: brightness(0.96) saturate(1.04);
	}
	100% {
		background-position: right center;
		filter: brightness(1.04) saturate(1.10);
	}
}


.brand-lockup {
	display: flex;
	align-items: center;
	gap: 10px;
}


.header-contact {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 36px;
	color: #171a1d;
	border: 1px solid var(--polished-silver);
	border-radius: 12px;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 900;
	font-variant: small-caps;
	letter-spacing: 0.06em;
	text-shadow:
	0 1px 0 rgba(255, 255, 255, 0.75),
	0 0 5px rgba(255, 255, 255, 0.22);
	background: linear-gradient(
		225deg,
		var(--polished-white) 0%,
								var(--normal-silver) 48%,
								var(--dim-silver) 100%
	);
	box-shadow:
	inset 0 1px 0 rgba(255, 255, 255, 0.62),
	inset 0 -1px 0 rgba(0, 0, 0, 0.22),
	0 0 8px rgba(255, 255, 255, 0.18),
	0 8px 18px rgba(0, 0, 0, 0.28);
	transition:
	color 0.16s ease,
	background 0.16s ease,
	border-color 0.16s ease,
	box-shadow 0.16s ease,
	transform 0.12s ease;
}

.header-contact:hover {
	color: #060708;
	background: linear-gradient(
		225deg,
		#ffffff 0%,
		var(--polished-silver) 48%,
								var(--normal-silver) 100%
	);
	border-color: var(--polished-white);
	text-shadow:
	0 1px 0 rgba(255, 255, 255, 0.88),
	0 0 6px rgba(255, 255, 255, 0.34);
	box-shadow:
	inset 0 1px 0 rgba(255, 255, 255, 0.78),
	inset 0 -1px 0 rgba(0, 0, 0, 0.24),
	0 0 10px rgba(255, 255, 255, 0.30),
	0 0 20px rgba(255, 255, 255, 0.16),
	0 9px 20px rgba(0, 0, 0, 0.32);
	transform: translateY(-1px);
}

.header-contact:active {
	color: #111417;
	background: linear-gradient(
		225deg,
		var(--dim-silver) 0%,
								var(--normal-silver) 48%,
								var(--polished-white) 100%
	);
	border-color: var(--normal-silver);
	text-shadow:
	0 1px 0 rgba(255, 255, 255, 0.62),
	0 0 3px rgba(255, 255, 255, 0.18);
	box-shadow:
	inset 0 2px 5px rgba(0, 0, 0, 0.38),
	inset 0 -1px 0 rgba(255, 255, 255, 0.24),
	0 0 6px rgba(255, 255, 255, 0.16),
	0 4px 12px rgba(0, 0, 0, 0.28);
	transform: translateY(2px) scale(0.98);
}

.brand-logo-frame {
	width: 56px;
	height: 56px;
	border: 2px solid rgba(255, 255, 255, 0.72);
	border-radius: 50%;
	overflow: hidden;
	flex: 0 0 auto;
	background:
	linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.10) 0%,
					var(--glass) 48%,
					rgba(0, 0, 0, 0.18) 100%
	),
	url("../assets/bruce_background.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow:
	0 0 4px rgba(255, 255, 255, 0.42),
	0 0 10px rgba(255, 255, 255, 0.22),
	0 0 18px rgba(216, 167, 46, 0.14),
	inset 0 0 4px rgba(255, 255, 255, 0.22),
	inset 0 0 10px rgba(0, 0, 0, 0.34);
}

.brand-logo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: translate(-10%, 0%) scale(1.1);
	display: block;
	background:
	linear-gradient(
		180deg,
		transparent 0%,
		var(--glass) 50%,
					transparent 100%
	),
	url("../assets/bruce_background.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.brand-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 164px;
	line-height: 1;
	text-align: center;
}

.brand-name {
	display: block;
	width: 100%;
	color: var(--polished-white);
	font-size: 1rem;
	font-weight: 900;
	font-variant: small-caps;
	letter-spacing: 0.09em;
	line-height: 1.05;
	text-align: center;
	text-shadow:
	0 1px 0 rgba(255, 255, 255, 0.62),
	1px 1px 2px var(--bright-black),
	0 0 7px rgba(255, 255, 255, 0.30),
	0 0 14px rgba(255, 255, 255, 0.18),
	0 0 22px rgba(216, 167, 46, 0.12);
	filter:
	brightness(1.12)
	contrast(1.1);
}

.brand-hr {
	width: 164px;
	height: 2px;
	margin: 4px auto;
	border: 0;
	background: linear-gradient(
		90deg,
		transparent 0%,
		var(--dim-silver) 12%,
								var(--polished-white) 50%,
								var(--dim-silver) 88%,
								transparent 100%
	);
	box-shadow:
	0 0 4px rgba(255, 255, 255, 0.38),
	0 0 10px rgba(216, 167, 46, 0.18);
}

.brand-motto {
	display: block;
	width: 100%;
	color: #D9A72E;
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.1;
	text-align: center;
	text-shadow:
	1px 1px 2px var(--bright-black),
	0 0 6px rgba(217, 167, 46, 0.34),
	0 0 14px rgba(217, 167, 46, 0.22);
	transform: none;
}








.site-nav {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--text-soft);
	font-size: 0.95rem;
}
.site-nav a {
	padding: 0.35rem 0;
	border-bottom: 1px solid transparent;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
	color: var(--accent-main);
	border-bottom-color: var(--accent-main);
}
.site-main {
	width: 100%;
	min-height: calc(100vh - 80px);
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 24px 0 40px;
}

.main-panel {
	width: 80%;
	max-width: 1100px;
	margin: 0 auto;
	padding: clamp(24px, 5vw, 56px);
	border: 1px solid var(--polished-silver);
	border-radius: 12px;
	background:
	linear-gradient(
		135deg,
		transparent 0%,
		rgba(210, 230, 255, 0.10) 16%,
					transparent 34%,
				 rgba(17, 17, 17, 0.78) 58%,
					transparent 82%,
				 rgba(210, 230, 255, 0.10) 100%
	),
	linear-gradient(
		315deg,
		rgba(17, 17, 17, 0.86) 0%,
					transparent 28%,
				 rgba(210, 230, 255, 0.08) 52%,
					transparent 76%,
				 rgba(17, 17, 17, 0.86) 100%
	),
	rgba(8, 10, 12, 0.72);
	backdrop-filter: blur(30px) saturate(135%) contrast(120%);
	-webkit-backdrop-filter: blur(30px) saturate(135%) contrast(120%);
	box-shadow:
	0 24px 80px rgba(0, 0, 0, 0.42),
	inset 0 1px 0 var(--dim-silver),
	inset 0 -1px 0 var(--bright-black),
	inset 1px 0 0 rgba(210, 230, 255, 0.10),
	inset -1px 0 0 rgba(210, 230, 255, 0.10);
	text-align: center;
}

.main-panel h1 {
	width: 100%;
	margin: 0 auto;
	color: var(--polished-white);
	font-size: clamp(2.4rem, 8vw, 5.8rem);
	font-weight: 800;
	font-variant: small-caps;
	letter-spacing: 0.045em;
	line-height: 0.92;
	text-align: center;
	text-wrap: balance;
	text-shadow:
	1px 1px 2px var(--bright-black),
	0 0 18px var(--glass),
	0 0 34px var(--dim-silver);
}

#motto {
margin: 14px 0 0;
color: var(--polished-gold);
font-size: clamp(1rem, 3vw, 1rem);
font-weight: 600;
font-variant: small-caps;
letter-spacing: 0.14em;
line-height: 1.1;
text-align: center;
text-transform: none;
text-shadow:
1px 1px 2px var(--bright-black),
0 0 14px var(--glass);
animation: motto-gold-glow 4.8s ease-in-out infinite alternate;
}

@keyframes motto-gold-glow {
	0% {
		color: var(--polished-gold);
		text-shadow:
		1px 1px 2px var(--bright-black),
		0 0 8px rgba(216, 167, 46, 0.24),
		0 0 14px var(--glass);
		filter: brightness(1) saturate(1.04);
	}
	50% {
		color: #f0c85a;
		text-shadow:
		1px 1px 2px var(--bright-black),
		0 0 8px rgba(255, 246, 190, 0.46),
		0 0 18px rgba(216, 167, 46, 0.38),
		0 0 30px rgba(216, 167, 46, 0.22);
		filter: brightness(1.12) saturate(1.16);
	}
	100% {
		color: #d9a72e;
		text-shadow:
		1px 1px 2px var(--bright-black),
		0 0 10px rgba(255, 214, 92, 0.34),
		0 0 22px rgba(216, 167, 46, 0.26),
		0 0 34px rgba(181, 166, 66, 0.16);
		filter: brightness(1.06) saturate(1.10);
	}
}

.hr-thin {
	width: 100%;
	height: 2px;
	margin: 26px auto;
	border: 0;
	background:
	linear-gradient(
		90deg,
		transparent 0%,
		var(--dim-silver) 12%,
					var(--polished-silver) 48%,
					var(--polished-white) 50%,
					var(--polished-silver) 52%,
					var(--dim-silver) 88%,
					transparent 100%
	);
	box-shadow:
	0 1px 2px var(--bright-black),
	0 0 12px var(--glass);
}

.default-text {
	max-width: 75ch;
	margin: 0 auto;
	color: var(--polished-white);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
	font-size: clamp(1rem, 2vw, 1.18rem);
	font-weight: 300;
	letter-spacing: 0.015em;
	line-height: 1.7;
	text-align: center;
	text-shadow:
	1px 1px 2px var(--bright-black),
	0 0 5px rgba(255, 255, 255, 0.18),
	0 0 10px rgba(255, 255, 255, 0.10);
}


.quote-card {
	width: min(92%, 465px);
	margin: 28px auto 0;
	padding: clamp(12px, 2.5vw, 20px);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(10px, 2.5vw, 18px);
	border: 1px solid rgba(255, 214, 92, 0.92);
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	background:
	linear-gradient(
		180deg,
		transparent 0%,
		var(--glass) 50%,
					transparent 100%
	),
	url("../assets/quote_background.png");
	background-size: cover;
	background-position: 28% center;
	background-repeat: no-repeat;
	box-shadow:
	0 0 6px rgba(255, 246, 190, 0.72),
	0 0 14px rgba(255, 214, 92, 0.70),
	0 0 34px rgba(216, 167, 46, 0.54),
	0 0 72px rgba(181, 116, 28, 0.34),
	0 16px 44px var(--glass);
	animation: quote-gold-radiance 4.8s ease-in-out infinite alternate;
}

.quote-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	background:
	linear-gradient(
		115deg,
		transparent 0%,
		transparent 34%,
		rgba(255, 255, 255, 0.42) 46%,
					rgba(255, 230, 130, 0.55) 50%,
					rgba(255, 255, 255, 0.30) 54%,
					transparent 66%,
				 transparent 100%
	);
	background-size: 240% 100%;
	mix-blend-mode: screen;
	animation: quote-gold-sweep 5.6s ease-in-out infinite;
	z-index: 1;
}

.quote-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	box-shadow:
	inset 0 0 0 1px rgba(255, 246, 190, 0.68),
	inset 0 0 8px rgba(255, 214, 92, 0.42),
	inset 0 0 18px rgba(216, 167, 46, 0.22);
	animation: quote-inner-shine 3.8s ease-in-out infinite alternate;
	z-index: 1;
}

.quote-image-frame,
.quote-text {
	z-index: 2;
}

@keyframes quote-gold-radiance {
	0% {
		border-color: rgba(216, 167, 46, 0.70);
		box-shadow:
		0 0 4px rgba(255, 246, 190, 0.45),
		0 0 12px rgba(216, 167, 46, 0.46),
		0 0 30px rgba(216, 167, 46, 0.34),
		0 0 66px rgba(181, 116, 28, 0.20),
		0 16px 44px var(--glass);
		filter: brightness(1) saturate(1.08);
	}
	45% {
		border-color: rgba(255, 237, 156, 1);
		box-shadow:
		0 0 8px rgba(255, 255, 230, 0.82),
		0 0 20px rgba(255, 214, 92, 0.82),
		0 0 48px rgba(216, 167, 46, 0.58),
		0 0 96px rgba(205, 127, 50, 0.36),
		0 16px 44px var(--glass);
		filter: brightness(1.08) saturate(1.24);
	}
	100% {
		border-color: rgba(255, 202, 74, 0.92);
		box-shadow:
		0 0 6px rgba(255, 246, 190, 0.62),
		0 0 16px rgba(255, 202, 74, 0.66),
		0 0 40px rgba(216, 167, 46, 0.46),
		0 0 84px rgba(181, 166, 66, 0.30),
		0 16px 44px var(--glass);
		filter: brightness(1.04) saturate(1.16);
	}
}

@keyframes quote-gold-sweep {
	0% {
		background-position: 180% center;
		opacity: 0.08;
	}
	35% {
		opacity: 0.34;
	}
	55% {
		opacity: 0.62;
	}
	100% {
		background-position: -80% center;
		opacity: 0.10;
	}
}

@keyframes quote-inner-shine {
	0% {
		box-shadow:
		inset 0 0 0 1px rgba(255, 246, 190, 0.42),
		inset 0 0 8px rgba(255, 214, 92, 0.26),
		inset 0 0 18px rgba(216, 167, 46, 0.14);
	}
	100% {
		box-shadow:
		inset 0 0 0 1px rgba(255, 246, 190, 0.82),
		inset 0 0 12px rgba(255, 214, 92, 0.46),
		inset 0 0 26px rgba(216, 167, 46, 0.26);
	}
}

.quote-image-frame {
	position: absolute;
	left: 0;
	bottom: 0;
	width: clamp(120px, 24vw, 220px);
	aspect-ratio: 1;
	border: none;
	border-radius: 0;
	overflow: visible;
	background: transparent;
	box-shadow: none;
	z-index: 1;
	pointer-events: none;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}

.quote-image {
	width: 88%;
	height: 88%;
	object-fit: contain;
	object-position: left bottom;
	display: block;
	transform: none;
}
.quote-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	z-index: 2;
	margin-left: clamp(35px, 8vw, 90px);
	transform: translateX(25px);
}

.quote-line {
	margin: 0;
	color: var(--polished-white);
	font-size: clamp(1.7rem, 6vw, 4.2rem);
	font-style: italic;
	font-weight: 800;
	font-variant: small-caps;
	letter-spacing: 0.04em;
	line-height: 0.95;
	text-shadow:
	1px 1px 1px var(--bright-black),
	0 0 9px var(--glass),
	0 0 14px var(--dim-silver);
}

.quote-author {
	margin: 14px 0 0 -24px;
	color: var(--quote-author-fg);
	font-size: clamp(1.275rem, 3vw, 1.575rem);
	font-weight: 900;
	font-variant: small-caps;
	letter-spacing: 0.18em;
	line-height: 1;
	transform: translateX(25px);
	text-shadow:
	1px 1px 2px var(--bright-black),
	0 0 8px rgba(255, 215, 120, 0.28);
}


.main-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: fit-content;
	margin: 24px auto 0;
	padding: 20px;
	border: 1px solid var(--polished-silver);
	border-radius: 16px;
	background: rgba(0, 0, 0, 0.18);
	box-shadow:
	inset 0 1px 0 rgba(255, 255, 255, 0.08),
	0 0 14px rgba(216, 167, 46, 0.14),
	0 10px 26px var(--glass);
}

.main-actions .main-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 140px;
	min-height: 38px;
	padding: 0 24px;
	color: #171a1d;
	background: linear-gradient(
		225deg,
		var(--polished-white) 0%,
								var(--normal-silver) 48%,
								var(--dim-silver) 100%
	);
	border: 1px solid var(--polished-silver);
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 900;
	font-variant: small-caps;
	letter-spacing: 0.09em;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	text-shadow:
	0 1px 0 rgba(255, 255, 255, 0.75),
	0 0 5px rgba(255, 255, 255, 0.22);
	box-shadow:
	inset 0 1px 0 rgba(255, 255, 255, 0.62),
	inset 0 -1px 0 rgba(0, 0, 0, 0.22),
	0 0 8px rgba(255, 255, 255, 0.18),
	0 8px 18px rgba(0, 0, 0, 0.28);
	transition:
	color 0.16s ease,
	background 0.16s ease,
	border-color 0.16s ease,
	box-shadow 0.16s ease,
	transform 0.12s ease;
}

.main-actions .main-button:hover {
	color: #060708;
	background: linear-gradient(
		225deg,
		#ffffff 0%,
		var(--polished-silver) 48%,
								var(--normal-silver) 100%
	);
	border-color: var(--polished-white);
	text-shadow:
	0 1px 0 rgba(255, 255, 255, 0.88),
	0 0 6px rgba(255, 255, 255, 0.34);
	box-shadow:
	inset 0 1px 0 rgba(255, 255, 255, 0.78),
	inset 0 -1px 0 rgba(0, 0, 0, 0.24),
	0 0 10px rgba(255, 255, 255, 0.30),
	0 0 20px rgba(255, 255, 255, 0.16),
	0 9px 20px rgba(0, 0, 0, 0.32);
	transform: translateY(-1px);
}

.main-actions .main-button:active {
	color: #111417;
	background: linear-gradient(
		225deg,
		var(--dim-silver) 0%,
								var(--normal-silver) 48%,
								var(--polished-white) 100%
	);
	border-color: var(--normal-silver);
	text-shadow:
	0 1px 0 rgba(255, 255, 255, 0.62),
	0 0 3px rgba(255, 255, 255, 0.18);
	box-shadow:
	inset 0 2px 5px rgba(0, 0, 0, 0.38),
	inset 0 -1px 0 rgba(255, 255, 255, 0.24),
	0 0 6px rgba(255, 255, 255, 0.16),
	0 4px 12px rgba(0, 0, 0, 0.28);
	transform: translateY(2px) scale(0.98);
}




.site-footer {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	border-top: 1px solid var(--polished-gold);
	background: var(--footer-bg);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 10px 10px;
}
.footer-links {
	color: var(--footer-fg);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.footer-links a {
	color: var(--bone-white);
	font-size: clamp(1rem, 2.5vw, 1.25rem);
	font-weight: 700;
	font-variant: small-caps;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-shadow: 1px 1px 2px var(--bright-black);
	transition:
	color 0.18s ease,
	text-shadow 0.18s ease,
	transform 0.12s ease,
	opacity 0.12s ease;
}

.footer-links a:hover {
	color: var(--polished-white);
	text-shadow:
	1px 1px 2px var(--bright-black),
	0 0 6px rgba(255, 255, 255, 0.32),
	0 0 14px rgba(216, 167, 46, 0.18);
	transform: translateY(-1px);
}

.footer-links a:active {
	color: var(--polished-silver);
	text-shadow:
	1px 1px 2px var(--bright-black),
	0 0 4px rgba(255, 255, 255, 0.22);
	transform: translateY(1px);
	opacity: 0.82;
}








.form-card {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	padding: clamp(16px, 4vw, 28px);
	border: 1px solid var(--polished-silver);
	border-radius: 12px;
	background:
	linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.08) 0%,
					var(--glass) 50%,
					rgba(0, 0, 0, 0.18) 100%
	);
	box-shadow:
	inset 0 1px 0 rgba(255, 255, 255, 0.14),
	0 0 14px rgba(216, 167, 46, 0.14),
	0 12px 30px rgba(0, 0, 0, 0.34);
}

.contact-form {
	display: grid;
	gap: 14px;
	width: 100%;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	min-height: 42px;
	padding: 10px 12px;
	color: var(--bright-black);
	background: linear-gradient(
		180deg,
		var(--polished-white) 0%,
								var(--normal-silver) 100%
	);
	border: 1px solid var(--polished-silver);
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	box-shadow:
	inset 0 1px 2px rgba(255, 255, 255, 0.55),
	inset 0 -1px 2px rgba(0, 0, 0, 0.18);
}

.contact-form textarea {
	min-height: 140px;
	resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(17, 17, 17, 0.62);
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--polished-white);
	box-shadow:
	inset 0 1px 2px rgba(255, 255, 255, 0.68),
	inset 0 -1px 2px rgba(0, 0, 0, 0.20),
	0 0 0 2px rgba(213, 221, 230, 0.30),
	0 0 12px rgba(255, 255, 255, 0.24);
}

.contact-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 24px;
	color: #171a1d;
	background: linear-gradient(
		225deg,
		var(--polished-white) 0%,
								var(--normal-silver) 48%,
								var(--dim-silver) 100%
	);
	border: 1px solid var(--polished-silver);
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 900;
	font-variant: small-caps;
	letter-spacing: 0.09em;
	line-height: 1;
	text-align: center;
	text-shadow:
	0 1px 0 rgba(255, 255, 255, 0.75),
	0 0 5px rgba(255, 255, 255, 0.22);
	box-shadow:
	inset 0 1px 0 rgba(255, 255, 255, 0.62),
	inset 0 -1px 0 rgba(0, 0, 0, 0.22),
	0 0 8px rgba(255, 255, 255, 0.18),
	0 8px 18px rgba(0, 0, 0, 0.28);
	transition:
	color 0.16s ease,
	background 0.16s ease,
	border-color 0.16s ease,
	box-shadow 0.16s ease,
	transform 0.12s ease;
}

.contact-form button:hover {
	color: #060708;
	background: linear-gradient(
		225deg,
		#ffffff 0%,
		var(--polished-silver) 48%,
								var(--normal-silver) 100%
	);
	border-color: var(--polished-white);
	box-shadow:
	inset 0 1px 0 rgba(255, 255, 255, 0.78),
	inset 0 -1px 0 rgba(0, 0, 0, 0.24),
	0 0 10px rgba(255, 255, 255, 0.30),
	0 0 20px rgba(255, 255, 255, 0.16),
	0 9px 20px rgba(0, 0, 0, 0.32);
	transform: translateY(-1px);
}

.contact-form button:active {
	color: #111417;
	background: linear-gradient(
		225deg,
		var(--dim-silver) 0%,
								var(--normal-silver) 48%,
								var(--polished-white) 100%
	);
	border-color: var(--normal-silver);
	box-shadow:
	inset 0 2px 5px rgba(0, 0, 0, 0.38),
	inset 0 -1px 0 rgba(255, 255, 255, 0.24),
	0 0 6px rgba(255, 255, 255, 0.16),
	0 4px 12px rgba(0, 0, 0, 0.28);
	transform: translateY(2px) scale(0.98);
}

.examples-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	width: 100%;
	margin: 0 auto;
}

.example-card {
	padding: 12px;
	border: 1px solid var(--polished-silver);
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.18);
	box-shadow:
	inset 0 1px 0 rgba(255, 255, 255, 0.08),
	0 0 12px rgba(216, 167, 46, 0.12),
	0 8px 20px rgba(0, 0, 0, 0.28);
}

.example-card img {
	width: 100%;
	aspect-ratio: 1.25;
	object-fit: cover;
	border: 1px solid var(--polished-silver);
	border-radius: 4px;
	box-shadow:
	0 0 6px rgba(255, 255, 255, 0.18),
	0 0 14px rgba(216, 167, 46, 0.12);
}

.example-card .general-font,
.example-card p {
	margin: 10px 0 0;
}

@media (max-width: 720px) {












@media (max-width: 720px) {
	body {
		padding-bottom: 78px;
	}
	.site-header {
		position: sticky;
		top: 0;
		padding: 8px 10px;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 8px;
	}

	.brand-lockup {
		flex: 1 1 auto;
		min-width: 0;
		justify-content: flex-start;
		gap: 8px;
	}

	.brand-logo-frame {
		width: 44px;
		height: 44px;
	}

	.brand-text {
		width: auto;
		min-width: 0;
		max-width: 150px;
	}

	.brand-name {
		font-size: 0.78rem;
		letter-spacing: 0.055em;
		white-space: nowrap;
	}

	.brand-hr {
		width: 100%;
		margin: 3px auto;
	}

	.brand-motto {
		font-size: 0.62rem;
		letter-spacing: 0.055em;
		white-space: nowrap;
	}

	.header-contact {
		flex: 0 0 auto;
		min-height: 32px;
		padding: 0 14px;
		font-size: 0.76rem;
		letter-spacing: 0.045em;
	}
	.site-main {
		min-height: auto;
		padding: 18px 0 34px;
	}
	.main-panel {
		width: calc(100% - 24px);
		padding: clamp(18px, 6vw, 30px);
	}
	.main-panel h1 {
		font-size: clamp(2rem, 13vw, 4rem);
		letter-spacing: 0.035em;
	}
	#motto {
	font-size: clamp(0.95rem, 5vw, 1.35rem);
	letter-spacing: 0.1em;
	}
	.hr-thin {
		margin: 20px auto;
	}
	.default-text {
		max-width: 100%;
		font-size: 1rem;
		line-height: 1.55;
	}
	.quote-card {
		width: min(94%, 390px);
		margin: 24px auto 0;
		padding: 12px 14px;
		min-height: 132px;
		gap: 10px;
	}
	.quote-image-frame {
		width: clamp(100px, 34vw, 150px);
	}
	.quote-image {
		width: 86%;
		height: 86%;
	}
	.quote-text {
		margin-left: clamp(42px, 18vw, 72px);
		transform: translateX(14px);
	}
	.quote-line {
		font-size: clamp(1.55rem, 9vw, 2.85rem);
		letter-spacing: 0.03em;
	}
	.quote-author {
		margin: 10px 0 0 -16px;
		font-size: clamp(1rem, 4.6vw, 1.25rem);
		letter-spacing: 0.13em;
		transform: translateX(14px);
	}
	.main-actions {
		width: min(100%, 340px);
		margin: 22px auto 0;
		padding: 16px;
		gap: 14px;
		flex-direction: column;
	}
	.main-actions .main-button {
		width: 100%;
		min-height: 38px;
		padding: 0 18px;
		font-size: 0.9rem;
	}
	.site-footer {
		padding: 8px 10px;
	}
	.footer-links {
		gap: 12px;
	}
	.footer-links a {
		font-size: 0.92rem;
		letter-spacing: 0.06em;
	}

	.form-row {
		grid-template-columns: 1fr;
	}
	.examples-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 420px) {
	.quote-card {
		width: min(96%, 340px);
		min-height: 122px;
	}
	.quote-image-frame {
		width: 112px;
	}
	.quote-text {
		margin-left: 56px;
		transform: translateX(10px);
	}
	.quote-line {
		font-size: clamp(1.35rem, 10vw, 2.35rem);
	}
	.quote-author {
		font-size: 0.95rem;
		letter-spacing: 0.11em;
		transform: translateX(10px);
	}
	.footer-links {
		gap: 8px;
	}
	.footer-links a {
		font-size: 0.82rem;
	}
}
