
:root{
  --bg:#0a0a0a;
  --panel:#0e0e0e;
  --paper:#f7f7f5;
  --ink:#111111;
  --text:#e9e9e9;
  --muted:#a3a3a3;
  --accent:#e6cb30;  
  --accent-2:#8b7f11;
  --border:#1f1f1f;
  --radius:18px;
  --container:1180px;
}

/* ✅ Modern Preloader */
body.is-loading{ overflow:hidden; }

.pl{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;

  background:
    radial-gradient(900px 520px at 20% 10%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(700px 420px at 80% 20%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, #070a12 0%, #04060b 100%);
}

.pl__card{
  width: min(420px, 88vw);
  padding: 22px 18px 18px;
  border-radius: 24px;
  text-align: center;

  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 90px rgba(0,0,0,.55);
  backdrop-filter: blur(14px);

  position: relative;
  overflow: hidden;
}

/* top shimmer */
.pl__card::before{
  content:"";
  position:absolute;
  inset:-40% -50%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transform: rotate(18deg);
  animation: plShine 1.8s linear infinite;
  pointer-events:none;
}

@keyframes plShine{
  0%{ transform: translateX(-30%) rotate(18deg); opacity:.2; }
  50%{ opacity:.35; }
  100%{ transform: translateX(30%) rotate(18deg); opacity:.2; }
}

/* ring */
.pl__ring{
  width: 74px;
  height: 74px;
  border-radius: 999px;
  margin: 6px auto 14px;

  border: 3px solid rgba(255,255,255,.10);
  border-top-color: rgba(255,255,255,.75);
  border-right-color: rgba(255,255,255,.25);
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  animation: plSpin 1.0s linear infinite;
}

@keyframes plSpin{
  to{ transform: rotate(360deg); }
}

/* brand row */
.pl__brand{
  display:flex;
  gap: 12px;
  align-items:center;
  justify-content:center;
  margin-bottom: 10px;
}

.pl__logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.55));
}

.pl__text{ text-align:left; }

.pl__name{
  font-weight: 900;
  letter-spacing: .16em;
  font-size: 14px;
  color: #fff;
  line-height: 1.1;
}

.pl__tag{
  margin-top: 4px;
  font-size: 12px;
  color: rgba(231,233,238,.72);
}

/* dots */
.pl__dots{
  display:flex;
  justify-content:center;
  gap: 8px;
  margin: 10px 0 8px;
}

.pl__dots span{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  opacity: .25;
  animation: plDots 1.1s ease-in-out infinite;
}

.pl__dots span:nth-child(2){ animation-delay: .12s; }
.pl__dots span:nth-child(3){ animation-delay: .24s; }

@keyframes plDots{
  0%, 100%{ transform: translateY(0); opacity: .25; }
  50%{ transform: translateY(-6px); opacity: .85; }
}

.pl__hint{
  font-size: 12.5px;
  color: rgba(231,233,238,.70);
}

/* hide state */
.pl.pl--hide{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .5s ease, visibility .5s ease;
}

/* Reset / Base */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:#fff;
  color:#111;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.55;
}
img{display:block; width:100%; height:auto}
a{color:inherit; text-decoration:none}
.container{max-width:var(--container); margin:0 auto; padding:0 20px}

/* Utilities */
.section-dark{background:var(--ink); color:var(--text)}
.muted{color:var(--muted)}
.label{letter-spacing:.25em; font-weight:700; font-size:.78rem}

/* Topbar / Nav */
/* ===== Modern Navbar ===== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(0,0,0,.06);
  backdrop-filter: blur(10px);
  transition: box-shadow .2s ease, background .2s ease;
}

.topbar.scrolled{
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  background: rgba(255,255,255,.86);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  min-height: 70px;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color:#111;
}
.brand-logo{
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand-name{
  font-weight: 900;
  letter-spacing: .06em;
  font-size: 15px;
}
.brand-sub{
  margin-top: 4px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
}

/* Desktop nav */
.nav-desktop{
  display:flex;
  align-items:center;
  gap: 18px;
}
.nav-link{
  font-weight: 800;
  color:#111;
  position: relative;
  padding: 10px 2px;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom: 6px;
  width:0%;
  height:2px;
  background: var(--accent);
  transition: width .2s ease;
}
.nav-link:hover::after{ width:100%; }
.nav-cta{ margin-left: 4px; }

/* Mobile toggle */
.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 12px;
  background:#fff;
  position:relative;
  cursor:pointer;
}
.nav-toggle span{
  position:absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background:#111;
  transition: .2s ease;
}
.nav-toggle span:nth-child(1){ top: 14px; }
.nav-toggle span:nth-child(2){ top: 21px; }
.nav-toggle span:nth-child(3){ top: 28px; }

/* animated to X */
.nav-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity: 0; }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.mobile-nav.open{
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-card{
  position:absolute;
  right: 14px;
  top: 14px;
  width: min(380px, calc(100% - 28px));
  border-radius: 18px;
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 22px 70px rgba(0,0,0,.25);
  overflow:hidden;
  transform: translateY(-10px);
  transition: transform .2s ease;
}
.mobile-nav.open .mobile-nav-card{ transform: translateY(0); }

.mobile-nav-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.mobile-title{
  font-weight: 900;
  letter-spacing:.06em;
}
.mobile-close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background:#fff;
  cursor:pointer;
}
.mobile-close i{ font-size: 20px; }

.mobile-links{
  padding: 12px 14px 16px;
  display:grid;
  gap: 10px;
}
.m-link{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.06);
  background: #f7f7f7;
  font-weight: 800;
}
.m-link:active{ transform: scale(.99); }

.nav-mobile-cta{
  width: 100%;
  text-align:center;
}

/* Responsive */
@media (max-width: 980px){
  .nav-desktop{ display:none; }
  .nav-toggle{ display:block; }
  .brand-sub{ display:none; } /* optional */
}
.btn, .btn-sm, .btn-lg{
  display:inline-block; border:2px solid #000; padding:5px 14px; border-radius:999px;
  background:#000; color:#fff; font-weight:700; transition:.2s transform;
  position:relative; overflow:hidden; align-items: center; text-align:center;           
}
.btn:hover{transform:translateY(-1px)}
.btn-sm{padding:6px 12px; font-size:.9rem}
.btn-lg{padding:14px 18px; font-size:1.05rem}
.link{font-weight:700; border-bottom:2px solid #111}



/* Headings */
.mega{
  font-family:'Bebas Neue', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size:clamp(48px, 9vw, 138px);
  line-height:.85;
  letter-spacing:.0125em;
  margin:0 0 12px 0;
  text-transform:uppercase;
}
.mega .line { display:block; }

.mega .ink {
  display:inline-block;       
  white-space:nowrap;       
}

.mega { line-height: .85; }

.h1{
  font-family:'Bebas Neue', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size:clamp(36px, 7vw, 88px);
  line-height:.9;
  text-transform:uppercase;
  margin:0 0 14px 0;
}
.display{
  font-family:'Bebas Neue', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size:clamp(42px,8vw,110px);
  line-height:.9;
  margin:0 0 6px;
  text-transform:uppercase;
}
.outline{
  -webkit-text-stroke: 2px #111;
  color:transparent;
}

/* HERO */
.hero{padding:80px 0 40px}
.hero-grid{
  display:grid; grid-template-columns: 1.1fr .9fr; gap:30px; align-items:end;
}
.hero-media{
  display:grid; grid-template-columns:1fr 1fr; gap:20px;
  perspective:1000px;                                  /* for tilt */
}
.media-tile{position:relative; overflow:hidden; border-radius:14px; transform-style: preserve-3d;}
.media-tile img{height:100%; aspect-ratio:1/1.25; object-fit:cover; filter:grayscale(100%) contrast(1.15); transition: transform .5s ease, filter .35s ease;}
.accent-box, .accent-box.alt{
  position:absolute; width:70px; height:70px; background:var(--accent); bottom:16px; right:16px; opacity:.9;
  will-change: transform;                               /* parallax */
  border-radius:8px;
}
.accent-box.alt{top:16px; left:16px; bottom:auto; right:auto; background:transparent; border:3px solid var(--accent)}

.hero-copy{padding-bottom:18px}
.hero.section-dark{background:#111; color:#fff}
.hero .btn-lg{background:#e6cb30; border-color:#c8c100 }
.hero .btn-lg:hover{transform:translateY(-2px)}

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
  margin-top: 16px;
}

.btn-whatsapp{
  display:inline-flex;
  align-items:center;
  gap: 10px;
}

.btn-whatsapp i{
  font-size: 18px;
  align-items: center;
  text-align: center;
}

/* optional ghost style if you don’t already have */
.btn-ghost{
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.25) !important;
  color: #fff !important;
}

/* FEATURE */
/* SECTION BASE */
.tattoo-ideas {
  background: #fff;
  padding: 80px 20px;
  color: #111;
}

.ideas-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Left side images */
.ideas-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.idea-img img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  transition: transform .3s ease, box-shadow .3s ease;
}

.idea-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Right side text */
.ideas-text .label {
  font-size: 14px;
  letter-spacing: 3px;
  color: #222222;
  margin-bottom: 12px;
  display: block;
}

.ideas-text .title {
  font-family:'Bebas Neue', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size:clamp(60px, 12vw, 140px);
  line-height:.88;
  text-transform:uppercase;
  margin:8px 0 24px;
}

.ideas-text .highlight {
  color: #e6cb30;
}

.ideas-text .desc {
  font-size: 18px;
  color: #9e9c9c;
  max-width: 450px;
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 900px) {
  .ideas-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ideas-images {
    grid-template-columns: 1fr;
  }
  .ideas-text .desc {
    margin: 0 auto 30px;
  }
}

/* Category Strip */
.category-strip {
  background: #000;
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
}

.categories {
  display: inline-flex;
  gap: 60px;
  animation: scroll 20s linear infinite;
}

.categories span {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.categories span:hover {
  color: #f4eb3f;
  transform: scale(1.2);
}

/* Auto scrolling animation */
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Gallery  */
.tattoo-title {
  font-family: 'Arial Black', 'Impact', sans-serif;
  font-size: clamp(4rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 2px;
  margin-top: 3px;
  text-align: center;
}

/* Optional subtitle under title */
.tattoo-subtitle {
  font-size: 1rem;
  color: #6c757d;
  text-align: center;
}

.carousel-section {
  padding: 60px 0;
  background: #000000;
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

.carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar { display: none; }

.carousel-item {
  min-width: 300px;
  min-height: 300px;
  flex: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.carousel-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.carousel-btn:hover { background: rgba(0,0,0,0.8); }
.prev { left: 10px; }
.next { right: 10px; }

/* Explore Button */
.btn-explore {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #111, #444);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-explore:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(245, 244, 244, 0.4);
}

.text-center { text-align: center; }

/* clearer text box */
.gallery-social-note{
  display: inline-block;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 14px;

  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);

  color: #ffffff;
  line-height: 1.4;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}

/* link style */
.gallery-social-note a{
  color: #9ad7ff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed rgba(154,215,255,.6);
}
.gallery-social-note a:hover{
  border-bottom-style: solid;
}

/* buttons */
.gallery-social-links{
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 11px 16px;
  border-radius: 999px;
  margin-bottom: 15px;

  color: #fff;
  text-decoration: none;
  font-weight: 700;

  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 10px 26px rgba(0,0,0,.45);

  transition: transform .15s ease, background .15s ease;
}

.social-btn:hover{
  background: rgba(255,255,255,.18);
  transform: translateY(-1px);
}

.social-btn:focus-visible{
  outline: 3px solid rgba(154,215,255,.35);
  outline-offset: 3px;
}


/* PIERCING */
.piercing-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:34px;
  align-items:center;
}

/* PIERCING — text + two stacked photos */
.piercing-grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items:start;
}

/* Big headline like the mock */
.piercing .h1{
  font-family:'Bebas Neue', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size:clamp(60px, 12vw, 140px);
  line-height:.88;
  text-transform:uppercase;
  margin:8px 0 24px;
}

/* Bullets & button */
.ticks{list-style:disc; padding-left:1.2rem; margin:0 0 24px}
.ticks li{margin:.6rem 0; font-size:clamp(16px,1.2vw,20px); color:#222}
.piercing .actions .btn{border-radius:999px; padding:14px 22px}

/* Right column: two large photos stacked */
.piercing-media{
  justify-self:end;
  width: clamp(320px, 38vw, 560px);
}
.piercing-media .stack{
  display:grid;
  grid-template-columns:1fr;
  gap: clamp(16px, 2.1vw, 28px);
}
.piercing-media img{
  width:90%;
  aspect-ratio: 4 / 5;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

/* Responsive */
@media (max-width:1100px){
  .piercing-grid{grid-template-columns:1fr}
  .piercing-media{justify-self:center; width:min(560px,100%)}
}

/* ============== ABOUT — ALT DESIGN ============== */
.about-alt { 
  padding:72px 0; 
  background:#fff; 
}

.about-wrap {
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(24px, 5vw, 72px);
  align-items:start;
}

/* Copy side */
.about-alt .tight { line-height:.9; }
.about-alt .lead { color:#222; }
.about-alt .about-list { margin:14px 0 8px; padding-left:1.2rem; }
.about-alt .about-list li { margin:.45rem 0; }
.about-stats.alt {
  display:flex; gap: clamp(16px, 3vw, 36px);
  margin: 18px 0 12px;
}
.about-stats.alt .num {
  font-family:'Bebas Neue', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: clamp(28px, 5vw, 54px);
  line-height:.9;
}
.about-stats.alt .meta { 
  color:#666; 
  font-weight:600; 
  letter-spacing:.02em; 
}

/* Collage */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.about-gallery img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: transform .3s ease;
}

.about-gallery img:hover { transform: scale(1.05); }
.about-gallery .video-wrapper:hover { transform: scale(1.05); }

/* Force video to vertical ratio */
.video-wrapper { aspect-ratio: 12 / 16; }
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .about-gallery { grid-template-columns: 1fr 1fr; }
}

/* Accent badge inside hero shot */
.est-badge {
  position:absolute; left:12px; top:12px;
  background:var(--accent,#30e6cf); 
  color:#001814; 
  font-weight:900;
  padding:6px 10px; 
  border-radius:10px; 
  letter-spacing:.05em; 
  font-size:.72rem;
}

/* Floating card */
.float-card {
  position:absolute; 
  right:-10px; bottom:-10px;
  background:#111; color:#fff; 
  border-radius:10px; padding:5px 12px;
  box-shadow:0 14px 34px rgba(0,0,0,.18);
}
.float-card strong { display:block; font-weight:900; letter-spacing:.02em; }
.float-card span { opacity:.8; font-size:.9rem; }

/* Reveal animation compatibility */
.about-alt [data-animate]{ opacity:0; transform:translateY(18px); transition:.6s ease; }
.about-alt [data-animate].in{ opacity:1; transform:none; }

/* Responsive */
@media (max-width:1100px){
  .about-wrap{ grid-template-columns:1fr; }
  .about-gallery{ justify-self:center; width:min(560px,100%); }
}

/* Responsive gap adjustments */
@media (max-width:992px){ .about-gallery{ gap: 6px; } }
@media (max-width:576px){ .about-gallery{ gap: 4px; } }

/* ===============================
   REVIEWS (UPDATED)
   - Mobile rating summary aligns like desktop
   - Mobile reviews become swipe/slide
=================================*/
.reviews{ padding:60px 0; background:#f6f6f6; }
.reviews-head .h1{ margin-bottom:6px; }

.rating-wrap{
  display:grid;
  gap:20px;
  grid-template-columns: 1.1fr .9fr; /* summary / controls */
  align-items:start;
  margin: 8px 0 10px;
}
@media (max-width:900px){
  .rating-wrap{ grid-template-columns:1fr; }
}

/* Summary box */
.rating-summary{
  display:grid;
  grid-template-columns: 220px 1fr;   /* avg | dist */
  gap:18px;
  align-items:center;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:16px;
  box-shadow:0 10px 30px rgba(2,6,23,.06);
}

/* LEFT (avg) */
.avg{
  text-align:left;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
}
.avg-num{
  font-family:'Bebas Neue', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height:.9;
}
.avg-stars{
  display:flex;
  gap:4px;
  margin-top: 6px;
}
.avg-stars i{ font-size:22px; color: var(--accent); }
.avg-count{ color:#6b7280; font-weight:600; margin-top:6px; }

/* RIGHT (dist) */
.dist{ width:100%; }
.dist .row{
  display:grid;
  grid-template-columns: 34px 1fr 30px; /* 5★ | bar | num */
  align-items:center;
  gap:10px;
  margin:6px 0;
}
.dist .label{
  font-weight:800;
  color:#111;
  white-space:nowrap;
}
.dist .num{
  text-align:right;
  font-weight:700;
  color:#111;
}
.dist .bar{
  height:8px;
  background:#e5e7eb;
  border-radius:99px;
  overflow:hidden;
}
.dist .fill{
  height:100%;
  background:var(--accent);
  width:0%;
  transition: width .6s ease;
}

/* Mobile: keep side-by-side, just tighter */
@media (max-width:600px){
  .rating-summary{
    grid-template-columns: 150px 1fr;
    gap:14px;
    padding:14px;
  }
  .avg-num{ font-size: 56px; }
  .avg-stars i{ font-size: 18px; }
  .dist .row{ grid-template-columns: 28px 1fr 24px; gap:8px; }
}

/* Filters + button */
.rating-actions{
  display:flex; gap:12px; align-items:center; justify-content:space-between;
  flex-wrap:wrap;
}
.filters{ display:flex; gap:8px; flex-wrap:wrap; }
.chip{
  display:inline-flex; align-items:center; gap:6px; border:1px solid #e5e7eb;
  border-radius:999px; padding:8px 12px; background:#fff; font-weight:800; cursor:pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.chip:hover{ transform: translateY(-1px); }
.chip.active{ background: var(--accent); border-color: var(--accent); color:#001814; }

/* Reviews grid (desktop/tablet) */
.review-grid{
  margin-top:14px;
  display:grid;
  gap:16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width:1100px){
  .review-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}

/* Mobile = swipe/slide */
@media (max-width:600px){
  .review-grid{
    display:flex;
    gap:14px;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x mandatory;
    scroll-padding-left:14px;
    padding: 6px 14px 14px;
    margin: 0 -14px;
  }
  .review-grid::-webkit-scrollbar{ height:0; }
  .review-grid > *{
    flex: 0 0 88%;
    scroll-snap-align:start;
    scroll-snap-stop:always;
  }
}

/* Cards */
.review-card{
  background:#fff; border:1px solid #e5e7eb; border-radius:16px;
  padding:16px; box-shadow:0 10px 30px rgba(2,6,23,.06);
  transition: transform .25s ease;
}
.review-card:hover{ transform: translateY(-3px); }

.r-head{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.r-author{ font-weight:900; letter-spacing:.02em; }
.r-rating i{ color: var(--accent); font-size: 18px; }
.r-text{ margin:.6rem 0 .4rem; color:#111; }
.r-meta{ color:#6b7280; font-weight:600; font-size:.92rem; }

/* Dialog */
.review-dialog{
  border:none; padding:0; border-radius:16px; width:min(520px, 92vw);
  box-shadow: 0 25px 70px rgba(0,0,0,.35);
}
.review-dialog::backdrop{ background: rgba(0,0,0,.5); }
.review-form{ display:grid; gap:12px; padding:18px; }
.review-form h3{ margin:0; font-size:1.4rem; }
.review-form label{ display:grid; gap:6px; font-weight:700; }
.review-form input, .review-form textarea{
  border:1px solid #e5e7eb; border-radius:12px; padding:10px 12px; font:inherit;
}
.review-form textarea{ resize:vertical; }
.review-form .row{ display:flex; gap:10px; align-items:center; }
.btn-ghost{ border:2px solid #111; background:transparent; color:#111; }

/* Stars input */
.stars-input{ display:flex; gap:4px; }
.stars-input button{
  width:34px; height:34px; display:grid; place-items:center; border-radius:8px;
  border:1px solid #e5e7eb; background:#fff; cursor:pointer;
}
.stars-input i{ font-size:20px; color:#888; }
.stars-input button.active i,
.stars-input button:hover i{ color: var(--accent); }

/* Utils */
.center{ text-align:center; margin-top:10px; }

/* Optional image blur-up used elsewhere */
.lazyfx{ filter: blur(8px) saturate(.9); transform: scale(1.01); }

/* ================================
   CONTACT (Light)
=================================*/
.contact-section{
  background:#f8fafc;
  padding:60px 0;
  color:#0f172a;
}

.contact-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(20px, 4vw, 48px);
  align-items:start;
}

/* Left panel (form) */
.contact-panel{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding: clamp(16px, 2.4vw, 24px);
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
}
.contact-panel h2{
  font-size: clamp(30px, 5vw, 40px);
  margin: 4px 0 6px;
}
.contact-panel .muted{ color:#6b7280; }

/* Form */
.contact-form{ display:grid; gap:14px; }
.contact-form label{ display:grid; gap:6px; font-weight:600; }

.contact-section .grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:12px 14px;
  font:inherit;
  color:#0f172a;
  outline:none;
  transition:border-color .15s, box-shadow .15s, background-color .15s;
}
.contact-form textarea{ resize:vertical; }

.contact-form input::placeholder,
.contact-form textarea::placeholder{ color:#9ca3af; }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
  border-color: var(--accent, #30e6cf);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent, #30e6cf) 30%, transparent);
  background:#ffffff;
}

/* Buttons / actions */
.contact-form .actions{ margin-top: 8px; }
.contact-section .btn{
  display:inline-flex; align-items:center; gap:8px;
  border-radius:999px;
  padding:10px 15px;
  font-weight:800;
  background: var(--accent, #30e6cf);
  border: 2px solid var(--accent, #30e6cf);
  color:#001814;
  transition: transform .15s, filter .15s;
}
.contact-section .btn:hover{ transform: translateY(-1px); filter: brightness(.95); }

/* Notes / status */
.form-note{ margin-top:8px; }
.form-status{
  margin-top:5px;
  padding:8px 10px;
  border-radius:12px;
  background:#eff6ff;
  color:#0c4a6e;
  border:1px solid #dbeafe;
}
.form-status.ok{
  background:#ecfdf5; color:#065f46; border-color:#d1fae5;
}
.form-status.err{
  background:#fef2f2; color:#7f1d1d; border-color:#fee2e2;
}

/* Right panel (map) */
.map-panel iframe{
  width:100%;
  min-height: 420px;
  border:2rem;
  border-radius:16px;
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
  background:#fff;
}

/* Responsive */
@media (max-width:1100px){
  .contact-grid{ grid-template-columns: 1fr; }
  .map-panel iframe{ min-height: 360px; }
}
@media (max-width:640px){
  .contact-section .grid-2{ grid-template-columns: 1fr; }
  .map-panel iframe{ min-height: 320px; }
}

/* ===== Modern Footer ===== */
.ft{
  position: relative;
  margin-top: 70px;
  color: #e7e9ee;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(255,255,255,.07), transparent 60%),
              radial-gradient(900px 500px at 80% 10%, rgba(255,255,255,.05), transparent 60%),
              linear-gradient(180deg, #070a12 0%, #04060b 100%);
  overflow: hidden;
}

.ft::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  opacity: .7;
}

.ft__top{ padding: 54px 0 28px; }

.ft__grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.ft__brand{
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
}

.ft__logo{
  display:flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.ft__logoImg{
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

.ft__logoText{
  display:flex;
  flex-direction: column;
  line-height: 1.05;
}

.ft__name{
  font-weight: 900;
  letter-spacing: .16em;
  font-size: 14px;
}

.ft__tag{
  margin-top: 4px;
  font-size: 12px;
  color: rgba(231,233,238,.75);
}

.ft__desc{
  margin: 14px 0 14px;
  color: rgba(231,233,238,.80);
  font-size: 13.5px;
  line-height: 1.55;
}

.ft__chips{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ft__chip{
  display:inline-flex;
  gap: 8px;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12.5px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(231,233,238,.85);
}

.ft__chip i{ font-size: 15px; opacity: .9; }

.ft__col{
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
}

.ft__title{
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(231,233,238,.92);
}

.ft__link{
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 10px 10px;
  border-radius: 14px;
  text-decoration:none;
  color: rgba(231,233,238,.86);
  border: 1px solid transparent;
  transition: .2s ease;
  background: rgba(255,255,255,.02);
  margin-bottom: 10px;
}

.ft__link i{ font-size: 18px; opacity: .9; }

.ft__link:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: #fff;
}

.ft__social{
  display:flex;
  gap: 10px;
  margin: 6px 0 14px;
}

.ft__socialBtn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  text-decoration:none;
  color: #fff;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: .2s ease;
}

.ft__socialBtn i{ font-size: 20px; }

.ft__socialBtn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.14);
}

.ft__cta{
  margin-top: 10px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.ft__ctaText{
  margin: 0 0 10px;
  color: rgba(231,233,238,.85);
  font-size: 13px;
}

.ft__btn{
  display:inline-flex;
  gap: 10px;
  align-items:center;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration:none;
  color:#0b0f16;
  font-weight: 800;
  background: linear-gradient(180deg, #ffffff 0%, #dfe6ff 100%);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transition: .2s ease;
}

.ft__btn:hover{ transform: translateY(-2px); }

.ft__bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
}

.ft__bottomRow{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.ft__copy{
  margin: 0;
  color: rgba(231,233,238,.70);
  font-size: 13px;
}

.ft__bottomRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.ft__credit{
  margin:0;
  opacity:.9;
  font-size:.95rem;
}

.ft__credit a{
  color:#fff;
  font-weight:700;
  text-decoration:none;
  border-bottom:1px dashed rgba(255,255,255,.45);
}

.ft__credit a:hover{
  border-bottom-style:solid;
}


/* Responsive */
@media (max-width: 900px){
  .ft__grid{ grid-template-columns: 1fr; }
  .ft__brand, .ft__col{ padding: 16px; }
}

/* Reveal Animations */
[data-animate]{opacity:0; transform:translateY(18px); transition:.6s ease}
[data-animate].in{opacity:1; transform:none}

/* Button ripple */
.btn .ripple{
  position:absolute; border-radius:50%; transform:scale(0);
  background:rgba(255,255,255,.5); animation:ripple .6s ease-out forwards;
  pointer-events:none;
}
@keyframes ripple{
  to{ transform:scale(12); opacity:0; }
}

/* Scroll progress bar (auto injected) */
#scrollProgress{
  position:fixed; left:0; top:0; height:3px; width:0;
  background:linear-gradient(90deg, var(--accent), #fff0);
  z-index:1001; transition:width .1s linear;
}

/* Back-to-top button */
.to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--accent, #30e6cf);
  color: #001814;
  border: 2px solid var(--accent, #30e6cf);
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
  z-index: 1000;
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, filter .2s ease;
}
.to-top.show{ opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover{ filter: brightness(.95); transform: translateY(-2px); }
.to-top i{ font-size: 22px; line-height: 1; }

/* Smooth scroll */
html{ scroll-behavior: smooth; }

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important}
}

/* Responsive */
@media (max-width: 1100px){
  .hero-grid{grid-template-columns:1fr; align-items:center}
  .feature-grid{grid-template-columns:1fr;}
  .artists-grid{grid-template-columns:1fr}
  .booking-grid{grid-template-columns:1fr}
  .piercing-grid{grid-template-columns:1fr}
}
@media (max-width:900px){
  .gallery-grid{grid-template-columns: repeat(3, 1fr)}
  .grid-2{grid-template-columns:1fr}
}
@media (max-width:640px){
  .gallery-grid{grid-template-columns: repeat(2, 1fr)}
  .topbar .topbar-left{display:none}
  .btn, .btn-sm, .btn-lg{width:100%; text-align:center}
}

/* default (desktop): keep 2 lines */
#heroTitle .line{ display:block; }

/* ✅ mobile: force ONE ROW */
@media (max-width: 576px){
  #heroTitle{
    white-space: nowrap;
    font-size: clamp(28px, 9vw, 44px);
    line-height: 1.05;
  }

  #heroTitle .line{ display: inline; }

  /* spacing between "A TOUCH" and "OF INK" */
  #heroTitle .line + .line{ margin-left: .25em; }
}

/* ✅ HERO mobile center + smaller buttons */
@media (max-width: 576px){
  .hero-copy{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-copy .muted{
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
  }

  .hero-actions .btn{
    width: min(320px, 92%);
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 999px;
  }

  .hero-actions .btn.btn-lg{
    padding: 12px 16px;
    font-size: 14px;
  }

  .btn-whatsapp i{
    font-size: 16px;
    align-items: center;
  }
}


#preloader.pl--hide, #preloader.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}

