/* ==========================================================================
   TruZillah Brand Theme — Global Styles
   Version: 1.0.0
   ========================================================================== */

/* ── CSS Custom Properties (supplement theme.json) ── */
:root {
	--tzn-transition-fast: 150ms ease;
	--tzn-transition-base: 250ms ease;
	--tzn-transition-slow: 400ms ease;
	--tzn-radius-sm:   8px;
	--tzn-radius-md:   14px;
	--tzn-radius-lg:   18px;
	--tzn-radius-xl:   24px;
	--tzn-radius-pill: 999px;
	--tzn-shadow-card:  0 4px 24px rgba(0,0,0,0.4);
	--tzn-shadow-hover: 0 12px 40px rgba(0,0,0,0.5);
	--tzn-shadow-gold:  0 0 20px rgba(201,147,58,0.25);
	--tzn-shadow-blue:  0 0 20px rgba(59,130,246,0.25);
	--tzn-border:       rgba(255,255,255,0.07);
	--tzn-border-hover: rgba(255,255,255,0.15);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	background: var(--wp--preset--color--bg);
	color: var(--wp--preset--color--text);
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: var(--wp--preset--font-size--base);
	font-weight: 400;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--wp--preset--font-family--playfair);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--text);
}

h4, h5, h6 {
	font-family: var(--wp--preset--font-family--dm-sans);
	font-weight: 600;
	letter-spacing: 0;
}

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

a {
	color: var(--wp--preset--color--text);
	text-decoration: none;
	transition: color var(--tzn-transition-fast);
}
a:hover { color: var(--wp--preset--color--gold); }

img { max-width: 100%; height: auto; display: block; }

code, pre {
	font-family: var(--wp--preset--font-family--dm-mono);
	background: var(--wp--preset--color--surface);
	border-radius: var(--tzn-radius-sm);
}

code { padding: 0.15em 0.45em; font-size: 0.9em; }

pre {
	padding: 1.5rem;
	overflow-x: auto;
	border: 1px solid var(--tzn-border);
}

blockquote {
	border-left: 2px solid var(--wp--preset--color--gold);
	padding-left: 1.5rem;
	font-family: var(--wp--preset--font-family--playfair);
	font-style: italic;
	font-size: 1.25rem;
	line-height: 1.5;
	color: var(--wp--preset--color--text);
}

/* ── SITE CANVAS ── */
html, body { height: 100%; }

.wp-site-blocks {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.wp-site-blocks > main,
.wp-site-blocks > .wp-block-group[role="main"] {
	flex: 1 0 auto;
}

.wp-site-blocks > footer { flex-shrink: 0; margin-top: auto; }

/* ── HEADER / NAVIGATION ── */
.tzn-header-shell {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(9,9,15,0.88);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--tzn-border);
	transition: background var(--tzn-transition-base);
}

.tzn-header-shell.scrolled {
	background: rgba(9,9,15,0.97);
}

.tzn-header-inner {
	max-width: var(--wp--style--global--wide-size);
	margin: 0 auto;
	padding: 0 2.2rem;
	min-height: 74px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

/* Site title in FSE */
.tzn-header-shell .wp-block-site-title a,
.tzn-header-shell .wp-block-site-title {
	font-family: var(--wp--preset--font-family--playfair);
	font-weight: 900;
	font-size: 1.5rem;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--text) !important;
	text-decoration: none !important;
}

/* Gold accent on last letter of brand name — done via CSS */
.tzn-logo-accent { color: var(--wp--preset--color--gold); }

/* Navigation */
.tzn-header-shell .wp-block-navigation {
	--navigation-layout-justify: flex-end;
	gap: 2rem;
}

.tzn-header-shell .wp-block-navigation .wp-block-navigation-item__content {
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--wp--preset--color--muted);
	padding: 0.3rem 0;
	transition: color var(--tzn-transition-fast);
}

.tzn-header-shell .wp-block-navigation .wp-block-navigation-item__content:hover,
.tzn-header-shell .wp-block-navigation .current-menu-item > .wp-block-navigation-item__content {
	color: var(--wp--preset--color--text);
}

/* CTA nav button */
.tzn-nav-cta > .wp-block-navigation-item__content,
.wp-block-navigation .wp-block-navigation-item.is-style-button > .wp-block-navigation-item__content {
	background: var(--wp--preset--color--gold) !important;
	color: #0a0605 !important;
	padding: 0.45rem 1.1rem !important;
	border-radius: var(--tzn-radius-pill) !important;
	font-weight: 600 !important;
	transition: background var(--tzn-transition-fast), transform var(--tzn-transition-fast) !important;
}

.tzn-nav-cta > .wp-block-navigation-item__content:hover,
.wp-block-navigation .wp-block-navigation-item.is-style-button > .wp-block-navigation-item__content:hover {
	background: var(--wp--preset--color--gold-pale) !important;
	transform: translateY(-1px);
}

/* Mobile nav */
.wp-block-navigation__responsive-container.is-menu-open {
	background: var(--wp--preset--color--bg) !important;
	z-index: 999 !important;
}

.wp-block-navigation__responsive-container-content {
	padding: 2rem 1.5rem !important;
}

.wp-block-navigation__responsive-container-content .wp-block-navigation-item__content {
	font-size: 1.3rem !important;
	font-weight: 600 !important;
	font-family: var(--wp--preset--font-family--playfair) !important;
	padding: 0.6rem 0 !important;
	display: block;
}

/* ── SECTION EYEBROW TAG ── */
.tzn-section-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--wp--preset--color--gold);
	margin-bottom: 0.75rem;
	font-family: var(--wp--preset--font-family--dm-sans);
}

.tzn-section-tag::before {
	content: '';
	display: block;
	width: 20px;
	height: 1px;
	background: currentColor;
	flex-shrink: 0;
}

.tzn-section-tag--blue { color: var(--wp--preset--color--blue-pale); }
.tzn-section-tag--blue::before { background: var(--wp--preset--color--blue); }
.tzn-section-tag--green { color: var(--wp--preset--color--green); }

/* ── BUTTONS ── */
.tzn-btn,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 1.8rem;
	border-radius: var(--tzn-radius-pill);
	font-family: var(--wp--preset--font-family--dm-sans);
	font-weight: 600;
	font-size: 0.95rem;
	border: none;
	cursor: pointer;
	transition: background var(--tzn-transition-fast), transform var(--tzn-transition-fast), box-shadow var(--tzn-transition-fast);
	text-decoration: none;
	line-height: 1;
	letter-spacing: 0.01em;
}

.tzn-btn:hover,
.wp-block-button__link:hover {
	transform: translateY(-2px);
}

/* Primary */
.tzn-btn-primary,
.wp-block-button.is-style-fill .wp-block-button__link {
	background: var(--wp--preset--color--gold);
	color: #0a0605 !important;
	box-shadow: 0 4px 16px rgba(201,147,58,0.25);
}

.tzn-btn-primary:hover,
.wp-block-button.is-style-fill .wp-block-button__link:hover {
	background: var(--wp--preset--color--gold-pale);
	box-shadow: 0 6px 20px rgba(201,147,58,0.35);
}

/* Outline */
.tzn-btn-outline,
.wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent;
	color: var(--wp--preset--color--text) !important;
	border: 1px solid rgba(255,255,255,0.18) !important;
}

.tzn-btn-outline:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
	border-color: rgba(255,255,255,0.4) !important;
	background: rgba(255,255,255,0.05);
}

/* Blue */
.tzn-btn-blue {
	background: var(--wp--preset--color--blue);
	color: #fff !important;
}

.tzn-btn-blue:hover {
	background: var(--wp--preset--color--blue-pale);
	color: #0a2040 !important;
}

/* Small */
.tzn-btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

/* ── CARDS ── */
.tzn-card {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--tzn-border);
	border-radius: var(--tzn-radius-md);
	transition: border-color var(--tzn-transition-base), transform var(--tzn-transition-base);
}

.tzn-card:hover {
	border-color: var(--tzn-border-hover);
	transform: translateY(-4px);
}

.tzn-card--gold-accent {
	border-top: 2px solid var(--wp--preset--color--gold);
}

/* ── HERO SECTION ── */
.tzn-hero-section {
	min-height: auto;
	display: flex;
	align-items: flex-start;
	padding: 102px 2.2rem 68px;
	position: relative;
	overflow: hidden;
}

.tzn-hero-section > .wp-block-group {
	width: min(1280px, 100%);
	margin: 0 auto;
}

.tzn-hero-section h1 {
	font-size: clamp(3.7rem, 7.4vw, 6.2rem) !important;
	line-height: 0.96 !important;
	letter-spacing: -0.03em;
}

.tzn-hero-section p {
	max-width: 640px;
}

.tzn-hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 50% at 15% 50%, rgba(201,147,58,0.08) 0%, transparent 70%),
		radial-gradient(ellipse 50% 60% at 85% 40%, rgba(59,130,246,0.07) 0%, transparent 70%);
	pointer-events: none;
}

.tzn-hero-grid-overlay {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
	-webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
	pointer-events: none;
}

/* ── WAVEFORM ANIMATION ── */
.tzn-waveform {
	display: flex;
	align-items: flex-end;
	gap: 3px;
	height: 72px;
	overflow: hidden;
	padding: 0 1px;
}

.tzn-waveform-bar {
	flex: 1;
	background: var(--wp--preset--color--gold);
	opacity: 0.6;
	border-radius: 2px;
	animation: tzn-wave 1.2s ease-in-out infinite;
	transform-origin: bottom;
}

.tzn-waveform-bar:nth-child(even) {
	background: var(--wp--preset--color--blue);
	opacity: 0.5;
}

@keyframes tzn-wave {
	0%, 100% { transform: scaleY(0.4); }
	50%       { transform: scaleY(1);   }
}

/* stagger delays applied via nth-child (generated in JS) */
.tzn-waveform-bar:nth-child(1)  { animation-delay: 0s;     height: 55%; }
.tzn-waveform-bar:nth-child(2)  { animation-delay: .08s;   height: 75%; }
.tzn-waveform-bar:nth-child(3)  { animation-delay: .16s;   height: 90%; }
.tzn-waveform-bar:nth-child(4)  { animation-delay: .12s;   height: 60%; }
.tzn-waveform-bar:nth-child(5)  { animation-delay: .04s;   height: 85%; }
.tzn-waveform-bar:nth-child(6)  { animation-delay: .22s;   height: 70%; }
.tzn-waveform-bar:nth-child(7)  { animation-delay: .28s;   height: 95%; }
.tzn-waveform-bar:nth-child(8)  { animation-delay: .09s;   height: 50%; }
.tzn-waveform-bar:nth-child(9)  { animation-delay: .18s;   height: 80%; }
.tzn-waveform-bar:nth-child(10) { animation-delay: .33s;   height: 65%; }
.tzn-waveform-bar:nth-child(11) { animation-delay: .05s;   height: 45%; }
.tzn-waveform-bar:nth-child(12) { animation-delay: .40s;   height: 88%; }
.tzn-waveform-bar:nth-child(13) { animation-delay: .14s;   height: 72%; }
.tzn-waveform-bar:nth-child(14) { animation-delay: .29s;   height: 58%; }
.tzn-waveform-bar:nth-child(15) { animation-delay: .24s;   height: 92%; }
.tzn-waveform-bar:nth-child(16) { animation-delay: .44s;   height: 68%; }
.tzn-waveform-bar:nth-child(17) { animation-delay: .10s;   height: 82%; }
.tzn-waveform-bar:nth-child(18) { animation-delay: .36s;   height: 48%; }
.tzn-waveform-bar:nth-child(19) { animation-delay: .20s;   height: 76%; }
.tzn-waveform-bar:nth-child(20) { animation-delay: .50s;   height: 60%; }

/* ── STAT CARDS ── */
.tzn-stat-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.tzn-stat-card {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--tzn-border);
	border-radius: var(--tzn-radius-md);
	padding: 1.4rem 1.2rem;
	position: relative;
	overflow: hidden;
}

.tzn-stat-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--wp--preset--color--gold), transparent);
}

.tzn-stat-card--blue::before {
	background: linear-gradient(90deg, var(--wp--preset--color--blue), transparent);
}

.tzn-stat-val {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0.3rem;
	color: var(--wp--preset--color--text);
}

.tzn-stat-label {
	font-size: 0.72rem;
	color: var(--wp--preset--color--muted);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-family: var(--wp--preset--font-family--dm-sans);
}

/* ── MUSIC / TRACK LIST ── */
.tzn-track-list { list-style: none; }

.tzn-track-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.9rem 0.5rem;
	border-bottom: 1px solid var(--tzn-border);
	cursor: pointer;
	transition: background var(--tzn-transition-fast);
	border-radius: var(--tzn-radius-sm);
}

.tzn-track-item:hover { background: rgba(255,255,255,0.03); }
.tzn-track-item:last-child { border-bottom: none; }

.tzn-track-item.is-playing .tzn-track-num {
	color: var(--wp--preset--color--gold);
}

.tzn-track-num {
	font-family: var(--wp--preset--font-family--dm-mono);
	font-size: 0.75rem;
	color: var(--wp--preset--color--muted);
	width: 22px;
	text-align: center;
	flex-shrink: 0;
	transition: color var(--tzn-transition-fast);
}

.tzn-track-info { flex: 1; min-width: 0; }
.tzn-track-name { font-weight: 500; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tzn-track-genre { font-size: 0.75rem; color: var(--wp--preset--color--muted); margin-top: 0.15rem; }

.tzn-track-duration {
	font-family: var(--wp--preset--font-family--dm-mono);
	font-size: 0.75rem;
	color: var(--wp--preset--color--muted);
	flex-shrink: 0;
}

/* ── SERVICES ── */
.tzn-service-card {
	background: var(--wp--preset--color--bg);
	border: 1px solid var(--tzn-border);
	border-radius: var(--tzn-radius-md);
	padding: 1.75rem 1.5rem;
	transition: border-color var(--tzn-transition-base), transform var(--tzn-transition-base), box-shadow var(--tzn-transition-base);
}

.tzn-service-card:hover {
	border-color: rgba(201,147,58,0.4);
	transform: translateY(-4px);
	box-shadow: var(--tzn-shadow-gold);
}

.tzn-service-icon {
	width: 44px;
	height: 44px;
	background: rgba(201,147,58,0.12);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	color: var(--wp--preset--color--gold);
	flex-shrink: 0;
}

.tzn-service-title {
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 0.6rem;
	font-family: var(--wp--preset--font-family--dm-sans);
	color: var(--wp--preset--color--text);
}

.tzn-service-desc {
	font-size: 0.88rem;
	color: var(--wp--preset--color--muted);
	line-height: 1.65;
}

/* Upwork CTA row */
.tzn-upwork-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--wp--preset--color--bg);
	border: 1px solid var(--tzn-border);
	border-radius: var(--tzn-radius-md);
	padding: 1.5rem 2rem;
	gap: 1.5rem;
	flex-wrap: wrap;
	text-decoration: none;
	transition: border-color var(--tzn-transition-base);
}

.tzn-upwork-cta:hover { border-color: rgba(201,147,58,0.4); color: var(--wp--preset--color--text); }

.tzn-upwork-badge {
	width: 48px;
	height: 48px;
	background: #14a800;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 0.7rem;
	color: white;
	letter-spacing: 0.05em;
	flex-shrink: 0;
	text-align: center;
	line-height: 1.3;
}

.tzn-upwork-text strong { display: block; font-weight: 600; margin-bottom: 0.2rem; }
.tzn-upwork-text span { font-size: 0.82rem; color: var(--wp--preset--color--muted); }

/* ── ARCANOLABS BANNER ── */
.tzn-arcano-banner {
	background: var(--wp--preset--color--surface-2);
	border: 1px solid var(--tzn-border);
	border-radius: var(--tzn-radius-xl);
	padding: 3.5rem;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2rem;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.tzn-arcano-banner::before {
	content: '';
	position: absolute;
	top: -60px; right: -60px;
	width: 280px; height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
	pointer-events: none;
}

/* ── POST / BLOG CARDS ── */
.tzn-post-card {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--tzn-border);
	border-radius: var(--tzn-radius-md);
	overflow: hidden;
	transition: border-color var(--tzn-transition-base), transform var(--tzn-transition-base);
	display: flex;
	flex-direction: column;
}

.tzn-post-card:hover {
	border-color: var(--tzn-border-hover);
	transform: translateY(-4px);
}

.tzn-post-thumb {
	aspect-ratio: 16/9;
	overflow: hidden;
	position: relative;
	background: var(--wp--preset--color--surface-2);
}

.tzn-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--tzn-transition-slow);
}

.tzn-post-card:hover .tzn-post-thumb img { transform: scale(1.04); }

.tzn-post-body {
	padding: 1.5rem 1.25rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.tzn-post-cat {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--wp--preset--color--gold);
	margin-bottom: 0.6rem;
}

.tzn-post-cat--blue { color: var(--wp--preset--color--blue-pale); }
.tzn-post-cat--green { color: var(--wp--preset--color--green); }

.tzn-post-title {
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.45;
	margin-bottom: 0.6rem;
	font-family: var(--wp--preset--font-family--dm-sans);
	flex: 1;
}

.tzn-post-excerpt {
	font-size: 0.85rem;
	color: var(--wp--preset--color--muted);
	line-height: 1.65;
	margin-bottom: 1rem;
}

.tzn-post-meta {
	font-size: 0.75rem;
	color: var(--wp--preset--color--muted);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/* ── GEAR / SKILL TAGS ── */
.tzn-gear-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.75rem; }

.tzn-gear-tag {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--tzn-border);
	border-radius: var(--tzn-radius-pill);
	padding: 0.35rem 0.9rem;
	font-size: 0.78rem;
	color: var(--wp--preset--color--muted);
	font-weight: 500;
}

.tzn-gear-tag--gold {
	background: rgba(201,147,58,0.1);
	border-color: rgba(201,147,58,0.25);
	color: var(--wp--preset--color--gold-pale);
}

/* ── NEWSLETTER ── */
.tzn-newsletter-form {
	display: flex;
	gap: 0.75rem;
	max-width: 440px;
	margin: 0 auto;
}

.tzn-newsletter-input {
	flex: 1;
	background: var(--wp--preset--color--bg);
	border: 1px solid var(--tzn-border);
	border-radius: var(--tzn-radius-pill);
	padding: 0.8rem 1.25rem;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 0.9rem;
	color: var(--wp--preset--color--text);
	outline: none;
	transition: border-color var(--tzn-transition-fast);
	min-width: 0;
}

.tzn-newsletter-input::placeholder { color: var(--wp--preset--color--muted); }
.tzn-newsletter-input:focus { border-color: var(--wp--preset--color--gold); }

/* ── CONTACT FORM ── */
.tzn-contact-form-wrap {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--tzn-border);
	border-radius: var(--tzn-radius-lg);
	padding: 2.5rem;
}

.tzn-form-label {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--wp--preset--color--muted);
	margin-bottom: 0.5rem;
}

.tzn-form-input,
.tzn-form-select,
.tzn-form-textarea {
	width: 100%;
	background: var(--wp--preset--color--bg);
	border: 1px solid var(--tzn-border);
	border-radius: 10px;
	padding: 0.8rem 1rem;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 0.9rem;
	color: var(--wp--preset--color--text);
	outline: none;
	transition: border-color var(--tzn-transition-fast);
	appearance: none;
	-webkit-appearance: none;
}

.tzn-form-input::placeholder,
.tzn-form-textarea::placeholder { color: var(--wp--preset--color--muted); }

.tzn-form-input:focus,
.tzn-form-select:focus,
.tzn-form-textarea:focus { border-color: var(--wp--preset--color--gold); }

.tzn-form-textarea {
	resize: vertical;
	min-height: 120px;
	line-height: 1.6;
}

.tzn-form-select { cursor: pointer; }

.tzn-form-upwork-note {
	background: rgba(20,168,0,0.08);
	border: 1px solid rgba(20,168,0,0.2);
	border-radius: 8px;
	padding: 0.75rem 1rem;
	font-size: 0.82rem;
	color: #86efac;
	margin-bottom: 1.25rem;
}

/* ── SOCIAL LINKS ── */
.tzn-social-links { display: flex; gap: 0.6rem; }

.tzn-social-btn {
	width: 34px;
	height: 34px;
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--tzn-border);
	border-radius: var(--tzn-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--wp--preset--color--muted);
	cursor: pointer;
	transition: border-color var(--tzn-transition-fast), color var(--tzn-transition-fast);
	text-decoration: none;
	letter-spacing: 0.02em;
}

.tzn-social-btn:hover {
	border-color: var(--wp--preset--color--gold);
	color: var(--wp--preset--color--gold);
}

/* ── FOOTER ── */
.tzn-footer {
	border-top: 1px solid var(--tzn-border);
	padding: 3.5rem 2rem 2.5rem;
}

.tzn-footer-inner {
	max-width: var(--wp--style--global--wide-size);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.tzn-footer-logo {
	font-family: var(--wp--preset--font-family--playfair);
	font-weight: 900;
	font-size: 1.25rem;
	letter-spacing: -0.02em;
	margin-bottom: 0.75rem;
	color: var(--wp--preset--color--text);
}

.tzn-footer-logo span { color: var(--wp--preset--color--gold); }

.tzn-footer-tagline {
	font-size: 0.85rem;
	color: var(--wp--preset--color--muted);
	line-height: 1.65;
	margin-bottom: 1.5rem;
}

.tzn-footer-col h4 {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wp--preset--color--muted);
	margin-bottom: 1.25rem;
	font-family: var(--wp--preset--font-family--dm-sans);
}

.tzn-footer-col ul { list-style: none; }

.tzn-footer-col ul li { margin-bottom: 0.6rem; }

.tzn-footer-col ul li a {
	font-size: 0.88rem;
	color: var(--wp--preset--color--muted);
	transition: color var(--tzn-transition-fast);
}

.tzn-footer-col ul li a:hover { color: var(--wp--preset--color--text); }

.tzn-footer-bottom {
	max-width: var(--wp--style--global--wide-size);
	margin: 0 auto;
	padding-top: 1.75rem;
	border-top: 1px solid var(--tzn-border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.tzn-footer-copy { font-size: 0.8rem; color: var(--wp--preset--color--muted); }

.tzn-footer-legal { display: flex; gap: 1.5rem; }

.tzn-footer-legal a {
	font-size: 0.8rem;
	color: var(--wp--preset--color--muted);
	transition: color var(--tzn-transition-fast);
}

.tzn-footer-legal a:hover { color: var(--wp--preset--color--text); }

/* ── SCROLL FADE-IN ── */
.tzn-fade-up {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.tzn-fade-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger children */
.tzn-fade-up.delay-1 { transition-delay: 0.1s; }
.tzn-fade-up.delay-2 { transition-delay: 0.2s; }
.tzn-fade-up.delay-3 { transition-delay: 0.3s; }

/* ── DIVIDER ── */
.tzn-divider {
	width: 100%;
	height: 1px;
	background: var(--tzn-border);
	border: none;
	margin: 0;
}

/* ── UTILITY ── */
.tzn-text-gold    { color: var(--wp--preset--color--gold) !important; }
.tzn-text-muted   { color: var(--wp--preset--color--muted) !important; }
.tzn-text-blue    { color: var(--wp--preset--color--blue-pale) !important; }
.tzn-bg-surface   { background: var(--wp--preset--color--surface) !important; }
.tzn-bg-surface-2 { background: var(--wp--preset--color--surface-2) !important; }
.tzn-border-gold  { border-color: rgba(201,147,58,0.3) !important; }
.tzn-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── ACCESSIBILITY ── */
:focus-visible {
	outline: 2px solid var(--wp--preset--color--gold);
	outline-offset: 3px;
	border-radius: 3px;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	.tzn-fade-up { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
	.tzn-footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
	.tzn-arcano-banner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
	.tzn-hero-section { padding: 88px 1.25rem 56px; }
	.tzn-footer-inner { grid-template-columns: 1fr; }
	.tzn-footer-bottom { flex-direction: column; text-align: center; }
	.tzn-footer-legal { justify-content: center; }
	.tzn-newsletter-form { flex-direction: column; }
	.tzn-newsletter-form .tzn-btn { width: 100%; justify-content: center; }
	.tzn-arcano-banner { padding: 2.5rem 1.5rem; }
	.tzn-upwork-cta { flex-direction: column; align-items: flex-start; }
	.tzn-stat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
	.tzn-stat-grid { grid-template-columns: 1fr; }
}
