@charset "utf-8";
/* CSS Document 

TemplateMo 606 String Master

https://templatemo.com/tm-606-string-master

*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--bg-dark: #0a0f0a;
	--bg-card: #111b11;
	--bg-elevated: #1a261a;
	--accent: #1e7b34;
	--accent-light: #4ade80;
	--accent-dark: #15803d;
	--accent-red: #c0392b;
	--accent-red-light: #d44a3e;
	--accent-gold: #c9a84c;
	--text-primary: #f0ebe3;
	--text-secondary: #b0a898;
	--text-muted: #7a7068;
	--border: #2d3d2d;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Space Grotesk', sans-serif;
	background: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(13, 13, 13, 0.9);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.logo-icon {
	width: 32px;
	height: 32px;
	background: var(--accent);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-image {
	height: 40px;
	width: auto;
	object-fit: contain;
	display: block;
}

.logo-text {
	display: none;
	font-family: 'Great Vibes', cursive;
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--text-primary);
}

.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.nav-links a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--accent);
}

.nav-cta {
	background: var(--accent-red);
	color: #fff;
	padding: 0.6rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.2s;
}

.nav-cta span {
	display: inline;
	background: transparent;
	padding: 0;
}

.nav-cta:hover {
	background: var(--accent-red-light);
	transform: translateY(-1px);
}

/* Hero Section */
.hero {
	/* min-height: 100vh; */
	/* Uncomment for full-screen hero */
	display: flex;
	align-items: center;
	padding: 8rem 2rem 4rem;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 80%;
	height: 150%;
	background: radial-gradient(ellipse, rgba(30, 123, 52, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-content {
	position: relative;
	z-index: 1;
}

.hero-badge {
	display: none;
}

.hero-badge span {
	color: var(--accent);
}

.hero h1 {
	font-size: clamp(3rem, 8vw, 5rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.handwriting {
	font-family: 'Great Vibes', cursive;
	font-weight: 400;
	font-size: clamp(4.5rem, 14vw, 8rem);
	color: var(--text-primary);
}

.tattoo-text {
	color: #3b82f6;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	letter-spacing: 0.1em;
}

.hero h1 .highlight {
	color: var(--accent);
	display: none;
}

.hero-description {
	font-size: 1.15rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	max-width: 480px;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
}

.btn-primary {
	background: var(--accent-red);
	color: #fff;
	padding: 1rem 2rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s;
}

.btn-primary:hover {
	background: var(--accent-red-light);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(192, 57, 43, 0.35);
}

.btn-secondary {
	background: transparent;
	color: var(--text-primary);
	padding: 1rem 2rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	border: 1px solid var(--border);
	transition: all 0.2s;
}

.btn-secondary:hover {
	border-color: var(--text-secondary);
	background: var(--bg-card);
}

.hero-stats {
	display: flex;
	gap: 3rem;
}

.stat {
	text-align: left;
}

.stat-value {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
}

.stat-label {
	font-size: 0.85rem;
	color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 400px;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
	min-height: 400px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.color-block {
	width: 100%;
	height: 100%;
	border-radius: 16px;
	min-height: 400px;
}

.primary-gradient {
	background: linear-gradient(135deg, #1e7b34 0%, #4ade80 50%, #15803d 100%);
	animation: gradientShift 8s ease infinite;
	background-size: 200% 200%;
}

@keyframes gradientShift {
	0%, 100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

/* Walk-ins Banner */
.walkins-banner {
	padding: 3rem 2rem;
	background: var(--accent-red);
	text-align: center;
}

.walkins-content h2 {
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.5rem;
}

.walkins-content p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.05rem;
	margin-bottom: 1.5rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.walkins-content .btn-primary {
	background: var(--bg-dark);
	color: var(--text-primary);
}

.walkins-content .btn-primary:hover {
	background: var(--bg-card);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features, .services, .about, .portfolio {
	padding: 6rem 2rem;
	background: var(--bg-card);
}

.about {
	background: var(--bg-dark);
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-top: 3rem;
}

.about-text p {
	color: var(--text-secondary);
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.about-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.stat-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s;
}

.stat-card:hover {
	border-color: var(--accent);
	transform: translateY(-4px);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--accent-gold);
	margin-bottom: 0.5rem;
}

.stat-text {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

/* Services Section */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.service-card {
	background: var(--bg-dark);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2.5rem;
	transition: all 0.3s;
}

.service-card:hover {
	border-color: var(--accent);
	transform: translateY(-4px);
	box-shadow: 0 15px 40px rgba(30, 123, 52, 0.15);
}

.service-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	display: block;
}

.service-card h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.service-card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.service-list {
	list-style: none;
	padding: 0;
}

.service-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 0;
	color: var(--text-muted);
	font-size: 0.9rem;
}

.service-list li::before {
	content: '→';
	color: var(--accent);
	font-weight: 700;
}

/* Portfolio Section */
.portfolio {
	background: var(--bg-dark);
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.portfolio-item {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--border);
	transition: all 0.3s;
	cursor: pointer;
}

.portfolio-item:hover {
	border-color: var(--accent);
	transform: translateY(-4px);
}

.portfolio-image {
	width: 100%;
	aspect-ratio: 1;
	position: relative;
	overflow: hidden;
}

.portfolio-image-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-image-img {
	transform: scale(1.05);
}

.portfolio-image.accent-1 {
	background: linear-gradient(135deg, #1e7b34 0%, #4ade80 100%);
}

.portfolio-image.accent-2 {
	background: linear-gradient(135deg, #15803d 0%, #86efac 100%);
}

.portfolio-image.accent-3 {
	background: linear-gradient(135deg, #059669 0%, #a7f3d0 100%);
}

.portfolio-image.accent-4 {
	background: linear-gradient(135deg, #047857 0%, #d1fae5 100%);
}

.portfolio-image.accent-5 {
	background: linear-gradient(135deg, #065f46 0%, #ecfdf5 100%);
}

.portfolio-info {
	padding: 1.5rem;
	background: var(--bg-card);
}

.portfolio-info h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.portfolio-info p {
	color: var(--text-muted);
	font-size: 0.9rem;
}

/* Artists Section */
.artists {
	padding: 6rem 2rem;
	background: var(--bg-card);
}

.artists-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
}

.artist-card {
	text-align: center;
}

.artist-image {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	margin: 0 auto 2rem;
	border: 4px solid var(--border);
	transition: all 0.3s;
	overflow: hidden;
	background: var(--bg-elevated);
}

.artist-placeholder {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.accent-gradient-1 {
	background: linear-gradient(135deg, #1e7b34 0%, #4ade80 50%, #15803d 100%);
}

.accent-gradient-2 {
	background: linear-gradient(135deg, #15803d 0%, #86efac 50%, #059669 100%);
}

.artist-card:hover .artist-image {
	border-color: var(--accent);
	box-shadow: 0 0 30px rgba(30, 123, 52, 0.4);
	transform: scale(1.05);
}

.artist-name {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.artist-role {
	color: var(--accent);
	font-size: 0.95rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.artist-bio {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.artist-social {
	color: var(--text-muted);
	font-size: 0.85rem;
}

/* Reviews Section */
.reviews {
	padding: 6rem 2rem;
	background: var(--bg-dark);
}

.reviews-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 4rem;
	margin-top: 3rem;
}

.review-stat-card {
	background: var(--bg-card);
	border: 2px solid var(--accent-gold);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
}

.review-platform {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.review-rating {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--accent-gold);
	margin-bottom: 0.5rem;
}

.review-count {
	color: var(--text-secondary);
	font-size: 1rem;
	margin-bottom: 1rem;
}

.review-stat-card p {
	color: var(--text-muted);
	font-size: 0.9rem;
	line-height: 1.6;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.review-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2rem;
}

.review-stars {
	color: var(--accent-gold);
	font-size: 1rem;
	margin-bottom: 1rem;
}

.review-text {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-style: italic;
}

.review-author {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-direction: column;
	text-align: center;
}

.review-name {
	font-weight: 600;
	font-size: 0.95rem;
}

.review-date {
	color: var(--text-muted);
	font-size: 0.8rem;
}

/* Location Section */
.location {
	padding: 6rem 2rem;
	background: var(--bg-card);
}

.location-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: start;
	margin-top: 3rem;
	min-width: 0;
}

.location-info {
	padding: 2rem;
	background: var(--bg-dark);
	border-radius: 16px;
	border: 1px solid var(--border);
	min-width: 0;
	overflow-wrap: break-word;
}

.location-info h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--accent);
	margin-top: 2rem;
}

.location-info h3:first-child {
	margin-top: 0;
}

.hours-list {
	margin-bottom: 2rem;
}

.hour-item {
	display: flex;
	justify-content: space-between;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--border);
	color: var(--text-secondary);
	font-size: 0.95rem;
}

.hour-item:last-child {
	border-bottom: none;
}

.day {
	font-weight: 500;
}

.time {
	color: var(--text-muted);
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-item {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.contact-item .label {
	font-weight: 600;
	color: var(--accent);
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.contact-item .value {
	color: var(--text-secondary);
	font-size: 0.95rem;
	word-break: break-all;
}

.contact-item a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.2s;
	word-break: break-all;
}

.contact-item a:hover {
	color: var(--accent);
}

.location-map {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--border);
	min-width: 0;
}

.location-map iframe {
	display: block;
	width: 100%;
	height: 450px;
}

.section-container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-label {
	font-size: 0.85rem;
	color: var(--accent-gold);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.section-description {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.feature-card {
	background: var(--bg-dark);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s;
}

.feature-card:hover {
	border-color: var(--accent);
	transform: translateY(-4px);
}

.feature-icon {
	width: 56px;
	height: 56px;
	background: var(--bg-elevated);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: var(--accent);
	transition: all 0.3s;
}

.feature-card:hover .feature-icon {
	background: var(--accent);
	color: var(--bg-dark);
}

.feature-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.feature-card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
	padding: 6rem 2rem;
}

.billing-toggle {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 3rem;
	background: var(--bg-card);
	padding: 0.5rem;
	border-radius: 12px;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid var(--border);
}

.billing-option {
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-secondary);
	cursor: pointer;
	transition: all 0.2s;
	position: relative;
	background: transparent;
	border: none;
	font-family: inherit;
}

.billing-option:hover {
	color: var(--text-primary);
}

.billing-option.active {
	background: var(--accent);
	color: var(--bg-dark);
}

.billing-option .discount-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #22c55e;
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	padding: 0.2rem 0.4rem;
	border-radius: 4px;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.pricing-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 2.5rem;
	position: relative;
	transition: all 0.3s;
}

.pricing-card:hover {
	transform: translateY(-4px);
}

.pricing-card.featured {
	border-color: var(--accent);
	box-shadow: 0 0 40px rgba(30, 123, 52, 0.15);
}

.pricing-card.featured::before {
	content: 'Most Popular';
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: var(--bg-dark);
	padding: 0.3rem 1rem;
	border-radius: 100px;
	font-size: 0.75rem;
	font-weight: 600;
}

.pricing-name {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
}

.pricing-price {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
	display: flex;
	align-items: baseline;
	gap: 0.25rem;
}

.pricing-price .currency {
	font-size: 1.5rem;
	font-weight: 600;
}

.pricing-price .period {
	font-size: 1rem;
	font-weight: 400;
	color: var(--text-muted);
}

.pricing-billed {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 0.5rem;
	min-height: 1.2rem;
}

.pricing-savings {
	display: inline-block;
	background: rgba(34, 197, 94, 0.15);
	color: #22c55e;
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0.25rem 0.75rem;
	border-radius: 100px;
	margin-bottom: 1rem;
	min-height: 1.5rem;
}

.pricing-savings:empty {
	visibility: hidden;
}

.pricing-description {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--border);
}

.pricing-features {
	list-style: none;
	margin-bottom: 2rem;
}

.pricing-features li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 0;
	color: var(--text-secondary);
	font-size: 0.95rem;
}

.pricing-features li::before {
	content: '✓';
	color: var(--accent);
	font-weight: 700;
}

.pricing-btn {
	display: block;
	text-align: center;
	padding: 1rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.2s;
}

.pricing-card .pricing-btn {
	background: var(--bg-elevated);
	color: var(--text-primary);
	border: 1px solid var(--border);
}

.pricing-card .pricing-btn:hover {
	background: var(--text-primary);
	color: var(--bg-dark);
}

.pricing-card.featured .pricing-btn {
	background: var(--accent);
	color: var(--bg-dark);
	border: none;
}

.pricing-card.featured .pricing-btn:hover {
	background: var(--accent-light);
}

/* Instructors Section */
.instructors {
	padding: 6rem 2rem;
	background: var(--bg-card);
}

.instructors-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.instructor-card {
	text-align: center;
}

.instructor-image {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	border: 4px solid var(--border);
	transition: all 0.3s;
	overflow: hidden;
	background: var(--bg-elevated);
}

.instructor-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(20%);
	transition: filter 0.3s;
}

.instructor-card:hover .instructor-image {
	border-color: var(--accent);
	box-shadow: 0 0 20px rgba(30, 123, 52, 0.3);
}

.instructor-card:hover .instructor-image img {
	filter: grayscale(0%);
}

.instructor-name {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.instructor-role {
	color: var(--accent);
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.instructor-bio {
	color: var(--text-muted);
	font-size: 0.85rem;
}

/* Testimonials */
.testimonials {
	padding: 6rem 2rem;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.testimonial-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2rem;
}

.testimonial-stars {
	color: var(--accent-gold);
	font-size: 1rem;
	margin-bottom: 1rem;
}

.testimonial-text {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.testimonial-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-name {
	font-weight: 600;
	font-size: 0.95rem;
}

.testimonial-title {
	color: var(--text-muted);
	font-size: 0.8rem;
}

/* CTA Section */
.cta {
	padding: 6rem 2rem;
	background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(30, 123, 52, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

.cta-content {
	position: relative;
	z-index: 1;
}

.cta h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 1rem;
}

.cta p {
	color: var(--text-secondary);
	font-size: 1.1rem;
	margin-bottom: 2rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Footer */
footer {
	padding: 4rem 2rem 2rem;
	border-top: 1px solid var(--border);
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-brand p {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-top: 1rem;
	max-width: 280px;
}

.footer-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1.5rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.75rem;
}

.footer-links a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: var(--accent);
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid var(--border);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	font-size: 0.85rem;
	color: var(--text-muted);
}

.footer-bottom a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-bottom a:hover {
	color: var(--accent-light);
}

/* Mobile Menu */
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--text-primary);
	font-size: 1.5rem;
	cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-content {
		order: 1;
	}

	.hero-visual {
		order: 0;
		max-width: 500px;
		margin: 0 auto;
	}

	.hero-description {
		margin: 0 auto 2rem;
	}

	.hero-buttons {
		justify-content: center;
	}

	.hero-stats {
		justify-content: center;
	}

	.features-grid,
	.services-grid,
	.portfolio-grid,
	.reviews-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin: 0 auto;
	}

	.artists-grid {
		grid-template-columns: 1fr;
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.about-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.reviews-stats {
		grid-template-columns: 1fr;
	}

	.location-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 880px) {

	.logo-text {
		display: inline;
	}

	.nav-links,
	.nav-cta {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	/* Mobile Menu */
	.nav-links.active {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(13, 13, 13, 0.98);
		backdrop-filter: blur(20px);
		padding: 0.5rem 0 0 0;
		gap: 0;
	}

	.nav-links.active li {
		border-bottom: 1px solid var(--border);
	}

	.nav-links.active li:last-child {
		border-bottom: none;
	}

	.nav-links.active a {
		display: block;
		padding: 1.35rem 2rem;
		font-size: 1.1rem;
	}

	.nav-cta.active {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		text-align: center;
		background: var(--bg-dark);
		padding: 1.5rem 2rem;
		border-top: 1px solid var(--border);
	}

	.nav-cta.active span {
		display: block;
		background: var(--accent-red);
		color: #fff;
		padding: 1rem;
		border-radius: 8px;
		font-weight: 600;
	}

	.hero {
		padding: 6rem 1rem 3rem;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.hero-buttons a {
		justify-content: center;
		text-align: center;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1.5rem;
	}

	.stat {
		text-align: center;
	}

	.artists-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-brand p {
		margin: 1rem auto;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	.cta-buttons {
		flex-direction: column;
	}

	.cta-buttons a {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.section-description,
	.about-text p,
	.hero-description {
		text-align: left;
	}

	.location-info h3 {
		margin-top: 1.5rem;
	}

	.location-info h3:first-child {
		margin-top: 0;
	}
}