@font-face { font-family: "Abhaya Libre"; src: url("../vendor/fonts/abhaya-libre.woff2") format("woff2"); font-weight: 500 800; font-style: normal; font-display: swap; }

:root {
  --bg: #000;
  --fg: oklch(0.95 0.01 20);
  --card: oklch(0.08 0.02 20);
  --muted: oklch(0.95 0.01 20);
  --border: oklch(0.22 0.05 20);
  --pink: oklch(0.72 0.32 350);
  --blue: oklch(0.62 0.26 255);
  --font-display: "Abhaya Libre", Georgia, serif;
  --font-body: "Abhaya Libre", Georgia, serif;
  --font-script: "Abhaya Libre", Georgia, serif;
  --gradient-heading: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
  --gradient-border: linear-gradient(135deg, var(--pink), var(--blue));
  --gradient-btn: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
  --gradient-whatsapp: linear-gradient(135deg, #25d366 0%, #16b85f 42%, #128c7e 72%, #075e54 100%);
  --gradient-instagram: linear-gradient(135deg, #feda75 0%, #fa7e1e 20%, #d62976 48%, #962fbf 72%, #4f5bd5 100%);
  --gradient-glow: radial-gradient(circle, oklch(0.72 0.32 350 / 0.5) 0%, oklch(0.62 0.26 255 / 0.34) 55%, transparent 100%);
  --soft-photo-overlay: linear-gradient(to bottom, transparent 0%, oklch(0.72 0.32 350 / 0.055) 62%, oklch(0.62 0.26 255 / 0.10) 100%);
  --tattoo-link-dash: repeating-linear-gradient(90deg, currentColor 0 4px, transparent 4px 8px);
  --shadow-glow: 0 0 38px oklch(0.72 0.32 350 / 0.45), 0 0 78px oklch(0.62 0.26 255 / 0.35);
  --shadow-glow-strong: 0 0 58px oklch(0.72 0.32 350 / 0.62), 0 0 116px oklch(0.62 0.26 255 / 0.5);
  --legal-viewport-height: 100vh;
}

* { box-sizing: border-box; }

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: #000;
  color: var(--fg);
  font-family: var(--font-display);
  cursor: none;
}

body.menu-open,
body.lightbox-open { overflow: hidden; }

body.legal-modal-open {
  position: fixed;
  top: var(--legal-scroll-lock-top, 0px);
  left: 0;
  width: 100%;
  overflow: hidden;
}

a, button, [data-hover] { cursor: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
button, iframe { border: 0; }
::selection { background: var(--pink); color: #fff; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gradient-text {
  background: var(--gradient-heading);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.38)) drop-shadow(0 0 16px rgba(255, 255, 255, 0.18)) drop-shadow(0 0 18px oklch(0.62 0.26 255 / 0.42));
}

.gradient-border { position: relative; background: var(--card); border-radius: inherit; }
.gradient-border::before {
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: var(--gradient-border);
  content: "";
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.glow { box-shadow: var(--shadow-glow); }
.glow-strong { box-shadow: var(--shadow-glow-strong); }

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 8%, oklch(0.72 0.32 350 / 0.28), transparent 48%),
    radial-gradient(ellipse at 54% 42%, oklch(0.62 0.26 255 / 0.2), transparent 55%),
    radial-gradient(ellipse at 86% 82%, oklch(0.62 0.26 255 / 0.18), transparent 50%);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  display: grid;
  place-items: center;
  width: 8px;
  height: 8px;
  background: var(--pink);
  box-shadow: 0 0 12px oklch(0.72 0.32 350 / 0.9), 0 0 24px oklch(0.62 0.26 255 / 0.58);
  transition: width 180ms ease, height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.cursor-dot::before,
.cursor-dot::after {
  position: absolute;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform-origin: center;
  transition: width 180ms ease, opacity 180ms ease, transform 180ms ease;
}
.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid oklch(0.62 0.26 255 / 0.58);
  transition: width 260ms ease, height 260ms ease, border-color 260ms ease, background 260ms ease;
}
.cursor-dot.hover { width: 4px; height: 4px; }
.cursor-dot.cursor-plus,
.cursor-dot.cursor-close,
.cursor-dot.cursor-external {
  width: 1.55rem;
  height: 1.55rem;
  background: transparent;
  box-shadow: none;
  color: #fff;
}
.cursor-dot.cursor-plus::before,
.cursor-dot.cursor-plus::after,
.cursor-dot.cursor-close::before,
.cursor-dot.cursor-close::after,
.cursor-dot.cursor-external::before,
.cursor-dot.cursor-external::after {
  width: 1.05rem;
  opacity: 1;
  box-shadow: 0 0 12px oklch(0.72 0.32 350 / 0.62), 0 0 18px oklch(0.62 0.26 255 / 0.38);
}
.cursor-dot.cursor-plus::after { transform: rotate(90deg); }
.cursor-dot.cursor-close::before { transform: rotate(45deg); }
.cursor-dot.cursor-close::after { transform: rotate(-45deg); }
.cursor-dot.cursor-external::before {
  width: 0.92rem;
  transform: rotate(-45deg) translate(-0.03rem, 0.02rem);
}
.cursor-dot.cursor-external::after {
  width: 0.42rem;
  height: 0.42rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
  transform: translate(0.22rem, -0.22rem);
}
.cursor-ring.hover,
.cursor-ring.cursor-plus,
.cursor-ring.cursor-close,
.cursor-ring.cursor-external {
  width: 68px;
  height: 68px;
  border-color: oklch(0.72 0.32 350 / 0.86);
  background: oklch(0.62 0.26 255 / 0.12);
}
.cursor-ring.cursor-close {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.2);
}
.cursor-ring.cursor-external {
  border-color: rgba(255, 255, 255, 0.82);
  background: oklch(0.72 0.32 350 / 0.1);
}

.container {
  position: relative;
  z-index: 1;
  width: min(100%, 80rem);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--small { width: min(100%, 58rem); }

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
}
.nav.scrolled,
.nav.menu-active {
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(14px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, 80rem);
  margin: 0 auto;
  padding: 1.15rem 1.5rem;
}
.brand,
.section-title,
.hero__title,
.work-heading h3,
.footer__brand {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}
.brand {
  z-index: 2;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  white-space: nowrap;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav__links a { transition: color 180ms ease; }
.nav__links a:hover,
.nav__links a:focus-visible { color: var(--fg); }
.nav__icons { display: flex; align-items: center; gap: 0.75rem; }
.icon-link {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  transition: transform 220ms ease, background 220ms ease;
}
.icon-link:hover,
.icon-link:focus-visible { background: var(--gradient-btn); transform: translateY(-1px); }
.icon-link[href*="wa.me"] { background: var(--gradient-whatsapp); color: #fff; }
.icon-link[href*="instagram.com"] { background: var(--gradient-instagram); color: #fff; }
.icon-link[href*="wa.me"]:hover,
.icon-link[href*="wa.me"]:focus-visible { background: var(--gradient-whatsapp); box-shadow: 0 0 28px rgba(37, 211, 102, 0.42); }
.icon-link[href*="instagram.com"]:hover,
.icon-link[href*="instagram.com"]:focus-visible { background: var(--gradient-instagram); box-shadow: 0 0 30px rgba(214, 41, 118, 0.42); }
.icon-link svg,
.line-icon {
  width: 1.15rem;
  height: 1.15rem;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  padding: 9rem 1.5rem 7rem;
}
.hero__video,
.hero__veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__video { object-fit: cover; opacity: 0.58; filter: grayscale(14%) contrast(1.12); }
.hero__veil {
  background:
    linear-gradient(135deg, oklch(0.72 0.32 350 / 0.06), oklch(0.62 0.26 255 / 0.05)),
    radial-gradient(circle at 50% 42%, transparent 18%, rgba(0, 0, 0, 0.62) 68%, #000 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.52) 48%, #000 100%);
}
.hero__content { position: relative; z-index: 1; width: min(100%, 66rem); text-align: center; }
.label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero__title {
  margin: 0;
  font-size: clamp(3.05rem, 7vw, 6.25rem);
  font-weight: 800;
  line-height: 0.9;
}
.hero__title span { display: block; }
.hero__title-line { font-style: italic; }
.hero__focus {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(100%, 45rem);
  margin: 1.8rem auto 2.6rem;
}
.hero__focus-item {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 4.7rem;
  padding: 1rem 1.15rem;
  overflow: hidden;
  border-radius: 1rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.38);
  box-shadow: var(--shadow-glow);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
.cta-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }
.cta-row--left { justify-content: flex-start; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.btn:hover,
.btn:focus-visible { transform: translateY(-2px) scale(1.02); }
.btn--primary { background: var(--gradient-btn); color: #fff; }
.btn--ghost {
  border: 1px solid oklch(0.72 0.32 350 / 0.36);
  background: oklch(0.08 0.02 20 / 0.9);
  box-shadow: 0 0 22px oklch(0.72 0.32 350 / 0.26), 0 0 36px oklch(0.62 0.26 255 / 0.22), inset 0 0 18px oklch(0.62 0.26 255 / 0.08);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  box-shadow: 0 0 30px oklch(0.72 0.32 350 / 0.42), 0 0 54px oklch(0.62 0.26 255 / 0.34), inset 0 0 22px oklch(0.72 0.32 350 / 0.12);
}
a.btn[href*="wa.me"],
a.text-link[href*="wa.me"] {
  background: var(--gradient-whatsapp);
  color: #fff;
  box-shadow: 0 0 28px rgba(37, 211, 102, 0.28);
}
a.btn[href*="instagram.com"],
a.text-link[href*="instagram.com"] {
  background: var(--gradient-instagram);
  color: #fff;
  box-shadow: 0 0 30px rgba(214, 41, 118, 0.3);
}

.eye-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.55rem;
}
.eye-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transform-origin: 50% 50%;
  animation: eye-blink 5.2s ease-in-out infinite;
}
.btn--look:hover .eye-icon svg,
.btn--look:focus-visible .eye-icon svg {
  animation: eye-wink 0.56s ease-in-out;
}
@keyframes eye-blink {
  0%, 7%, 10%, 100% { transform: scaleY(1); }
  8.5% { transform: scaleY(0.12); }
}
@keyframes eye-wink {
  0%, 100% { transform: scaleY(1); }
  48% { transform: scaleY(0.08); }
}

.scroll-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 5.2rem;
  min-height: 4.45rem;
  padding-top: 3.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.3em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: color 220ms ease, letter-spacing 220ms ease, transform 220ms ease;
}
.scroll-hint::before {
  position: absolute;
  top: 0.15rem;
  left: 50%;
  width: 1px;
  height: 2.45rem;
  background: linear-gradient(to bottom, transparent, var(--fg), transparent);
  content: "";
  opacity: 0.62;
  transform: translateX(-50%) scaleY(0.72);
  transform-origin: bottom;
  animation: scroll-thread 2.15s ease-in-out infinite;
}
.scroll-hint::after {
  position: absolute;
  top: 0.28rem;
  left: 50%;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px 999px 999px 0;
  background: var(--gradient-btn);
  box-shadow: 0 0 18px oklch(0.72 0.32 350 / 0.72), 0 0 30px oklch(0.62 0.26 255 / 0.48);
  content: "";
  transform: translate(-50%, 0) rotate(-45deg);
  animation: scroll-ink-drop 2.15s cubic-bezier(0.2, 0.72, 0.24, 1) infinite;
}
.scroll-hint:hover,
.scroll-hint:focus-visible {
  color: #fff;
  letter-spacing: 0.42em;
  transform: translateX(-50%) translateY(-0.24rem);
}
.scroll-hint:hover::before,
.scroll-hint:focus-visible::before {
  opacity: 1;
}
.scroll-hint:hover::after,
.scroll-hint:focus-visible::after {
  animation-duration: 1.25s;
}
@keyframes scroll-thread {
  0%, 100% { transform: translateX(-50%) scaleY(0.66); opacity: 0.38; }
  50% { transform: translateX(-50%) scaleY(1); opacity: 0.95; }
}
@keyframes scroll-ink-drop {
  0% { opacity: 0; transform: translate(-50%, 0) rotate(-45deg) scale(0.72); }
  18% { opacity: 1; }
  72% { opacity: 1; transform: translate(-50%, 1.8rem) rotate(-45deg) scale(1); }
  100% { opacity: 0; transform: translate(-50%, 2.1rem) rotate(-45deg) scale(0.55); }
}

.section { position: relative; padding: 7rem 0; }
.split,
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}
.location-grid { grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); }
.portrait { position: relative; }
.portrait__glow {
  position: absolute;
  inset: -1rem;
  border-radius: 1.1rem;
  background: var(--gradient-glow);
  filter: blur(36px);
  opacity: 0.75;
}
.portrait img { position: relative; width: 100%; overflow: hidden; border-radius: 1rem; object-fit: cover; }
.section-copy p,
.section-head p,
.work-heading p,
.contact-box p,
.acryl-note {
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1.4;
}
.section-title {
  margin: 0.85rem 0 1.35rem;
  font-size: clamp(2.75rem, 6vw, 4.9rem);
  font-weight: 800;
  line-height: 1.02;
}

.section--work { padding-top: 6rem; }
.section-head { max-width: 46rem; margin: 0 auto 4rem; text-align: center; }
.work-block + .work-block { margin-top: 5rem; }
.work-block--acryl { opacity: 0.88; }
.work-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.work-heading h3 { margin: 0; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800; }
.work-heading p { max-width: 32rem; margin: 0; }
.work-heading--quiet h3 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.gallery { display: grid; gap: 1.35rem; }
.gallery--tattoos { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery--acryl { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.tile {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 1rem;
  aspect-ratio: 6 / 7;
  background: transparent;
  isolation: isolate;
  text-align: left;
}
.tile.gradient-border::before {
  z-index: 3;
  opacity: 0;
  transition: opacity 320ms ease;
}
.tile:hover.gradient-border::before,
.tile:focus-visible.gradient-border::before {
  opacity: 1;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(24%) contrast(1.06);
  transform: scale(1.001);
  transition: filter 450ms ease, transform 700ms ease;
}
.tile::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    var(--soft-photo-overlay),
    linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.26), transparent 68%);
  content: "";
  opacity: 0.92;
  transition: opacity 300ms ease;
}
.tile:hover img,
.tile:focus-visible img { filter: grayscale(0%) contrast(1.1); transform: scale(1.08); }
.tile:hover::after,
.tile:focus-visible::after { opacity: 0.72; }
.tile span,
.tile figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}
.tile--placeholder img {
  filter: grayscale(100%) contrast(0.92) brightness(0.58);
}
.tile--placeholder::after {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.32)),
    var(--soft-photo-overlay),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 12px);
  opacity: 0.96;
}
.tile--placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.55rem 0.8rem;
  border: 1px dashed rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 0 18px oklch(0.72 0.32 350 / 0.42);
  backdrop-filter: blur(8px);
}
.gallery-dots {
  display: none;
}
.acryl-note {
  max-width: 42rem;
  margin: 1rem 0 0;
  font-size: 1.5rem;
  line-height: 1.4;
}


.section--studio-preview {
  padding-top: 0;
  padding-bottom: 3.5rem;
}
.gallery--studio {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.section--extras {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.info-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  overflow: hidden;
  min-height: 15rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 1.1rem;
  background-color: rgba(0, 0, 0, 0.58);
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52)),
    url("../img/brand/background-pattern.jpeg");
  background-size: cover, cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: normal, soft-light;
}
.info-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 20% 12%, rgba(214, 41, 118, 0.22), transparent 32%), radial-gradient(circle at 90% 80%, rgba(79, 91, 213, 0.18), transparent 36%);
  content: "";
}
.info-card > * {
  position: relative;
  z-index: 1;
}
.info-card.gradient-border::before { z-index: 2; }
.info-card h2 {
  margin: 0.5rem 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 0.98;
}
.info-card p:not(.label) {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1.4;
}

.info-card .label {
  background: var(--gradient-heading);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.38)) drop-shadow(0 0 16px rgba(255, 255, 255, 0.18)) drop-shadow(0 0 18px oklch(0.62 0.26 255 / 0.42));
}
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: var(--fg);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.text-link:hover,
.text-link:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.section--location { padding-top: 5rem; padding-bottom: 9rem; }
.map-card {
  position: relative;
  min-height: 30rem;
  overflow: visible;
  border-radius: 1.15rem;
  background:
    linear-gradient(135deg, oklch(0.1 0.03 260), oklch(0.06 0.02 350)),
    var(--card);
}
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 30rem;
  border-radius: inherit;
  opacity: 0.58;
  filter: grayscale(100%) invert(92%) hue-rotate(185deg) contrast(1.05);
}
.map-card__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: none;
  transform: translate(-50%, -92%);
  pointer-events: none;
}
.map-card.has-map .map-card__pin { display: block; }
.map-card__pin::after {
  position: absolute;
  left: 50%;
  bottom: -0.36rem;
  z-index: 0;
  width: 1.2rem;
  height: 1.2rem;
  border-right: 2px solid rgba(255, 255, 255, 0.82);
  border-bottom: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 0 0 0.25rem 0;
  background: var(--gradient-btn);
  content: "";
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.42);
}
.map-card__pin span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 4.15rem;
  height: 4.15rem;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: var(--gradient-btn);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.72), 0 0 34px oklch(0.72 0.32 350 / 0.42), 0 0 48px oklch(0.62 0.26 255 / 0.34);
}
.map-card__pin img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  object-position: center;
  transform: translate(-1px, 2px) scale(0.96);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.48));
}
.map-wheel-guard {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.map-wheel-guard span {
  position: absolute;
  display: block;
  pointer-events: auto;
  background: transparent;
}
.map-wheel-guard__top {
  top: 0;
  right: 0;
  left: 4rem;
  height: 5.8rem;
}
.map-card .map-wheel-guard__top {
  right: 10rem;
}
.map-wheel-guard__body {
  top: 5.8rem;
  right: 0;
  bottom: 0;
  left: 0;
}
.map-card__tools {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  display: flex;
  gap: 0.6rem;
}
.map-tool-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid oklch(0.72 0.32 350 / 0.38);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 0 22px oklch(0.72 0.32 350 / 0.28), 0 0 32px oklch(0.62 0.26 255 / 0.2);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.map-tool-button:hover,
.map-tool-button:focus-visible,
.map-tool-button.is-active {
  background: var(--gradient-btn);
  box-shadow: 0 0 28px oklch(0.72 0.32 350 / 0.44), 0 0 46px oklch(0.62 0.26 255 / 0.34);
  transform: translateY(-1px);
}
.map-tool-button--icon {
  width: 2.7rem;
  padding: 0;
}
.contact-box {
  position: relative;
  overflow: hidden;
  border-radius: 1.4rem;
  padding: clamp(2.4rem, 7vw, 5rem);
  text-align: center;
}
.contact-box__glow {
  position: absolute;
  inset: 0;
  background-image:
    var(--gradient-glow),
    linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.18)),
    url("../img/brand/background-pattern.jpeg");
  background-size: cover, cover, cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: screen, normal, soft-light;
  opacity: 0.52;
}
.contact-box__content { position: relative; z-index: 1; }
.contact-box p { max-width: 42rem; margin: 0 auto 2rem; }
.contact-box .section-title { color: #fff; filter: none; text-shadow: none; }
.footer { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: 2.5rem 1.5rem; text-align: center; }
.footer__brand { margin: 0 0 0.5rem; font-weight: 800; letter-spacing: 0.15em; }
.footer__meta { margin: 0; color: var(--muted); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox.is-closing { opacity: 0; pointer-events: none; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px);
}
.lightbox__panel {
  position: relative;
  display: grid;
  place-items: center;
  width: auto;
  max-width: calc(100vw - 2rem);
  max-height: calc(100svh - 8.25rem);
  overflow: visible;
  border-radius: 1rem;
  background: #000;
  box-shadow: var(--shadow-glow-strong);
  opacity: 0;
  transform: none;
  transition: opacity 180ms ease;
  touch-action: pan-y pinch-zoom;
}
.lightbox.is-ready .lightbox__panel { opacity: 1; }
.lightbox__panel.is-switching .lightbox__image {
  opacity: 0;
  transform: translateX(var(--lightbox-shift, 0.75rem)) scale(0.985);
}
.lightbox__image {
  width: auto;
  height: auto;
  max-width: calc(100vw - 2rem);
  max-height: calc(100svh - 8.25rem);
  object-fit: contain;
  border-radius: inherit;
  background: #000;
  transition: opacity 160ms ease, transform 180ms ease;
}
.lightbox__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(14px);
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(3rem, 7vw, 4.4rem);
  height: clamp(3rem, 7vw, 4.4rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.46);
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(-50%) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.lightbox.is-ready .lightbox__nav { opacity: 1; }
.lightbox__nav:hover,
.lightbox__nav:focus-visible {
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow: var(--shadow-glow-strong);
  transform: translateY(-50%) scale(1.03);
}
.lightbox__nav--prev { left: clamp(0.75rem, 4vw, 3.5rem); }
.lightbox__nav--next { right: clamp(0.75rem, 4vw, 3.5rem); }
.lightbox__nav .line-icon { width: 1.65rem; height: 1.65rem; }
.lightbox__thumbs {
  position: absolute;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  left: max(1rem, env(safe-area-inset-left));
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  max-width: min(56rem, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 0.65rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.48);
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity 180ms ease, transform 180ms ease;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.lightbox.is-ready .lightbox__thumbs { opacity: 1; transform: none; }
.lightbox__thumbs::-webkit-scrollbar { display: none; }
.lightbox__thumb {
  position: relative;
  flex: 0 0 auto;
  width: clamp(3.3rem, 8vw, 4.6rem);
  aspect-ratio: 6 / 7;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.65rem;
  background: #000;
  opacity: 0.58;
  transform: scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(26%) contrast(1.06);
}
.lightbox__thumb.is-active,
.lightbox__thumb:hover,
.lightbox__thumb:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 1px oklch(0.72 0.32 350 / 0.48), 0 0 22px oklch(0.62 0.26 255 / 0.35);
  opacity: 1;
  transform: scale(1);
}
.lightbox__thumb.is-active img { filter: grayscale(0%) contrast(1.08); }
.lightbox__panel.is-flying {
  position: fixed;
  z-index: 2;
  margin: 0;
  max-width: none;
  max-height: none;
  opacity: 1;
  transition: none;
  will-change: left, top, width, height, border-radius;
}
.lightbox__panel.is-flying .lightbox__image {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (hover: hover) and (pointer: fine) {
  .tilt-ready {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --tilt-lift: 0;
    transform-origin: center;
    transform-style: preserve-3d;
    transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
    will-change: transform;
  }

  .tilt-ready.is-visible,
  .tilt-ready:not(.reveal) {
    transform: perspective(950px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, var(--tilt-lift), 0);
  }

  .tilt-ready.is-tilting {
    --tilt-lift: -0.12rem;
    filter: saturate(1.05) contrast(1.03);
  }

  .tile.tilt-ready.is-tilting,
  .info-card.tilt-ready.is-tilting,
  .contact-box.tilt-ready.is-tilting,
  .portrait img.tilt-ready.is-tilting {
    box-shadow: var(--shadow-glow);
  }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 30px oklch(0.72 0.32 350 / 0.48), 0 0 60px oklch(0.62 0.26 255 / 0.32); }
  50% { box-shadow: 0 0 58px oklch(0.62 0.26 255 / 0.76), 0 0 98px oklch(0.72 0.32 350 / 0.48); }
}
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }

@media (max-width: 1024px) {
  .gallery--tattoos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  body, a, button, [data-hover] { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  .nav__inner { padding: 0.95rem 1rem; }
  .menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 2.55rem;
    height: 2.55rem;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.4);
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 1rem; height: 1px; background: var(--fg); transition: transform 220ms ease, opacity 220ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav__links {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 1.8rem;
    background: rgba(0, 0, 0, 0.94);
    font-size: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition: opacity 240ms ease, transform 240ms ease;
  }
  .nav__links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav__icons { z-index: 2; margin-left: auto; }
  .hero { min-height: 94svh; padding: 7.5rem 1rem 5.5rem; }
  .hero__title { font-size: clamp(2.85rem, 11vw, 4.8rem); }
  .btn { width: min(100%, 20rem); }
  .section { padding: 5rem 0; }
  .split, .location-grid { grid-template-columns: 1fr; gap: 3rem; }
  .extras-grid { grid-template-columns: 1fr; }
  .work-heading { display: block; }
  .work-heading p { margin-top: 0.7rem; }
  .gallery--tattoos, .gallery--acryl { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section--location { padding-bottom: 8rem; }
  .studio-address {
    right: 0;
    bottom: -4rem;
    width: min(100%, 25rem);
  }
}
@media (max-width: 560px) {
  .container { padding: 0 1rem; }
  .brand { font-size: 1.1rem; letter-spacing: 0.1em; }
  .nav__icons { gap: 0.45rem; }
  .icon-link { width: 2.3rem; height: 2.3rem; }
  .label { letter-spacing: 0.18em; }
  .hero__title { font-size: clamp(2.35rem, 12.5vw, 3.55rem); }
  .hero__focus { grid-template-columns: 1fr; width: min(100%, 22rem); margin-top: 1.4rem; }
  .hero__focus-item { min-height: 3.7rem; font-size: 1.35rem; }
  .gallery--tattoos,
  .gallery--acryl,
  .gallery--studio {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y pinch-zoom;
    margin-inline: -1rem;
    padding: 0 1rem 0.75rem;
    scroll-padding-inline: 1rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .gallery--tattoos.is-dragging,
  .gallery--acryl.is-dragging,
  .gallery--studio.is-dragging {
    scroll-snap-type: none;
  }
  .gallery--tattoos::-webkit-scrollbar,
  .gallery--acryl::-webkit-scrollbar,
  .gallery--studio::-webkit-scrollbar {
    display: none;
  }
  .gallery--tattoos .tile,
  .gallery--acryl .tile,
  .gallery--studio .tile {
    flex: 0 0 68%;
    max-width: 68%;
    aspect-ratio: 6 / 7;
    opacity: 0.74;
    scroll-snap-align: center;
    transform: scale(0.94);
    transition: opacity 220ms ease, transform 220ms ease;
    will-change: transform, opacity;
    contain: layout paint;
  }
  .gallery--tattoos .tile.is-active,
  .gallery--acryl .tile.is-active,
  .gallery--studio .tile.is-active,
  .gallery--tattoos .tile:hover,
  .gallery--acryl .tile:hover,
  .gallery--studio .tile:hover,
  .gallery--tattoos .tile:focus-visible,
  .gallery--acryl .tile:focus-visible,
  .gallery--studio .tile:focus-visible {
    opacity: 1;
    transform: scale(1);
  }
  .gallery--tattoos.is-scrolling .tile,
  .gallery--acryl.is-scrolling .tile,
  .gallery--studio.is-scrolling .tile,
  .gallery--tattoos.is-scrolling .tile img,
  .gallery--acryl.is-scrolling .tile img,
  .gallery--studio.is-scrolling .tile img {
    transition: none;
  }
  .gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    min-height: 1rem;
    margin: 0.1rem 0 0;
  }
  .gallery-dot {
    width: 0.42rem;
    height: 0.42rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
    transition: width 220ms ease, background 220ms ease, box-shadow 220ms ease;
  }
  .gallery-dot.is-active {
    width: 1.35rem;
    background: var(--gradient-btn);
    box-shadow: 0 0 18px oklch(0.72 0.32 350 / 0.42), 0 0 26px oklch(0.62 0.26 255 / 0.32);
  }
  .info-card { grid-template-columns: 1fr; }
  .lightbox { padding: 0.75rem; }
  .lightbox__panel,
  .lightbox__image { max-height: calc(100svh - 7rem); }
  .lightbox__nav { width: 2.8rem; height: 2.8rem; }
  .lightbox__nav--prev { left: 0.45rem; }
  .lightbox__nav--next { right: 0.45rem; }
  .lightbox__thumbs { justify-content: flex-start; padding: 0.45rem; gap: 0.45rem; }
  .lightbox__thumb { width: 3.15rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  margin-right: 0.55rem;
}

.contact-icon svg,
.btn .contact-icon svg,
.legal-modal .contact-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.icon-link svg use,
.contact-icon svg use,
.line-icon use {
  stroke-dasharray: 72;
  stroke-dashoffset: 72;
  animation: tattoo-icon-draw 1.35s cubic-bezier(0.22, 0.76, 0.26, 1) forwards;
}

.icon-link:hover svg use,
.icon-link:focus-visible svg use,
a:hover .contact-icon svg use,
a:focus-visible .contact-icon svg use,
button:hover .contact-icon svg use,
button:focus-visible .contact-icon svg use,
button:hover .line-icon use,
button:focus-visible .line-icon use {
  animation: tattoo-icon-redraw 0.9s cubic-bezier(0.22, 0.76, 0.26, 1) forwards;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
}

.contact-link .link-label,
.section-copy p a:not(.btn):not(.text-link):not(.icon-link),
.section-head p a:not(.btn):not(.text-link):not(.icon-link),
.contact-box p a:not(.btn):not(.text-link):not(.icon-link),
.info-card p a:not(.btn):not(.text-link):not(.icon-link),
.acryl-note a:not(.btn):not(.text-link):not(.icon-link),
.legal-modal a:not(.btn):not(.text-link):not(.icon-link):not(.contact-link),
.studio-address a:not(.btn):not(.text-link):not(.icon-link):not(.contact-link) {
  position: relative;
  display: inline-block;
  padding-bottom: 0.13em;
  text-decoration: none;
}

.contact-link .link-label::before,
.contact-link .link-label::after,
.section-copy p a:not(.btn):not(.text-link):not(.icon-link)::before,
.section-copy p a:not(.btn):not(.text-link):not(.icon-link)::after,
.section-head p a:not(.btn):not(.text-link):not(.icon-link)::before,
.section-head p a:not(.btn):not(.text-link):not(.icon-link)::after,
.contact-box p a:not(.btn):not(.text-link):not(.icon-link)::before,
.contact-box p a:not(.btn):not(.text-link):not(.icon-link)::after,
.info-card p a:not(.btn):not(.text-link):not(.icon-link)::before,
.info-card p a:not(.btn):not(.text-link):not(.icon-link)::after,
.acryl-note a:not(.btn):not(.text-link):not(.icon-link)::before,
.acryl-note a:not(.btn):not(.text-link):not(.icon-link)::after,
.legal-modal a:not(.btn):not(.text-link):not(.icon-link):not(.contact-link)::before,
.legal-modal a:not(.btn):not(.text-link):not(.icon-link):not(.contact-link)::after,
.studio-address a:not(.btn):not(.text-link):not(.icon-link):not(.contact-link)::before,
.studio-address a:not(.btn):not(.text-link):not(.icon-link):not(.contact-link)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background-image: var(--tattoo-link-dash);
  background-repeat: repeat-x;
  background-size: 12px 1px;
  content: "";
  pointer-events: none;
}

.contact-link .link-label::before,
.section-copy p a:not(.btn):not(.text-link):not(.icon-link)::before,
.section-head p a:not(.btn):not(.text-link):not(.icon-link)::before,
.contact-box p a:not(.btn):not(.text-link):not(.icon-link)::before,
.info-card p a:not(.btn):not(.text-link):not(.icon-link)::before,
.acryl-note a:not(.btn):not(.text-link):not(.icon-link)::before,
.legal-modal a:not(.btn):not(.text-link):not(.icon-link):not(.contact-link)::before,
.studio-address a:not(.btn):not(.text-link):not(.icon-link):not(.contact-link)::before {
  opacity: 0.2;
}

.contact-link .link-label::after,
.section-copy p a:not(.btn):not(.text-link):not(.icon-link)::after,
.section-head p a:not(.btn):not(.text-link):not(.icon-link)::after,
.contact-box p a:not(.btn):not(.text-link):not(.icon-link)::after,
.info-card p a:not(.btn):not(.text-link):not(.icon-link)::after,
.acryl-note a:not(.btn):not(.text-link):not(.icon-link)::after,
.legal-modal a:not(.btn):not(.text-link):not(.icon-link):not(.contact-link)::after,
.studio-address a:not(.btn):not(.text-link):not(.icon-link):not(.contact-link)::after {
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 340ms cubic-bezier(0.22, 0.76, 0.26, 1);
}

.contact-link:hover .link-label,
.contact-link:focus-visible .link-label,
.section-copy p a:not(.btn):not(.text-link):not(.icon-link):hover,
.section-copy p a:not(.btn):not(.text-link):not(.icon-link):focus-visible,
.section-head p a:not(.btn):not(.text-link):not(.icon-link):hover,
.section-head p a:not(.btn):not(.text-link):not(.icon-link):focus-visible,
.contact-box p a:not(.btn):not(.text-link):not(.icon-link):hover,
.contact-box p a:not(.btn):not(.text-link):not(.icon-link):focus-visible,
.info-card p a:not(.btn):not(.text-link):not(.icon-link):hover,
.info-card p a:not(.btn):not(.text-link):not(.icon-link):focus-visible,
.acryl-note a:not(.btn):not(.text-link):not(.icon-link):hover,
.acryl-note a:not(.btn):not(.text-link):not(.icon-link):focus-visible,
.legal-modal a:not(.btn):not(.text-link):not(.icon-link):not(.contact-link):hover,
.legal-modal a:not(.btn):not(.text-link):not(.icon-link):not(.contact-link):focus-visible,
.studio-address a:not(.btn):not(.text-link):not(.icon-link):not(.contact-link):hover,
.studio-address a:not(.btn):not(.text-link):not(.icon-link):not(.contact-link):focus-visible {
  color: #fff;
  text-shadow: 0 0 14px oklch(0.72 0.32 350 / 0.34), 0 0 18px oklch(0.62 0.26 255 / 0.24);
}

.contact-link:hover .link-label::after,
.contact-link:focus-visible .link-label::after,
.section-copy p a:not(.btn):not(.text-link):not(.icon-link):hover::after,
.section-copy p a:not(.btn):not(.text-link):not(.icon-link):focus-visible::after,
.section-head p a:not(.btn):not(.text-link):not(.icon-link):hover::after,
.section-head p a:not(.btn):not(.text-link):not(.icon-link):focus-visible::after,
.contact-box p a:not(.btn):not(.text-link):not(.icon-link):hover::after,
.contact-box p a:not(.btn):not(.text-link):not(.icon-link):focus-visible::after,
.info-card p a:not(.btn):not(.text-link):not(.icon-link):hover::after,
.info-card p a:not(.btn):not(.text-link):not(.icon-link):focus-visible::after,
.acryl-note a:not(.btn):not(.text-link):not(.icon-link):hover::after,
.acryl-note a:not(.btn):not(.text-link):not(.icon-link):focus-visible::after,
.legal-modal a:not(.btn):not(.text-link):not(.icon-link):not(.contact-link):hover::after,
.legal-modal a:not(.btn):not(.text-link):not(.icon-link):not(.contact-link):focus-visible::after,
.studio-address a:not(.btn):not(.text-link):not(.icon-link):not(.contact-link):hover::after,
.studio-address a:not(.btn):not(.text-link):not(.icon-link):not(.contact-link):focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}
@keyframes tattoo-icon-draw {
  0% { stroke-dashoffset: 72; opacity: 0.35; }
  20% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes tattoo-icon-redraw {
  0% { stroke-dashoffset: 72; }
  100% { stroke-dashoffset: 0; }
}

.print-texture {
  background-image:
    linear-gradient(135deg, oklch(0.72 0.32 350 / 0.08), oklch(0.62 0.26 255 / 0.09)),
    url("../img/brand/background-pattern.jpeg");
  background-size: cover, cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: screen, soft-light;
}

.map-card iframe {
  opacity: 0;
  transition: opacity 300ms ease;
}

.map-card.has-map iframe {
  opacity: 0.64;
}

.map-card__placeholder {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 45%, oklch(0.72 0.32 350 / 0.26), transparent 24%),
    linear-gradient(135deg, oklch(0.09 0.04 350), oklch(0.07 0.04 255));
}

.map-card.has-map .map-card__placeholder {
  display: none;
}

.map-card__placeholder strong {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 0.9;
}

.map-card__placeholder span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cookie-consent {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  width: min(calc(100% - 2rem), 48rem);
  padding: 1rem;
  border-radius: 1rem;
  background-color: rgba(0, 0, 0, 0.88);
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(16px);
  transform: translateY(calc(100% + 2rem));
  transition: transform 260ms ease;
}

.cookie-consent.is-visible {
  transform: translateY(0);
}

.cookie-consent strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.cookie-consent p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}


.map-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 115;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}
.map-fullscreen.is-open {
  opacity: 1;
  pointer-events: auto;
}
.map-fullscreen:not(.is-open) .map-wheel-guard span {
  pointer-events: none;
}
.map-fullscreen.is-open .map-wheel-guard {
  display: none;
}
.map-fullscreen__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(16px);
}
.map-fullscreen__panel {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(100%, 78rem);
  height: min(100%, 45rem);
  overflow: hidden;
  border-radius: 1.15rem;
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: var(--shadow-glow-strong);
}
.map-fullscreen__bar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
}
.map-fullscreen__bar .label {
  margin: 0 0 0.2rem;
  font-size: 1.4rem;
}
.map-fullscreen__bar h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.95;
}
.map-fullscreen__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}
.map-fullscreen__map {
  position: relative;
  overflow: hidden;
  min-height: 0;
  background: #000;
  transition: opacity 160ms ease, transform 180ms ease;
}
.map-fullscreen__leaflet {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 24rem;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}
.map-fullscreen__leaflet .leaflet-container,
.map-fullscreen__leaflet.leaflet-container {
  width: 100%;
  height: 100%;
  background: #000;
  font-family: var(--font-display);
}
.map-fullscreen__map .leaflet-tile-pane {
  filter: grayscale(100%) invert(92%) hue-rotate(185deg) contrast(1.05);
}
.map-fullscreen__map.is-light .leaflet-tile-pane {
  filter: none;
}
.map-fullscreen__map.has-visible-tiles .map-fullscreen__leaflet {
  opacity: 1;
  pointer-events: auto;
}
.map-fullscreen__map.has-visible-tiles iframe {
  display: none;
}
.map-fullscreen__map iframe {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 24rem;
  border: 0;
  filter: grayscale(100%) invert(92%) hue-rotate(185deg) contrast(1.05);
}
.map-fullscreen__map.is-light iframe {
  filter: none;
  opacity: 1;
}
.map-leaflet-pin {
  width: 3.8rem;
  height: 4.5rem;
  background: transparent;
  border: 0;
  pointer-events: none;
}
.map-leaflet-pin::after {
  position: absolute;
  left: 50%;
  bottom: 0.28rem;
  z-index: 0;
  width: 1.2rem;
  height: 1.2rem;
  border-right: 2px solid rgba(255, 255, 255, 0.82);
  border-bottom: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 0 0 0.32rem 0;
  background: var(--gradient-btn);
  content: "";
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.38);
}
.map-leaflet-pin span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 3.8rem;
  height: 3.8rem;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: var(--gradient-btn);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.48), var(--shadow-glow);
  place-items: center;
}
.map-leaflet-pin img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  object-position: center;
  transform: translate(-1px, 2px) scale(0.96);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.48));
}
.leaflet-container {
  position: relative;
  overflow: hidden;
  outline-offset: 1px;
  touch-action: none;
}
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  top: 0;
  left: 0;
}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  user-select: none;
  -webkit-user-drag: none;
}
.leaflet-control-container .leaflet-top,
.leaflet-control-container .leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}
.leaflet-top {
  top: 0;
}
.leaflet-bottom {
  bottom: 0;
}
.leaflet-left {
  left: 0;
}
.leaflet-right {
  right: 0;
}
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: auto;
}
.leaflet-top .leaflet-control {
  margin-top: 0.75rem;
}
.leaflet-left .leaflet-control {
  margin-left: 0.75rem;
}
.leaflet-control-zoom a {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: #000;
  font: 700 1.35rem/1 var(--font-body);
  text-decoration: none;
}
.leaflet-control-zoom a + a {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.leaflet-control-attribution {
  padding: 0.15rem 0.3rem;
  background: rgba(255, 255, 255, 0.78);
  color: #111;
  font-size: 0.68rem;
}
@media (max-width: 720px) {
  .map-fullscreen { padding: 0.6rem; }
  .map-fullscreen__panel { height: min(100%, 42rem); }
  .map-fullscreen__bar { align-items: flex-start; flex-direction: column; }
  .map-fullscreen__actions { justify-content: flex-start; }
}
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  height: var(--legal-viewport-height, 100vh);
  min-height: -webkit-fill-available;
  overflow: hidden;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.legal-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(16px);
}

.legal-modal__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 52rem);
  height: calc(var(--legal-viewport-height, 100vh) - 2rem);
  max-height: 52rem;
  overflow: hidden;
  padding: 0;
  border-radius: 1.15rem;
  background-color: rgba(0, 0, 0, 0.94);
  transform: translateY(22px) scale(0.97);
  transition: transform 260ms ease;
}

.legal-modal__body {
  flex: 1 1 auto;
  height: 100%;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding: clamp(1.5rem, 5vw, 3rem);
}

.legal-modal.is-open .legal-modal__panel {
  transform: translateY(0) scale(1);
}

.legal-modal__close {
  position: absolute;
  top: clamp(1rem, 3vw, 1.35rem);
  right: clamp(1rem, 3vw, 1.35rem);
  z-index: 5;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.8rem;
  place-items: center;
}

.legal-modal .section-title {
  max-width: calc(100% - 3rem);
  overflow-wrap: anywhere;
  hyphens: auto;
}

html.is-ios-webkit .legal-modal {
  align-items: start;
  justify-items: center;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

html.is-ios-webkit .legal-modal__panel {
  height: auto;
  min-height: calc(var(--legal-viewport-height, 100vh) - 2rem);
  max-height: none;
  margin: 1rem 0;
}

html.is-ios-webkit .legal-modal__close {
  position: fixed;
  top: calc(1rem + env(safe-area-inset-top));
  right: calc(1rem + env(safe-area-inset-right));
}

html.is-ios-webkit .legal-modal__body {
  height: auto;
  overflow: visible;
  -webkit-overflow-scrolling: auto;
}

.legal-modal h3 {
  margin: 1.45rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.legal-modal p,
.legal-modal a {
  color: var(--muted);
  line-height: 1.7;
}

.legal-modal a:hover {
  color: #fff;
}

.legal-note {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  background: rgba(255,255,255,0.04);
}

.footer__legal {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.footer__legal button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer__legal button:hover {
  color: #fff;
}

.footer__powered {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 1.45rem auto 0;
  color: oklch(0.95 0.01 20 / 0.52);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__powered img {
  width: 1.15rem;
  height: 1.15rem;
  object-fit: contain;
  opacity: 0.78;
  filter: drop-shadow(0 0 10px oklch(0.62 0.26 255 / 0.24));
}

@media (max-width: 760px) {
  .cookie-consent {
    grid-template-columns: 1fr;
  }

  .cookie-consent__actions,
  .cookie-consent .btn {
    width: 100%;
  }
}
.brand--logo {
  display: inline-flex;
  align-items: center;
  width: clamp(4.8rem, 10vw, 6.8rem);
}

.brand--logo img,
.hero__logo,
.footer__logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px oklch(0.62 0.26 255 / 0.5));
}

.hero__logo {
  width: clamp(4.8rem, 9vw, 6.6rem);
  margin: 0 auto 1.55rem;
  transform-origin: center;
  animation: hero-logo-pulse 5.8s ease-in-out infinite;
}

@keyframes hero-logo-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 16px oklch(0.62 0.26 255 / 0.34));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 22px oklch(0.72 0.32 350 / 0.34)) drop-shadow(0 0 28px oklch(0.62 0.26 255 / 0.22));
    transform: scale(1.025);
  }
}

.footer__logo {
  width: 5.8rem;
  margin: 0 auto 0.9rem;
}

.studio-address {
  position: absolute;
  right: -5em;
  bottom: -5em;
  z-index: 4;
  display: grid;
  gap: 0.45rem;
  width: min(calc(100% - 2rem), 26rem);
  margin: 0;
  padding: 1rem 1.1rem;
  overflow: hidden;
  border-radius: 0.9rem;
  background-color: rgba(0, 0, 0, 0.72);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.58), 0 0 28px oklch(0.62 0.26 255 / 0.22);
  color: var(--muted);
  font-style: normal;
  backdrop-filter: blur(10px);
}

.studio-address.gradient-border::before { z-index: 2; }
.studio-address > * { position: relative; z-index: 3; }

.studio-address strong {
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}

.studio-address a {
  color: var(--fg);
}

.studio-address .contact-link {
  justify-self: start;
}

.print-texture {
  background-image:
    linear-gradient(135deg, oklch(0.72 0.32 350 / 0.09), oklch(0.62 0.26 255 / 0.1)),
    url("../img/brand/background-pattern.jpeg");
  background-size: cover, cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: screen, soft-light;
}
@media (max-width: 860px) {
  .brand--logo {
    order: 1;
    width: 4.45rem;
  }

  .nav__icons {
    order: 2;
    z-index: 72;
    margin-left: auto;
  }

  .menu-toggle {
    order: 3;
    z-index: 82;
    margin-left: 0;
  }

  .menu-toggle[aria-expanded="true"] {
    position: relative;
    background: rgba(0, 0, 0, 0.72);
    box-shadow: var(--shadow-glow);
  }

  .nav__links {
    z-index: 64;
    min-height: 100svh;
    padding: 7rem 1.5rem 4rem;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(18px);
  }

  .nav__links a {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 11vw, 4.05rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0.01em;
    text-align: center;
    text-transform: none;
  }

  .nav__links a::after {
    display: block;
    width: 4rem;
    height: 1px;
    margin: 0.65rem auto 0;
    background: var(--gradient-border);
    content: "";
    opacity: 0.75;
  }
}



.label {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: none;
  text-shadow: 0 0 24px oklch(0.72 0.32 350 / 0.5);
}
.work-heading p {
  font-family: var(--font-display);
  color: oklch(0.95 0.01 20 / 0.78);
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-shadow: 0 0 12px oklch(0.62 0.26 255 / 0.18);
}
@media (max-width: 560px) {
  .label { letter-spacing: 0.02em; }
}
@media (max-width: 860px) {
  .section--location { padding-bottom: 8rem; }
  .studio-address {
    right: 0;
    bottom: -4rem;
    width: min(100%, 25rem);
  }
}












