/* SOLVED STUDIO STYLES */
.solved-studio-wrap {
	font-family: 'Inter', sans-serif;
	-webkit-font-smoothing: antialiased;
	background-color: #0B0B0C;
	color: #FFFFFF;
	margin: 0;
	padding: 0;
}

/* Base Constants */
.solved-studio-wrap * {
	box-sizing: border-box;
}

/* Common Classes */
.ss-text-red {
	color: #E52629 !important;
}

.ss-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
}

.eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.15em;
	display: block;
	margin-bottom: 24px;
	text-transform: uppercase;
}

/* Typography Defaults */
h1, h2, h3, h4 {
	margin: 0;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

/* Buttons */
.ss-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0 28px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: pointer;
}

.ss-btn-primary {
	background-color: #E52629;
	color: #FFFFFF;
	border: none;
}

.ss-btn-primary:hover {
	background-color: #B81E20;
}

.ss-btn-secondary {
	background-color: transparent;
	color: #FFFFFF;
	border: 1px solid #FFFFFF;
}

.ss-btn-secondary:hover {
	background-color: #FFFFFF;
	color: #0B0B0C;
}

.ss-btn-inverted {
	background-color: #FFFFFF;
	color: #E52629;
	border: none;
}

.ss-btn-inverted:hover {
	background-color: #F6F5F2;
	color: #B81E20;
}

.ss-link {
	font-size: 14px;
	font-weight: 600;
	color: #E52629;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: gap 0.2s ease;
}

.ss-link:hover {
	gap: 10px;
	color: #B81E20;
}

/* Grid Utilities */
.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.grid-4 {
	display: grid;
	grid-template-columns: 2fr repeat(3, 1fr);
	gap: 40px;
}

.text-center {
	text-align: center;
}

/* HEADER */
.ss-header {
	background-color: #0B0B0C;
	border-bottom: 1px solid #2E2E30;
	position: sticky;
	top: 0;
	z-index: 99;
}

body.admin-bar .ss-header {
	top: var(--wp-admin--admin-bar--height, 32px);
}

.flex-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}

.ss-logo a {
	font-size: 20px;
	font-weight: 800;
	color: #FFFFFF;
	text-decoration: none;
	letter-spacing: -0.03em;
}

.ss-logo .dot {
	color: #E52629;
}

.ss-nav {
	display: flex;
	gap: 32px;
}

.ss-nav a {
	color: #9A9A9C;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.2s ease;
}

.ss-nav a:hover {
	color: #FFFFFF;
}

/* SECTION 1: HERO */
.ss-hero {
	background-color: #0B0B0C;
	min-height: 88vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 140px 0;
	position: relative;
	overflow: hidden;
}

.hero-glow {
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(229, 38, 41, 0.08) 0%, rgba(229, 38, 41, 0) 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 1;
}

.ss-hero .ss-container {
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 80px;
	font-weight: 800;
	margin-bottom: 32px;
	letter-spacing: -0.03em;
}

.hero-subhead {
	font-size: 18px;
	line-height: 1.6;
	color: #9A9A9C;
	max-width: 640px;
	margin: 0 auto 48px auto;
}

.hero-actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 80px;
}

.hero-proof-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	border-top: 1px solid #2E2E30;
	padding-top: 32px;
	max-width: 800px;
	margin: 0 auto;
}

.proof-item {
	font-size: 13px;
	color: #9A9A9C;
	font-weight: 500;
}

.proof-divider {
	width: 1px;
	height: 16px;
	background-color: #2E2E30;
}

/* SECTION 2: POSITIONING STRIP */
.ss-positioning {
	background-color: #F6F5F2;
	color: #111111;
	padding: 140px 0;
}

.pos-title {
	font-size: 48px;
	color: #111111;
}

.pos-para {
	font-size: 20px;
	line-height: 1.6;
	color: #5B5B5D;
	margin-bottom: 32px;
}

/* SECTION 3: SERVICES OVERVIEW */
.ss-services {
	background-color: #0B0B0C;
	padding: 140px 0;
}

.section-title {
	font-size: 56px;
	margin-bottom: 64px;
}

.services-list {
	border-top: 1px solid #2E2E30;
}

.service-row {
	display: flex;
	align-items: center;
	padding: 32px 16px;
	border-bottom: 1px solid #2E2E30;
	text-decoration: none;
	color: #FFFFFF;
	transition: all 0.25s ease;
}

.service-row:hover {
	background-color: #1A1A1C;
	padding-left: 24px;
	padding-right: 24px;
}

.service-num {
	font-size: 14px;
	font-weight: 700;
	color: #9A9A9C;
	width: 80px;
}

.service-name {
	font-size: 24px;
	font-weight: 700;
	flex-grow: 1;
	transition: color 0.2s ease;
}

.service-row:hover .service-name {
	color: #E52629;
}

.service-arrow {
	font-size: 24px;
	color: #9A9A9C;
	transition: transform 0.25s ease, color 0.25s ease;
}

.service-row:hover .service-arrow {
	transform: translateX(8px);
	color: #E52629;
}

.services-footer {
	margin-top: 48px;
}

/* SECTION 4: PAST WORK */
.ss-work {
	background-color: #0B0B0C;
	padding: 140px 0;
	position: relative;
}

.work-list {
	border-top: 1px solid #2E2E30;
	margin-bottom: 48px;
}

.work-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 32px 16px;
	border-bottom: 1px solid #2E2E30;
	cursor: pointer;
	transition: all 0.2s ease;
}

.work-row:hover {
	background-color: #1A1A1C;
}

.work-client {
	font-size: 28px;
	font-weight: 800;
	color: #FFFFFF;
	margin-bottom: 8px;
	transition: color 0.2s ease;
}

.work-row:hover .work-client {
	color: #E52629;
}

.work-meta {
	font-size: 14px;
	color: #9A9A9C;
	margin: 0;
}

.work-action {
	font-size: 16px;
	font-weight: 600;
	color: #9A9A9C;
	transition: transform 0.2s ease, color 0.2s ease;
}

.work-row:hover .work-action {
	transform: translateX(4px);
	color: #E52629;
}

.work-note {
	text-align: center;
	font-size: 14px;
	color: #9A9A9C;
}

/* Floating Thumbnail Styles */
.hover-thumb-container {
	position: fixed;
	width: 220px;
	height: 140px;
	pointer-events: none;
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.25s ease, transform 0.25s ease;
	z-index: 1000;
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid #2E2E30;
}

.hover-thumb-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%) contrast(120%) brightness(80%) sepia(100%) hue-rotate(-50deg) saturate(250%); /* Subtle red/black duotone treatment */
}

/* SECTION 5: PROOF STRIP */
.ss-proof {
	background-color: #F6F5F2;
	padding: 100px 0;
}

.proof-stat-col {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.stat-num {
	font-size: 72px;
	font-weight: 800;
	color: #E52629;
	line-height: 1;
}

.stat-label {
	font-size: 16px;
	font-weight: 600;
	color: #5B5B5D;
}

/* SECTION 6: CLOSING CTA */
.ss-cta {
	background-color: #E52629;
	color: #FFFFFF;
	padding: 140px 0;
}

.cta-title {
	font-size: 56px;
	margin-bottom: 24px;
}

.cta-subtitle {
	font-size: 18px;
	opacity: 0.85;
	max-width: 520px;
	margin: 0 auto 48px auto;
	line-height: 1.6;
}

.cta-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
}

.cta-email {
	color: #FFFFFF;
	font-weight: 600;
	text-decoration: none;
	font-size: 16px;
	border-bottom: 1px solid rgba(255,255,255,0.4);
	padding-bottom: 4px;
	transition: border-color 0.2s ease;
}

.cta-email:hover {
	border-color: #FFFFFF;
}

/* FOOTER */
.ss-footer {
	background-color: #0B0B0C;
	border-top: 1px solid #2E2E30;
	padding: 100px 0;
}

.footer-desc {
	color: #9A9A9C;
	font-size: 14px;
	line-height: 1.6;
	margin: 16px 0 24px 0;
	max-width: 240px;
}

.footer-socials {
	display: flex;
	gap: 16px;
}

.footer-socials a {
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.footer-heading {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #FFFFFF;
	margin-bottom: 24px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-links a, .footer-links p {
	color: #9A9A9C;
	text-decoration: none;
	font-size: 14px;
	margin: 0;
}

.footer-links a:hover {
	color: #FFFFFF;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
	.hero-title {
		font-size: 64px;
	}
	.section-title, .cta-title {
		font-size: 48px;
	}
	.grid-4 {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.ss-hero, .ss-positioning, .ss-services, .ss-work, .ss-cta, .ss-footer {
		padding: 64px 0;
	}
	.grid-2, .grid-3, .grid-4 {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.hero-title {
		font-size: 44px;
	}
	.section-title, .cta-title {
		font-size: 36px;
	}
	.ss-nav {
		display: none;
	}
	.hero-actions, .cta-actions {
		flex-direction: column;
		gap: 16px;
		align-items: center;
	}
	.cta-actions {
		gap: 24px;
	}
	.hero-proof-row {
		flex-direction: column;
		gap: 12px;
	}
	.proof-divider {
		display: none;
	}
	.service-row {
		padding: 24px 0;
	}
	.service-num {
		width: 48px;
	}
	.service-name {
		font-size: 18px;
	}
}
