:root {
  --black: #050505;
  --ink: #101010;
  --charcoal: #191817;
  --paper: #ebe1cf;
  --bone: #f5efe4;
  --ash: #8f877a;
  --blood: #b3132a;
  --oxide: #d8693d;
  --line: rgba(245, 239, 228, 0.14);
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--bone);
  background: var(--black);
  font-family: "Space Grotesk", system-ui, sans-serif;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 24px;
  background:
    radial-gradient(circle at 50% 40%, rgba(179, 19, 42, 0.22), transparent 34%),
    #030303;
}

.loader p {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(36px, 8vw, 104px);
  line-height: 0.8;
  text-transform: uppercase;
}

.loader-sigil {
  position: relative;
  width: min(52vw, 280px);
  aspect-ratio: 1;
}

.ring,
.needle,
.drop {
  position: absolute;
  display: block;
}

.ring {
  inset: 10%;
  border: 1px solid var(--paper);
  border-radius: 50%;
}

.r2 {
  inset: 26%;
  border-color: var(--blood);
  transform: rotate(45deg);
}

.needle {
  top: 50%;
  left: 50%;
  width: 74%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--paper), var(--blood), transparent);
  transform-origin: left;
}

.n1 { transform: rotate(24deg) translateX(-50%); }
.n2 { transform: rotate(-54deg) translateX(-50%); }

.drop {
  width: 14px;
  height: 22px;
  border-radius: 70% 70% 70% 8%;
  background: var(--blood);
}

.d1 { top: 10%; left: 48%; }
.d2 { right: 18%; bottom: 22%; }
.d3 { left: 20%; bottom: 20%; }

.load-line {
  width: min(72vw, 520px);
  height: 1px;
  background: rgba(245, 239, 228, 0.18);
  overflow: hidden;
}

.load-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blood);
  transform-origin: left;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.11;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.ink-orbit {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ink-orbit span {
  position: absolute;
  width: 42vw;
  aspect-ratio: 1;
  border: 1px solid rgba(179, 19, 42, 0.2);
  border-radius: 50%;
}
.ink-orbit span:nth-child(1) { top: 8%; left: -16%; }
.ink-orbit span:nth-child(2) { top: 32%; right: -18%; }
.ink-orbit span:nth-child(3) { bottom: -22%; left: 18%; }
.ink-orbit span:nth-child(4) { top: -18%; right: 18%; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(18px, 4vw, 58px);
  mix-blend-mode: difference;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand span {
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px currentColor;
}

nav {
  display: flex;
  gap: clamp(14px, 2.4vw, 34px);
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-cta {
  border: 1px solid currentColor;
  padding: 9px 15px;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.92), rgba(5,5,5,.5) 48%, rgba(5,5,5,.2)),
    linear-gradient(180deg, transparent 34%, #050505 100%);
}

.hero-image img {
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: grayscale(.35) contrast(1.15);
}

.hero-content {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: end;
  padding: 116px clamp(18px, 5vw, 72px) 92px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--oxide);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-title,
h2,
h3 {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title {
  display: grid;
  max-width: 1050px;
  font-size: clamp(58px, 10vw, 154px);
  line-height: .78;
}

.hero-title span:nth-child(even) {
  color: transparent;
  -webkit-text-stroke: 1px var(--bone);
}

.hero-copy {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(245,239,228,.78);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 0 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.primary { border-color: var(--blood); background: var(--blood); color: var(--bone); }
.ghost { background: rgba(245,239,228,.07); backdrop-filter: blur(12px); }

.hero-card {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 86px;
  width: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(16,16,16,.72);
  backdrop-filter: blur(18px);
}
.hero-card span { color: var(--ash); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.hero-card strong { display: block; color: var(--oxide); font-family: "Archivo Black"; font-size: 72px; line-height: .85; }
.hero-card p { margin: 8px 0 0; color: rgba(245,239,228,.7); }

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  contain: paint;
  border-block: 1px solid var(--line);
  background: #0b0b0b;
}
.marquee div { display: flex; gap: 30px; width: max-content; padding: 14px 0; }
.marquee span { font-family: "Archivo Black"; font-size: clamp(28px, 5vw, 72px); text-transform: uppercase; }

.statement,
.flash,
.artists,
.booking {
  position: relative;
  z-index: 1;
  padding: clamp(78px, 11vw, 160px) clamp(18px, 5vw, 72px);
}

h2 {
  max-width: 1120px;
  font-size: clamp(42px, 6.4vw, 106px);
  line-height: .88;
  overflow-wrap: break-word;
}

.ritual {
  position: relative;
  z-index: 1;
  min-height: 270vh;
}

.ritual-stage {
  min-height: 100svh;
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 36px;
  align-items: center;
  padding: 52px clamp(18px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 42%, rgba(179,19,42,.23), transparent 32%),
    linear-gradient(135deg, #15110f, #050505 62%);
}

.ritual-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(245,239,228,.68);
  font-size: 19px;
  line-height: 1.6;
}

.tattoo-rig {
  position: relative;
  height: min(76vh, 720px);
  min-height: 520px;
}

.skin {
  position: absolute;
  inset: 8% 16%;
  border: 1px solid rgba(245,239,228,.18);
  border-radius: 44% 56% 50% 42%;
  background: linear-gradient(135deg, #c6a887, #806451 55%, #3a2a24);
  filter: saturate(.75);
  box-shadow: inset 0 0 70px rgba(0,0,0,.45), 0 40px 120px rgba(0,0,0,.45);
}

.machine,
.ink-line,
.moon,
.thorn,
.dot {
  position: absolute;
  display: block;
}

.machine {
  top: 16%;
  left: 4%;
  width: 220px;
  height: 58px;
  border: 1px solid rgba(245,239,228,.35);
  background: linear-gradient(90deg, #ddd3c1, #3b3430 54%, #080808);
  transform: rotate(-18deg) skewX(-12deg);
}

.ink-line {
  left: 50%;
  top: 18%;
  width: 2px;
  height: 62%;
  background: var(--black);
  transform-origin: bottom;
}
.il1 { transform: rotate(0deg); }
.il2 { transform: rotate(28deg); }
.il3 { transform: rotate(-28deg); }
.il4 { transform: rotate(58deg); height: 42%; top: 36%; }

.moon {
  left: 43%;
  top: 30%;
  width: 130px;
  aspect-ratio: 1;
  border: 16px solid var(--black);
  border-right-color: transparent;
  border-radius: 50%;
}

.thorn {
  left: 50%;
  top: 50%;
  width: 150px;
  height: 2px;
  background: var(--black);
}
.t1 { transform: rotate(42deg); }
.t2 { transform: rotate(-42deg); }

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blood);
  box-shadow: 0 0 24px rgba(179,19,42,.8);
}
.dot1 { top: 26%; left: 38%; }
.dot2 { top: 58%; left: 66%; }
.dot3 { bottom: 24%; left: 44%; }
.dot4 { top: 45%; right: 22%; }

.flash { background: #0b0b0b; overflow: hidden; }
.section-head { margin-bottom: 40px; }
.flash-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  grid-auto-rows: 220px;
  gap: 14px;
}
.flash-card {
  position: relative;
  grid-column: span 2;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--charcoal);
}
.flash-card.tall { grid-row: span 2; }
.flash-card.wide { grid-column: span 3; }
.flash-card img { height: 100%; object-fit: cover; filter: grayscale(.22) contrast(1.08); }
.flash-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.76)); }
.flash-card span { position: absolute; left: 16px; bottom: 14px; z-index: 2; font-weight: 700; text-transform: uppercase; }

.artists {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
}
.artist-list { display: grid; gap: 1px; background: var(--line); }
.artist { padding: 28px; background: var(--black); }
.artist span { color: var(--blood); font-weight: 700; }
.artist h3 { margin-top: 18px; font-size: clamp(38px, 5vw, 76px); line-height: .85; }
.artist p { color: var(--ash); font-weight: 700; text-transform: uppercase; }

.booking {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  border-top: 1px solid var(--line);
}
form { display: grid; gap: 14px; }
label { display: grid; gap: 8px; color: var(--ash); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
input, select {
  min-height: 54px;
  border: 1px solid var(--line);
  color: var(--bone);
  background: #0d0d0d;
  padding: 0 16px;
  font: inherit;
}

footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px,5vw,72px);
  border-top: 1px solid var(--line);
  color: var(--ash);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header { padding: 18px; }
  .brand { max-width: 174px; font-size: 13px; }
  nav a:not(.nav-cta) { display: none; }
  .hero-image::after {
    background:
      linear-gradient(180deg, rgba(5,5,5,.08), rgba(5,5,5,.55) 42%, #050505 94%),
      radial-gradient(circle at 72% 32%, rgba(179,19,42,.28), transparent 34%);
  }
  .hero-content { padding: 96px 18px 88px; }
  .hero-title { font-size: clamp(54px, 18vw, 84px); line-height: .78; }
  .hero-copy { max-width: 94%; font-size: 16px; }
  .hero-actions, .btn { width: 100%; }
  .hero-card { top: 88px; right: 18px; bottom: auto; width: 126px; padding: 14px; }
  .hero-card strong { font-size: 42px; }
  .statement, .flash, .artists, .booking { padding: 78px 18px; }
  h2 { font-size: clamp(40px, 12.8vw, 66px); line-height: .9; }
  .ritual { min-height: 270vh; }
  .ritual-stage, .artists, .booking { grid-template-columns: 1fr; }
  .ritual-stage { align-content: space-between; min-height: 100svh; padding: 80px 18px 30px; }
  .ritual-copy p:not(.eyebrow) { font-size: 16px; }
  .tattoo-rig { height: 48vh; min-height: 430px; }
  .machine { width: 138px; height: 42px; }
  .flash-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 14px; }
  .flash-card, .flash-card.wide, .flash-card.tall { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 5; }
  .flash-card:nth-child(even) { margin-left: 26px; width: calc(100% - 26px); }
  footer { flex-direction: column; padding: 24px 18px; }
}

@media (max-width: 480px) {
  .loader-sigil { width: 64vw; }
  .hero-title span:nth-child(even) { -webkit-text-stroke-width: .8px; }
  .ink-orbit span { width: 78vw; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .loader { display: none; }
}
