:root {
	/* Palette */
	--pist-bg-primary: #F8F5EF;
	--pist-bg-secondary: #EDE6DA;
	--pist-bg-white: #FFFFFF;
	--pist-text-primary: #2B2B2B;
	--pist-text-secondary: #4A4A4A;
	--pist-text-muted: #8A8A8A;
	--pist-accent-gold: #B78A4C;
	--pist-accent-dark: #8C6B43;
	--pist-accent-light: #C9A66B;
	--pist-accent-amber: #D4A853;
	--pist-overlay: rgba(43, 43, 43, 0.65);
	--pist-overlay-light: rgba(43, 43, 43, 0.25);
	--pist-glass: rgba(248, 245, 239, 0.85);
	--pist-glass-border: rgba(183, 138, 76, 0.15);

	/* Typography */
	--pist-font-heading: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
	--pist-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--pist-font-accent: 'Cormorant Garamond', serif;

	/* Spacing */
	--pist-space-xs: 0.5rem;
	--pist-space-sm: 1rem;
	--pist-space-md: 2rem;
	--pist-space-lg: 4rem;
	--pist-space-xl: 8rem;
	--pist-space-2xl: 12rem;

	/* Transitions */
	--pist-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--pist-transition-fast: 0.2s ease;
	--pist-transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	/* Border Radius */
	--pist-radius-sm: 4px;
	--pist-radius-md: 8px;
	--pist-radius-lg: 16px;
	--pist-radius-xl: 24px;

	/* Shadows */
	--pist-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
	--pist-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
	--pist-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
	--pist-shadow-gold: 0 4px 20px rgba(183, 138, 76, 0.2);
}

/* Base */
body.pistilos-theme {
	font-family: var(--pist-font-body);
	color: var(--pist-text-primary);
	background-color: var(--pist-bg-primary);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--pist-font-heading);
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

/* Section containers */
.pist-section {
	padding: var(--pist-space-xl) 0;
	position: relative;
}

.pist-section-dark {
	background-color: var(--pist-text-primary);
	color: var(--pist-bg-primary);
}

.pist-section-beige {
	background-color: var(--pist-bg-secondary);
}

.pist-section-white {
	background-color: var(--pist-bg-white);
}

.pist-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.pist-container-narrow {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Glassmorphism */
.pist-glass {
	background: var(--pist-glass);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--pist-glass-border);
	border-radius: var(--pist-radius-lg);
}

/* Buttons premium */
.pist-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 16px 40px;
	background: linear-gradient(135deg, var(--pist-accent-gold) 0%, var(--pist-accent-light) 50%, var(--pist-accent-gold) 100%);
	background-size: 200% auto;
	color: var(--pist-bg-white);
	font-family: var(--pist-font-body);
	font-weight: 500;
	font-size: 0.95rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: var(--pist-transition);
	box-shadow: var(--pist-shadow-gold);
	text-decoration: none;
}

.pist-btn-primary:hover {
	background-position: right center;
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(183, 138, 76, 0.35);
	color: var(--pist-bg-white);
}

.pist-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 16px 40px;
	background: transparent;
	color: var(--pist-bg-white);
	font-family: var(--pist-font-body);
	font-weight: 400;
	font-size: 0.95rem;
	letter-spacing: 0.03em;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	cursor: pointer;
	transition: var(--pist-transition);
	text-decoration: none;
}

.pist-btn-secondary:hover {
	border-color: var(--pist-accent-gold);
	color: var(--pist-accent-gold);
	transform: translateY(-2px);
}

/* Section Titles */
.pist-eyebrow {
	font-family: var(--pist-font-body);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--pist-accent-gold);
	margin-bottom: var(--pist-space-sm);
}

.pist-title {
	font-family: var(--pist-font-heading);
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	font-weight: 400;
	line-height: 1.1;
	margin-bottom: var(--pist-space-md);
	color: var(--pist-text-primary);
}

.pist-title-light {
	color: var(--pist-bg-primary);
}

.pist-subtitle {
	font-family: var(--pist-font-body);
	font-size: clamp(1rem, 2vw, 1.2rem);
	font-weight: 300;
	line-height: 1.7;
	color: var(--pist-text-secondary);
	max-width: 640px;
}

.pist-subtitle-light {
	color: rgba(255, 255, 255, 0.8);
}

/* Divider */
.pist-divider {
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, var(--pist-accent-gold), var(--pist-accent-light));
	margin: var(--pist-space-md) 0;
}

.pist-divider-center {
	margin-left: auto;
	margin-right: auto;
}

/* Cards premium */
.pist-card {
	background: var(--pist-bg-white);
	border-radius: var(--pist-radius-lg);
	padding: var(--pist-space-md);
	transition: var(--pist-transition);
	border: 1px solid transparent;
}

.pist-card:hover {
	border-color: var(--pist-glass-border);
	box-shadow: var(--pist-shadow-md);
	transform: translateY(-4px);
}

.pist-card-icon {
	font-size: 2.5rem;
	margin-bottom: var(--pist-space-sm);
	display: block;
}

.pist-card-title {
	font-family: var(--pist-font-heading);
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: var(--pist-space-xs);
}

.pist-card-text {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--pist-text-secondary);
}

/* Hero Section */
.pist-hero {
	min-height: 100vh;
	position: relative;
	overflow: hidden;
	background: #1a1a1a;
}

.pist-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: #1a1a1a;
}

.pist-hero-bg video,
.pist-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.pist-hero-header { display: none; }

.pist-hero-content {
	position: absolute;
	bottom: 60px;
	left: 0;
	z-index: 2;
	max-width: 960px;
	padding: 0 50px;
	text-align: left;
}

.pist-hero-content h1,
.pist-hero-content p {
	text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.pist-hero-content h1,
.pist-hero-content p,
.pist-hero-content div {
	text-align: left;
}

.pist-hero-content h1 {
	font-family: var(--pist-font-heading);
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: 300;
	line-height: 1.15;
	color: var(--pist-bg-white);
	margin-bottom: var(--pist-space-sm);
	letter-spacing: -0.02em;
}

.pist-hero-content .pist-hero-sub {
	font-size: clamp(0.95rem, 1.5vw, 1.15rem);
	font-weight: 300;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.8);
	max-width: 560px;
	margin-bottom: var(--pist-space-md);
}

.pist-btn-video {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 32px;
	background: transparent;
	color: var(--pist-bg-white);
	font-family: var(--pist-font-body);
	font-weight: 400;
	font-size: 0.9rem;
	letter-spacing: 0.03em;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50px;
	cursor: pointer;
	transition: var(--pist-transition);
	text-decoration: none;
}

.pist-btn-video::before {
	content: '';
	width: 0;
	height: 0;
	border-left: 12px solid currentColor;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
}

.pist-btn-video:hover {
	border-color: var(--pist-accent-gold);
	color: var(--pist-accent-gold);
	transform: translateY(-2px);
}

.pist-hero-book {
	display: none;
}

/* Transparent Header */
.pistilos-theme .site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: transparent !important;
	box-shadow: none !important;
	border-bottom: none !important;
	padding: 20px 36px;
}

.pistilos-theme .site-header .site-logo img,
.pistilos-theme .site-header .site-title a,
.pistilos-theme .site-header .menu-toggle,
.pistilos-theme .site-header .header-inner a {
	color: rgba(255, 255, 255, 0.85) !important;
}

.pistilos-theme .site-header .site-navigation ul.menu > li > a {
	color: rgba(255, 255, 255, 0.85) !important;
}

.pistilos-theme .site-header .site-navigation ul.menu > li > a:hover {
	color: var(--pist-accent-gold) !important;
}

.pistilos-theme .site-header .site-branding {
	display: none !important;
}

/* Scroll indicator */
.pist-scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	animation: pist-float 2s ease-in-out infinite;
}

.pist-scroll-line {
	width: 1px;
	height: 60px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
}

/* Bento Grid */
.pist-bento {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: var(--pist-space-md);
}

.pist-bento-item {
	position: relative;
	border-radius: var(--pist-radius-lg);
	overflow: hidden;
	padding: var(--pist-space-md);
	min-height: 280px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	transition: var(--pist-transition);
	cursor: default;
}

.pist-bento-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--pist-shadow-lg);
}

.pist-bento-item::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(43, 43, 43, 0.7) 0%, transparent 60%);
	z-index: 1;
}

.pist-bento-item > * {
	position: relative;
	z-index: 2;
}

.pist-bento-large {
	grid-column: span 3;
	grid-row: span 2;
	min-height: 400px;
}

.pist-bento-medium {
	grid-column: span 3;
}

.pist-bento-small {
	grid-column: span 2;
}

.pist-bento-tall {
	grid-column: span 2;
	grid-row: span 2;
}

.pist-bento-label {
	font-family: var(--pist-font-body);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--pist-accent-gold);
	margin-bottom: 4px;
}

.pist-bento-title {
	font-family: var(--pist-font-heading);
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--pist-bg-white);
	margin-bottom: 8px;
}

.pist-bento-desc {
	font-size: 0.9rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
}

/* Video Section */
.pist-video-wrapper {
	position: relative;
	border-radius: var(--pist-radius-xl);
	overflow: hidden;
	cursor: pointer;
}

.pist-video-wrapper img {
	width: 100%;
	display: block;
}

.pist-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--pist-transition);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.pist-play-btn:hover {
	background: var(--pist-accent-gold);
	transform: translate(-50%, -50%) scale(1.1);
	border-color: var(--pist-accent-gold);
}

.pist-play-btn::after {
	content: '';
	width: 0;
	height: 0;
	border-left: 20px solid white;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	margin-left: 4px;
}

/* Floating Quotes */
.pist-quotes {
	position: relative;
	background: none;
}

.pist-quotes-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.pist-quotes-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pist-quotes-overlay {
	position: absolute;
	inset: 0;
	background: rgba(43, 43, 43, 0.55);
	z-index: 1;
}

.pist-quotes .pist-container-narrow {
	position: relative;
	z-index: 2;
}

.pist-quotes .pist-quote {
	color: var(--pist-bg-primary);
}

.pist-quote {
	font-family: var(--pist-font-heading);
	font-size: clamp(1.5rem, 4vw, 3rem);
	font-weight: 300;
	font-style: italic;
	line-height: 1.3;
	color: var(--pist-bg-primary);
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	opacity: 0;
	transform: translateY(40px);
}

.pist-quote.active {
	opacity: 1;
	transform: translateY(0);
}

.pist-quote-author {
	font-family: var(--pist-font-body);
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--pist-accent-light);
	margin-top: var(--pist-space-md);
}

/* Testimonials */
.pist-testimonial {
	background: var(--pist-bg-white);
	border-radius: var(--pist-radius-lg);
	padding: var(--pist-space-lg);
	text-align: center;
	box-shadow: var(--pist-shadow-sm);
}

.pist-testimonial-text {
	font-family: var(--pist-font-heading);
	font-size: 1.3rem;
	font-weight: 400;
	font-style: italic;
	line-height: 1.6;
	color: var(--pist-text-primary);
	margin-bottom: var(--pist-space-md);
}

.pist-testimonial-author {
	font-family: var(--pist-font-body);
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--pist-text-primary);
}

.pist-testimonial-role {
	font-size: 0.8rem;
	color: var(--pist-text-muted);
}

/* FAQ Accordion */
.pist-faq-item {
	border-bottom: 1px solid var(--pist-bg-secondary);
}

.pist-faq-question {
	width: 100%;
	padding: var(--pist-space-md) 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	font-family: var(--pist-font-heading);
	font-size: 1.3rem;
	font-weight: 500;
	color: var(--pist-text-primary);
	cursor: pointer;
	transition: var(--pist-transition-fast);
	text-align: left;
}

.pist-faq-question:hover {
	color: var(--pist-accent-gold);
}

.pist-faq-icon {
	width: 24px;
	height: 24px;
	position: relative;
	flex-shrink: 0;
}

.pist-faq-icon::before,
.pist-faq-icon::after {
	content: '';
	position: absolute;
	background: currentColor;
	transition: var(--pist-transition-fast);
}

.pist-faq-icon::before {
	width: 2px;
	height: 16px;
	top: 4px;
	left: 11px;
}

.pist-faq-icon::after {
	width: 16px;
	height: 2px;
	top: 11px;
	left: 4px;
}

.pist-faq-item.open .pist-faq-icon::before {
	transform: rotate(90deg);
	opacity: 0;
}

.pist-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
	padding: 0;
	color: var(--pist-text-secondary);
	line-height: 1.7;
}

.pist-faq-item.open .pist-faq-answer {
	max-height: 500px;
	padding: 0 0 var(--pist-space-md);
}

/* CTA Final */
.pist-cta-final {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.pist-cta-final .pist-hero-overlay {
	background: linear-gradient(135deg, var(--pist-overlay) 0%, rgba(43, 43, 43, 0.6) 100%);
}

.pist-cta-content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	padding: 0 24px;
}

.pist-cta-content h2 {
	font-family: var(--pist-font-heading);
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 300;
	color: var(--pist-bg-white);
	margin-bottom: var(--pist-space-md);
}

/* Author Section */
.pist-author {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: var(--pist-space-lg);
	align-items: center;
}

.pist-author-image {
	border-radius: var(--pist-radius-xl);
	overflow: hidden;
}

.pist-author-image img {
	width: 100%;
	height: auto;
	display: block;
}

.pist-author-name {
	font-family: var(--pist-font-heading);
	font-size: 2rem;
	margin-bottom: var(--pist-space-xs);
}

.pist-author-bio {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--pist-text-secondary);
}

/* Sticky CTA Mobile */
.pist-sticky-cta {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background: rgba(248, 245, 239, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 12px 20px;
	border-top: 1px solid var(--pist-glass-border);
}

.pist-sticky-cta .pist-btn-primary {
	width: 100%;
	justify-content: center;
	padding: 14px 24px;
	font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
	.pist-bento {
		grid-template-columns: repeat(3, 1fr);
	}
	.pist-bento-large { grid-column: span 3; }
	.pist-bento-medium { grid-column: span 3; }
	.pist-bento-small { grid-column: span 1; }
	.pist-bento-tall { grid-column: span 1; grid-row: span 1; }
	.pist-author { grid-template-columns: 1fr; }
	.pist-author-image { max-width: 300px; }
}

@media (max-width: 768px) {
	.pist-section { padding: var(--pist-space-lg) 0; }
	.pist-bento { grid-template-columns: 1fr; }
	.pist-bento-item { min-height: 200px; }
	.pist-bento-large { grid-column: span 1; grid-row: span 1; min-height: 250px; }
	.pist-sticky-cta { display: block; }
	.pist-hero { min-height: 0; }

	.pist-hero-content { max-width: 100%; padding: 0 24px; bottom: 40px; }
	.pist-hero-logo { height: 60px; }
	.pist-hero-author { font-size: 1.2rem; }
	.pistilos-theme .site-header { padding: 12px 16px; }
}

@media (max-width: 480px) {
	.pist-hero-content h1 { font-size: 2rem; }
	.pist-title { font-size: 1.8rem; }
	.pist-btn-primary, .pist-btn-secondary { padding: 14px 28px; font-size: 0.85rem; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* Hide Hello Elementor default footer */
.pistilos-theme .site-footer {
	display: none !important;
}

/* Custom Navigation */
.pist-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 10px 50px;
	background: transparent;
	transition: padding 0.4s ease, background 0.4s ease;
}

.pist-nav.scrolled {
	background: rgba(248, 245, 239, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 12px 50px;
}

.pist-nav.scrolled .pist-nav-menu a {
	color: var(--pist-text-primary);
}

.pist-nav.scrolled .pist-nav-logo-img {
	height: 36px;
}

.pist-nav.scrolled .pist-nav-title {
	font-size: 1.2rem;
	letter-spacing: 0.06em;
	color: var(--pist-text-primary);
}

.pist-nav-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.pist-nav-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
}

.pist-nav-logo-img {
	height: 86px;
	width: auto;
	transition: height 0.4s ease;
}

.pist-nav-title {
	font-family: var(--pist-font-heading);
	font-size: clamp(1.8rem, 2.7vw, 2.16rem);
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: font-size 0.4s ease, letter-spacing 0.4s ease, color 0.4s ease;
	white-space: nowrap;
}

.pist-nav-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.pist-nav-menu > li {
	position: relative;
}

.pist-nav-menu a {
	font-family: var(--pist-font-body);
	font-size: 0.85rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	letter-spacing: 0.02em;
	transition: color var(--pist-transition-fast);
	padding: 8px 0;
	white-space: nowrap;
}

.pist-nav-menu a:hover {
	color: var(--pist-accent-gold);
}

.pist-nav-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: rgba(248, 245, 239, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: var(--pist-radius-md);
	padding: 12px 0;
	box-shadow: var(--pist-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: var(--pist-transition);
	list-style: none;
	margin: 0;
}

.pist-nav-menu .menu-item-has-children:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.pist-nav-menu .sub-menu a {
	color: var(--pist-text-primary);
	padding: 8px 20px;
	display: block;
	font-size: 0.85rem;
}

.pist-nav-menu .sub-menu a:hover {
	background: var(--pist-bg-secondary);
	color: var(--pist-accent-gold);
}

.pist-nav-cta {
	background: linear-gradient(135deg, var(--pist-accent-gold), var(--pist-accent-light));
	color: var(--pist-bg-white) !important;
	padding: 10px 24px !important;
	border-radius: 50px;
	transition: var(--pist-transition);
}

.pist-nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: var(--pist-shadow-gold);
}

.pist-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.pist-nav-toggle span {
	width: 24px;
	height: 2px;
	background: var(--pist-bg-white);
	border-radius: 2px;
	transition: var(--pist-transition-fast);
}

.scrolled .pist-nav-toggle span {
	background: var(--pist-text-primary);
}

/* Custom Footer */
.pist-footer {
	background: var(--pist-text-primary);
	color: rgba(255, 255, 255, 0.8);
	padding: var(--pist-space-xl) 0 0;
}

.pist-footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: var(--pist-space-lg);
}

.pist-footer-col h4 {
	font-family: var(--pist-font-heading);
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--pist-accent-light);
	margin-bottom: var(--pist-space-md);
}

.pist-footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pist-footer-col ul li {
	margin-bottom: 8px;
}

.pist-footer-about {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.pist-footer-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	margin-bottom: 1rem;
	gap: 10px;
}

.pist-footer-logo {
	height: 172px;
	width: auto;
}

.pist-footer-name {
	font-family: var(--pist-font-heading);
	font-size: 1.68rem;
	font-weight: 700;
	color: var(--pist-accent-light);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pist-footer-desc {
	font-size: 0.9rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
	max-width: 320px;
}

.pist-footer-col a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color var(--pist-transition-fast);
}

.pist-footer-col a:hover {
	color: var(--pist-accent-gold);
}

.pist-footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.pist-footer-social a {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.7);
	transition: var(--pist-transition);
}

.pist-footer-social a svg {
	width: 20px;
	height: 20px;
}

.pist-footer-social a:hover {
	border-color: var(--pist-accent-gold);
	color: var(--pist-accent-gold);
	background: rgba(183, 138, 76, 0.1);
	transform: translateY(-2px);
}

.pist-footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding: var(--pist-space-lg) 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: var(--pist-space-xl);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--pist-space-sm);
}

.pist-footer-bottom p {
	margin: 0;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
}

.pist-footer-credit a {
	color: var(--pist-accent-light);
	text-decoration: none;
}

.pist-footer-credit a:hover {
	color: var(--pist-accent-gold);
}

/* Responsive Nav */
@media (max-width: 1024px) {
	.pist-nav { padding: 8px 24px; }
	.pist-nav.scrolled { padding: 10px 24px; }
	.pist-nav-brand { gap: 10px; }
	.pist-nav-logo-img { height: 60px; }
	.pist-nav.scrolled .pist-nav-logo-img { height: 30px; }
	.pist-nav-title { font-size: 1.2rem; }
	.pist-nav.scrolled .pist-nav-title { font-size: 1rem; }
	.pist-nav-menu { display: none; }
	.pist-nav-toggle { display: flex; }
	.pist-nav-menu.open {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(43, 43, 43, 0.98);
		backdrop-filter: blur(20px);
		justify-content: center;
		align-items: center;
		gap: 1.5rem;
	}
	.pist-nav-menu.open a { font-size: 1.2rem; color: var(--pist-bg-white); }
	.pist-nav-menu.open .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: transparent;
		box-shadow: none;
		padding: 8px 0 0 20px;
	}
	.pist-nav-menu.open .sub-menu a { font-size: 1rem; color: rgba(255,255,255,0.7); }
	.pist-footer-inner { grid-template-columns: 1fr; gap: var(--pist-space-md); }
	.pist-footer-bottom { flex-direction: column; text-align: center; }
}

/* Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--pist-accent-gold);
	outline-offset: 2px;
}

/* Selection */
::selection {
	background: var(--pist-accent-gold);
	color: var(--pist-bg-white);
}
