/**
 * Sabino Web - Retro 80s Commodore 64 Theme
 * Authentic C64 colors, blocky aesthetics, and period-appropriate styling
 */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&family=Share+Tech+Mono&display=swap');

/* ========================================
   DESIGN SYSTEM & VARIABLES
   ======================================== */
:root {
	/* Commodore 64 Color Palette - Authentic Retro */
	--c64-blue: #1a1342;           /* Deep blue background (C64 screen border) */
	--c64-light-blue: #4a3a7f;     /* Light blue (C64 accent) */
	--c64-purple: #5a2a6a;         /* Purple (C64 graphics) */
	--c64-cyan: #50E9FF;           /* Bright cyan (C64 text highlight) */
	--c64-green: #88D66C;          /* Light green (classic terminal green) */
	--c64-yellow: #FFF280;         /* Bright yellow (C64 warnings) */
	--c64-orange: #CB7E32;         /* Orange (C64 sprite color) */
	--c64-red: #9F4E44;            /* Red (C64 error color) */
	--c64-screen: #25195f;         /* Classic C64 blue screen background */
	--c64-border: #0f0a2e;         /* Darker border color */
	--c64-text: #B8C5D6;           /* Light gray-blue for body text */
	--c64-text-bright: #FFFFFF;    /* White for headings */
	--c64-black: #000000;          /* True black for contrast */
	--c64-gray: #62626D;           /* Medium gray */

	/* CRT & Scanline Effects */
	--scanline-opacity: 0.08;
	--glow-color: #50E9FF;

	/* Legacy color vars for compatibility */
	--color-primary: var(--c64-blue);
	--color-secondary: var(--c64-cyan);
	--color-accent: var(--c64-red);
	--color-success: var(--c64-green);
	--color-warm: var(--c64-yellow);

	/* Neutral Colors */
	--color-light: var(--c64-text-bright);
	--color-light-gray: var(--c64-gray);
	--color-border: var(--c64-light-blue);
	--color-text: var(--c64-text);
	--color-text-secondary: var(--c64-gray);
	--color-text-light: var(--c64-gray);
	--color-white: var(--c64-text-bright);

	/* Typography - Retro Fonts */
	--font-serif: 'Georgia', 'Garamond', serif;
	--font-sans: 'VT323', 'Courier New', monospace;
	--font-mono: 'Share Tech Mono', monospace;
	--font-display: 'Press Start 2P', 'Courier New', monospace;

	/* Spacing - Generous & Considered */
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 1.5rem;
	--space-lg: 2rem;
	--space-xl: 3rem;
	--space-2xl: 4rem;
	--space-3xl: 5rem;
	--space-4xl: 6rem;

	/* Shadows - Layered & Subtle */
	--shadow-xs: 0 1px 2px rgba(15, 20, 25, 0.05);
	--shadow-sm: 0 2px 4px rgba(15, 20, 25, 0.08);
	--shadow-md: 0 4px 12px rgba(15, 20, 25, 0.1);
	--shadow-lg: 0 8px 24px rgba(15, 20, 25, 0.12);
	--shadow-xl: 0 16px 40px rgba(15, 20, 25, 0.15);
	--shadow-2xl: 0 20px 60px rgba(15, 20, 25, 0.2);

	/* Border Radius */
	--radius-xs: 2px;
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--radius-xl: 16px;

	/* Transitions - Premium Feel */
	--transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
	--transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-sans);
	overflow-x: hidden;
	width: 100%;
	max-width: 100vw;
	font-size: 18px;
	line-height: 1.6;
	color: var(--color-text);
	background: linear-gradient(135deg, #0f0a2e 0%, #000000 100%);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	position: relative;
}

/* CRT Scanline overlay effect */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: repeating-linear-gradient(
		0deg,
		rgba(255, 255, 255, var(--scanline-opacity)),
		rgba(255, 255, 255, var(--scanline-opacity)) 2px,
		transparent 2px,
		transparent 4px
	);
	pointer-events: none;
	z-index: 9999;
	animation: scanline-shift 8s linear infinite;
}

@keyframes scanline-shift {
	0% { transform: translateY(0); }
	100% { transform: translateY(10px); }
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
	color: var(--c64-text-bright);
	margin-bottom: var(--space-md);
	letter-spacing: 0.05em;
	font-family: var(--font-display);
	text-transform: uppercase;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

h1 {
	font-size: 3rem;
	font-weight: 400;
	margin-bottom: var(--space-lg);
	line-height: 1.1;
	color: var(--c64-cyan);
	text-shadow: 2px 2px 0 var(--c64-blue), 4px 4px 0 rgba(0, 0, 0, 0.9);
	letter-spacing: 0.15em;
}

h2 {
	font-size: 2rem;
	margin-bottom: var(--space-lg);
	color: var(--c64-yellow);
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8), 4px 4px 0 rgba(0, 0, 0, 0.3);
	letter-spacing: 0.1em;
}

h3 {
	font-size: 1.5rem;
	margin-bottom: var(--space-md);
	font-weight: 400;
	color: var(--c64-cyan);
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.6);
}

h4 {
	font-size: 1.25rem;
	font-weight: 700;
}

h5 {
	font-size: 1.125rem;
	font-weight: 600;
}

h6 {
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--color-text-secondary);
}

p {
	margin-bottom: var(--space-md);
	font-size: 1.25rem;
	line-height: 1.85;
	color: var(--c64-text-bright);
	font-family: var(--font-sans);
}

p.lead {
	font-size: 1.5rem;
	line-height: 1.9;
	color: var(--c64-cyan);
	font-weight: 400;
	letter-spacing: 0.05em;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}

strong, b {
	font-weight: 700;
	color: var(--c64-yellow);
	font-family: var(--font-display);
}

a {
	color: var(--c64-cyan);
	text-decoration: none;
	position: relative;
	font-weight: 600;
	border-bottom: 2px solid var(--c64-cyan);
	transition: none;
}

a:hover {
	background: var(--c64-cyan);
	color: var(--c64-blue);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.site-header {
	background: var(--c64-screen);
	border-bottom: 4px solid var(--c64-cyan);
	position: sticky;
	top: 0;
	z-index: 999;
	transition: none;
	box-shadow: 0 4px 0 rgba(0, 0, 0, 0.5);
}

.site-header.scrolled {
	box-shadow: 0 4px 0 rgba(0, 0, 0, 0.5);
}

.header-wrapper {
	max-width: 1440px;
	margin: 0 auto;
	width: 100%;
	padding: var(--space-sm) var(--space-lg);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-xl);
}

.header-left {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: var(--space-md);
}

.header-right {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.site-title {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	font-family: var(--font-display);
	text-transform: uppercase;
	border: 3px solid var(--c64-cyan);
	padding: var(--space-xs) var(--space-sm);
	background: var(--c64-blue);
}

.site-title a {
	color: var(--c64-cyan);
	text-decoration: none;
	border: none;
	display: block;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.7);
}

.site-title a:hover {
	background: none;
	color: var(--c64-yellow);
}

.site-description {
	display: none;
}

/* Main Navigation */
.main-navigation {
	display: flex;
	align-items: center;
	gap: 0;
	margin-left: auto;
	flex-shrink: 0;
}

.main-navigation > div {
	display: flex;
	align-items: center;
}

.main-navigation ul {
	list-style: none;
	display: flex;
	gap: 0;
	margin: 0;
	padding: 0;
	align-items: center;
}

.main-navigation li {
	margin: 0;
}

.main-navigation a {
	display: block;
	padding: var(--space-xs) var(--space-md);
	color: var(--c64-cyan);
	font-weight: 600;
	font-size: 0.95rem;
	transition: none;
	position: relative;
	white-space: nowrap;
	border-bottom: none;
	font-family: var(--font-sans);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.main-navigation a::after {
	content: '';
	position: absolute;
	bottom: 8px;
	left: var(--space-lg);
	right: var(--space-lg);
	height: 2px;
	background: var(--c64-yellow);
	transform: scaleX(0);
	transform-origin: right;
	transition: none;
}

.main-navigation a:hover {
	color: var(--c64-text-bright);
	background: var(--c64-blue);
}

.main-navigation a:hover::after {
	transform: scaleX(0);
	transform-origin: left;
}

.main-navigation .current-menu-item > a {
	color: var(--c64-text-bright);
	background: var(--c64-blue);
}

.main-navigation .current-menu-item > a::after {
	transform: scaleX(1);
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--color-primary);
	padding: var(--space-sm);
	cursor: pointer;
	font-size: 1.5rem;
}

/* ========================================
   LAYOUT & CONTENT
   ======================================== */
.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

#primary {
	flex-grow: 1;
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	padding: var(--space-3xl) var(--space-lg);
}

@media (max-width: 640px) {
	#primary {
		padding: var(--space-2xl) var(--space-md);
	}
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
	position: relative;
	margin: 0 0 var(--space-4xl) 0;
	padding: var(--space-4xl) var(--space-lg);
	background: linear-gradient(135deg, var(--c64-screen) 0%, var(--c64-blue) 100%);
	border: 4px solid var(--c64-cyan);
	border-radius: 0;
	color: var(--c64-text-bright);
	text-align: center;
	overflow: hidden;
	box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.7), 0 0 30px rgba(80, 233, 255, 0.3);
	animation: hero-glow 3s ease-in-out infinite;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 200px;
	height: 200px;
	background: linear-gradient(135deg, rgba(80, 233, 255, 0.1) 0%, transparent 70%);
	border-radius: 0;
	pointer-events: none;
	animation: pixel-float 4s steps(4, end) infinite;
}

.hero-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 150px;
	height: 150px;
	background: linear-gradient(135deg, rgba(255, 242, 128, 0.1) 0%, transparent 70%);
	border-radius: 0;
	pointer-events: none;
	animation: pixel-float 5s steps(4, end) infinite reverse;
}

@keyframes pixel-float {
	0%, 100% { transform: translate(0, 0); opacity: 0.2; }
	25% { transform: translate(8px, 0); opacity: 0.4; }
	50% { transform: translate(8px, 8px); opacity: 0.6; }
	75% { transform: translate(0, 8px); opacity: 0.4; }
}

@keyframes hero-glow {
	0%, 100% { box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.7), 0 0 20px rgba(80, 233, 255, 0.2); }
	50% { box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.7), 0 0 40px rgba(80, 233, 255, 0.5); }
}

.hero-section h1 {
	color: var(--c64-cyan);
	position: relative;
	z-index: 1;
	margin-bottom: var(--space-lg);
	font-weight: 400;
	line-height: 1.1;
	text-shadow: 3px 3px 0 var(--c64-blue), 6px 6px 0 rgba(0, 0, 0, 0.8);
	font-size: 2.2rem;
}

.hero-section .lead {
	color: var(--c64-text);
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
	font-size: 1.15rem;
	line-height: 1.8;
	font-weight: 400;
	font-family: var(--font-sans);
	letter-spacing: 0.05em;
}

/* ========================================
   CTA BUTTONS
   ======================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	font-size: 1.1rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-decoration: none;
	border: 4px solid;
	border-radius: 0;
	cursor: pointer;
	transition: none;
	position: relative;
	overflow: visible;
	text-transform: uppercase;
	outline: none;
	font-family: var(--font-display);
	box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
}

.btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: transparent;
	opacity: 0;
	transition: none;
}

.btn:hover::before {
	opacity: 0;
}

.btn-primary {
	background: var(--c64-cyan);
	color: var(--c64-blue);
	border-color: var(--c64-blue);
}

.btn-primary:hover {
	transform: translate(2px, 2px);
	box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
	background: var(--c64-yellow);
	border-color: var(--c64-blue);
}

.btn-primary:active {
	transform: translate(4px, 4px);
	box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
}

.btn-accent {
	background: var(--c64-yellow);
	color: var(--c64-blue);
	border-color: var(--c64-blue);
}

.btn-accent:hover {
	transform: translate(2px, 2px);
	box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
	background: var(--c64-green);
	border-color: var(--c64-blue);
}

.btn-secondary {
	background: var(--c64-light-blue);
	color: var(--c64-text-bright);
	border-color: var(--c64-cyan);
}

.btn-secondary:hover {
	background: var(--c64-cyan);
	border-color: var(--c64-blue);
	color: var(--c64-blue);
	transform: translate(2px, 2px);
	box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.btn.btn-lg {
	padding: 1rem 2.5rem;
	font-size: 1rem;
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: var(--space-lg);
	margin: var(--space-3xl) 0;
}

.service-card {
	background: var(--c64-screen);
	border: 4px solid var(--c64-cyan);
	border-radius: 0;
	padding: var(--space-lg);
	transition: none;
	position: relative;
	overflow: visible;
	display: flex;
	flex-direction: column;
	box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(80, 233, 255, 0.2);
	animation: card-glow 2s ease-in-out infinite;
}

.service-card:nth-child(2) {
	border-color: var(--c64-yellow);
	box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 242, 128, 0.2);
	animation: card-glow-yellow 2s ease-in-out infinite;
}

.service-card:nth-child(3) {
	border-color: var(--c64-green);
	box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(136, 214, 108, 0.2);
	animation: card-glow-green 2s ease-in-out infinite;
}

@keyframes card-glow {
	0%, 100% { box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5), 0 0 15px rgba(80, 233, 255, 0.15); }
	50% { box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5), 0 0 35px rgba(80, 233, 255, 0.4); }
}

@keyframes card-glow-yellow {
	0%, 100% { box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 242, 128, 0.15); }
	50% { box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5), 0 0 35px rgba(255, 242, 128, 0.4); }
}

@keyframes card-glow-green {
	0%, 100% { box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5), 0 0 15px rgba(136, 214, 108, 0.15); }
	50% { box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5), 0 0 35px rgba(136, 214, 108, 0.4); }
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 0;
	background: transparent;
	transform: scaleX(0);
	transform-origin: left;
	transition: none;
}

.service-card:hover {
	transform: translate(4px, 4px);
	box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
	transform: scaleX(0);
}

.service-icon {
	font-size: 3.5rem;
	margin-bottom: var(--space-md);
	line-height: 1;
	text-align: center;
}

.service-card h3 {
	margin-top: 0;
	margin-bottom: var(--space-md);
	font-size: 1.35rem;
	color: var(--c64-cyan);
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.7);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.service-card:nth-child(2) h3 {
	color: var(--c64-yellow);
}

.service-card:nth-child(3) h3 {
	color: var(--c64-green);
}

.service-card p {
	color: var(--c64-text-bright);
	line-height: 1.75;
	flex-grow: 1;
	margin-bottom: 0;
	font-size: 1.05rem;
}

.services-content {
	font-size: 1.35rem;
	line-height: 1.85;
	color: var(--c64-text-bright);
	margin: var(--space-lg) 0;
}

.services-content p {
	font-size: 1.35rem;
	margin-bottom: 1.2rem;
	color: var(--c64-text-bright);
}

/* ========================================
   PORTFOLIO GRID
   ======================================== */
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: var(--space-lg);
	margin: var(--space-3xl) 0;
}

.portfolio-item {
	background: var(--c64-screen);
	border: 4px solid var(--c64-cyan);
	border-radius: 0;
	overflow: hidden;
	box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
	transition: none;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.portfolio-item:hover {
	transform: translate(4px, 4px);
	box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
	border-color: var(--c64-yellow);
}

.portfolio-item-image {
	width: 100%;
	height: 280px;
	background: linear-gradient(135deg, #0f1419 0%, #1a2240 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	overflow: hidden;
	position: relative;
}

.portfolio-item:hover .portfolio-item-image {
	transform: scale(1.05);
}

.portfolio-item-content {
	padding: var(--space-lg);
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.portfolio-item h3 {
	margin-top: 0;
	margin-bottom: var(--space-sm);
	font-size: 1.25rem;
	color: var(--color-primary);
}

.portfolio-item p {
	color: var(--color-text-secondary);
	flex-grow: 1;
	line-height: 1.7;
	margin-bottom: 0;
}

.portfolio-item-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-sm);
	font-size: 0.85rem;
	color: var(--color-text-light);
	margin-top: var(--space-md);
	padding-top: var(--space-md);
	border-top: 1px solid var(--color-border);
}

/* ========================================
   CASE STUDY SECTIONS
   ======================================== */
.case-study-hero {
	background: linear-gradient(135deg, #0f1419 0%, #1a2240 100%);
	color: var(--color-white);
	padding: var(--space-4xl) var(--space-lg);
	border-radius: var(--radius-xl);
	margin-bottom: var(--space-4xl);
	position: relative;
	overflow: hidden;
}

.case-study-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -15%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.case-study-hero h1 {
	color: var(--color-white);
	position: relative;
	z-index: 1;
	margin-bottom: var(--space-lg);
}

.case-study-meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--space-lg);
	position: relative;
	z-index: 1;
	margin-top: var(--space-lg);
}

.case-study-meta-item {
	padding-bottom: var(--space-md);
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.case-study-meta strong {
	display: block;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: var(--space-xs);
	font-weight: 600;
}

.case-study-meta p {
	color: rgba(255, 255, 255, 1);
	margin: 0;
	font-weight: 500;
}

.case-study-section {
	margin-bottom: var(--space-4xl);
	padding-bottom: var(--space-4xl);
	border-bottom: 1px solid var(--color-border);
}

.case-study-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.case-study-section h2 {
	position: relative;
	padding-bottom: var(--space-lg);
	margin-bottom: var(--space-lg);
}

.case-study-section h2::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 4px;
	background: linear-gradient(90deg, var(--color-secondary), var(--color-warm));
	border-radius: 2px;
}

.case-study-results {
	background: var(--color-light-gray);
	padding: var(--space-xl);
	border-radius: var(--radius-lg);
	margin: var(--space-3xl) 0;
	border-left: 5px solid var(--color-secondary);
}

.results-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--space-lg);
}

.result-item {
	text-align: center;
}

.result-number {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--color-secondary);
	margin-bottom: var(--space-xs);
}

.result-label {
	color: var(--color-text);
	font-weight: 600;
	font-size: 0.9rem;
	line-height: 1.5;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-3xl);
	align-items: center;
	margin-bottom: var(--space-4xl);
}

.about-intro-image {
	background: linear-gradient(135deg, #0f1419 0%, #1a2240 100%);
	height: 450px;
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

.about-intro-image::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -10%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
	border-radius: 50%;
}

.about-intro-content h2 {
	margin-top: 0;
}

.about-intro-content p {
	color: var(--color-text-secondary);
	line-height: 1.8;
}

/* ========================================
   TERMINAL ASCII BOX
   ======================================== */
.terminal-ascii-box {
	background: #0a0a0a;
	border: 4px solid var(--c64-cyan);
	border-radius: 2px;
	padding: var(--space-xl);
	margin: var(--space-3xl) 0;
	font-family: 'Share Tech Mono', monospace;
	box-shadow:
		0 0 30px rgba(80, 233, 255, 0.5),
		0 0 60px rgba(80, 233, 255, 0.25),
		inset 0 0 20px rgba(80, 233, 255, 0.1);
	width: 100%;
	position: relative;
	animation: terminal-pulse 3s ease-in-out infinite;
	overflow-x: auto;
}

.terminal-header {
	color: var(--c64-green);
	font-size: 1rem;
	margin-bottom: var(--space-lg);
	text-shadow:
		0 0 10px rgba(136, 214, 108, 0.8),
		0 0 20px rgba(136, 214, 108, 0.5);
	letter-spacing: 0.15em;
	font-weight: bold;
	animation: header-glow 2s ease-in-out infinite;
}

.terminal-content {
	background: #000000;
	padding: var(--space-lg);
	border: 1px solid var(--c64-cyan);
	position: relative;
	overflow: hidden;
}

.terminal-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: repeating-linear-gradient(
		0deg,
		rgba(80, 233, 255, 0.02),
		rgba(80, 233, 255, 0.02) 2px,
		transparent 2px,
		transparent 4px
	);
	pointer-events: none;
	z-index: 1;
}

.ascii-art {
	font-size: 1.1rem;
	line-height: 1.2;
	white-space: pre;
	color: var(--c64-cyan);
	text-shadow:
		0 0 15px rgba(80, 233, 255, 0.8),
		0 0 30px rgba(80, 233, 255, 0.5),
		0 0 45px rgba(80, 233, 255, 0.3);
	animation: rainbow-glow 4s ease-in-out infinite;
	position: relative;
	z-index: 2;
	letter-spacing: 0.08em;
	font-weight: bold;
}

.terminal-cursor {
	color: var(--c64-yellow);
	font-size: 1.5rem;
	margin-top: var(--space-md);
	animation: cursor-blink 0.8s ease-in-out infinite;
	text-shadow:
		0 0 10px rgba(255, 242, 128, 0.8),
		0 0 20px rgba(255, 242, 128, 0.6);
	letter-spacing: 0.1em;
}

@keyframes terminal-pulse {
	0%, 100% {
		box-shadow:
			0 0 30px rgba(80, 233, 255, 0.5),
			0 0 60px rgba(80, 233, 255, 0.25),
			4px 4px 0 rgba(0, 0, 0, 0.9),
			inset 0 0 20px rgba(80, 233, 255, 0.1);
	}
	50% {
		box-shadow:
			0 0 50px rgba(80, 233, 255, 0.7),
			0 0 100px rgba(80, 233, 255, 0.4),
			4px 4px 0 rgba(0, 0, 0, 0.9),
			inset 0 0 30px rgba(80, 233, 255, 0.2);
	}
}

@keyframes header-glow {
	0%, 100% {
		text-shadow:
			0 0 10px rgba(136, 214, 108, 0.8),
			0 0 20px rgba(136, 214, 108, 0.5);
	}
	50% {
		text-shadow:
			0 0 15px rgba(136, 214, 108, 1),
			0 0 30px rgba(136, 214, 108, 0.7);
	}
}

@keyframes rainbow-glow {
	0% {
		color: var(--c64-cyan);
		text-shadow:
			0 0 15px rgba(80, 233, 255, 0.8),
			0 0 30px rgba(80, 233, 255, 0.5),
			0 0 45px rgba(80, 233, 255, 0.3);
	}
	25% {
		color: #ff00ff;
		text-shadow:
			0 0 15px rgba(255, 0, 255, 0.8),
			0 0 30px rgba(255, 0, 255, 0.5),
			0 0 45px rgba(255, 0, 255, 0.3);
	}
	50% {
		color: var(--c64-green);
		text-shadow:
			0 0 15px rgba(136, 214, 108, 0.8),
			0 0 30px rgba(136, 214, 108, 0.5),
			0 0 45px rgba(136, 214, 108, 0.3);
	}
	75% {
		color: var(--c64-yellow);
		text-shadow:
			0 0 15px rgba(255, 242, 128, 0.8),
			0 0 30px rgba(255, 242, 128, 0.5),
			0 0 45px rgba(255, 242, 128, 0.3);
	}
	100% {
		color: var(--c64-cyan);
		text-shadow:
			0 0 15px rgba(80, 233, 255, 0.8),
			0 0 30px rgba(80, 233, 255, 0.5),
			0 0 45px rgba(80, 233, 255, 0.3);
	}
}

@keyframes cursor-blink {
	0%, 49% {
		opacity: 1;
	}
	50%, 100% {
		opacity: 0;
	}
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
	margin: var(--space-4xl) 0;
	padding: var(--space-3xl) var(--space-lg);
}

.contact-intro {
	text-align: center;
	margin-bottom: var(--space-4xl);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.contact-intro h2 {
	font-size: 2.2rem;
	color: var(--c64-cyan);
	text-shadow: 2px 2px 0 var(--c64-blue), 4px 4px 0 rgba(0, 0, 0, 0.9);
	margin-bottom: var(--space-lg);
}

.contact-intro p {
	font-size: 1.25rem;
	color: var(--c64-text-bright);
	line-height: 1.8;
}

.contact-form-wrapper {
	max-width: 700px;
	margin: 0 auto;
}

/* ========================================
   CONTACT FORM
   ======================================== */
.wpcf7-form {
	background: rgba(30, 20, 60, 0.5);
	padding: var(--space-3xl);
	border: 3px solid var(--c64-cyan);
	border-radius: 2px;
	box-shadow:
		0 0 20px rgba(80, 233, 255, 0.2),
		4px 4px 0 rgba(0, 0, 0, 0.8);
}

.wpcf7-form-control {
	margin-bottom: var(--space-lg);
	display: block;
}

.wpcf7-form label {
	display: block;
	margin-bottom: var(--space-sm);
	font-weight: 600;
	color: var(--c64-yellow);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
	width: 100%;
	padding: var(--space-md);
	border: 2px solid var(--c64-cyan);
	border-radius: 0;
	font-family: var(--font-sans);
	font-size: 1.05rem;
	color: var(--c64-text-bright);
	background: #000000;
	transition: none;
	box-shadow: inset 0 0 10px rgba(80, 233, 255, 0.1);
}

.wpcf7-form input[type="text"]::placeholder,
.wpcf7-form input[type="email"]::placeholder,
.wpcf7-form input[type="tel"]::placeholder,
.wpcf7-form textarea::placeholder {
	color: var(--c64-gray);
	opacity: 0.7;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--c64-green);
	box-shadow:
		inset 0 0 10px rgba(136, 214, 108, 0.2),
		0 0 15px rgba(136, 214, 108, 0.3);
	background: rgba(0, 0, 0, 0.8);
}

.wpcf7-form input[type="text"]::placeholder,
.wpcf7-form input[type="email"]::placeholder,
.wpcf7-form input[type="tel"]::placeholder,
.wpcf7-form textarea::placeholder {
	color: var(--color-text-light);
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--color-secondary);
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
	background: var(--color-light);
}

.wpcf7-form textarea {
	resize: vertical;
	min-height: 150px;
}

.wpcf7-form input[type="submit"] {
	background: linear-gradient(135deg, var(--color-secondary), #1d4ed8);
	color: var(--color-white);
	padding: var(--space-md) var(--space-xl);
	border: none;
	border-radius: var(--radius-md);
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all var(--transition-fast);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	width: 100%;
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
	margin-top: var(--space-md);
}

.wpcf7-form input[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.wpcf7-form input[type="submit"]:active {
	transform: translateY(0);
}

/* ========================================
   PAGE CONTENT
   ======================================== */
.entry-header {
	margin-bottom: var(--space-2xl);
	padding-bottom: var(--space-xl);
	border-bottom: 3px solid var(--c64-cyan);
}

.entry-title {
	font-size: 2.8rem;
	color: var(--c64-cyan);
	text-shadow: 2px 2px 0 var(--c64-blue), 4px 4px 0 rgba(0, 0, 0, 0.9);
	margin-bottom: var(--space-lg);
	letter-spacing: 0.1em;
}

.entry-content {
	line-height: 1.9;
	color: var(--c64-text-bright);
	padding: 0 var(--space-lg);
}

.entry-content h2 {
	margin-top: var(--space-2xl);
	margin-bottom: var(--space-lg);
	font-size: 2rem;
	color: var(--c64-yellow);
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8), 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.entry-content h3 {
	margin-top: var(--space-xl);
	margin-bottom: var(--space-md);
	font-size: 1.6rem;
	color: var(--c64-cyan);
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.6);
}

.entry-content ul,
.entry-content ol {
	margin: var(--space-lg) 0 var(--space-lg) var(--space-xl);
	color: var(--c64-text-bright);
}

.entry-content li {
	margin-bottom: var(--space-md);
	font-size: 1.25rem;
	line-height: 1.8;
}

.entry-content strong {
	color: var(--c64-yellow);
	font-weight: 700;
}

.entry-content em {
	color: var(--c64-cyan);
	font-style: italic;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
	background: var(--c64-border);
	color: var(--c64-text);
	padding: var(--space-3xl) var(--space-lg);
	margin-top: auto;
	border-top: 4px solid var(--c64-cyan);
	font-family: var(--font-mono);
}

.site-info {
	max-width: 1440px;
	margin: 0 auto;
	text-align: center;
}

.footer-branding {
	margin-bottom: var(--space-xl);
}

.footer-box {
	border: 3px solid var(--c64-cyan);
	padding: var(--space-md) var(--space-lg);
	display: inline-block;
	background: var(--c64-blue);
	box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.7);
}

.footer-title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1rem;
	color: var(--c64-cyan);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: var(--space-xs);
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.7);
}

.footer-ready {
	margin: 0;
	font-family: var(--font-display);
	font-size: 0.9rem;
	color: var(--c64-yellow);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.7);
}

.footer-nav {
	margin: var(--space-lg) 0;
	font-size: 0.95rem;
}

.footer-nav a {
	color: var(--c64-cyan);
	font-weight: 600;
	border-bottom: 2px solid var(--c64-cyan);
	margin: 0 var(--space-sm);
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.footer-nav a:hover {
	background: var(--c64-cyan);
	color: var(--c64-blue);
}

.footer-pipe {
	color: var(--c64-text);
	margin: 0 var(--space-xs);
}

.site-info p {
	color: var(--c64-text);
	margin-bottom: var(--space-sm);
	font-size: 0.9rem;
	line-height: 1.7;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.footer-copyright {
	font-weight: 600;
	color: var(--c64-text-bright);
	margin-bottom: var(--space-xs);
}

.footer-location {
	font-size: 0.85rem;
	color: var(--c64-text);
}

.site-info a {
	color: var(--c64-cyan);
	font-weight: 600;
	transition: color var(--transition-fast);
}

.site-info a:hover {
	color: var(--color-white);
}

.site-info strong {
	color: var(--color-white);
	font-weight: 700;
}

/* ========================================
   ASCII DIVIDERS
   ======================================== */
.ascii-divider {
	text-align: center;
	margin: var(--space-2xl) 0;
	padding: var(--space-lg) 0;
	font-family: var(--font-mono);
	font-size: 1.2rem;
	color: var(--c64-cyan);
	letter-spacing: 0.1em;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

/* ========================================
   UTILITIES & HELPERS
   ======================================== */
.section-title {
	text-align: center;
	margin-bottom: var(--space-xl);
}

.section-title h2 {
	position: relative;
	padding-bottom: var(--space-lg);
}

.section-title h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, var(--color-secondary), var(--color-warm));
	border-radius: 2px;
}

.section-title p {
	color: var(--color-text-secondary);
	font-size: 1.1rem;
	max-width: 700px;
	margin: var(--space-lg) auto 0;
}

/* Lists */
ul, ol {
	margin-bottom: var(--space-lg);
	margin-left: var(--space-lg);
}

li {
	margin-bottom: var(--space-sm);
	line-height: 1.8;
	color: var(--color-text);
}

/* Page Title */
.page-title {
	font-size: 2.5rem;
	text-align: center;
	margin: 0 0 var(--space-2xl) 0;
	padding: 0;
	color: var(--color-primary);
	font-weight: 800;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
	/* Typography - Tablet Scaling */
	h1 { font-size: 2.2rem; }
	h2 { font-size: 1.75rem; }
	h3 { font-size: 1.4rem; }
	p { font-size: 1.05rem; }

	.hero-section {
		padding: var(--space-2xl) var(--space-lg);
		margin-bottom: var(--space-2xl);
	}

	.case-study-hero {
		padding: var(--space-2xl) var(--space-lg);
	}

	.about-intro {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}

	.about-intro-image {
		height: 300px;
	}

	/* Grids */
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-lg);
	}

	.portfolio-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.results-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.case-study-meta {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-md);
	}

	/* Header */
	.header-wrapper {
		padding: var(--space-md);
	}

	.site-branding {
		flex-direction: row;
		gap: var(--space-sm);
	}

	.site-title {
		font-size: 1.35rem;
	}

	/* Mobile Navigation */
	.main-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--c64-screen);
		border-bottom: 4px solid var(--c64-cyan);
		flex-direction: column;
		display: none;
		margin-left: 0;
		z-index: 100;
	}

	.main-navigation.active {
		display: flex;
	}

	.main-navigation ul {
		flex-direction: column;
		width: 100%;
	}

	.main-navigation a {
		padding: var(--space-md) var(--space-lg);
		border-bottom: 3px solid var(--c64-cyan);
		font-size: 1rem;
		color: var(--c64-cyan);
	}

	.main-navigation a::after {
		display: none;
	}

	.main-navigation a:hover {
		background: var(--c64-blue);
		color: var(--c64-text-bright);
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
		background: var(--c64-cyan);
		color: var(--c64-blue);
		border: 2px solid var(--c64-cyan);
		padding: var(--space-sm) var(--space-md);
		font-size: 1.2rem;
		cursor: pointer;
		font-weight: bold;
		position: relative;
		z-index: 1000;
		min-width: 44px;
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

/* Mobile Hamburger Menu - 480px and below */
@media (max-width: 480px) {
	.menu-toggle {
		display: block;
		margin-left: auto;
		background: var(--c64-cyan);
		color: var(--c64-blue);
		border: 2px solid var(--c64-cyan);
		padding: var(--space-sm) var(--space-md);
		font-size: 1.2rem;
		cursor: pointer;
		font-weight: bold;
		transition: all 150ms ease;
		position: relative;
		z-index: 1000;
		min-width: 44px;
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.menu-toggle:hover {
		background: var(--c64-text-bright);
		color: var(--c64-blue);
	}

	/* Forms */
	.wpcf7-form-control input,
	.wpcf7-form-control textarea {
		font-size: 16px;
		padding: var(--space-md);
	}

	/* Cards */
	.service-card {
		padding: var(--space-lg);
	}

	.service-icon {
		font-size: 2.5rem;
	}
}

@media (max-width: 480px) {
	/* Typography - Better Mobile Scaling */
	h1 { font-size: 1.5rem; }
	h2 { font-size: 1.4rem; }
	h3 { font-size: 1.2rem; }
	body { font-size: 16px; }
	p { font-size: 1rem; line-height: 1.5; }
	.entry-title { font-size: 2rem; }

	/* Reduce spacing throughout for mobile */
	#primary {
		padding: var(--space-md) var(--space-sm);
	}

	.hero-section {
		padding: var(--space-lg) var(--space-sm) !important;
		margin-bottom: var(--space-lg) !important;
	}

	.site-footer {
		padding: var(--space-lg) var(--space-sm) !important;
	}

	.header-wrapper {
		padding: var(--space-sm);
		gap: var(--space-sm);
	}

	.header-right {
		flex-shrink: 1;
		margin-left: auto;
	}

	.site-title {
		font-size: 0.9rem;
		padding: var(--space-xs) var(--space-sm);
		border: 2px solid var(--c64-cyan);
		letter-spacing: 0.5px;
		white-space: nowrap;
		flex-shrink: 0;
	}

	.site-title a {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	#primary {
		padding: var(--space-lg) var(--space-md);
	}

	/* Buttons - Full width but readable */
	.btn {
		width: 100%;
		padding: 1.2rem 1.5rem;
		font-size: 1rem;
		box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
		border: 3px solid;
		margin: var(--space-md) 0;
	}

	/* Service Cards */
	.service-card {
		box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
		padding: var(--space-md);
		border: 3px solid;
		margin-bottom: var(--space-lg);
	}

	.service-icon {
		font-size: 3.5rem;
		margin-bottom: var(--space-md);
	}

	.service-card-title {
		font-size: 1.4rem;
		margin-bottom: var(--space-md);
		letter-spacing: 1px;
	}

	.services-content {
		font-size: 1.05rem;
		line-height: 1.6;
	}

	.results-grid {
		grid-template-columns: 1fr;
	}

	/* Service Grid - Single Column on Mobile */
	.services-grid {
		grid-template-columns: 1fr !important;
		gap: var(--space-lg);
	}

	/* Center buttons */
	.entry-content p[style*="text-align: center"] {
		text-align: center !important;
		margin-top: var(--space-xl) !important;
	}

	.entry-content .btn {
		width: auto;
		display: block;
		margin: var(--space-md) auto !important;
		padding: 0.75rem 1.5rem !important;
	}

	/* ASCII Dividers - Reduce spacing */
	.ascii-divider {
		margin: var(--space-lg) auto;
		padding: var(--space-md) 0;
		font-size: 0.8rem;
		max-width: 90%;
		width: 100%;
		overflow: hidden;
	}

	/* Forms */
	.wpcf7-form {
		padding: var(--space-xl);
	}

	.wpcf7-form-control {
		margin: var(--space-lg) 0;
	}

	.wpcf7-form-control input,
	.wpcf7-form-control textarea {
		padding: var(--space-md);
		font-size: 1rem;
		border-width: 3px;
		width: 100%;
		min-height: 50px;
	}

	.wpcf7-form-control label {
		font-size: 1.1rem;
		margin-bottom: var(--space-md);
		display: block;
		letter-spacing: 1px;
	}

	/* Hero Section */
	.hero-section {
		padding: var(--space-xl) var(--space-md);
		margin-bottom: var(--space-xl);
	}

	.hero-section h1 {
		font-size: 1.5rem;
		line-height: 1.2;
		margin-bottom: var(--space-lg);
		letter-spacing: 0.5px;
		word-wrap: break-word;
		word-break: break-word;
	}

	.hero-section p {
		font-size: 1.05rem;
		line-height: 1.6;
		margin-bottom: var(--space-lg);
	}

	/* Terminal ASCII Box */
	.terminal-ascii-box {
		width: 100%;
		margin: var(--space-xl) 0;
		padding: var(--space-lg);
		border-width: 3px;
	}

	.terminal-header {
		font-size: 1rem;
		padding: var(--space-md);
		margin-bottom: var(--space-lg);
		letter-spacing: 1px;
	}

	.ascii-art {
		font-size: 0.2rem;
		line-height: 1.2;
		overflow-x: auto;
		padding: var(--space-md);
		font-family: 'Share Tech Mono', monospace;
	}

	.terminal-cursor {
		font-size: 2rem;
		margin-top: var(--space-md);
	}

	/* Entry Content */
	.entry-content {
		font-size: 1.05rem;
		line-height: 1.6;
	}

	.entry-content h2 {
		font-size: 1.5rem;
		margin-top: var(--space-xl);
		margin-bottom: var(--space-lg);
		letter-spacing: 1px;
		text-align: center;
	}

	.entry-content h3 {
		font-size: 1.25rem;
		margin-top: var(--space-lg);
		margin-bottom: var(--space-md);
	}

	.entry-content p {
		margin-bottom: var(--space-lg);
	}

	.entry-content ul,
	.entry-content ol {
		margin-left: var(--space-lg);
		margin-bottom: var(--space-lg);
	}

	.entry-content li {
		margin-bottom: var(--space-md);
	}

	/* Case Study Hero */
	.case-study-hero {
		padding: var(--space-xl) var(--space-md);
	}

	.case-study-hero h1 {
		font-size: 2rem;
		letter-spacing: 1px;
	}

	/* Footer */
	.site-footer {
		padding: var(--space-lg) var(--space-sm);
		border-top: 3px solid var(--c64-cyan);
	}

	.site-info {
		text-align: center;
	}

	.footer-branding {
		margin-bottom: var(--space-md);
	}

	.footer-title {
		font-size: 1rem;
		margin-bottom: var(--space-md);
		letter-spacing: 0.5px;
		color: var(--c64-cyan);
	}

	.footer-nav {
		margin-bottom: var(--space-md);
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: var(--space-xs);
	}

	.footer-nav a {
		font-size: 0.9rem;
		padding: var(--space-xs);
		display: inline-block;
		color: var(--c64-cyan);
	}

	.footer-nav a:hover {
		color: var(--c64-yellow);
	}

	.footer-pipe {
		margin: 0 var(--space-xs);
		color: var(--c64-cyan);
	}

	.footer-copyright {
		font-size: 0.9rem;
		margin: var(--space-md) 0 var(--space-sm);
		line-height: 1.4;
		color: var(--c64-text-bright);
	}

	.footer-location {
		font-size: 0.9rem;
		color: var(--c64-cyan);
		margin-top: var(--space-sm);
	}

	/* Contact Page Specific */
	.contact-intro {
		margin-bottom: var(--space-xl);
	}

	.contact-intro h2 {
		font-size: 1.5rem;
		margin-bottom: var(--space-lg);
		letter-spacing: 1px;
	}

	.contact-intro p {
		font-size: 1.05rem;
		margin-bottom: var(--space-lg);
		line-height: 1.6;
	}

	.contact-form-wrapper {
		padding: var(--space-xl);
		border-width: 3px;
		margin-bottom: var(--space-xl);
	}

	/* Headings - General Mobile */
	h4 { font-size: 1.15rem; letter-spacing: 0.5px; }
	h5 { font-size: 1.05rem; }
	h6 { font-size: 1rem; }
}
