:root {
  --ink: #020202;
  --charcoal: #0a0907;
  --panel: #14110c;
  --panel-soft: rgba(25, 22, 18, 0.74);
  --paper: #fff8e6;
  --muted: #c9b98e;
  --gold: #f3dc85;
  --gold-deep: #a66f24;
  --bronze: #7c4a18;
  --red: #621315;
  --olive: #656a48;
  --smoke: rgba(248, 239, 225, 0.09);
  --line: rgba(243, 220, 133, 0.18);
  --shadow: 0 32px 110px rgba(0, 0, 0, 0.55);
  --frame-radius: 22px;
  --frame-border: 1.5px solid rgba(243, 220, 133, 0.58);
  --frame-shadow:
    inset 0 0 0 1px rgba(116, 74, 22, 0.74),
    inset 0 0 0 3px rgba(255, 248, 230, 0.08),
    0 26px 88px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(243, 220, 133, 0.026) 1px, transparent 1px),
    linear-gradient(0deg, rgba(243, 220, 133, 0.018) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.button,
.nav-cta,
.button.ghost,
.hero-panel,
.hero-index,
.proof-row span,
.style-grid article,
.timeline,
.timeline div,
.flash-board article,
.artist-card,
.filter,
.tattoo-card,
.contact-card,
.map-card,
.review-grid article,
.booking-form {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: var(--frame-border);
  border-radius: var(--frame-radius);
  box-shadow: var(--frame-shadow);
}

.nav-cta::after,
.button::after,
.hero-index::after,
.proof-row span::after,
.style-grid article::after,
.timeline::after,
.timeline div::after,
.flash-board article::after,
.artist-card::after,
.filter::after,
.tattoo-card::after,
.contact-card::after,
.map-card::after,
.review-grid article::after,
.booking-form::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    transparent 0 80%,
    rgba(255, 246, 202, 0.12) 82%,
    rgba(255, 246, 202, 0.7) 84%,
    rgba(243, 220, 133, 0.26) 86%,
    transparent 89% 100%
  );
  pointer-events: none;
  opacity: 0.46;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: frameBorderSweep 9.8s linear infinite;
  will-change: transform;
}

@keyframes frameBorderSweep {
  to {
    transform: rotate(1turn);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(6, 5, 4, 0.84);
  border-color: var(--line);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  display: block;
  width: clamp(166px, 21vw, 270px);
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(248, 239, 225, 0.8);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  transition: color 0.2s ease;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav a:hover {
  color: var(--gold);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  border: var(--frame-border);
  padding: 10px 16px;
  color: var(--paper);
  background: rgba(243, 220, 133, 0.08);
}

.site-header .nav-cta {
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.site-header.is-scrolled .nav-cta {
  border-color: rgba(243, 220, 133, 0.82);
  color: #090806;
  background:
    linear-gradient(105deg, rgba(188, 121, 33, 0.94), rgba(248, 225, 128, 0.98) 55%, rgba(178, 111, 28, 0.96)),
    var(--gold);
  box-shadow:
    inset 0 0 0 4px rgba(120, 78, 28, 0.38),
    0 0 0 1px rgba(255, 239, 172, 0.24),
    0 14px 32px rgba(0, 0, 0, 0.34);
  animation: headerBookPulse 3.6s ease-in-out infinite;
}

.site-header.is-scrolled .nav-cta::before {
  content: "";
  position: absolute;
  inset: 4px auto 4px -48%;
  width: 36%;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 215, 0.62), transparent);
  filter: blur(5px);
  animation: headerBookShine 3.2s ease-in-out infinite;
}

.site-header.is-scrolled .nav-cta:hover {
  transform: translateY(-2px);
  border-color: var(--gold-bright);
}

@keyframes headerBookPulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 4px rgba(120, 78, 28, 0.38),
      0 0 0 1px rgba(255, 239, 172, 0.24),
      0 14px 32px rgba(0, 0, 0, 0.34);
  }
  50% {
    box-shadow:
      inset 0 0 0 4px rgba(120, 78, 28, 0.38),
      0 0 0 6px rgba(243, 220, 133, 0.12),
      0 18px 38px rgba(0, 0, 0, 0.42);
  }
}

@keyframes headerBookShine {
  0%,
  38% {
    transform: translateX(0);
    opacity: 0;
  }
  48% {
    opacity: 0.8;
  }
  66%,
  100% {
    transform: translateX(440%);
    opacity: 0;
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(248, 239, 225, 0.05);
  color: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(20px, 6vw, 88px) 112px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto clamp(20px, 6vw, 88px) 86px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 180, 106, 0.62), transparent);
  z-index: 2;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/loja.jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(0.86) contrast(1.12);
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(2, 2, 2, 0.98) 0%, rgba(2, 2, 2, 0.94) 150px, rgba(2, 2, 2, 0.62) 310px, rgba(2, 2, 2, 0.12) 560px, rgba(2, 2, 2, 0) 72%),
    radial-gradient(circle at 72% 48%, rgba(166, 111, 36, 0.24), transparent 30%),
    linear-gradient(90deg, rgba(2, 2, 2, 0.96) 0%, rgba(2, 2, 2, 0.76) 43%, rgba(2, 2, 2, 0.2) 100%),
    linear-gradient(0deg, var(--ink) 0%, rgba(6, 5, 4, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(860px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-content > .eyebrow {
  font-size: 15px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Impact, "Arial Black", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-weight: 950;
  line-height: 0.88;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 980px;
  margin-bottom: 26px;
  color: transparent;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 48%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(3.15rem, 8.2vw, 8.2rem);
  text-shadow: 0 20px 80px rgba(0, 0, 0, 0.52);
}

h2 {
  margin-bottom: 22px;
  color: transparent;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 54%, #f8ebb0);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2.2rem, 5vw, 5rem);
}

h3 {
  margin-bottom: 10px;
  font-family: Impact, "Arial Black", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 640px;
  color: rgba(248, 239, 225, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: var(--frame-border);
  border-radius: var(--frame-radius);
  padding: 14px 22px;
  cursor: pointer;
  font-weight: 850;
  box-shadow: var(--frame-shadow);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 52%, var(--gold-deep));
  color: #171008;
  border-color: rgba(243, 220, 133, 0.74);
}

.button.ghost {
  border-color: rgba(248, 239, 225, 0.32);
  background: rgba(248, 239, 225, 0.045);
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 5vw, 66px);
  bottom: 162px;
  z-index: 3;
  display: grid;
  gap: 10px;
  height: 310px;
  max-width: 342px;
  padding: 24px 26px;
  background:
    radial-gradient(circle at 85% 12%, rgba(243, 220, 133, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(243, 220, 133, 0.12), transparent 46%),
    rgba(10, 9, 7, 0.9);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-panel span {
  color: var(--muted);
  font-size: 0.86rem;
}

.panel-kicker {
  color: var(--gold) !important;
  font-size: 0.75rem !important;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-panel strong {
  font-family: Impact, "Arial Black", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  color: var(--paper);
  font-size: clamp(2.25rem, 3.6vw, 3.25rem);
  line-height: 0.86;
}

.tattoo-paths {
  display: grid;
  counter-reset: tattoo-path;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tattoo-paths li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 12px;
  counter-increment: tattoo-path;
  border-top: 1px solid rgba(243, 220, 133, 0.22);
  padding-top: 8px;
  padding-bottom: 8px;
}

.tattoo-paths li::before {
  content: counter(tattoo-path, decimal-leading-zero);
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(243, 220, 133, 0.5);
  border-radius: 999px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 0.72rem;
  font-weight: 900;
}

.tattoo-paths b {
  display: block;
  color: var(--paper);
  font-size: 0.94rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tattoo-paths span {
  display: block;
  grid-column: 2;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-index {
  position: absolute;
  right: clamp(20px, 6vw, 88px);
  bottom: 0;
  left: clamp(20px, 6vw, 88px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  background: rgba(248, 239, 225, 0.1);
  padding: 10px;
}

.hero-index span {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  padding: 17px 18px;
  background: rgba(6, 5, 4, 0.72);
  color: var(--muted);
  border-radius: calc(var(--frame-radius) - 8px);
}

.hero-index strong {
  color: var(--paper);
  font-family: Impact, "Arial Black", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1.55rem;
}

section {
  padding: clamp(76px, 10vw, 136px) clamp(20px, 6vw, 88px);
}

.premium-band {
  background:
    linear-gradient(135deg, rgba(166, 111, 36, 0.22), transparent 34%),
    linear-gradient(270deg, rgba(98, 19, 21, 0.14), transparent 42%),
    var(--charcoal);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(34px, 8vw, 104px);
  align-items: start;
}

.intro .section-grid > div:first-child {
  width: min(440px, 100%);
}

.intro .section-grid h2 {
  font-size: clamp(3.25rem, 6.45vw, 4.375rem);
}

.flash-section > .section-heading h2,
.exclusive-section > .section-heading h2,
.artists > .section-heading h2,
.gallery > .section-heading h2,
.care > .section-heading h2 {
  font-size: clamp(3.25rem, 5vw, 5rem);
}

.intro .intro-copy {
  align-self: center;
  transform: translateY(46px);
}

.intro-copy p,
.booking-copy p,
.split-heading > p {
  color: rgba(248, 239, 225, 0.72);
  font-size: 1.08rem;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.proof-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 14px;
  color: var(--gold);
  background: rgba(248, 239, 225, 0.04);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 38px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  max-width: none;
}

.flash-title-wrap {
  position: relative;
  max-width: 100%;
  padding-right: clamp(0px, 10vw, 128px);
}

.flash-auth-sticker {
  position: absolute;
  right: clamp(0px, 1.4vw, 18px);
  bottom: clamp(-30px, -2vw, -18px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(92px, 7.6vw, 112px);
  aspect-ratio: 1;
  padding: 14px 10px;
  border: 1.5px solid rgba(255, 248, 214, 0.86);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 250, 220, 0.95), rgba(243, 220, 133, 0.96) 42%, rgba(166, 111, 36, 0.96) 100%);
  box-shadow:
    inset 0 0 0 5px rgba(6, 5, 4, 0.12),
    inset 0 0 0 8px rgba(255, 248, 230, 0.14),
    0 16px 34px rgba(0, 0, 0, 0.42);
  color: #090603;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-7deg);
}

.flash-auth-sticker::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(6, 5, 4, 0.28);
  border-radius: 50%;
}

.flash-auth-sticker::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.32) 46%, transparent 62%);
  opacity: 0.55;
  pointer-events: none;
}

.flash-auth-sticker span,
.flash-auth-sticker strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: Impact, "Arial Black", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

.flash-auth-sticker span {
  max-width: 86px;
  color: rgba(9, 6, 3, 0.82);
  font-size: clamp(0.62rem, 0.86vw, 0.78rem);
  font-weight: 900;
  line-height: 0.92;
}

.flash-auth-sticker strong {
  margin-top: 0;
  color: #050403;
  font-size: clamp(1.48rem, 2.62vw, 1.8rem);
  font-weight: 900;
  line-height: 0.88;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  background: transparent;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  background: rgba(243, 220, 133, 0.08);
}

.style-grid article,
.timeline div {
  min-height: 280px;
  padding: 30px;
  background:
    linear-gradient(160deg, rgba(248, 239, 225, 0.055), transparent 42%),
    var(--ink);
  transition: background 0.2s ease, transform 0.2s ease;
}

.style-grid article:hover,
.timeline div:hover {
  background:
    linear-gradient(160deg, rgba(243, 220, 133, 0.12), transparent 46%),
    #0d0b09;
}

.style-grid span,
.timeline span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 48px;
  border: 1px solid rgba(243, 220, 133, 0.58);
  color: var(--gold);
  font-family: Georgia, serif;
}

.style-grid p,
.timeline p,
.flash-steps p,
.artist-card p,
.tattoo-card figcaption,
.quote-section p {
  color: var(--muted);
}

.artist-list {
  display: grid;
  grid-template-columns: 0.92fr 1.16fr 0.92fr;
  gap: 18px;
  align-items: stretch;
}

.flash-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  background: transparent;
}

.flash-board article {
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 30px;
  background:
    radial-gradient(circle at 72% 20%, rgba(243, 220, 133, 0.16), transparent 28%),
    linear-gradient(160deg, rgba(248, 239, 225, 0.055), transparent 42%),
    var(--ink);
}

.flash-board strong {
  color: var(--gold);
  font-family: Impact, "Arial Black", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.92;
}

.flash-board span {
  color: var(--muted);
}

.flash-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 44px);
  margin-top: clamp(38px, 6vw, 64px);
  padding-top: 34px;
}

.flash-steps::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(243, 220, 133, 0.3), var(--gold), rgba(243, 220, 133, 0.3));
  opacity: 0.72;
}

.flash-steps::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 16%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 245, 184, 0.62), transparent);
  box-shadow: 0 0 4px rgba(243, 220, 133, 0.36);
  animation: stepLightRight 3.4s linear infinite;
}

.flash-steps div {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  padding-top: 12px;
}

.flash-steps div::before {
  content: "";
  position: absolute;
  top: -29px;
  left: 1px;
  width: 15px;
  height: 15px;
  border: 2px solid var(--gold);
  border-radius: 70% 0 70% 70%;
  background: var(--ink);
  box-shadow: 0 0 0 8px rgba(243, 220, 133, 0.08);
  animation: stepPulse 3.8s ease-in-out infinite;
}

.flash-steps div:nth-child(2)::before {
  animation-delay: 0.45s;
}

.flash-steps div:nth-child(3)::before {
  animation-delay: 0.9s;
}

.flash-steps div:nth-child(4)::before {
  animation-delay: 1.35s;
}

.flash-steps span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 0.85rem;
  font-weight: 900;
}

.flash-steps h3 {
  margin-bottom: 0;
  color: var(--paper);
  font-size: clamp(1.25rem, 2.8vw, 2rem);
}

.flash-steps p {
  max-width: 220px;
  margin-bottom: 0;
}

@keyframes stepLightRight {
  0% {
    left: 0;
    opacity: 0.22;
  }

  12% {
    opacity: 0.7;
  }

  88% {
    opacity: 0.7;
  }

  100% {
    left: 84%;
    opacity: 0.22;
  }
}

@keyframes stepLightDown {
  0% {
    top: 0;
    opacity: 0.22;
  }

  12% {
    opacity: 0.7;
  }

  88% {
    opacity: 0.7;
  }

  100% {
    top: 84%;
    opacity: 0.22;
  }
}

@keyframes stepPulse {
  0%,
  100% {
    transform: rotate(-45deg) scale(1);
    box-shadow: 0 0 0 8px rgba(243, 220, 133, 0.08);
  }

  45% {
    transform: rotate(-45deg) scale(1.22);
    box-shadow: 0 0 0 14px rgba(243, 220, 133, 0.02);
  }
}

.exclusive-section .style-grid article {
  min-height: 310px;
}

.artist-showcase {
  position: relative;
}

.artist-carousel {
  display: grid;
  grid-auto-columns: minmax(330px, calc((100% - 56px) / 3));
  grid-auto-flow: column;
  align-items: start;
  gap: 28px;
  overflow-x: auto;
  padding: 8px 4px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.artist-carousel::-webkit-scrollbar {
  display: none;
}

.artist-card {
  display: grid;
  grid-template-rows: minmax(330px, 0.92fr) auto;
  min-height: 760px;
  background:
    linear-gradient(135deg, rgba(255, 248, 230, 0.08), transparent 38%),
    rgba(10, 8, 6, 0.98);
  overflow: hidden;
  scroll-snap-align: center;
}

.artist-arrow {
  position: absolute;
  top: 47%;
  z-index: 4;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 2px solid rgba(255, 248, 230, 0.56);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #fff2a8, var(--gold) 45%, var(--gold-deep) 100%);
  color: #070503;
  cursor: pointer;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.46);
  transform: translateY(-50%);
}

.artist-arrow-prev {
  left: -28px;
}

.artist-arrow-next {
  right: -28px;
}

.artist-portrait {
  min-height: 330px;
  background-color: var(--panel);
  background-image:
    radial-gradient(circle at 52% 34%, rgba(248, 239, 225, 0.88) 0 10%, transparent 11%),
    linear-gradient(135deg, transparent 40%, rgba(216, 180, 106, 0.72) 41% 43%, transparent 44%),
    radial-gradient(circle at 50% 76%, rgba(122, 30, 32, 0.72) 0 26%, transparent 27%),
    linear-gradient(140deg, rgba(216, 180, 106, 0.08), rgba(6, 5, 4, 0.5));
  background-size: cover;
  background-position: center;
}

.portrait-one {
  background-image:
    linear-gradient(180deg, rgba(6, 5, 4, 0.04), rgba(6, 5, 4, 0.28)),
    url("assets/artists/tiago.png");
}

.artist-card-body {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 420px;
  padding: 28px;
  background:
    linear-gradient(110deg, rgba(255, 248, 230, 0.05), transparent 46%),
    rgba(20, 17, 13, 0.98);
}

.artist-card-body h3 {
  margin-bottom: 0;
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 950;
  line-height: 1.08;
  text-transform: none;
}

.artist-card-body > span,
.artist-card-body > .artist-link {
  display: inline-flex;
  width: fit-content;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
}

.artist-card-body > .artist-link:hover {
  color: var(--gold-bright);
}

.artist-divider {
  height: 1px;
  margin: 6px 0 10px;
  background: linear-gradient(90deg, rgba(243, 220, 133, 0.42), transparent);
}

.artist-toggle {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 950;
}

.artist-card-body p {
  margin-top: 8px;
  color: rgba(248, 239, 225, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.7;
}

.artist-card.is-collapsed .artist-card-body p {
  display: none;
}

.artist-card.is-collapsed {
  min-height: 0;
}

.artist-card.is-collapsed .artist-card-body {
  min-height: 0;
}

.artist-card.is-collapsed .artist-toggle {
  transform: rotate(180deg);
}

.portrait-two {
  background-image:
    linear-gradient(180deg, rgba(6, 5, 4, 0.04), rgba(6, 5, 4, 0.28)),
    url("assets/artists/paulo.png"),
    radial-gradient(circle at 50% 34%, rgba(248, 239, 225, 0.86) 0 11%, transparent 12%),
    repeating-linear-gradient(45deg, rgba(216, 180, 106, 0.55) 0 2px, transparent 2px 12px),
    radial-gradient(circle at 50% 76%, rgba(101, 106, 72, 0.82) 0 29%, transparent 30%);
}

.portrait-three {
  background-image:
    linear-gradient(180deg, rgba(6, 5, 4, 0.04), rgba(6, 5, 4, 0.28)),
    url("assets/artists/luis.png"),
    radial-gradient(circle at 50% 34%, rgba(248, 239, 225, 0.9) 0 11%, transparent 12%),
    linear-gradient(90deg, transparent 46%, rgba(216, 180, 106, 0.8) 47% 49%, transparent 50%),
    radial-gradient(circle at 50% 76%, rgba(70, 70, 70, 0.9) 0 28%, transparent 29%);
}

.portrait-four {
  background-image:
    linear-gradient(180deg, rgba(6, 5, 4, 0.04), rgba(6, 5, 4, 0.28)),
    url("assets/guest.png");
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.portfolio-copy {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(248, 239, 225, 0.72);
  font-size: 1.08rem;
}

.instagram-portfolio-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  gap: 0;
  width: fit-content;
  max-width: max-content;
  margin-top: 0;
  padding: 10px 16px;
  border: 1.5px solid rgba(243, 220, 133, 0.62);
  border-radius: 999px;
  background:
    linear-gradient(110deg, rgba(255, 248, 230, 0.12), transparent 45%),
    rgba(18, 14, 10, 0.82);
  box-shadow:
    inset 0 0 0 3px rgba(120, 78, 28, 0.42),
    0 0 0 1px rgba(255, 239, 172, 0.22),
    0 18px 40px rgba(0, 0, 0, 0.34);
  color: var(--paper);
  font-size: 0.6925rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.instagram-portfolio-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    transparent 0 80%,
    rgba(255, 246, 202, 0.12) 82%,
    rgba(255, 246, 202, 0.7) 84%,
    rgba(243, 220, 133, 0.26) 86%,
    transparent 89% 100%
  );
  pointer-events: none;
  opacity: 0.46;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: frameBorderSweep 9.8s linear infinite;
  will-change: transform;
}

.instagram-portfolio-link span {
  display: block;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.instagram-portfolio-link svg {
  display: none;
  width: 0;
  height: 0;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 2;
}

.instagram-portfolio-link:hover {
  transform: translateY(-1px);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.filter {
  padding: 10px 14px;
  background: rgba(248, 239, 225, 0.03);
  color: var(--paper);
  cursor: pointer;
}

.filter.is-active,
.filter:hover {
  border-color: var(--gold);
  background: rgba(243, 220, 133, 0.14);
}

.portfolio-showcase {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-auto-columns: minmax(300px, calc((100% - 56px) / 3));
  grid-auto-flow: column;
  gap: 28px;
  overflow-x: auto;
  padding: 8px 4px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.tattoo-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(380px, 1fr) auto;
  min-height: 500px;
  margin: 0;
  background: var(--panel);
  overflow: hidden;
  scroll-snap-align: center;
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.tattoo-card.is-hidden {
  display: none;
}

.tattoo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(243, 220, 133, 0.44);
}

.ink-art {
  position: relative;
  min-height: 380px;
  background:
    radial-gradient(circle at 50% 45%, rgba(248, 239, 225, 0.92) 0 17%, transparent 18%),
    linear-gradient(160deg, rgba(243, 220, 133, 0.5), transparent 32%),
    var(--charcoal);
  filter: saturate(0.88);
}

.photo-art {
  background: var(--charcoal);
  filter: none;
}

.photo-art img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.photo-art::before,
.photo-art::after {
  display: none;
}

.ink-art::before,
.ink-art::after {
  content: "";
  position: absolute;
  inset: 15%;
  border: 2px solid rgba(248, 239, 225, 0.7);
  border-radius: 50%;
}

.ink-art::after {
  inset: 27% 34%;
  border-color: rgba(122, 30, 32, 0.86);
  border-radius: 0;
  transform: rotate(45deg);
}

.art-one::before {
  border-radius: 42% 58% 46% 54%;
}

.art-two {
  background:
    repeating-radial-gradient(circle at 50% 52%, transparent 0 14px, rgba(248, 239, 225, 0.38) 15px 17px),
    linear-gradient(135deg, rgba(243, 220, 133, 0.16), transparent),
    var(--charcoal);
}

.art-three {
  background:
    radial-gradient(ellipse at 50% 46%, rgba(248, 239, 225, 0.9) 0 10%, rgba(40, 40, 40, 0.7) 11% 20%, transparent 21%),
    linear-gradient(135deg, rgba(243, 220, 133, 0.24), rgba(122, 30, 32, 0.18)),
    var(--charcoal);
}

.art-four::before {
  inset: 18% 32%;
  border-radius: 45%;
  transform: rotate(28deg);
}

.art-four {
  background:
    radial-gradient(circle at 38% 42%, rgba(52, 84, 146, 0.86) 0 18%, transparent 19%),
    radial-gradient(circle at 66% 58%, rgba(190, 45, 45, 0.72) 0 17%, transparent 18%),
    linear-gradient(135deg, rgba(243, 220, 133, 0.2), rgba(122, 30, 32, 0.24)),
    var(--charcoal);
}

.art-five {
  background:
    radial-gradient(circle at 32% 35%, var(--paper) 0 3px, transparent 4px),
    radial-gradient(circle at 58% 49%, var(--paper) 0 2px, transparent 3px),
    radial-gradient(circle at 44% 62%, var(--paper) 0 3px, transparent 4px),
    linear-gradient(135deg, rgba(101, 106, 72, 0.42), transparent),
    var(--charcoal);
}

.art-six::before {
  border-radius: 64% 36% 66% 34%;
}

.art-six {
  background:
    radial-gradient(circle at 48% 50%, rgba(18, 18, 18, 0.82) 0 18%, transparent 19%),
    repeating-linear-gradient(135deg, rgba(248, 239, 225, 0.12) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, rgba(98, 19, 21, 0.24), rgba(243, 220, 133, 0.12)),
    var(--charcoal);
}

.tattoo-card figcaption {
  display: grid;
  gap: 2px;
  padding: 17px 18px;
  font-size: 0.95rem;
}

.tattoo-card figcaption strong {
  color: var(--paper);
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(360px, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}

.contact-card,
.map-card,
.reviews-section {
  background:
    linear-gradient(135deg, rgba(243, 220, 133, 0.09), transparent 38%),
    rgba(15, 13, 10, 0.88);
  overflow: hidden;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(24px, 4vw, 36px);
}

.contact-card h3,
.reviews-heading h3 {
  color: var(--paper);
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
}

.contact-card a:not(.button),
.contact-card address,
.reviews-heading a {
  color: var(--muted);
  font-style: normal;
  font-size: 1.05rem;
}

.contact-card a:not(.button):hover,
.reviews-heading a:hover {
  color: var(--gold);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.map-card {
  min-height: 420px;
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.88) sepia(0.18);
}

.reviews-section {
  margin-bottom: 34px;
  padding: clamp(24px, 4vw, 36px);
}

.reviews-band {
  background:
    linear-gradient(135deg, rgba(216, 180, 106, 0.1), transparent 34%),
    linear-gradient(270deg, rgba(122, 30, 32, 0.12), transparent 42%),
    var(--ink);
}

.reviews-band .reviews-section {
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 22px;
  margin-bottom: 24px;
}

.reviews-heading h3 {
  margin-bottom: 0;
  color: transparent;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 54%, #f8ebb0);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(3.25rem, 5vw, 5rem);
  line-height: 0.88;
}

.reviews-heading a {
  color: var(--gold);
  font-weight: 850;
  text-transform: uppercase;
}

.reviews-heading .reviews-cta {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--frame-radius);
  padding: 10px 18px;
  color: var(--paper);
  background: rgba(243, 220, 133, 0.08);
  font-size: 0.7375rem;
  box-shadow: var(--frame-shadow);
}

.reviews-heading .reviews-cta:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  background: transparent;
}

.review-grid article {
  padding: 24px;
  background: rgba(2, 2, 2, 0.68);
  box-shadow: none;
}

.review-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.review-grid p {
  margin-bottom: 0;
  color: rgba(248, 239, 225, 0.72);
}

.quote-section {
  display: grid;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(6, 5, 4, 0.92), rgba(6, 5, 4, 0.72)),
    url("assets/titans-premium-hero.png") center / cover;
}

.quote-section blockquote {
  max-width: 980px;
  margin: 0 0 20px;
  color: transparent;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), #f8ebb0);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Impact, "Arial Black", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.quote-section p {
  font-weight: 800;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.68fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: start;
}

.contact-strip {
  display: grid;
  gap: 12px;
  margin-top: 36px;
  color: var(--gold);
}

.contact-strip span {
  border-bottom: 1px solid rgba(216, 180, 106, 0.2);
  padding-bottom: 10px;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  background:
    linear-gradient(160deg, rgba(243, 220, 133, 0.1), transparent 34%),
    var(--panel);
  box-shadow: var(--shadow);
}

.form-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.form-header span {
  color: var(--paper);
  font-family: Impact, "Arial Black", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.form-header strong {
  color: var(--gold);
  font-size: 0.86rem;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.93rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(248, 239, 225, 0.18);
  background: rgba(6, 5, 4, 0.86);
  color: var(--paper);
  padding: 14px 15px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(243, 220, 133, 0.12);
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--gold);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 30px clamp(20px, 6vw, 88px);
  color: var(--muted);
}

.footer a {
  position: relative;
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

@supports (-webkit-background-clip: text) {
  .footer a {
    background:
      linear-gradient(90deg, var(--gold) 0 40%, rgba(255, 246, 202, 0.78) 50%, var(--gold) 60% 100%);
    background-size: 240% 100%;
    background-position: 100% 0;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.footer a {
  animation: footerLinkShine 5.8s ease-in-out infinite;
}

@keyframes footerLinkShine {
  0%,
  48% {
    background-position: 100% 0;
  }

  70% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 0;
  }
}

.footer span:nth-of-type(2) {
  font-weight: 900;
}

.footer span:first-of-type {
  font-family: system-ui, sans-serif;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .style-grid,
  .timeline,
  .flash-steps,
  .flash-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-auto-columns: minmax(300px, calc((100% - 28px) / 2));
  }

  .artist-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 78px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: rgba(17, 16, 14, 0.98);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .nav a::after {
    display: none;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    border: 0;
  }

  .section-grid,
  .split-heading,
  .booking,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .flash-title-wrap {
    display: inline-block;
    padding-right: 104px;
  }

  .flash-auth-sticker {
    right: 0;
    bottom: -28px;
  }

  .intro .intro-copy {
    transform: none;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: min(360px, 100%);
    margin-top: 40px;
  }

  .hero {
    align-items: start;
    min-height: auto;
    padding-bottom: clamp(56px, 8vw, 86px);
  }

  .hero::after {
    display: none;
  }

  .hero-index {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: clamp(34px, 6vw, 54px);
  }
}

@media (max-width: 660px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand strong {
    max-width: 170px;
  }

  .brand img {
    width: 178px;
    height: 58px;
  }

  .hero {
    display: block;
    padding: 112px 20px 34px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-index {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .flash-title-wrap {
    display: block;
    padding-right: 0;
  }

  .flash-auth-sticker {
    position: relative;
    right: auto;
    bottom: auto;
    width: 108px;
    margin: 16px 0 0;
    transform: rotate(-5deg);
  }

  .proof-row,
  .style-grid,
  .timeline,
  .flash-steps,
  .flash-board,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-columns: minmax(278px, 86vw);
  }

  .flash-steps {
    padding-top: 0;
    padding-left: 26px;
  }

  .flash-steps::before {
    top: 19px;
    bottom: 0;
    left: 9px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--gold), rgba(243, 220, 133, 0.16), var(--gold));
    background-size: 100% 220%;
  }

  .flash-steps::after {
    top: 19px;
    bottom: auto;
    left: 9px;
    width: 2px;
    height: 16%;
    background: linear-gradient(180deg, transparent, rgba(255, 245, 184, 0.62), transparent);
    animation-name: stepLightDown;
  }

  .flash-steps div::before {
    top: 10px;
    left: -26px;
  }

  .reviews-heading {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .reviews-heading h3 {
    max-width: 100%;
    font-size: clamp(2.75rem, 12vw, 4.2rem);
  }

  .reviews-heading .reviews-cta {
    width: fit-content;
    min-height: 42px;
    padding: 8px 14px;
    font-size: 0.675rem;
  }

  .instagram-portfolio-link {
    width: fit-content;
    max-width: max-content;
    justify-content: center;
    gap: 0;
    margin-top: 0;
    padding: 9px 14px;
    font-size: 0.63rem;
  }

  .instagram-portfolio-link svg {
    display: none;
    width: 0;
    height: 0;
  }

  .portfolio-copy {
    margin-top: 18px;
    font-size: 1rem;
  }

  .artist-carousel {
    grid-auto-columns: minmax(278px, 86vw);
  }

  .artist-arrow {
    width: 48px;
    height: 48px;
    font-size: 2rem;
  }

  .artist-arrow-prev {
    left: -12px;
  }

  .artist-arrow-next {
    right: -12px;
  }

  .wide-card,
  .tall-card {
    grid-column: auto;
    grid-row: auto;
  }

  .tall-card .ink-art,
  .ink-art {
    min-height: 240px;
  }

  .artist-portrait {
    min-height: 220px;
  }
}
