/* ================================================================
   INK STUDIO - Envato Premium Tattoo Studio
   Renkler: Black (#050505), Matte Gold (#C5A059), Charcoal (#111111)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Jost:wght@300;400;500;600&display=swap');

:root {
	--ink-bg: #050505;           /* Very Deep Black */
	--ink-bg-light: #111111;     /* Surface Black */
	--ink-bg-lighter: #151515;   /* Card Black */
	
	--ink-accent: #C5A059;       /* Matte Gold */
	--ink-accent-hover: #D4B271;
	
	--ink-text: #A3A3A3;         /* Soft Gray for Body */
	--ink-title: #ffffff;        /* Pure White for Headings */
	--ink-border: #222222;       /* Dark Borders */

	--ink-font-head: 'Cinzel', serif;
	--ink-font-body: 'Jost', sans-serif;
}

.ink-theme {
	font-family: var(--ink-font-body);
	color: var(--ink-text);
	background: var(--ink-bg);
	line-height: 1.6;
	overflow-x: hidden;
}

/* ================================================================
   TYPOGRAPHY & UTILITIES
   ================================================================ */
.ink-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.ink-kicker {
	font-family: var(--ink-font-head);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--ink-accent);
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.ink-title, h2, h3, h4 {
	font-family: var(--ink-font-head);
	color: var(--ink-title);
	text-transform: uppercase;
	margin: 0;
	line-height: 1.1;
}

.ink-highlight {
	color: var(--ink-accent);
}

.ink-section-head {
	margin-bottom: 60px;
}
.ink-section-head.center {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.ink-section-head h2 {
	font-size: clamp(35px, 5vw, 55px);
}

.ink-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 40px;
	font-family: var(--ink-font-head);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}
.ink-btn-primary {
	background: var(--ink-accent);
	color: #fff;
}
.ink-btn-primary:hover {
	background: var(--ink-accent-hover);
	transform: translateY(-3px);
}
.ink-btn-outline {
	background: transparent;
	color: var(--ink-title);
	border: 1px solid var(--ink-border);
}
.ink-btn-outline:hover {
	background: #fff;
	color: var(--ink-bg);
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.ink-hero {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

/* Background Slider */
.ink-hero-bg-slider {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	z-index: 1;
	background: #000;
}
.ink-slide {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	background-size: cover;
	background-position: center;
	filter: grayscale(100%) contrast(1.2);
	opacity: 0;
	transform: scale(1);
	transition: opacity 1.1s ease, transform 6s ease;
}

.ink-slide.is-active {
	opacity: 1;
	transform: scale(1.06);
}

.ink-hero-overlay {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	background: linear-gradient(90deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.7) 40%, rgba(5,5,5,0.4) 100%);
	z-index: 2;
}

/* Envato Slider UI Overlays */
.ink-slider-ui-left {
	position: absolute;
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}
.ink-vertical-text {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-family: var(--ink-font-body);
	font-size: 11px;
	letter-spacing: 4px;
	color: var(--ink-accent);
	text-transform: uppercase;
}

.ink-slider-ui-bottom {
	position: absolute;
	bottom: 40px;
	left: 100px;
	right: 100px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	z-index: 10;
}
.ink-slide-counter {
	font-family: var(--ink-font-head);
	display: flex;
	align-items: center;
	gap: 15px;
}
.ink-slider-btn {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(197, 160, 89, 0.45);
	border-radius: 50%;
	background: rgba(5, 5, 5, 0.45);
	color: #fff;
	cursor: pointer;
	transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.ink-slider-btn:hover,
.ink-slider-btn:focus {
	background: var(--ink-accent);
	border-color: var(--ink-accent);
	color: #050505;
	transform: translateY(-2px);
	outline: none;
}
.ink-current-slide {
	font-size: 45px;
	color: var(--ink-title);
	line-height: 1;
}
.ink-slide-divider {
	font-size: 30px;
	color: var(--ink-accent);
	font-weight: 300;
}
.ink-total-slides {
	font-size: 20px;
	color: #666;
}

.ink-scroll-indicator {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}
.ink-scroll-text {
	font-size: 10px;
	letter-spacing: 3px;
	color: #fff;
	text-transform: uppercase;
}
.ink-mouse {
	width: 24px;
	height: 38px;
	border: 1px solid var(--ink-accent);
	border-radius: 15px;
	position: relative;
}
.ink-wheel {
	width: 4px;
	height: 8px;
	background: var(--ink-accent);
	border-radius: 2px;
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
	animation: inkScrollWheel 2s infinite;
}
@keyframes inkScrollWheel {
	0% { top: 6px; opacity: 1; }
	100% { top: 20px; opacity: 0; }
}

.ink-hero-content {
	position: relative;
	z-index: 5;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 100px;
	padding-bottom: 50px;
	min-height: 100vh;
}

.ink-hero-main {
	max-width: 800px;
	position: relative;
	text-align: center;
	margin: 0 auto;
}

.ink-hero-massive-bg {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	font-family: var(--ink-font-head);
	font-size: clamp(80px, 12vw, 180px);
	font-weight: 700;
	color: transparent;
	-webkit-text-stroke: 1px rgba(197, 160, 89, 0.15); /* Gold stroke */
	line-height: 1;
	z-index: -1;
	pointer-events: none;
	user-select: none;
	white-space: nowrap;
}

.ink-hero-main .ink-kicker {
	justify-content: center;
}

.ink-hero-main .ink-title {
	font-size: clamp(40px, 6vw, 75px);
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.ink-desc {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 40px;
	color: #ccc;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.ink-hero-actions {
	display: flex;
	gap: 20px;
	margin-bottom: 80px;
	justify-content: center;
}

/* ================================================================
   SCROLLING MARQUEE
   ================================================================ */
.ink-marquee-wrapper {
	width: 100%;
	background: #000;
	overflow: hidden;
	padding: 30px 0;
	display: flex;
	white-space: nowrap;
	border-top: 1px solid rgba(197, 160, 89, 0.2);
	border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}
.ink-marquee {
	display: flex;
	width: max-content;
	animation: inkMarqueeScroll 48s linear infinite;
}

.ink-marquee-group {
	display: flex;
	flex: 0 0 auto;
}

.ink-marquee span {
	font-family: var(--ink-font-head);
	font-size: 24px;
	color: var(--ink-accent);
	text-transform: uppercase;
	display: flex;
	align-items: center;
	padding-right: 60px;
	letter-spacing: 4px;
}
.ink-marquee i {
	font-size: 12px;
	margin: 0 40px;
	color: #333;
}
@keyframes inkMarqueeScroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ================================================================
   ABOUT US
   ================================================================ */
.ink-about {
	padding: 120px 0;
	background: var(--ink-bg-light);
}
.ink-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.ink-about-text h2 {
	font-size: clamp(35px, 4vw, 50px);
	margin-bottom: 30px;
}
.ink-lead {
	font-size: 16px;
	margin-bottom: 40px;
}

.ink-about-features {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.ink-feature-row {
	display: flex;
	gap: 20px;
}
.ink-feature-row i {
	font-size: 20px;
	color: var(--ink-accent);
	margin-top: 5px;
}
.ink-feature-row h4 {
	font-size: 20px;
	margin-bottom: 5px;
}
.ink-feature-row p {
	margin: 0;
	font-size: 14px;
}

/* About Visual */
.ink-img-wrapper {
	position: relative;
}
.ink-img-wrapper img {
	width: 100%;
	height: auto; 
	position: relative;
	z-index: 2;
}
.ink-grunge-frame {
	position: absolute;
	top: -20px; left: -20px;
	width: 100%; height: 100%;
	border: 1px solid var(--ink-accent);
	z-index: 1;
}
.ink-dark-badge {
	position: absolute;
	bottom: -30px; right: -30px;
	background: var(--ink-bg);
	padding: 30px;
	border: 1px solid var(--ink-border);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	z-index: 3;
}
.ink-dark-badge i {
	font-size: 30px;
	color: var(--ink-accent);
}
.ink-dark-badge span {
	font-family: var(--ink-font-head);
	text-transform: uppercase;
	color: var(--ink-title);
	font-size: 14px;
	letter-spacing: 1px;
	text-align: center;
}

/* ================================================================
   SERVICES
   ================================================================ */
.ink-services {
	padding: 120px 0;
	background: var(--ink-bg);
}
.ink-title-stroke {
	font-family: var(--ink-font-head);
	font-size: clamp(60px, 10vw, 120px);
	color: transparent;
	-webkit-text-stroke: 1px rgba(197, 160, 89, 0.15); /* Gold */
	line-height: 0.5;
	margin-bottom: 30px;
	user-select: none;
	letter-spacing: 5px;
}

.ink-all-services-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 26px;
	color: var(--ink-accent);
	font-family: var(--ink-font-head);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.25s ease, transform 0.25s ease;
}

.ink-all-services-link:hover {
	color: var(--ink-title);
	transform: translateY(-2px);
}

.ink-all-services-link i {
	font-size: 13px;
	transition: transform 0.25s ease;
}

.ink-all-services-link:hover i {
	transform: translateX(4px);
}

.ink-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 60px;
}

.ink-service-style-1 { transform: translateY(40px); }
.ink-service-style-2 { transform: translateY(80px); }

.ink-service-card {
	background: #0b0b0b;
	padding: 0;
	position: relative;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	border: 1px solid rgba(197, 160, 89, 0.16);
	text-align: left;
	min-height: 100%;
}
.ink-service-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	background: linear-gradient(135deg, rgba(197,160,89,0.08), transparent 45%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}
.ink-sc-hover-effect {
	position: absolute;
	bottom: 0; left: 0; width: 100%; height: 3px;
	background: var(--ink-accent);
	transform: scaleX(0);
	transition: transform 0.5s ease;
	transform-origin: left;
}
.ink-service-card:hover {
	background: #111111;
	border-color: rgba(197, 160, 89, 0.3);
	box-shadow: 0 30px 60px rgba(0,0,0,0.8);
	transform: translateY(-15px);
}
.ink-service-card:hover::before { opacity: 1; }
.ink-service-card:hover .ink-sc-hover-effect { transform: scaleX(1); }

.ink-service-image {
	display: block;
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #050505;
}
.ink-service-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(5,5,5,0.08), rgba(5,5,5,0.78));
	pointer-events: none;
}
.ink-service-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover; 
	transition: transform 0.5s ease, filter 0.5s ease;
}
.ink-service-card:hover .ink-service-image img {
	transform: scale(1.06);
	filter: grayscale(80%) contrast(1.15);
}
.ink-service-body {
	position: relative;
	z-index: 2;
	padding: 34px 32px 36px;
}

.ink-sc-icon {
	width: 54px;
	height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(197, 160, 89, 0.35);
	background: #050505;
	font-size: 22px;
	color: var(--ink-accent);
	margin: -62px 0 24px;
	position: relative;
	z-index: 3;
	transition: transform 0.5s ease;
}
.ink-service-card:hover .ink-sc-icon {
	transform: scale(1.1);
}

.ink-service-card h3 {
	font-size: 25px;
	margin-bottom: 14px;
	letter-spacing: 1px;
	line-height: 1.25;
}
.ink-service-card h3 a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease;
}
.ink-service-card h3 a:hover {
	color: var(--ink-accent);
}
.ink-service-card p {
	font-size: 15px;
	margin: 0;
	color: #999;
	line-height: 1.8;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	padding-right: 48px;
}
.ink-service-link {
	position: absolute;
	right: 28px;
	bottom: 30px;
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(197, 160, 89, 0.35);
	color: var(--ink-accent);
	text-decoration: none;
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.ink-service-link:hover {
	background: var(--ink-accent);
	color: #050505;
	transform: translateX(3px);
}

/* ================================================================
   WHY US
   ================================================================ */
.ink-why {
	padding: 120px 0;
	background: var(--ink-bg-light);
	position: relative;
}
.ink-why-bg {
	position: absolute;
	top: 0; right: 0; width: 50%; height: 100%;
	background: var(--ink-bg-lighter);
	z-index: 1;
}
.ink-why .ink-container {
	position: relative;
	z-index: 2;
}
.ink-why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.ink-why-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}
.ink-why-item {
	background: var(--ink-bg);
	padding: 40px 30px;
	border-top: 3px solid var(--ink-border);
}
.ink-why-item:hover {
	border-color: var(--ink-accent);
}
.ink-why-icon {
	font-size: 30px;
	color: var(--ink-title);
	margin-bottom: 20px;
}
.ink-why-item h4 {
	font-size: 18px;
	margin-bottom: 10px;
}
.ink-why-item p {
	font-size: 13px;
	margin: 0;
}

/* ================================================================
   REVIEWS
   ================================================================ */
.ink-reviews {
	padding: 120px 0;
	background: var(--ink-bg);
}
.ink-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.ink-review-card {
	padding: 40px;
	border: 1px solid var(--ink-border);
	background: var(--ink-bg-light);
}
.ink-quote-icon {
	font-size: 40px;
	color: var(--ink-border);
	margin-bottom: 20px;
}
.ink-review-card p {
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 30px;
	color: #ddd;
}
.ink-review-meta strong {
	display: block;
	font-family: var(--ink-font-head);
	color: var(--ink-title);
	font-size: 18px;
	text-transform: uppercase;
	margin-bottom: 5px;
}
.ink-review-meta span {
	font-size: 12px;
	color: var(--ink-accent);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ================================================================
   BLOG
   ================================================================ */
.ink-blog {
	padding: 120px 0;
	background: var(--ink-bg-light);
}
.ink-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.ink-blog-card {
	background: var(--ink-bg);
	padding: 40px;
	border-bottom: 3px solid var(--ink-accent);
}
.ink-blog-tag {
	display: inline-block;
	background: var(--ink-bg-lighter);
	color: var(--ink-title);
	font-family: var(--ink-font-head);
	font-size: 12px;
	padding: 5px 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}
.ink-blog-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
}
.ink-blog-card h3 a {
	color: var(--ink-title);
	text-decoration: none;
	transition: color 0.3s;
}
.ink-blog-card h3 a:hover {
	color: var(--ink-accent);
}
.ink-blog-card p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.7;
	max-height: 5.1em;
}
.ink-read-more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--ink-font-head);
	font-size: 14px;
	color: var(--ink-accent);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 20px;
}

/* ================================================================
   CONTACT & FAQ
   ================================================================ */
.ink-contact-faq {
	padding: 120px 0;
	background: var(--ink-bg);
}
.ink-cf-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
}
.ink-booking {
	background: var(--ink-bg-lighter);
	padding: 60px 50px;
	border-left: 5px solid var(--ink-accent);
}
.ink-booking h2 {
	font-size: clamp(35px, 4vw, 45px);
	margin-bottom: 20px;
}
.ink-booking-desc {
	margin-bottom: 40px;
}

.ink-c-item {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 25px;
}
.ink-c-icon {
	width: 50px;
	height: 50px;
	background: var(--ink-bg);
	border: 1px solid var(--ink-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ink-title);
	font-size: 18px;
}
.ink-c-item span {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.ink-c-item strong {
	font-family: var(--ink-font-head);
	font-size: 18px;
	color: var(--ink-title);
}

.ink-faq-title {
	font-size: 35px;
	margin-bottom: 40px;
}
.ink-acc-item {
	border-bottom: 1px solid var(--ink-border);
}
.ink-acc-head {
	padding: 25px 0;
	font-family: var(--ink-font-head);
	font-size: 20px;
	color: var(--ink-title);
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.ink-acc-head::-webkit-details-marker {
	display: none;
}
.ink-acc-icon {
	color: var(--ink-accent);
	transition: transform 0.3s;
}
details[open] .ink-acc-head .ink-acc-icon {
	transform: rotate(45deg);
}
.ink-acc-body {
	padding-bottom: 25px;
	font-size: 15px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
	.ink-about-grid, .ink-why-grid, .ink-cf-grid {
		grid-template-columns: 1fr;
	}
	.ink-services-grid, .ink-reviews-grid, .ink-blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.ink-service-style-1, .ink-service-style-2 { transform: translateY(0); }
	.ink-slider-ui-left, .ink-slider-ui-bottom {
		display: none;
	}
	.ink-why-bg {
		width: 100%;
		height: 50%;
		top: auto;
		bottom: 0;
	}
	.ink-dark-badge {
		bottom: 0;
		right: 0;
	}
}

@media (max-width: 768px) {
	.ink-hero-actions {
		flex-direction: column;
	}
	.ink-stats-bar {
		flex-direction: column;
		gap: 20px;
	}
	.ink-services-grid, .ink-reviews-grid, .ink-blog-grid {
		grid-template-columns: 1fr;
	}
	.ink-service-style-1, .ink-service-style-2 { transform: translateY(0); }
	.ink-why-cards {
		grid-template-columns: 1fr;
	}
	.ink-booking {
		padding: 40px 20px;
	}
}

/* ================================================================
   GLOBAL HEADER & FOOTER OVERRIDES FOR INK-THEME (DARK MODE)
   ================================================================ */
body.ink-theme {
	background-color: #050505 !important;
}

body.ink-theme #page {
	background-color: #050505 !important;
}

body.ink-theme .site-header,
body.ink-theme .sa-header-main {
	background-color: #050505 !important;
	border-bottom: 1px solid var(--ink-border) !important;
}

body.home.ink-theme .site-header,
body.home.ink-theme .sa-header-main {
	background-color: transparent !important;
	border-bottom-color: transparent !important;
	box-shadow: none !important;
}

body.home.ink-theme.sa-header-scrolled .site-header,
body.home.ink-theme.sa-header-scrolled .sa-header-main,
body.home.ink-theme .sa-header-main.sa-sticky-active {
	background-color: rgba(5, 5, 5, 0.96) !important;
	border-bottom-color: var(--ink-border) !important;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35) !important;
	backdrop-filter: blur(14px);
}

body.home.ink-theme.sa-header-scrolled .site-header {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	z-index: 1000 !important;
}

body.ink-theme .sa-topbar {
	background-color: #111111 !important;
	color: #A3A3A3 !important;
	border-bottom: 1px solid var(--ink-border) !important;
}

body.home.ink-theme .sa-topbar {
	background-color: transparent !important;
	border-bottom-color: transparent !important;
}

body.home.ink-theme.sa-header-scrolled .sa-topbar {
	background-color: rgba(5, 5, 5, 0.96) !important;
	border-bottom-color: var(--ink-border) !important;
	backdrop-filter: blur(14px);
}

body.ink-theme .sa-topbar-link:hover,
body.ink-theme .sa-topbar-social:hover {
	color: var(--ink-accent) !important;
}

body.ink-theme .sa-nav-link {
	color: #ffffff !important;
	font-family: var(--ink-font-head) !important;
	text-transform: uppercase;
	letter-spacing: 1px;
}

body.ink-theme .sa-nav-link:hover,
body.ink-theme .sa-nav-item:hover > .sa-nav-link {
	color: var(--ink-accent) !important;
}

body.ink-theme .sa-dropdown {
	background-color: #111111 !important;
	border: 1px solid var(--ink-border) !important;
}

body.ink-theme .sa-dropdown-link {
	color: #A3A3A3 !important;
}

body.ink-theme .sa-dropdown-link:hover {
	color: var(--ink-accent) !important;
	background-color: #151515 !important;
}

body.ink-theme .sa-mobile-toggle,
body.ink-theme .sa-woo-btn {
	color: #ffffff !important;
}

body.ink-theme .sa-mobile-toggle:hover,
body.ink-theme .sa-woo-btn:hover {
	color: var(--ink-accent) !important;
	background: rgba(255,255,255,0.05) !important;
}

body.ink-theme .sa-mobile-menu {
	background-color: #111111 !important;
	border-top: 1px solid var(--ink-border) !important;
}

body.ink-theme .sa-mobile-link {
	color: #ffffff !important;
}

body.ink-theme .sa-mobile-link:hover {
	color: var(--ink-accent) !important;
}

body.ink-theme .site-footer {
	background-color: #111111 !important;
	color: #A3A3A3 !important;
	border-top: 1px solid var(--ink-border) !important;
}

body.ink-theme .footer-menu-title {
	color: #ffffff !important;
	font-family: var(--ink-font-head) !important;
	text-transform: uppercase;
	letter-spacing: 1px;
}

body.ink-theme .footer-nav-link {
	color: #A3A3A3 !important;
	transition: color 0.3s ease;
}

body.ink-theme .footer-nav-link:hover {
	color: var(--ink-accent) !important;
}

body.ink-theme .footer-bar {
	background-color: #050505 !important;
	border-top: 1px solid var(--ink-border) !important;
	color: #666666 !important;
}

body.ink-theme .footer-social-link {
	color: #A3A3A3 !important;
}

body.ink-theme .footer-social-link:hover {
	color: var(--ink-accent) !important;
}

/* Inner page tattoo background */
body.ink-theme:not(.home) {
	background-color: #050505 !important;
}

body.ink-theme:not(.home) #page,
body.ink-theme:not(.home) .site-main,
body.ink-theme:not(.home) .site-main > article,
body.ink-theme:not(.home) .site-main > section,
body.ink-theme:not(.home) #primary > article,
body.ink-theme:not(.home) #primary > section,
body.ink-theme:not(.home) section {
	background-color: #050505 !important;
	background-image:
		linear-gradient(rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.92)),
		url("../../images/tattoo-background.png") !important;
	background-position: center center, right 8% center !important;
	background-repeat: no-repeat !important;
	background-size: auto, clamp(320px, 34vw, 560px) auto !important;
}

body.ink-theme:not(.home) .site-main,
body.ink-theme:not(.home) #primary {
	background-attachment: fixed !important;
}
