:root {
	--bg-main: #070709;
	--bg-surface: #0e0e12;
	--bg-card: #14141a;
	--bg-card-hover: #1b1b22;
	--bg-input: #0a0a0d;
	
	--red-core: #e61938;
	--red-bright: #ff2a4b;
	--red-dark: #8c0c1e;
	--red-glow: rgba(230, 25, 56, 0.35);
	--red-subtle: rgba(230, 25, 56, 0.12);
	--red-border: rgba(230, 25, 56, 0.3);
	
	--fg-main: #f5f5f7;
	--fg-muted: #9e9ea7;
	--fg-dim: #656570;
	
	--gold: #f5b041;
	--gold-glow: rgba(245, 176, 65, 0.3);
	
	--border-subtle: #202028;
	--border-medium: #2e2e3a;
	
	--radius-sm: 6px;
	--radius: 12px;
	--radius-lg: 18px;
	--radius-full: 9999px;
	
	--font-display: 'Cinzel', serif;
	--font-tech: 'Space Grotesk', sans-serif;
	--font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	
	--shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
	--shadow-glow: 0 0 25px rgba(230, 25, 56, 0.25);
	--shadow-glow-strong: 0 0 35px rgba(230, 25, 56, 0.45);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	background-color: var(--bg-main);
}

body {
	background-color: var(--bg-main);
	color: var(--fg-main);
	font-family: var(--font-body);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	min-height: 100vh;
	overflow-x: hidden;
	background-image: 
		radial-gradient(circle at 50% 0%, rgba(230, 25, 56, 0.15) 0%, transparent 60%),
		radial-gradient(circle at 10% 30%, rgba(140, 12, 30, 0.08) 0%, transparent 40%),
		radial-gradient(circle at 90% 70%, rgba(230, 25, 56, 0.08) 0%, transparent 45%);
	background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-track {
	background: #09090c;
}
::-webkit-scrollbar-thumb {
	background: #252530;
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
	background: var(--red-core);
}

/* Base Utility Classes */
a {
	color: inherit;
	text-decoration: none;
}

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

button, input, select, textarea {
	font-family: inherit;
}

.container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

/* Header & Announcement Bar */
.announcement-bar {
	background: linear-gradient(90deg, #120306, #3b060f, #120306);
	border-bottom: 1px solid var(--red-border);
	padding: 0.5rem 1rem;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #ffadb8;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.announcement-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	background: rgba(230, 25, 56, 0.25);
	color: #ffffff;
	padding: 0.15rem 0.6rem;
	border-radius: var(--radius-full);
	border: 1px solid rgba(230, 25, 56, 0.5);
	font-size: 0.75rem;
	font-weight: 700;
}

.pulse-dot {
	width: 7px;
	height: 7px;
	background: #ff2a4b;
	border-radius: 50%;
	box-shadow: 0 0 8px #ff2a4b;
	animation: pulse 1.8s infinite;
}

@keyframes pulse {
	0% { transform: scale(0.9); opacity: 0.7; }
	50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px #ff2a4b; }
	100% { transform: scale(0.9); opacity: 0.7; }
}

/* Navbar */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(7, 7, 9, 0.92);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border-subtle);
	transition: all 0.3s ease;
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4.5rem;
}

.brand-wrap {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.brand-icon {
	width: 42px;
	height: 42px;
	background: linear-gradient(135deg, #1c050a, #450813);
	border: 1px solid var(--red-core);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--red-bright);
	box-shadow: 0 0 15px var(--red-glow);
}

.brand-title {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	color: #ffffff;
	line-height: 1.1;
}

.brand-title span {
	color: var(--red-bright);
	text-shadow: 0 0 10px var(--red-glow);
}

.brand-subtitle {
	font-size: 0.72rem;
	color: var(--fg-muted);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nav-links {
	display: none;
	align-items: center;
	gap: 1.5rem;
	list-style: none;
}

@media (min-width: 900px) {
	.nav-links {
		display: flex;
	}
}

.nav-link {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--fg-muted);
	transition: color 0.2s ease;
	position: relative;
	padding: 0.35rem 0;
}

.nav-link:hover, .nav-link.active {
	color: #ffffff;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 2px;
	background: var(--red-bright);
	transition: width 0.2s ease;
}

.nav-link:hover::after, .nav-link.active::after {
	width: 100%;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

/* Buttons */
.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, var(--red-core), #b80c25);
	color: #ffffff;
	border: 1px solid var(--red-bright);
	padding: 0.65rem 1.25rem;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	border-radius: var(--radius-sm);
	cursor: pointer;
	box-shadow: 0 4px 18px var(--red-glow);
	transition: all 0.25s ease;
	text-transform: uppercase;
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--red-bright), var(--red-core));
	box-shadow: 0 6px 24px var(--shadow-glow-strong);
	transform: translateY(-1px);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.04);
	color: var(--fg-main);
	border: 1px solid var(--border-medium);
	padding: 0.65rem 1.15rem;
	font-size: 0.88rem;
	font-weight: 600;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--red-border);
	color: #ffffff;
}

.btn-whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: #1e7e34;
	color: #ffffff;
	border: 1px solid #28a745;
	padding: 0.65rem 1.15rem;
	font-size: 0.88rem;
	font-weight: 700;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-whatsapp:hover {
	background: #28a745;
	box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.btn-outline-red {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: transparent;
	color: var(--red-bright);
	border: 1px solid var(--red-border);
	padding: 0.6rem 1.1rem;
	font-size: 0.85rem;
	font-weight: 600;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-outline-red:hover {
	background: var(--red-subtle);
	border-color: var(--red-bright);
}

/* Hero Section */
.hero-section {
	position: relative;
	padding: 3.5rem 0 4.5rem;
	overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}

@media (min-width: 960px) {
	.hero-grid {
		grid-template-columns: 1.15fr 0.85fr;
	}
}

.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(230, 25, 56, 0.12);
	border: 1px solid var(--red-border);
	padding: 0.35rem 0.85rem;
	border-radius: var(--radius-full);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #ff7588;
	margin-bottom: 1.25rem;
}

.hero-heading {
	font-family: var(--font-display);
	font-size: clamp(2.3rem, 5.5vw, 3.8rem);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -0.01em;
	color: #ffffff;
	margin-bottom: 1.25rem;
}

.hero-heading .red-accent {
	color: var(--red-bright);
	text-shadow: 0 0 20px var(--red-glow);
}

.hero-desc {
	font-size: 1.08rem;
	color: var(--fg-muted);
	margin-bottom: 1.75rem;
	max-width: 580px;
	line-height: 1.65;
}

.hero-highlights {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 0.85rem;
	margin-bottom: 2rem;
}

.highlight-box {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius);
	padding: 0.85rem 1rem;
	position: relative;
	transition: border-color 0.2s ease;
}

.highlight-box:hover {
	border-color: var(--red-border);
}

.highlight-val {
	font-family: var(--font-tech);
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.1;
}

.highlight-val.red {
	color: var(--red-bright);
}

.highlight-label {
	font-size: 0.75rem;
	color: var(--fg-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 0.25rem;
}

.hero-cta-group {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}

.hero-guarantee {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.82rem;
	color: var(--fg-dim);
}

.hero-guarantee svg {
	color: #28a745;
}

/* Hero Visual Card */
.hero-card {
	background: linear-gradient(145deg, #161620, #0d0d12);
	border: 1px solid var(--red-border);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	position: relative;
	box-shadow: var(--shadow-glow);
}

.hero-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero-profile-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--border-subtle);
}

.hero-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, #300810, #730e20);
	border: 2px solid var(--red-bright);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	box-shadow: 0 0 15px var(--red-glow);
}

.hero-profile-info h3 {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.2rem;
}

.hero-rating-row {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.88rem;
	color: #ffffff;
}

.stars {
	color: var(--gold);
	letter-spacing: 2px;
	font-size: 0.95rem;
}

.rating-count {
	color: var(--fg-muted);
	font-size: 0.8rem;
}

.badge-google {
	background: rgba(245, 176, 65, 0.15);
	color: #ffd079;
	border: 1px solid rgba(245, 176, 65, 0.3);
	padding: 0.1rem 0.45rem;
	border-radius: var(--radius-full);
	font-size: 0.7rem;
	font-weight: 700;
}

.hero-features-list {
	display: grid;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.hero-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid var(--border-subtle);
	padding: 0.75rem 0.9rem;
	border-radius: var(--radius-sm);
	font-size: 0.86rem;
}

.feature-bullet {
	color: var(--red-bright);
	flex-shrink: 0;
	margin-top: 2px;
}

.hero-price-preview {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.price-pill {
	background: linear-gradient(135deg, rgba(230, 25, 56, 0.15), rgba(0, 0, 0, 0.4));
	border: 1px solid var(--red-border);
	padding: 0.75rem;
	border-radius: var(--radius-sm);
	text-align: center;
}

.price-pill-title {
	font-size: 0.72rem;
	color: var(--fg-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.price-pill-amount {
	font-family: var(--font-tech);
	font-size: 1.3rem;
	font-weight: 700;
	color: #ffffff;
	margin-top: 0.15rem;
}

/* Sections Global */
.section {
	padding: 4.5rem 0;
	position: relative;
}

.section-dark {
	background-color: var(--bg-surface);
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
}

.section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3rem;
}

.section-tag {
	display: inline-block;
	color: var(--red-bright);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 3.8vw, 2.6rem);
	font-weight: 900;
	color: #ffffff;
	letter-spacing: -0.01em;
	margin-bottom: 0.75rem;
}

.section-title span {
	color: var(--red-bright);
}

.section-subtitle {
	font-size: 0.98rem;
	color: var(--fg-muted);
	line-height: 1.6;
}

/* Interactive Calculator & Booking Wizard */
.calc-container {
	background: var(--bg-card);
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-card);
}

.calc-grid {
	display: grid;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.calc-grid {
		grid-template-columns: 1.35fr 1fr;
	}
}

.calc-form-side {
	padding: 2rem;
	border-right: 1px solid var(--border-subtle);
}

.calc-summary-side {
	background: linear-gradient(160deg, #171722, #0b0b10);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.type-selector {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.type-btn {
	background: var(--bg-surface);
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-sm);
	padding: 0.85rem;
	color: var(--fg-muted);
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.2s ease;
}

.type-btn.active {
	background: rgba(230, 25, 56, 0.15);
	border-color: var(--red-bright);
	color: #ffffff;
	box-shadow: 0 0 15px rgba(230, 25, 56, 0.2);
}

.form-group {
	margin-bottom: 1.25rem;
}

.form-label {
	display: block;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--fg-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 0.5rem;
}

.option-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.chip-btn {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	color: var(--fg-main);
	padding: 0.45rem 0.85rem;
	border-radius: var(--radius-sm);
	font-size: 0.82rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.chip-btn:hover {
	border-color: var(--red-border);
}

.chip-btn.active {
	background: var(--red-core);
	border-color: var(--red-bright);
	color: #ffffff;
	font-weight: 600;
	box-shadow: 0 0 10px var(--red-glow);
}

.custom-input, .custom-select, .custom-textarea {
	width: 100%;
	background: var(--bg-input);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-sm);
	padding: 0.75rem 0.9rem;
	color: #ffffff;
	font-size: 0.9rem;
	transition: border-color 0.2s ease;
}

.custom-input:focus, .custom-select:focus, .custom-textarea:focus {
	outline: none;
	border-color: var(--red-bright);
	box-shadow: 0 0 0 2px rgba(230, 25, 56, 0.2);
}

/* Summary Box */
.summary-header {
	margin-bottom: 1.5rem;
}

.summary-title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	color: #ffffff;
	margin-bottom: 0.25rem;
}

.summary-subtitle {
	font-size: 0.8rem;
	color: var(--fg-muted);
}

.summary-breakdown {
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius);
	padding: 1.25rem;
	margin-bottom: 1.5rem;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 0.86rem;
}

.summary-row:last-child {
	border-bottom: none;
}

.summary-label {
	color: var(--fg-muted);
}

.summary-val {
	color: #ffffff;
	font-weight: 600;
}

.estimate-total-box {
	background: linear-gradient(135deg, rgba(230, 25, 56, 0.2), rgba(0, 0, 0, 0.6));
	border: 1px solid var(--red-border);
	border-radius: var(--radius);
	padding: 1.25rem;
	text-align: center;
	margin-bottom: 1.5rem;
}

.estimate-total-label {
	font-size: 0.75rem;
	color: #ff99a8;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.estimate-total-num {
	font-family: var(--font-tech);
	font-size: 2.2rem;
	font-weight: 700;
	color: #ffffff;
	margin-top: 0.25rem;
	text-shadow: 0 0 15px var(--red-glow);
}

.estimate-notice {
	font-size: 0.75rem;
	color: var(--fg-dim);
	margin-top: 0.35rem;
}

/* Appointment callout cards */
.appointment-badge-box {
	background: rgba(230, 25, 56, 0.08);
	border: 1px solid rgba(230, 25, 56, 0.25);
	border-radius: var(--radius);
	padding: 0.9rem;
	margin: 1.25rem 0;
}

.appointment-callout-card {
	margin-top: 3rem;
	background: linear-gradient(135deg, rgba(230, 25, 56, 0.12) 0%, rgba(18, 18, 24, 0.95) 100%);
	border: 1px solid rgba(230, 25, 56, 0.35);
	border-radius: var(--radius-lg);
	padding: 2.25rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(230, 25, 56, 0.1);
}

.callout-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 2rem;
	align-items: center;
}

.callout-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--accent-red);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.callout-title {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: 0.02em;
	margin-bottom: 0.6rem;
}

.callout-text {
	color: var(--fg-muted);
	font-size: 0.92rem;
	line-height: 1.6;
	margin: 0;
}

.callout-action-col {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

@media (max-width: 768px) {
	.callout-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* Piercing Guide / Interactive Compass */
.piercing-guide-card {
	background: var(--bg-card);
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-lg);
	padding: 2rem;
	margin-bottom: 2rem;
}

.guide-tabs {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid var(--border-subtle);
	padding-bottom: 1rem;
	overflow-x: auto;
}

.guide-tab-btn {
	background: transparent;
	border: 1px solid var(--border-subtle);
	color: var(--fg-muted);
	padding: 0.5rem 1.1rem;
	border-radius: var(--radius-full);
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.2s ease;
}

.guide-tab-btn.active {
	background: rgba(230, 25, 56, 0.2);
	border-color: var(--red-bright);
	color: #ffffff;
}

.piercing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
	gap: 1.25rem;
}

.piercing-item-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius);
	padding: 1.25rem;
	transition: all 0.25s ease;
	position: relative;
	overflow: hidden;
}

.piercing-item-card:hover {
	border-color: var(--red-border);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.piercing-item-card.featured::before {
	content: 'POPULAR';
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 0.65rem;
	font-weight: 800;
	background: var(--red-core);
	color: #ffffff;
	padding: 0.15rem 0.5rem;
	border-radius: var(--radius-full);
}

.piercing-name {
	font-family: var(--font-display);
	font-size: 1.15rem;
	color: #ffffff;
	margin-bottom: 0.35rem;
}

.piercing-price {
	font-family: var(--font-tech);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--red-bright);
	margin-bottom: 0.75rem;
}

.piercing-meta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
	background: rgba(0, 0, 0, 0.25);
	padding: 0.6rem 0.75rem;
	border-radius: var(--radius-sm);
	font-size: 0.78rem;
	margin-bottom: 0.75rem;
}

.pain-meter-bar {
	width: 100%;
	height: 5px;
	background: #252530;
	border-radius: 3px;
	margin-top: 4px;
	overflow: hidden;
}

.pain-fill {
	height: 100%;
	background: linear-gradient(90deg, #28a745, #f5b041, #e61938);
	border-radius: 3px;
}

.piercing-desc {
	font-size: 0.82rem;
	color: var(--fg-muted);
	line-height: 1.5;
	margin-bottom: 1rem;
}

/* Services Catalog */
.services-tabs {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.service-tab-btn {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	color: var(--fg-muted);
	padding: 0.6rem 1.25rem;
	border-radius: var(--radius-sm);
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.service-tab-btn:hover {
	border-color: var(--border-medium);
	color: #ffffff;
}

.service-tab-btn.active {
	background: linear-gradient(135deg, rgba(230, 25, 56, 0.25), rgba(0,0,0,0.5));
	border-color: var(--red-bright);
	color: #ffffff;
	box-shadow: 0 0 15px rgba(230, 25, 56, 0.2);
}

.service-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
	gap: 1.5rem;
}

.service-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius);
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	transition: all 0.3s ease;
}

.service-card:hover {
	border-color: var(--red-border);
	transform: translateY(-3px);
	box-shadow: var(--shadow-glow);
}

.service-card-top {
	margin-bottom: 1.25rem;
}

.service-card-tag {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--red-bright);
	margin-bottom: 0.4rem;
}

.service-card-title {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.5rem;
}

.service-card-price {
	font-family: var(--font-tech);
	font-size: 1.4rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.75rem;
}

.service-card-price span {
	font-size: 0.8rem;
	color: var(--fg-muted);
	font-weight: 400;
}

.service-card-desc {
	font-size: 0.88rem;
	color: var(--fg-muted);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.service-features-list {
	list-style: none;
	display: grid;
	gap: 0.45rem;
	font-size: 0.82rem;
	color: var(--fg-main);
	margin-bottom: 1.5rem;
}

.service-features-list li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.service-features-list li svg {
	color: var(--red-bright);
	flex-shrink: 0;
}

/* Gallery Section */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
	gap: 1.25rem;
}

.gallery-card {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	aspect-ratio: 1 / 1;
	cursor: pointer;
	transition: all 0.3s ease;
}

.gallery-card:hover {
	border-color: var(--red-bright);
	transform: scale(1.02);
	box-shadow: 0 10px 25px rgba(230, 25, 56, 0.3);
}

.gallery-visual {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-visual {
	transform: scale(1.08);
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(7, 7, 9, 0.95) 0%, rgba(7, 7, 9, 0.4) 50%, transparent 100%);
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	opacity: 0.9;
	transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
	opacity: 1;
}

.gallery-card-category {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--red-bright);
	letter-spacing: 0.08em;
}

.gallery-card-title {
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 700;
	color: #ffffff;
}

.gallery-card-tag {
	font-size: 0.75rem;
	color: var(--fg-muted);
}

/* SVG Art Placeholders for Gallery */
.art-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #13131a, #0a0a0e);
	position: relative;
	overflow: hidden;
}

/* Reviews Section */
.reviews-hero-bar {
	background: var(--bg-card);
	border: 1px solid var(--red-border);
	border-radius: var(--radius-lg);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2.5rem;
	box-shadow: var(--shadow-glow);
}

@media (min-width: 768px) {
	.reviews-hero-bar {
		flex-direction: row;
	}
}

.reviews-summary-left {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.huge-rating {
	font-family: var(--font-tech);
	font-size: 3.5rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1;
}

.huge-rating span {
	color: var(--gold);
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
	gap: 1.25rem;
}

.review-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all 0.25s ease;
	position: relative;
}

.review-card:hover {
	border-color: var(--border-medium);
	transform: translateY(-2px);
}

.review-card-quote {
	font-size: 0.92rem;
	color: #e2e2e8;
	line-height: 1.6;
	margin-bottom: 1.25rem;
	font-style: italic;
}

.review-card-author-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 0.85rem;
}

.review-author-name {
	font-weight: 700;
	font-size: 0.9rem;
	color: #ffffff;
}

.review-service-badge {
	font-size: 0.72rem;
	color: var(--red-bright);
	background: var(--red-subtle);
	padding: 0.15rem 0.5rem;
	border-radius: var(--radius-full);
}

/* Aftercare & Problem Piercing Hub */
.aftercare-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 800px) {
	.aftercare-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.aftercare-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 2rem;
}

.aftercare-card.emergency {
	border-color: var(--red-border);
	background: linear-gradient(145deg, #180a0f, #0d090d);
}

.aftercare-title {
	font-family: var(--font-display);
	font-size: 1.3rem;
	color: #ffffff;
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.aftercare-steps {
	list-style: none;
	display: grid;
	gap: 0.85rem;
	margin-top: 1.25rem;
}

.aftercare-step-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.86rem;
	color: var(--fg-muted);
}

.step-num {
	background: var(--red-core);
	color: #ffffff;
	font-weight: 700;
	font-size: 0.75rem;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* Studio & Location Section */
.location-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 900px) {
	.location-grid {
		grid-template-columns: 1.1fr 0.9fr;
	}
}

.location-info-card {
	background: var(--bg-card);
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-lg);
	padding: 2rem;
}

.info-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.info-icon {
	width: 42px;
	height: 42px;
	background: var(--red-subtle);
	border: 1px solid var(--red-border);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--red-bright);
	flex-shrink: 0;
}

.info-details h4 {
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--fg-muted);
	margin-bottom: 0.2rem;
}

.info-details p {
	font-size: 1rem;
	color: #ffffff;
	font-weight: 600;
}

.info-details small {
	display: block;
	font-size: 0.8rem;
	color: var(--fg-muted);
	font-weight: 400;
	margin-top: 0.15rem;
}

.map-embed-wrapper {
	background: var(--bg-surface);
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.map-mockup {
	height: 240px;
	background: radial-gradient(circle at 50% 50%, #1e1e2c 0%, #0d0d14 100%);
	border-radius: var(--radius);
	border: 1px solid var(--border-subtle);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	margin-bottom: 1.25rem;
}

.map-pin {
	width: 48px;
	height: 48px;
	background: var(--red-core);
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 25px var(--red-glow-strong);
	animation: bounce 2s infinite ease-in-out;
}

.map-pin-inner {
	transform: rotate(45deg);
	color: #ffffff;
	font-weight: 700;
	font-size: 0.8rem;
}

@keyframes bounce {
	0%, 100% { transform: rotate(-45deg) translateY(0); }
	50% { transform: rotate(-45deg) translateY(-8px); }
}

/* Modal */
.modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
}

.modal-card {
	background: var(--bg-card);
	border: 1px solid var(--red-border);
	border-radius: var(--radius-lg);
	max-width: 540px;
	width: 100%;
	padding: 2rem;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 20px 50px rgba(0,0,0,0.8), var(--shadow-glow);
	position: relative;
}

.modal-close-btn {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	color: var(--fg-muted);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-close-btn:hover {
	color: #ffffff;
	border-color: var(--red-border);
}

/* Mobile Sticky Action Bar */
.mobile-sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 90;
	background: rgba(10, 10, 14, 0.96);
	border-top: 1px solid var(--red-border);
	padding: 0.65rem 1rem;
	display: flex;
	gap: 0.5rem;
	backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
	.mobile-sticky-bar {
		display: none;
	}
}

/* Footer */
.site-footer {
	background: #040406;
	border-top: 1px solid var(--border-subtle);
	padding: 3.5rem 0 2rem;
	margin-top: 4rem;
	font-size: 0.85rem;
	color: var(--fg-muted);
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
	gap: 2.5rem;
	margin-bottom: 2.5rem;
}

.footer-col h4 {
	font-family: var(--font-display);
	color: #ffffff;
	font-size: 1.1rem;
	margin-bottom: 1rem;
	letter-spacing: 0.03em;
}

.footer-col ul {
	list-style: none;
	display: grid;
	gap: 0.5rem;
}

.footer-col a {
	color: var(--fg-muted);
	transition: color 0.2s ease;
}

.footer-col a:hover {
	color: var(--red-bright);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding-top: 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.78rem;
}

/* Accessibility focus styles */
:where(a, button, input, select, textarea):focus-visible {
	outline: 2px solid var(--red-bright);
	outline-offset: 2px;
}
