@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Raleway:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap");

:root {
	--ink: #e8e0d4;
	--ink-soft: #9a9089;
	--ink-muted: #5e574f;
	--surface: rgba(18, 12, 8, 0.82);
	--surface-strong: rgba(24, 16, 10, 0.94);
	--surface-raised: rgba(32, 22, 14, 0.72);
	--line: rgba(184, 154, 106, 0.22);
	--gold: #b89a6a;
	--gold-bright: #d4b882;
	--gold-dim: rgba(184, 154, 106, 0.5);
	--bg-base: #080706;
}

* {
	box-sizing: border-box;
}

html,
body {
	min-height: 100%;
}

body {
	margin: 0;
	font-family: "Raleway", sans-serif;
	font-weight: 300;
	color: var(--ink);
	background-color: var(--bg-base);
	background-image:
		radial-gradient(ellipse at 50% 0%, rgba(80, 55, 20, 0.18) 0%, transparent 60%),
		radial-gradient(ellipse at 80% 100%, rgba(60, 40, 12, 0.12) 0%, transparent 50%);
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
}

@media (prefers-reduced-motion: no-preference) {
	body {
		animation: page-enter 400ms ease-out;
	}
}

@keyframes page-enter {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* ── Typography ─────────────────────────────── */

h1, h2, h3, h4 {
	font-family: "Cinzel", serif;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--gold-bright);
	margin: 0;
}

p {
	line-height: 1.75;
	margin: 0;
}

a {
	color: var(--gold);
	text-decoration: none;
}

a:hover {
	color: var(--gold-bright);
}

/* ── Header ──────────────────────────────────── */

.site-head {
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100%;
	border-bottom: 1px solid var(--line);
	background: rgba(6, 4, 2, 0.88);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.site-head-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0.5rem clamp(1.1rem, 3vw, 2.4rem);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.brand-logo {
	height: 120px;
	width: auto;
	display: block;
	object-fit: contain;
	mix-blend-mode: lighten;
}

.brand-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

.site-head-right {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
	margin-left: auto;
}

.site-head-divider {
	width: 1px;
	height: 1.5rem;
	background: var(--line);
	margin: 0 0.75rem;
	opacity: 1;
}

.social-nav {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 0.35rem;
	color: var(--ink-muted);
	transition: color 180ms ease, background 180ms ease;
}

.social-link svg {
	width: 1.4rem;
	height: 1.4rem;
}

.social-link:hover {
	color: var(--gold);
	background: rgba(184, 154, 106, 0.08);
}



.site-nav a {
	font-family: "Cinzel", serif;
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-soft);
	padding: 0.55rem 1.1rem;
	border-radius: 0.4rem;
	border: 1px solid transparent;
	transition: color 180ms ease, border-color 180ms ease;
}

.site-nav a.active,
.site-nav a:hover {
	color: var(--gold-bright);
	border-color: var(--line);
}

/* ── Footer ──────────────────────────────────── */

.site-footer {
	margin-top: 4rem;
	padding: 1.6rem clamp(1.1rem, 3vw, 2.4rem);
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	color: var(--ink-muted);
	font-size: 0.82rem;
	letter-spacing: 0.06em;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

.site-footer a {
	color: var(--ink-soft);
	transition: color 180ms ease;
}

.site-footer a:hover {
	color: var(--gold);
}

.footer-links {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.site-footer .social-links {
	display: flex;
	align-items: center;
	gap: 1rem;
}

/* ── Shared Utilities ────────────────────────── */

.page {
	max-width: 1280px;
	margin: 0 auto;
	padding: 3rem clamp(1.1rem, 3vw, 2.4rem) 5rem;
}

.divider {
	width: 60px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	margin: 1.5rem auto;
}

.panel {
	background: var(--surface-raised);
	border: 1px solid var(--line);
	border-radius: 0.5rem;
	padding: clamp(1.2rem, 3vw, 2rem);
}

.section-label {
	font-family: "Cinzel", serif;
	font-size: 0.7rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gold-dim);
}

/* ── Responsive ──────────────────────────────── */

@media (max-width: 820px) {
	body {
		background-attachment: scroll;
	}

	.site-head-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.site-head-right {
		width: 100%;
		align-items: flex-start;
		margin-left: 0;
	}

	.site-nav {
		flex-wrap: wrap;
	}

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