/* ============================================
   TATTOO NG INA MO — MAMEN WORKS
   Website Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;1,400&display=swap');

/* ── ROOT ── */
:root {
  --bg:       #080808;
  --bg2:      #101010;
  --bg3:      #1A1A1A;
  --text:     #F0F0F0;
  --text2:    #888888;
  --accent:   #C0392B;
  --accent2:  #E74C3C;
  --border:   #242424;
  --nav-h:    72px;
  --max-w:    1240px;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, select, textarea { font-family: inherit; }

/* ── UTILITY ── */
.container    { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.display      { font-family: 'Bebas Neue', sans-serif; line-height: 0.92; letter-spacing: 0.02em; }
.accent-text  { color: var(--accent); }
.text-muted   { color: var(--text2); }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(8,8,8,0.96);
  border-color: var(--border);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 0.12em;
}
.nav-logo .sep { color: var(--accent); margin: 0 6px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text2);
  position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-book {
  background: var(--accent) !important; color: #fff !important;
  padding: 10px 22px; font-size: 11px !important;
}
.nav-book::after { display: none !important; }
.nav-book:hover { background: var(--accent2) !important; }

/* Hamburger */
.nav-ham { display: none; flex-direction: column; gap: 6px; padding: 4px; }
.nav-ham span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all 0.3s; }

/* Mobile Nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 150;
  background: var(--bg); padding: 100px 48px 48px;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column; gap: 24px;
  border-left: 1px solid var(--border);
}
.mobile-nav.open { transform: none; }
.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif; font-size: 52px;
  letter-spacing: 0.04em; color: var(--text2); transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--text); }
.mobile-nav .mob-book { color: var(--accent) !important; }

/* ── HERO ── */
.hero {
  height: 100vh; min-height: 640px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden; padding: 80px 48px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #120808 0%, #080808 40%, #0E0808 100%);
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.25;
  filter: grayscale(60%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(8,8,8,0.2) 55%, rgba(8,8,8,0.7) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(68px, 11vw, 148px);
  line-height: 0.88; letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.hero-title .line2 { color: var(--text2); }
.hero-sub {
  font-size: 13px; font-weight: 300; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text2);
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--accent); color: #fff;
  padding: 15px 36px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  border: 1px solid var(--border); color: var(--text2);
  padding: 15px 36px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--text2); color: var(--text); }
.hero-scroll {
  position: absolute; right: 48px; bottom: 32px; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  font-size: 9px; letter-spacing: 0.3em; color: var(--text2);
  text-transform: uppercase; writing-mode: vertical-rl;
}
.hero-scroll-line { width: 1px; height: 48px; background: var(--border); }

/* ── TICKER ── */
.ticker {
  background: var(--accent); padding: 13px 0;
  overflow: hidden; white-space: nowrap;
}
.ticker-track {
  display: inline-flex; animation: ticker-roll 22s linear infinite;
}
.ticker-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px; letter-spacing: 0.22em; color: #fff;
  padding: 0 28px; opacity: 0.85;
}
.ticker-track .dot { opacity: 0.3; padding: 0 4px; }
@keyframes ticker-roll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION BASE ── */
.section { padding: 110px 0; }
.section-sm { padding: 64px 0; }
.section-label {
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.section-label::before { content: ''; width: 22px; height: 1px; background: var(--accent); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.9; margin-bottom: 56px;
}
.section-header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
}

/* ── FEATURED WORK ── */
.featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
}
.feat-large { grid-row: span 2; }
.feat-item { position: relative; overflow: hidden; cursor: pointer; display: block; }
.feat-item .img-wrap { overflow: hidden; }
.feat-large .img-wrap { height: 680px; }
.feat-small .img-wrap { height: 337px; }
.feat-item .img-wrap img { height: 100%; transition: transform 0.7s var(--ease); }
.feat-item:hover .img-wrap img { transform: scale(1.06); }
.feat-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
  transform: translateY(8px); opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.feat-item:hover .feat-info { opacity: 1; transform: none; }
.feat-style { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.feat-name  { font-family: 'Bebas Neue', sans-serif; font-size: 26px; }

/* ── STATS ── */
.stats-section { background: var(--bg2); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.stat-box {
  padding: 52px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 72px;
  line-height: 1; color: var(--accent); margin-bottom: 8px;
}
.stat-unit { font-size: 22px; color: var(--accent); vertical-align: super; }
.stat-lbl {
  font-size: 10px; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text2);
}

/* ── STYLES SECTION ── */
.styles-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px;
}
.style-card { position: relative; overflow: hidden; cursor: pointer; display: block; }
.style-card .img-wrap { height: 480px; }
.style-card .img-wrap img { height: 100%; transition: transform 0.6s var(--ease); }
.style-card:hover .img-wrap img { transform: scale(1.07); }
.style-card-over {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 35%, rgba(0,0,0,0.15) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 22px;
  transition: background 0.4s;
}
.style-card:hover .style-card-over {
  background: linear-gradient(to top, rgba(192,57,43,0.75) 0%, rgba(0,0,0,0.4) 100%);
}
.style-idx {
  font-family: 'Bebas Neue', sans-serif; font-size: 56px;
  color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 4px;
}
.style-name { font-family: 'Bebas Neue', sans-serif; font-size: 24px; }
.style-desc { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5; margin-top: 6px; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--bg2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 88px 0; text-align: center;
}
.cta-band .display { font-size: clamp(52px, 9vw, 110px); margin-bottom: 16px; }
.cta-band .sub { font-size: 14px; color: var(--text2); letter-spacing: 0.12em; margin-bottom: 40px; }

/* ── PORTFOLIO ── */
.filter-bar { display: flex; gap: 3px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  padding: 11px 26px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--border); color: var(--text2);
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--accent); border-color: var(--accent); color: #fff;
}

.gallery-grid { columns: 3; column-gap: 3px; }
.gallery-item {
  break-inside: avoid; margin-bottom: 3px;
  position: relative; overflow: hidden; cursor: zoom-in;
  display: block;
}
.gallery-item img { width: 100%; height: auto; display: block; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-over {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.72);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-over { opacity: 1; }
.gallery-item-over .zoom-icon { font-size: 28px; }
.gallery-item-over .item-style {
  font-size: 10px; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--accent);
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 88vw; max-height: 88vh; width: auto; height: auto; object-fit: contain; }
.lb-close {
  position: absolute; top: 20px; right: 28px;
  font-size: 36px; color: var(--text2); line-height: 1;
  cursor: pointer; transition: color 0.2s;
}
.lb-close:hover { color: var(--text); }
.lb-style {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text2);
}

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 96px; align-items: start; }
.about-photo-wrap { position: relative; }
.about-photo-wrap::after {
  content: ''; position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1px solid var(--border); z-index: -1;
}
.about-photo { height: 640px; overflow: hidden; }
.about-photo img { height: 100%; transition: transform 0.7s var(--ease); }
.about-photo:hover img { transform: scale(1.03); }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 110px; height: 110px; background: var(--accent);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
}
.about-badge .yrs { font-size: 40px; line-height: 1; }
.about-badge .lbl { font-size: 9px; letter-spacing: 0.2em; opacity: 0.8; }
.about-body .display { font-size: clamp(40px, 5vw, 64px); margin-bottom: 28px; }
.about-body p { font-size: 15px; color: var(--text2); line-height: 1.85; margin-bottom: 18px; }
.about-body p strong { color: var(--text); font-weight: 500; }
.quote-block {
  margin: 36px 0; padding: 28px 32px;
  border-left: 2px solid var(--accent);
  background: var(--bg2);
}
.quote-block p {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 17px; line-height: 1.75; color: var(--text); margin: 0;
}
.quote-block cite {
  display: block; margin-top: 12px;
  font-style: normal; font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text2);
}
.skills-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.skill-tag {
  padding: 8px 18px; border: 1px solid var(--border);
  font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text2);
}

/* ── BOOKING FORM ── */
.book-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
.book-info .display { font-size: clamp(40px, 5vw, 60px); margin-bottom: 24px; }
.book-info p { font-size: 14px; color: var(--text2); line-height: 1.85; margin-bottom: 32px; }
.book-steps { list-style: none; }
.book-steps li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--border); font-size: 13px;
}
.book-steps li:last-child { border-bottom: none; }
.step-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--accent);
  line-height: 1; min-width: 28px;
}
.step-txt strong { display: block; font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.step-txt span { font-size: 12px; color: var(--text2); }

.form-card { background: var(--bg2); padding: 40px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group.wide { grid-column: span 2; }
.form-label {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--text2); margin-bottom: 10px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--bg);
  border: 1px solid var(--border); color: var(--text);
  padding: 13px 16px; font-size: 14px; transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-input::placeholder, .form-textarea::placeholder { color: #3a3a3a; }
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-select option { background: var(--bg); }
.form-textarea { height: 130px; resize: vertical; }
.checkbox-group { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.cb-item { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.cb-item input[type="checkbox"] { display: none; }
.cb-box {
  width: 16px; height: 16px; border: 1px solid var(--border);
  background: var(--bg); flex-shrink: 0; position: relative; transition: all 0.2s;
}
.cb-item input:checked ~ .cb-box { background: var(--accent); border-color: var(--accent); }
.cb-item input:checked ~ .cb-box::after {
  content: ''; position: absolute; top: 2px; left: 5px;
  width: 4px; height: 8px; border: 1px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg);
}
.cb-lbl { font-size: 13px; color: var(--text2); }
.form-submit {
  width: 100%; background: var(--accent); color: #fff;
  padding: 16px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-top: 8px; transition: background 0.2s;
}
.form-submit:hover { background: var(--accent2); }

/* ── FAQ ── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer; font-size: 15px; font-weight: 500;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-icon { font-size: 22px; color: var(--accent); transition: transform 0.3s var(--ease); }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 24px; font-size: 14px; color: var(--text2); line-height: 1.85; }
.faq-a.show { display: block; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-detail { margin-bottom: 36px; }
.contact-lbl {
  font-size: 10px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 6px;
}
.contact-val { font-size: 15px; line-height: 1.6; }
.contact-val a:hover { color: var(--accent); }
.socials { display: flex; gap: 12px; margin-top: 44px; }
.social-btn {
  width: 46px; height: 46px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: border-color 0.2s, background 0.2s, color 0.2s;
  color: var(--text2);
}
.social-btn:hover { border-color: var(--accent); background: rgba(192,57,43,0.08); color: var(--accent); }
.map-frame {
  width: 100%; height: 380px; border: 1px solid var(--border);
  overflow: hidden; margin-top: 40px;
  filter: grayscale(100%) invert(90%) contrast(0.75) brightness(0.85);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .display { font-size: 40px; margin-bottom: 14px; }
.footer-brand .tagline { font-size: 13px; color: var(--text2); line-height: 1.75; max-width: 260px; }
.footer-col h5 {
  font-size: 10px; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text2); margin-bottom: 20px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13px; color: var(--text2); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text2); }
.footer-bottom a { color: var(--accent); }

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.vis { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .about-grid    { grid-template-columns: 1fr; gap: 56px; }
  .about-photo-wrap::after { display: none; }
  .about-photo   { height: 440px; }
  .book-grid     { grid-template-columns: 1fr; gap: 56px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .styles-grid   { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: 1fr; }
  .feat-large    { grid-row: auto; }
  .feat-large .img-wrap, .feat-small .img-wrap { height: 480px; }
}
@media (max-width: 768px) {
  nav            { padding: 0 24px; }
  .nav-links     { display: none; }
  .nav-ham       { display: flex; }
  .hero          { padding: 80px 24px 48px; }
  .hero-scroll   { display: none; }
  .container     { padding: 0 24px; }
  .section       { padding: 72px 0; }
  .gallery-grid  { columns: 2; }
  .form-row      { grid-template-columns: 1fr; }
  .form-group.wide { grid-column: span 1; }
  .footer-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid  { columns: 1; }
  .styles-grid   { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr; }
}

/* ============================================
   PREMIUM LAYER — $3K QUALITY UPGRADES
   ============================================ */

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1),
              visibility 0.8s cubic-bezier(0.4,0,0.2,1);
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-eyebrow {
  font-size: 9px; font-weight: 600; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 12px;
}
.pre-eyebrow::before, .pre-eyebrow::after {
  content: ''; width: 24px; height: 1px; background: var(--accent); opacity: 0.5;
}
.pre-logo { font-size: 80px; text-align: center; line-height: 0.88; color: var(--text); }
.pre-bar-wrap {
  width: 180px; height: 1px; background: rgba(255,255,255,0.08); overflow: hidden;
}
.pre-fill {
  height: 100%; width: 0%; background: var(--accent);
  transition: width 1.4s cubic-bezier(0.4,0,0.2,1);
}

/* ── CUSTOM CURSOR — TATTOO NEEDLE ── */
/* Needle SVG: 20×56px, hotspot at needle tip (10, 54) */
body {
  cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='56' viewBox='0 0 20 56'><rect x='8' y='1' width='4' height='2.5' rx='1' fill='%23777'/><rect x='8.5' y='4.5' width='3' height='2' rx='0.5' fill='%23555'/><rect x='8' y='7.5' width='4' height='2.5' rx='1' fill='%23777'/><rect x='8.5' y='11' width='3' height='2' rx='0.5' fill='%23555'/><rect x='8' y='14' width='4' height='2.5' rx='1' fill='%23777'/><rect x='9.2' y='18' width='1.6' height='28' fill='%23B8B8B8'/><rect x='9.6' y='18' width='0.8' height='28' fill='%23E0E0E0' opacity='0.4'/><polygon points='9.2,46 10.8,46 10,54' fill='%23D0D0D0'/><circle cx='10' cy='54' r='1.4' fill='%23C0392B'/></svg>") 10 54, crosshair !important;
}
a, button, .gallery-item, .style-card, .feat-item, .filter-btn, .faq-q, .style-index-item, .si-cta {
  cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='56' viewBox='0 0 20 56'><rect x='8' y='1' width='4' height='2.5' rx='1' fill='%23777'/><rect x='8.5' y='4.5' width='3' height='2' rx='0.5' fill='%23555'/><rect x='8' y='7.5' width='4' height='2.5' rx='1' fill='%23777'/><rect x='8.5' y='11' width='3' height='2' rx='0.5' fill='%23555'/><rect x='8' y='14' width='4' height='2.5' rx='1' fill='%23777'/><rect x='9.2' y='18' width='1.6' height='28' fill='%23B8B8B8'/><rect x='9.6' y='18' width='0.8' height='28' fill='%23E0E0E0' opacity='0.4'/><polygon points='9.2,46 10.8,46 10,54' fill='%23D0D0D0'/><circle cx='10' cy='54' r='1.4' fill='%23E74C3C'/></svg>") 10 54, pointer !important;
}
/* Ink drop trail dots */
#cursor-dot { display: none; } /* needle is the cursor — dot not needed */
.cursor-trail-dot {
  position: fixed; z-index: 99998;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.5;
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}
.cursor-trail-dot.fade {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.05);
}
@media (pointer: coarse) {
  body, a, button { cursor: auto !important; }
  .cursor-trail-dot { display: none !important; }
}

/* ── GRAIN OVERLAY ── */
.grain {
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  animation: grain-shift 0.5s steps(1) infinite;
}
@keyframes grain-shift {
  0%   { background-position: 0 0; }
  10%  { background-position: -5% -10%; }
  20%  { background-position: -15% 5%; }
  30%  { background-position: 7% -25%; }
  40%  { background-position: -5% 25%; }
  50%  { background-position: -15% 10%; }
  60%  { background-position: 15% 0%; }
  70%  { background-position: 0% 15%; }
  80%  { background-position: 3% 35%; }
  90%  { background-position: -10% 10%; }
  100% { background-position: 0 0; }
}

/* ── HERO PARALLAX ── */
.hero-bg-img { will-change: transform; }

/* ── CHAR ANIMATION ── */
.hero-title .char {
  display: inline-block;
  animation: char-in 0.6s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes char-in {
  from { opacity: 0; transform: translateY(0.35em) skewY(4deg); }
  to   { opacity: 1; transform: none; }
}
.hero-title .br-spacer { display: block; height: 0; }
.hero-title .word { display: inline-block; overflow: hidden; }
body:not(.loaded) .hero-title { opacity: 0; }
body.loaded .hero-title { opacity: 1; transition: opacity 0s; }

/* ── SPLIT LINE REVEAL (section titles) ── */
.split-line { overflow: hidden; display: block; }
.split-line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.4,0,0.2,1);
}
.split-line.vis .split-line-inner { transform: none; }

/* ── ENHANCED REVEALS ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.4,0,0.2,1),
              transform 0.85s cubic-bezier(0.4,0,0.2,1);
}
.reveal.vis { opacity: 1; transform: none; }

/* ── IMAGE LOAD SHIMMER ── */
img {
  background: var(--bg2);
}
img.loaded { background: none; }

/* ── NAV REFINEMENT ── */
nav { transition: background 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s; }
nav.scrolled { box-shadow: 0 1px 0 var(--border); }

/* ── PREMIUM STAT NUMBERS ── */
.stat-num { font-feature-settings: "tnum"; }

/* ── FOOTER HOVER LINE ── */
.footer-col a {
  position: relative; display: inline-block;
}
.footer-col a::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0%; height: 1px; background: var(--accent);
  transition: width 0.3s var(--ease);
}
.footer-col a:hover::after { width: 100%; }

/* ── STYLES INDEX — CARD REDESIGN ── */
.styles-index-section { padding: 88px 0; background: var(--bg); border-top: 1px solid var(--border); }
.styles-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 48px;
}

.style-index-item {
  display: flex; flex-direction: column;
  background: var(--bg2);
  border: 1px solid var(--border);
  overflow: hidden; position: relative;
  transition: border-color 0.3s var(--ease);
}
.style-index-item:hover { border-color: rgba(192,57,43,0.5); }
.style-index-item.best { border-color: rgba(192,57,43,0.25); }
.style-index-item.best:hover { border-color: var(--accent); }

/* Red top bar on signature styles */
.style-index-item.best::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--accent); z-index: 2;
}

/* Image */
.si-img-wrap {
  height: 180px; overflow: hidden; position: relative; flex-shrink: 0;
}
.style-index-item.best .si-img-wrap { height: 220px; }
.si-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(50%) contrast(1.08) brightness(0.85);
  transition: transform 0.65s var(--ease), filter 0.5s;
}
.style-index-item:hover .si-img-wrap img {
  transform: scale(1.07);
  filter: grayscale(10%) contrast(1.1) brightness(0.9);
}
.si-img-over {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.75) 0%, transparent 65%);
}

/* Content area */
.si-content {
  padding: 20px 22px 22px;
  display: flex; flex-direction: column; flex: 1;
}
.si-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 11px;
  color: var(--accent); letter-spacing: 0.25em; margin-bottom: 5px;
}
.si-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 22px;
  line-height: 1.1; color: var(--text); margin-bottom: 8px;
}
.si-desc {
  font-size: 12px; color: var(--text2); line-height: 1.75;
  flex: 1; margin-bottom: 14px;
}
.si-badge {
  font-size: 9px; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; padding: 4px 10px;
  border: 1px solid; display: inline-block;
  margin-bottom: 14px; align-self: flex-start;
  color: var(--accent); border-color: var(--accent);
}
.style-index-item.best .si-badge {
  background: var(--accent); color: #fff;
}

/* CTA Button */
.si-cta {
  display: block; text-align: center;
  padding: 11px 18px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--text2);
  background: transparent;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  margin-top: auto;
}
.si-cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.style-index-item.best .si-cta { background: var(--accent); border-color: var(--accent); color: #fff; }
.style-index-item.best .si-cta:hover { background: var(--accent2); border-color: var(--accent2); }

/* Preloader logo */
.pre-logo-img {
  width: 180px; height: 180px; object-fit: contain;
  animation: logo-pulse 2.2s ease-in-out infinite;
  display: block;
}
@keyframes logo-pulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(192,57,43,0.35)); transform: scale(1); }
  50%       { filter: drop-shadow(0 0 40px rgba(192,57,43,0.65)); transform: scale(1.04); }
}

@media (max-width: 1100px) { .styles-index-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .styles-index-grid { grid-template-columns: 1fr; } }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); }

/* ── SELECTION ── */
::selection { background: var(--accent); color: #fff; }

/* ── RESPONSIVE: hide cursor on touch ── */
@media (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none !important; }
  body { cursor: auto !important; }
}
