/* ============================================================
   TATTOO STUDIO — PREMIUM CSS3 STYLESHEET
   ============================================================ */

:root {
  color-scheme: dark;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-dark: #9e7c2e;
  --gold-pale: rgba(201,168,76,0.1);
  --gold-glow: rgba(201,168,76,0.25);
  --red: #DD3333;
  --red-dark: #aa2222;
  --red-light: #ff5555;
  --red-glow: rgba(221,51,51,0.3);
  --dark: #060606;
  --dark-2: #0b0b0b;
  --dark-3: #111111;
  --dark-4: #181818;
  --dark-5: #222222;
  --text: #c8c8c8;
  --text-dim: #6e6e6e;
  --text-faint: #3a3a3a;
  --radius: 14px;
  --transition: 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ---- Custom Cursor ---- */
#cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
#cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(221,51,51,0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
}
body.cursor-hover #cursor { width: 18px; height: 18px; opacity: 0.5; }
body.cursor-hover #cursor-follower { width: 56px; height: 56px; border-color: var(--red); }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 2px; }
::selection { background: var(--red); color: #fff; }

/* ---- Page Loader ---- */
#pageLoader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 28px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#pageLoader.loaded { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 64px; height: 64px;
  border: 1.5px solid rgba(221,51,51,0.1);
  border-top-color: var(--red);
  border-right-color: var(--red-light);
  border-radius: 50%;
  animation: spin 1.1s linear infinite;
}
.loader-text {
  font-size: 0.6rem; letter-spacing: 0.5em;
  color: var(--red); text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite;
}

/* ---- Keyframes ---- */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.25} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(50px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes fadeDown {
  from { opacity:0; transform:translateY(-24px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes glitch1 {
  0%,100% { clip-path: inset(0 0 92% 0); transform: translate(-3px, 0); }
  20% { clip-path: inset(28% 0 52% 0); transform: translate(3px, 0); }
  40% { clip-path: inset(62% 0 18% 0); transform: translate(-2px, 0); }
  60% { clip-path: inset(12% 0 68% 0); transform: translate(2px, 0); }
  80% { clip-path: inset(78% 0 8% 0); transform: translate(-2px, 0); }
}
@keyframes glitch2 {
  0%,100% { clip-path: inset(52% 0 28% 0); transform: translate(3px, 0); color: var(--red); }
  30% { clip-path: inset(22% 0 58% 0); transform: translate(-3px, 0); }
  70% { clip-path: inset(72% 0 8% 0); transform: translate(2px, 0); }
}
@keyframes borderPulse {
  0%,100% { border-color: rgba(221,51,51,0.25); box-shadow: 0 0 0 rgba(221,51,51,0); }
  50% { border-color: rgba(221,51,51,0.65); box-shadow: 0 0 22px rgba(221,51,51,0.18); }
}
@keyframes inkDrop {
  0% { transform: scale(0); opacity: 0.6; }
  100% { transform: scale(4.5); opacity: 0; }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- Typography ---- */
.text-gradient {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-gradient-anim {
  background: linear-gradient(90deg, var(--red), var(--gold-light), var(--gold), var(--gold-light), var(--red));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 6s linear infinite;
}

/* ---- Glitch Title ---- */
.glitch-title { position: relative; display: inline-block; }
.glitch-title::before, .glitch-title::after {
  content: attr(data-text);
  position: absolute; inset: 0; opacity: 0;
}
.glitch-title:hover::before { opacity: 1; color: rgba(221,51,51,0.6); animation: glitch1 0.28s infinite; }
.glitch-title:hover::after { opacity: 1; color: rgba(201,168,76,0.35); animation: glitch2 0.28s infinite; }

/* ---- Noise Texture ---- */
.noise { position: relative; }
.noise::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1;
}

/* ---- Navbar ---- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500; padding: 22px 0;
  transition: all 0.5s ease;
}
#navbar.scrolled {
  background: rgba(6,6,6,0.97);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(221,51,51,0.2);
  box-shadow: 0 2px 40px rgba(0,0,0,0.7);
}
#navbar.scrolled #topBarContact {
  height: 0 !important; padding: 0 !important; margin: 0 !important; border: none !important; opacity: 0 !important; overflow: hidden !important;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img {
  width: 118px; height: 118px; object-fit: contain;
  filter: brightness(1.05) contrast(1.05);
  transition: transform 0.4s ease, filter 0.4s ease;
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.06);
  filter: brightness(1.2) drop-shadow(0 0 12px rgba(221,51,51,0.5));
}
.nav-link {
  position: relative; color: #777; text-decoration: none;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding-bottom: 4px; transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transition: width 0.4s cubic-bezier(0.23,1,0.32,1);
}
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* ---- Buttons ---- */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; padding: 14px 30px;
  border-radius: 100px; border: none; cursor: none;
  position: relative; overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.btn-gold::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(221,51,51,0.45); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(221,51,51,0.55); color: var(--red);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; padding: 13px 28px;
  border-radius: 100px; background: transparent; cursor: none;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.btn-outline::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1); z-index: -1;
}
.btn-outline:hover::before { transform: scaleX(1); }
.btn-outline:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 14px 40px rgba(221,51,51,0.3); border-color: var(--red); }

/* ---- Glass Card ---- */
.glass-card {
  background: rgba(255,255,255,0.022);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.glass-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(221,51,51,0.2);
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(221,51,51,0.08);
}

/* ---- Section Styles ---- */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--red));
}
.section-eyebrow::after { background: linear-gradient(90deg, var(--red), transparent); }
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 6vw, 4.8rem);
  font-weight: 900; line-height: 0.93; color: #fff; margin-bottom: 20px;
}
.section-subtitle { color: var(--text-dim); max-width: 500px; line-height: 1.75; font-size: 0.97rem; }
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(221,51,51,0.4), var(--gold-dark), rgba(221,51,51,0.4), transparent);
  margin: 0 auto;
}

/* ============================================================ HERO ============================================================ */
#home { position: relative; width: 100%; }
#hero {  position: relative; width: 100vw; height: 100vh; min-height: 600px;  display: flex; flex-direction: column; overflow: hidden; background: var(--dark);
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video-wrap video {  position: absolute; top: 0; left: 0; width: 100%; height: 100%;  object-fit: cover; opacity: 0; filter: brightness(0.9); transition: opacity 1.6s ease;}.hero-video-wrap video.loaded { opacity: 1; }
.hero-bg-img {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1611501275019-9b5cda994e8d?w=1200&q=80') center/cover no-repeat;
  opacity: 0.28; z-index: 0; transition: opacity 1.6s ease;
}
.hero-gradient {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to bottom, rgba(6,6,6,0.65) 0%, rgba(6,6,6,0.08) 38%, rgba(6,6,6,0.08) 62%, rgba(6,6,6,0.88) 100%),
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(221,51,51,0.16) 0%, transparent 60%);
}
#hero-canvas { position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; pointer-events: none; }
.hero-content {  position: relative; z-index: 10;  max-width: 1280px; margin: 0 auto;  padding: 140px 48px 60px; width: 100%; height: 100%;  display: flex; flex-direction: column;}.hero-text-wrap {  margin: auto 0;}
.hero-top-text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(0.65rem, 2vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  padding: 8px 24px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02));
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.1), inset 0 0 12px rgba(201, 168, 76, 0.05);
  opacity: 0;
  animation: fadeDown 0.9s 0.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-top-text::before,
.hero-top-text::after {
  content: '✦';
  font-size: 0.6rem;
  color: rgba(201, 168, 76, 0.6);
  animation: pulse 2.5s ease-in-out infinite;
}
.hero-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 8vw, 7.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 1s 0.4s ease forwards;
}
.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(200,200,200,0.7); line-height: 1.75; max-width: 460px;
  margin-bottom: 44px; opacity: 0; animation: fadeUp 1s 0.8s ease forwards;
}
.hero-cta { margin-top: 30px; margin-bottom: 30px; display: flex; flex-wrap: wrap; gap: 16px; opacity: 0; animation: fadeUp 1s 1s ease forwards; }
.hero-scroll {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: float 3.5s ease-in-out infinite;
}
.hero-scroll-line { width: 1px; height: 56px; background: linear-gradient(to bottom, transparent, var(--red)); }
.hero-scroll-text { font-size: 0.58rem; letter-spacing: 0.3em; color: var(--red); text-transform: uppercase; writing-mode: vertical-rl; }

/* ---- Marquee ---- */
.marquee-strip {
  overflow: hidden;
  background: linear-gradient(90deg, var(--red-dark) 0%, var(--red) 30%, #c0392b 50%, var(--red) 70%, var(--red-dark) 100%);
  padding: 15px 0; position: relative; z-index: 1;
}
.marquee-track { display: flex; animation: marqueeScroll 22s linear infinite; white-space: nowrap; }
.marquee-item {
  flex-shrink: 0; padding: 0 40px;
  font-size: 0.66rem; font-weight: 800;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); display: flex; align-items: center; gap: 16px;
}
.marquee-item::after { content: '✦'; color: rgba(255,255,255,0.35); font-size: 0.5rem; }

/* ---- Welcome Section ---- */
.welcome-section {
  padding: 100px 0;
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
}
.welcome-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(221,51,51,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.welcome-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.welcome-tagline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  display: block;
}
.welcome-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.1;
}
.welcome-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), var(--red), transparent);
  margin: 0 auto 32px;
}
.welcome-para {
  font-size: 1.02rem;
  color: #999;
  line-height: 1.9;
  margin-bottom: 18px;
}
.welcome-para:last-child { margin-bottom: 0; }

/* ---- Stats ---- */
#stats { background: var(--dark-2); border-top: 1px solid rgba(221,51,51,0.08); border-bottom: 1px solid rgba(221,51,51,0.08); padding: 64px 0; }
.stat-item { text-align: center; position: relative; padding: 20px 0; }
.stat-item::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: linear-gradient(to bottom, transparent, rgba(221,51,51,0.22), transparent);
}
.stat-item:last-child::after { display: none; }
.stat-number { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-dim); }

/* ---- Gallery ---- */
#gallery { padding: 120px 0; background: var(--dark); position: relative; }
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 48px; }
.filter-btn {
  padding: 9px 22px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08); background: transparent;
  color: var(--text-dim); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: none; transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--red); color: #fff;
  background: rgba(221,51,51,0.12); box-shadow: 0 0 18px rgba(221,51,51,0.12);
}
#galleryGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  cursor: none;
}
.gallery-blur-bg {
  position: absolute;
  inset: -15%;
  background-size: cover;
  background-position: center;
  filter: blur(20px) brightness(0.4);
  z-index: 0;
  transition: transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.gallery-item:hover .gallery-blur-bg,
.piercing-gallery-item:hover .gallery-blur-bg {
  transform: scale(1.15);
}
.gallery-item img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.7s cubic-bezier(0.23,1,0.32,1), filter 0.4s ease;
}
/* mosaic classes removed */
.gallery-item:hover img { transform: scale(1.07); filter: brightness(0.55) saturate(0.7); }
.gallery-item-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(6,6,6,0.95) 0%, rgba(6,6,6,0.25) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; opacity: 0; transform: translateY(8px); transition: all 0.4s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; transform: translateY(0); }
.gallery-item-cat { font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.gallery-item-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; font-weight: 700; color: #fff; }
.gallery-item-artist { font-size: 0.78rem; color: var(--text-dim); margin-top: 4px; }
.gallery-item-zoom {
  position: absolute; top: 14px; right: 14px; z-index: 3; width: 34px; height: 34px;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.75rem; opacity: 0; transform: scale(0.5); transition: all 0.3s ease;
}
.gallery-item:hover .gallery-item-zoom { opacity: 1; transform: scale(1); }

/* ---- Artists ---- */
#artists { padding: 120px 0; background: var(--dark-2); position: relative; }
.artist-card { border-radius: 18px; overflow: hidden; position: relative; transition: all var(--transition); }
.artist-card:hover { transform: translateY(-8px); box-shadow: 0 32px 72px rgba(0,0,0,0.65); }
.artist-img-wrap { position: relative; overflow: hidden; height: 340px; }
.artist-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.23,1,0.32,1); filter: grayscale(20%); }
.artist-card:hover .artist-img-wrap img { transform: scale(1.06); filter: grayscale(0%); }
.artist-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--dark-2) 0%, transparent 55%); }
.artist-social { position: absolute; top: 14px; right: 14px; display: flex; flex-direction: column; gap: 8px; opacity: 0; transform: translateX(16px); transition: all 0.4s ease; }
.artist-card:hover .artist-social { opacity: 1; transform: translateX(0); }
.artist-social-btn {
  width: 34px; height: 34px; background: rgba(6,6,6,0.85); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 0.75rem; border: 1px solid rgba(221,51,51,0.25);
  text-decoration: none; transition: all 0.3s ease;
}
.artist-social-btn:hover { background: var(--red); color: #fff; }
.artist-info { padding: 22px 24px; }
.artist-name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.35rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.artist-role { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.artist-bio { font-size: 0.86rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 16px; }
.artist-link { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s ease; }
.artist-link:hover { gap: 14px; }

/* ---- Services ---- */
#services { padding: 120px 0; background: var(--dark); position: relative; }
.service-card { padding: 38px; border-radius: 18px; position: relative; overflow: hidden; transition: all var(--transition); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), var(--red), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 28px 64px rgba(0,0,0,0.5); }
.service-icon-wrap {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(221,51,51,0.12), rgba(221,51,51,0.03));
  border: 1px solid rgba(221,51,51,0.2); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--red); margin-bottom: 22px; transition: all 0.4s ease;
}
.service-card:hover .service-icon-wrap { background: linear-gradient(135deg, rgba(221,51,51,0.28), rgba(221,51,51,0.1)); border-color: rgba(221,51,51,0.5); transform: rotate(-8deg) scale(1.1); box-shadow: 0 8px 24px rgba(221,51,51,0.2); }
.service-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.service-desc { font-size: 0.88rem; color: var(--text-dim); line-height: 1.75; }
.service-price { margin-top: 20px; font-size: 0.78rem; color: var(--red); font-weight: 700; letter-spacing: 0.1em; }

/* ---- Process ---- */
#process { padding: 120px 0; background: var(--dark-2); position: relative; overflow: hidden; }
.process-bg { position: absolute; inset: 0; z-index: 0; background: url('https://www.tattoo.ee/wp-content/uploads/2024/03/image-5.jpg') center/cover no-repeat; opacity: 0.15; }
.process-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, var(--dark-2) 0%, rgba(11,11,11,0.4) 20%, rgba(11,11,11,0.4) 80%, var(--dark-2) 100%); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; position: relative; z-index: 10; }
.process-grid::before {
  content: ''; position: absolute; top: 40px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(221,51,51,0.3), rgba(221,51,51,0.5), rgba(221,51,51,0.3), transparent);
  pointer-events: none;
}
.process-step { text-align: center; padding: 0 16px; }
.step-num {
  width: 80px; height: 80px; border: 1.5px solid rgba(221,51,51,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
  font-family: 'Playfair Display', Georgia, serif; font-size: 1.7rem; font-weight: 700; color: var(--red);
  background: var(--dark-2); position: relative; z-index: 1; transition: all 0.4s ease;
}
.process-step:hover .step-num { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 0 36px rgba(221,51,51,0.4); transform: scale(1.1); }
.step-title { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step-desc { font-size: 0.84rem; color: var(--text-dim); line-height: 1.7; }

/* ---- Testimonials ---- */
#testimonials { 
  padding: 120px 0; 
  background: var(--dark); 
  position: relative; 
  overflow: hidden; 
}
.testimonials-bg {
  position: absolute; 
  inset: 0; 
  z-index: 0;
  background: url('https://www.tattoo.ee/wp-content/uploads/2024/02/tattoo-tallinnas.jpg') center/cover no-repeat;
  opacity: 0.15;
}
.testimonials-overlay {
  position: absolute; 
  inset: 0; 
  z-index: 1;
  background: linear-gradient(to bottom, var(--dark) 0%, rgba(6,6,6,0.35) 20%, rgba(6,6,6,0.35) 80%, var(--dark) 100%);
}
.testimonial-card { padding: 36px; border-radius: 18px; position: relative; transition: all var(--transition); }
.testimonial-card::before { content: '\201C'; position: absolute; top: 8px; left: 24px; font-family: Georgia, serif; font-size: 5rem; line-height: 1; color: var(--red); opacity: 0.18; }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,0.5); }
.star-row { color: var(--red); font-size: 0.78rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.93rem; color: #aaa; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); }

/* ---- Why Choose (Redesigned) ---- */
#why-choose {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Hero heading block */
.why-hero-block {
  position: relative;
  padding: 120px 0 90px;
  overflow: hidden;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(221,51,51,0.12);
}
.why-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 50% 50%, rgba(221,51,51,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 5% 80%, rgba(201,168,76,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 95% 20%, rgba(201,168,76,0.04) 0%, transparent 55%);
  pointer-events: none;
}
.why-hero-lines {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.why-hero-lines::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(221,51,51,0.14), rgba(201,168,76,0.22), rgba(221,51,51,0.14), transparent);
}
.why-hero-lines::after {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(221,51,51,0.1), rgba(221,51,51,0.1), transparent);
}
.why-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: #fff;
  margin: 28px 0 0;
  letter-spacing: -0.02em;
}

/* Intro quote block */
.why-intro-block {
  padding: 70px 0;
  background: var(--dark-3);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.why-intro-block::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(221,51,51,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.why-intro-inner {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: rgba(221,51,51,0.03);
  border: 1px solid rgba(221,51,51,0.12);
  border-radius: 24px;
  padding: 44px 50px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.why-intro-inner:hover {
  border-color: rgba(221,51,51,0.22);
  background: rgba(221,51,51,0.05);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(221,51,51,0.06);
}
.why-intro-inner::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--red), var(--gold), var(--red), transparent);
}
.why-intro-icon {
  flex-shrink: 0;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, rgba(221,51,51,0.18), rgba(221,51,51,0.05));
  border: 1px solid rgba(221,51,51,0.28);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--red);
  box-shadow: 0 8px 24px rgba(221,51,51,0.15);
  transition: all 0.4s ease;
}
.why-intro-inner:hover .why-intro-icon {
  transform: rotate(-8deg) scale(1.1);
  box-shadow: 0 12px 32px rgba(221,51,51,0.25);
}
.why-intro-text p {
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: #aaa;
  line-height: 2.0;
  font-style: italic;
}

/* Checklist block */
.why-checklist-block {
  padding: 90px 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.why-checklist-block::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
}
.why-checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.why-checklist-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 32px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.018);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}
.why-checklist-item::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s ease;
}
.why-checklist-item:hover::after { transform: scaleX(1); }
.why-checklist-item:hover {
  border-color: rgba(221,51,51,0.2);
  background: rgba(221,51,51,0.04);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5), 0 0 30px rgba(221,51,51,0.06);
}
.why-check-num {
  position: absolute; top: 16px; right: 20px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem; font-weight: 900;
  color: rgba(221,51,51,0.06);
  line-height: 1;
  transition: color 0.4s ease;
  pointer-events: none;
}
.why-checklist-item:hover .why-check-num { color: rgba(221,51,51,0.14); }
.why-check-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(221,51,51,0.15), rgba(221,51,51,0.04));
  border: 1px solid rgba(221,51,51,0.22);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--red);
  transition: all 0.4s ease;
  box-shadow: 0 4px 16px rgba(221,51,51,0.1);
}
.why-checklist-item:hover .why-check-icon {
  background: rgba(221,51,51,0.24);
  border-color: rgba(221,51,51,0.48);
  transform: rotate(-10deg) scale(1.12);
  box-shadow: 0 8px 24px rgba(221,51,51,0.25);
}
.why-check-text {
  font-size: 0.92rem;
  color: #aaa;
  line-height: 1.75;
  position: relative; z-index: 1;
}

/* Feature cards block */
.why-cards-block {
  padding: 90px 0 110px;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.why-cards-block::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(221,51,51,0.2), transparent);
}
.why-cards-block::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(221,51,51,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.why-cards-new {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative; z-index: 1;
}
.why-card-new {
  position: relative;
  padding: 40px 28px 36px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.055);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: default;
}
.why-card-new::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(221,51,51,0.07) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.5s ease;
}
.why-card-new:hover::before { opacity: 1; }
.why-card-new-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.5s ease;
}
.why-card-new-accent--gold {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.why-card-new:hover .why-card-new-accent { transform: scaleX(1); }
.why-card-new:hover {
  border-color: rgba(221,51,51,0.25);
  background: rgba(221,51,51,0.04);
  transform: translateY(-12px);
  box-shadow: 0 32px 72px rgba(0,0,0,0.6), 0 0 0 1px rgba(221,51,51,0.08), 0 0 40px rgba(221,51,51,0.06);
}
.why-card-new--walkin:hover {
  border-color: rgba(201,168,76,0.28);
  background: rgba(201,168,76,0.03);
  box-shadow: 0 32px 72px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.08), 0 0 40px rgba(201,168,76,0.06);
}
.why-card-new-num {
  position: absolute; top: 14px; right: 16px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem; font-weight: 900;
  color: rgba(221,51,51,0.1);
  line-height: 1;
  transition: color 0.4s ease;
  pointer-events: none;
}
.why-card-new:hover .why-card-new-num { color: rgba(221,51,51,0.22); }
.why-card-new--walkin .why-card-new-num { color: rgba(201,168,76,0.1); }
.why-card-new--walkin:hover .why-card-new-num { color: rgba(201,168,76,0.22); }
.why-card-new-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(221,51,51,0.15), rgba(221,51,51,0.04));
  border: 1px solid rgba(221,51,51,0.24);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--red);
  transition: all 0.4s ease;
  box-shadow: 0 4px 18px rgba(221,51,51,0.12);
}
.why-card-new-icon--gold {
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.04));
  border-color: rgba(201,168,76,0.24);
  color: var(--gold);
  box-shadow: 0 4px 18px rgba(201,168,76,0.12);
}
.why-card-new:hover .why-card-new-icon {
  background: rgba(221,51,51,0.24);
  border-color: rgba(221,51,51,0.5);
  transform: rotate(-10deg) scale(1.12);
  box-shadow: 0 10px 28px rgba(221,51,51,0.28);
}
.why-card-new--walkin:hover .why-card-new-icon {
  background: rgba(201,168,76,0.2);
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 10px 28px rgba(201,168,76,0.22);
}
.why-card-new-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem; font-weight: 700; color: #fff;
  line-height: 1.25;
}
.why-card-new-desc {
  font-size: 0.84rem; color: var(--text-dim); line-height: 1.8;
  flex: 1;
}
.why-walkin-badge {
  display: inline-flex; align-self: flex-start;
  padding: 5px 14px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 100px;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  animation: borderPulse 3s ease-in-out infinite;
}

@media (max-width: 1200px) { .why-cards-new { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  .why-cards-new { grid-template-columns: repeat(2, 1fr); }
  .why-intro-inner { flex-direction: column; padding: 28px 24px; }
  .why-checklist-grid { grid-template-columns: 1fr; }
  .why-hero-block { padding: 80px 0 60px; }
}
@media (max-width: 480px) { .why-cards-new { grid-template-columns: 1fr; } }

/* ---- Contact ---- */
#contact { padding: 120px 0; background: var(--dark-2); position: relative; }
.contact-info-item { display: flex; align-items: flex-start; gap: 20px; padding: 22px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.04); transition: all 0.3s ease; }
.contact-info-item:hover { border-color: rgba(221,51,51,0.2); background: rgba(221,51,51,0.03); }
.contact-icon { width: 46px; height: 46px; flex-shrink: 0; background: linear-gradient(135deg, rgba(221,51,51,0.12), rgba(221,51,51,0.03)); border: 1px solid rgba(221,51,51,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--red); }
.contact-info-label { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 4px; }
.contact-info-value { color: #bbb; font-size: 0.92rem; line-height: 1.5; }
.form-group { position: relative; }
.form-input { width: 100%; background: rgba(255, 255, 255, 0.08); border: 1.5px solid rgba(255, 255, 255, 0.2); border-radius: 12px; padding: 16px 20px; color: #ffffff; font-size: 1rem; font-family: inherit; transition: all 0.3s ease; outline: none; box-shadow: inset 0 2px 6px rgba(0,0,0,0.4); }
.form-input:focus { border-color: var(--red); background: rgba(255, 255, 255, 0.12); box-shadow: 0 0 0 3px rgba(221, 51, 51, 0.25), inset 0 2px 6px rgba(0,0,0,0.4); }
.form-input::placeholder { color: #999999; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23DD3333'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 20px; padding-right: 40px; }

/* ---- Footer ---- */
#footer { background: var(--dark); border-top: 1px solid rgba(221,51,51,0.1); padding: 80px 0 40px; }
.footer-brand { margin-bottom: 20px; }
.footer-tagline { font-size: 0.86rem; color: var(--text-dim); line-height: 1.75; max-width: 260px; }
.footer-heading { font-size: 0.66rem; letter-spacing: 0.25em; text-transform: uppercase; color: #fff; font-weight: 700; margin-bottom: 20px; }
.footer-link { display: block; color: var(--text-dim); text-decoration: none; font-size: 0.86rem; padding: 4px 0; transition: color 0.3s ease, transform 0.3s ease; }
.footer-link:hover { color: var(--red); transform: translateX(5px); }
.social-btn { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.07); border-radius: 0; display: flex; align-items: center; justify-content: center; color: var(--text-dim); text-decoration: none; transition: all 0.3s ease; }
.social-btn:hover { border-color: var(--red); color: #fff; background: rgba(221,51,51,0.12); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(221,51,51,0.2); }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.04); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.78rem; color: var(--text-faint); }

/* ---- Mobile Menu ---- */
#mobileMenu { position: fixed; top: 0; right: -100%; width: 85%; max-width: 360px; height: 100vh; background: var(--dark-2); border-left: 1px solid rgba(221,51,51,0.12); z-index: 600; transition: right 0.45s cubic-bezier(0.23,1,0.32,1); display: flex; flex-direction: column; padding: 32px; }
#mobileMenu.open { right: 0; }
#mobileOverlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(4px); z-index: 590; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
#mobileOverlay.open { opacity: 1; visibility: visible; }
.mobile-nav-link { display: flex; align-items: center; gap: 12px; font-size: 1.05rem; font-weight: 600; color: #777; text-decoration: none; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.04); transition: color 0.3s ease; }
.mobile-nav-link::before { content: ''; width: 0; height: 2px; background: var(--red); transition: width 0.3s ease; }
.mobile-nav-link:hover { color: var(--red); }
.mobile-nav-link:hover::before { width: 18px; }
.mobile-nav-link.active { color: var(--red); }

/* ---- Lightbox ---- */
#lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.97); z-index: 800; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s ease; }
#lightbox.open { opacity: 1; visibility: visible; }
.lightbox-overlay { position: absolute; inset: 0; z-index: 0; cursor: pointer; }
#lightboxImg { position: relative; z-index: 1; max-width: 92vw; max-height: 90vh; object-fit: contain; border-radius: 6px; transform: scale(0.92); transition: transform 0.4s cubic-bezier(0.23,1,0.32,1); }
#lightbox.open #lightboxImg { transform: scale(1); }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; z-index: 2; width: 46px; height: 46px; border: 1px solid rgba(221,51,51,0.25); border-radius: 50%; background: rgba(221,51,51,0.06); color: #fff; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; cursor: none; transition: all 0.3s ease; }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { top: 50%; left: 24px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 24px; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { border-color: var(--red); color: var(--red); background: rgba(221,51,51,0.12); }

@media (max-width: 768px) {
  .lightbox-prev, .lightbox-next { display: none; }
  .lightbox-close { top: 16px; right: 16px; cursor: pointer; }
}

/* ---- Back to Top ---- */
/* ---- Sticky Booking Button ---- */
.sticky-booking-btn { position: fixed; bottom: 86px; right: 30px; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; padding: 13px 26px; border-radius: 100px; text-decoration: none; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(221,51,51,0.3); z-index: 400; opacity: 0; visibility: hidden; transform: translateY(16px); transition: all 0.4s ease; cursor: none; }
.sticky-booking-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.sticky-booking-btn:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(221,51,51,0.45); color: #fff; }

@media (max-width: 768px) {
  .sticky-booking-btn { cursor: pointer; bottom: 86px; right: 20px; }
}

#backToTop { position: fixed; bottom: 30px; right: 30px; width: 46px; height: 46px; background: linear-gradient(135deg, var(--red), var(--red-dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; border: none; cursor: none; opacity: 0; visibility: hidden; transform: translateY(16px); transition: all 0.4s ease; z-index: 400; font-size: 0.85rem; }
#backToTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(221,51,51,0.4); }

/* ---- Ink Ripple ---- */
.ink-ripple { position: absolute; width: 20px; height: 20px; border-radius: 50%; background: rgba(221,51,51,0.35); transform: scale(0); pointer-events: none; animation: inkDrop 0.85s ease-out forwards; }


/* ---- Scroll Reveal ---- */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 0.9s cubic-bezier(0.23,1,0.32,1), transform 0.9s cubic-bezier(0.23,1,0.32,1); }
.reveal.left { transform: translateX(-38px) translateY(0); }
.reveal.right { transform: translateX(38px) translateY(0); }
.reveal.scale { transform: scale(0.9); }
.reveal.visible { opacity: 1; transform: none; }

/* ---- Responsive ---- */
@media (max-width: 1024px) { 
  #galleryGrid { grid-template-columns: repeat(3, 1fr); } 
}

@media (max-width: 768px) {
  .welcome-section, #stats, #gallery, #services, #process, #testimonials, #contact, .p-section, #tattoo-styles, #tattoo-aftercare, #gift-cards, #booking-guide {
    padding: 70px 0;
  }
  .why-hero-block { padding: 80px 0 60px; }
  .why-intro-block { padding: 50px 0; }
  .why-checklist-block { padding: 60px 0; }
  .why-cards-block { padding: 60px 0 80px; }

  .nav-logo-img { width: 80px; height: 80px; }
  #navbar.scrolled .nav-logo-img { width: 64px; height: 64px; }

  .hero-content, .p-hero-content { padding: 130px 24px 100px !important; }
  .hero-text-wrap { margin-top: 5vh; }
  
  #galleryGrid { grid-template-columns: repeat(2, 1fr); }
  
  .process-grid::before { display: none; }
  .process-step { margin-bottom: 32px; padding: 0 8px; }
  .process-step:last-child { margin-bottom: 0; }

  body { cursor: auto; }
  #cursor, #cursor-follower { display: none; }
  .btn-gold, .btn-outline, .filter-btn, .lightbox-close, #backToTop, .sticky-booking-btn { cursor: pointer; }

  .floating-socials {
    flex-direction: row;
    bottom: 15px;
    left: 15px;
    gap: 8px;
  }
  .f-social-btn { width: 36px; height: 36px; font-size: 1rem; }
  .sticky-booking-btn { bottom: 70px; right: 15px; padding: 10px 20px; font-size: 0.65rem; }
  #backToTop { bottom: 15px; right: 15px; width: 40px; height: 40px; }

  .marquee-item { padding: 0 20px; font-size: 0.55rem; }
}

@media (max-width: 480px) {
  .welcome-section, #stats, #gallery, #services, #process, #testimonials, #contact, .p-section, #tattoo-styles, #tattoo-aftercare, #gift-cards, #booking-guide {
    padding: 60px 0;
  }
  
  .hero-content, .p-hero-content { padding: 110px 20px 60px !important; }
  .hero-main-title { font-size: 2.2rem; margin-bottom: 16px; }
  .section-title { font-size: 1.8rem !important; margin-bottom: 12px; }
  .why-main-title { font-size: 1.8rem !important; margin: 16px 0 0; }
  
  .hero-cta { flex-direction: column; width: 100%; gap: 12px; }
  .hero-cta .btn-gold, .hero-cta .btn-outline { width: 100%; justify-content: center; }

  .stat-number { font-size: 2.2rem; }
  
  #galleryGrid { grid-template-columns: repeat(1, 1fr); }

  .step-num { width: 64px; height: 64px; font-size: 1.4rem; margin-bottom: 16px; }
  
  .why-card-new { padding: 32px 20px 28px; }
  .service-card { padding: 28px 20px; }
  .testimonial-card { padding: 28px 20px; }
}

/* ============================================================
   PIERCING PAGE
   ============================================================ */

.page-view { animation: fadeUp 0.45s ease forwards; }

/* --- Piercing Hero --- */
.p-hero { position: relative; width: 100%; }
.p-hero-inner {
  position: relative; width: 100vw; height: 100vh; min-height: 600px;
  display: flex; align-items: center; overflow: hidden; background: var(--dark);
}
.p-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('https://www.tattoo.ee/wp-content/uploads/2024/02/tattoo-in-tallinn-estonia.jpg') center/cover no-repeat;
  opacity: 0.15;
}
.p-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(6,6,6,0.7) 0%, rgba(6,6,6,0.1) 40%, rgba(6,6,6,0.1) 60%, rgba(6,6,6,0.92) 100%),
    radial-gradient(ellipse 70% 80% at 10% 50%, rgba(221,51,51,0.18) 0%, transparent 55%);
}
.p-hero-content {
  position: relative; z-index: 10;
  max-width: 1280px; margin: 0 auto;
  padding: 160px 48px 120px; width: 100%;
}
/* .p-hero-title replaced by .hero-main-title */
.p-hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(200,200,200,0.7); line-height: 1.8; max-width: 500px;
  margin-bottom: 40px; opacity: 0; animation: fadeUp 1s 0.7s ease forwards;
}

/* Walk-in banner */
.p-walkin-banner {
  background: linear-gradient(90deg, rgba(221,51,51,0.1), rgba(221,51,51,0.05), rgba(221,51,51,0.1));
  border-top: 1px solid rgba(221,51,51,0.18);
  border-bottom: 1px solid rgba(221,51,51,0.18);
  padding: 16px 0;
}
.p-walkin-inner { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.p-walkin-icon-wrap {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(221,51,51,0.14); border: 1px solid rgba(221,51,51,0.28);
  border-radius: 0; display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 0.95rem;
}
.p-walkin-text { flex: 1; font-size: 0.88rem; color: #aaa; }
.p-walkin-text strong { color: #fff; }
.p-walkin-btn {
  flex-shrink: 0; padding: 8px 20px;
  background: var(--red); color: #fff; text-decoration: none;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 100px; transition: all 0.3s ease;
}
.p-walkin-btn:hover { background: var(--red-dark); transform: translateY(-2px); }

/* Section spacing */
.p-section { padding: 100px 0; }

/* Types grid */
.p-types-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 48px;
}
.p-type-card {
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 36px 32px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.p-type-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease;
}
.p-type-card:hover::before { transform: scaleX(1); }
.p-type-card:hover { border-color: rgba(221,51,51,0.22); background: rgba(221,51,51,0.04); transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,0.4); }
.p-type-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(221,51,51,0.14), rgba(221,51,51,0.04));
  border: 1px solid rgba(221,51,51,0.22); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--red); margin-bottom: 20px; transition: all 0.4s ease;
}
.p-type-card:hover .p-type-icon { background: rgba(221,51,51,0.2); transform: rotate(-6deg) scale(1.1); box-shadow: 0 6px 20px rgba(221,51,51,0.2); }
.p-type-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.p-type-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.p-type-list li { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; color: #999; }
.p-type-list li i { font-size: 0.42rem; color: var(--red); flex-shrink: 0; }

/* Jewellery grid */
.p-jewel-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-top: 48px;
}
.p-jewel-card {
  background: rgba(255,255,255,0.022); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 32px 28px;
  position: relative; transition: all var(--transition);
}
.p-jewel-card:hover { border-color: rgba(221,51,51,0.22); transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,0.4); }
.p-jewel-badge {
  position: absolute; top: 16px; right: 16px; padding: 4px 12px;
  background: rgba(221,51,51,0.15); border: 1px solid rgba(221,51,51,0.3); border-radius: 100px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red);
}
.p-jewel-badge--gold { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.3); color: var(--gold); }
.p-jewel-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(221,51,51,0.12), rgba(221,51,51,0.03));
  border: 1px solid rgba(221,51,51,0.2); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--red); margin-bottom: 18px;
}
.p-jewel-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.p-jewel-grade { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.p-jewel-desc { font-size: 0.84rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 16px; }
.p-jewel-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.p-jewel-tags span { padding: 3px 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 100px; font-size: 0.65rem; color: #666; letter-spacing: 0.05em; }

/* Pricing */
.p-pricing-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; max-width: 900px; margin: 0 auto;
}
.p-pricing-col-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(221,51,51,0.2);
}
.p-pricing-col-header i { font-size: 1.1rem; color: var(--red); }
.p-pricing-col-header h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.15rem; font-weight: 700; color: #fff; }
.p-price-list { display: flex; flex-direction: column; }
.p-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.92rem; color: #bbb; transition: all 0.3s ease;
}
.p-price-row:hover { padding-left: 6px; color: #fff; border-bottom-color: rgba(221,51,51,0.18); }
.p-price-val { font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; font-weight: 700; color: var(--red); flex-shrink: 0; margin-left: 16px; }
.p-price-sub { font-size: 0.75rem; color: var(--text-dim); font-style: italic; padding: 3px 0 8px; }
.p-price-note { max-width: 600px; margin: 32px auto 0; text-align: center; font-size: 0.82rem; color: var(--text-dim); font-style: italic; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); }
@media (max-width: 768px) { .p-pricing-wrap { grid-template-columns: 1fr; gap: 32px; } }

/* Healing times */
.p-healing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px; max-width: 800px; margin: 0 auto 16px;
}
.p-healing-item {
  text-align: center; padding: 20px 14px;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; transition: all 0.3s ease;
}
.p-healing-item:hover { border-color: rgba(221,51,51,0.2); background: rgba(221,51,51,0.04); }
.p-healing-icon { font-size: 1.1rem; color: var(--red); margin-bottom: 8px; }
.p-healing-loc { font-size: 0.76rem; font-weight: 600; color: #ccc; margin-bottom: 4px; }
.p-healing-time { font-family: 'Playfair Display', Georgia, serif; font-size: 0.88rem; font-weight: 700; color: var(--red); }

/* Aftercare */
.p-aftercare-head { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; font-weight: 700; margin-bottom: 20px; }
.p-aftercare-head--do { color: #22c55e; }
.p-aftercare-head--dont { color: #ef4444; }
.p-aftercare-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.p-aftercare-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; line-height: 1.65; color: #aaa; }
.p-aftercare-item i { flex-shrink: 0; font-size: 0.68rem; margin-top: 4px; }
.p-aftercare-item--do i { color: #22c55e; }
.p-aftercare-item--dont i { color: #ef4444; }
.p-aftercare-warning {
  display: flex; align-items: flex-start; gap: 16px;
  margin-top: 40px; padding: 22px 26px; border-radius: 16px;
  border: 1px solid rgba(239,68,68,0.22); background: rgba(239,68,68,0.05);
}
.p-aftercare-warning > i { flex-shrink: 0; color: #ef4444; font-size: 1.1rem; margin-top: 2px; }
.p-aftercare-warning strong { color: #ef4444; }
.p-aftercare-warning span { font-size: 0.88rem; color: #ccc; line-height: 1.7; }

/* FAQ */
.piercing-faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.piercing-faq-item { border-radius: 16px; overflow: hidden; transition: all var(--transition); }
.piercing-faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 26px; background: transparent; border: none;
  color: #fff; font-size: 0.97rem; font-weight: 600;
  font-family: inherit; cursor: pointer; text-align: left; transition: color 0.3s ease;
}
.piercing-faq-btn:hover { color: var(--red); }
.piercing-faq-btn i { color: var(--red); font-size: 0.78rem; transition: transform 0.35s ease; flex-shrink: 0; margin-left: 16px; }
.piercing-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.23,1,0.32,1); }
.piercing-faq-answer p { padding: 0 26px 20px; font-size: 0.88rem; color: #888; line-height: 1.8; }
.piercing-faq-item.open { border-color: rgba(221,51,51,0.25); box-shadow: 0 0 28px rgba(221,51,51,0.07); }

/* CTA / Booking */
.p-cta-card {
  position: relative; overflow: hidden; border-radius: 28px;
  border: 1px solid rgba(221,51,51,0.2); background: rgba(255,255,255,0.02);
  padding: 80px 48px; text-align: center; transition: all var(--transition);
}
.p-cta-card:hover { border-color: rgba(221,51,51,0.35); box-shadow: 0 32px 72px rgba(0,0,0,0.5); }
.p-cta-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(221,51,51,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.p-cta-content { position: relative; z-index: 1; }
.p-cta-info {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 28px;
  margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06);
}
.p-cta-info-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #888; }
.p-cta-info-item i { color: var(--red); font-size: 0.8rem; }

/* Piercing gallery */
#piercingGalleryGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.piercing-gallery-item { position: relative; overflow: hidden; background: var(--dark-2); aspect-ratio: 1 / 1; border-radius: 12px; cursor: pointer; }
.piercing-gallery-item img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; display: block; transition: transform 0.7s cubic-bezier(0.23,1,0.32,1), filter 0.4s ease; }
.piercing-gallery-item:hover img { transform: scale(1.07); filter: brightness(0.55) saturate(0.7); }
.piercing-gallery-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(6,6,6,0.95) 0%, rgba(6,6,6,0.25) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; opacity: 0; transform: translateY(8px); transition: all 0.4s ease;
}
.piercing-gallery-item:hover .piercing-gallery-overlay { opacity: 1; transform: translateY(0); }
.piercing-gallery-cat { font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.piercing-gallery-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; font-weight: 700; color: #fff; }
.piercing-gallery-zoom { position: absolute; top: 12px; right: 12px; z-index: 3; width: 32px; height: 32px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.7rem; opacity: 0; transform: scale(0.5); transition: all 0.3s ease; }
.piercing-gallery-item:hover .piercing-gallery-zoom { opacity: 1; transform: scale(1); }

@media (max-width: 1024px) { #piercingGalleryGrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  #piercingGalleryGrid { grid-template-columns: repeat(1, 1fr); }
  .p-hero-content { padding: 130px 24px 100px; }
  .p-cta-card { padding: 48px 24px; }
  .p-types-grid { grid-template-columns: 1fr; }
  .p-jewel-grid { grid-template-columns: 1fr; }
  .p-healing-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Language Switcher */
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.2s ease, background 0.25s ease, border-color 0.25s ease;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  cursor: pointer;
  padding: 5px 11px 5px 7px;
  white-space: nowrap;
}
.lang-flag {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}
.lang-code {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  transition: color 0.25s ease;
}
.lang-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
}
.lang-btn.active {
  opacity: 1;
  background: rgba(221,51,51,0.12);
  border-color: rgba(221,51,51,0.4);
  box-shadow: 0 0 12px rgba(221,51,51,0.15);
}
.lang-btn.active .lang-code {
  color: var(--red);
}

/* ============================================================
   Floating Socials
   ============================================================ */
.floating-socials {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 990;
}

.f-social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.f-social-btn::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212,168,83,0.8), rgba(212,168,83,0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.f-social-btn:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(20, 20, 20, 0.95);
  color: #fff;
}

.f-social-btn:hover::before {
  opacity: 1;
}

.f-facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}
.f-facebook:hover::before { opacity: 0; }

.f-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
}
.f-instagram:hover::before { opacity: 0; }

.f-telegram:hover {
  background: #0088cc;
  border-color: #0088cc;
  box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}
.f-telegram:hover::before { opacity: 0; }

/* Russian locale: reduce hero title size to prevent buttons from overflowing */
html[lang='ru'] .hero-main-title {
  font-size: clamp(1.8rem, 6vw, 5.5rem);
}
@media (max-width: 768px) {
  html[lang='ru'] .hero-main-title {
    font-size: clamp(1.6rem, 5.5vw, 2.6rem);
  }
}
@media (max-width: 480px) {
  html[lang='ru'] .hero-main-title {
    font-size: 1.8rem;
  }
}

/* Mobile adjustments combined above */
