:root {
  --ink: #0a0a0a;
  --paper: #f2ede6;
  --gold: #c8a96e;
  --smoke: #8a8278;
  --red: #8b2222;
  --off-white: #f8f4ef;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Noto Serif SC', serif;
  font-weight: 200;
  cursor: none;
  overflow-x: hidden;
}

/* Custom cursor */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.15s ease;
  mix-blend-mode: difference;
  opacity: 0.6;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: normal;
}
nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.9), transparent);
  pointer-events: none;
}
.nav-logo {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  position: relative;
}
.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
  position: relative;
}
.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--smoke);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--paper); }

  /* LANG SWITCHER */
  .lang-switcher {
    display: flex;
    gap: 8px;
    position: relative;
    z-index: 101;
  }
  .lang-btn {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    background: transparent;
    border: 1px solid rgba(200,169,110,0.2);
    color: var(--smoke);
    padding: 4px 8px;
    cursor: none;
    transition: all 0.3s;
  }
  .lang-btn:hover, .lang-btn.active {
    border-color: var(--gold);
    color: var(--paper);
    background: rgba(200,169,110,0.1);
  }

  /* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 40%, rgba(139,34,34,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(200,169,110,0.05) 0%, transparent 50%);
}
.hero-lines {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(200,169,110,0.04) 79px, rgba(200,169,110,0.04) 80px);
}
.hero-number {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(200px, 25vw, 380px);
  font-weight: 300;
  color: rgba(200,169,110,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.hero-content {
  position: relative;
  max-width: 720px;
}
.hero-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(60px, 8vw, 120px);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--smoke);
  max-width: 420px;
  font-weight: 300;
}
.hero-scroll {
  position: absolute;
  bottom: 80px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--smoke);
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--smoke), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* SECTION BASE */
section { padding: 120px 60px; }
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 60px;
}

/* DIVIDER */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,169,110,0.3), transparent);
  margin: 0 60px;
  width: calc(100% - 120px);
}

/* GALLERY */
.gallery-section {
  background: var(--ink);
}
.gallery-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.gallery-intro-text {
  max-width: 400px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--smoke);
}
.gallery-filter {
  display: flex;
  gap: 4px;
}
.filter-btn {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(200,169,110,0.2);
  color: var(--smoke);
  cursor: none;
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(200,169,110,0.1);
  border-color: var(--gold);
  color: var(--paper);
}

/* Masonry grid */
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  cursor: none;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.gallery-item:hover::before { opacity: 1; }
.gallery-img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
  filter: grayscale(20%) contrast(1.05);
}
.gallery-item:hover .gallery-img { transform: scale(1.04); }
.gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
}
.gallery-item:hover .gallery-info { opacity: 1; transform: translateY(0); }
.gallery-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 4px;
}
.gallery-info span {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Fake tattoo images using CSS art */
.tattoo-placeholder {
  aspect-ratio: 3/4;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.tattoo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
}
.tp-1 { background: linear-gradient(135deg, #111 0%, #1a1a1a 100%); aspect-ratio: 3/4; }
.tp-2 { background: linear-gradient(135deg, #141414 0%, #1c1c1c 100%); aspect-ratio: 2/3; }
.tp-3 { background: linear-gradient(135deg, #0f0f0f 0%, #181818 100%); aspect-ratio: 4/5; }
.tp-4 { background: linear-gradient(135deg, #131313 0%, #1b1b1b 100%); aspect-ratio: 3/4; }
.tp-5 { background: linear-gradient(135deg, #111 0%, #191919 100%); aspect-ratio: 2/3; }
.tp-6 { background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%); aspect-ratio: 5/6; }
.tp-7 { background: linear-gradient(135deg, #121212 0%, #1c1c1c 100%); aspect-ratio: 3/4; }
.tp-8 { background: linear-gradient(135deg, #0f0f0f 0%, #171717 100%); aspect-ratio: 4/5; }
.tp-9 { background: linear-gradient(135deg, #111 0%, #1a1a1a 100%); aspect-ratio: 2/3; }

.tattoo-svg {
  width: 70%;
  height: 70%;
  opacity: 0.85;
}

/* ARTISTS */
.artists-section {
  background: #0d0d0d;
  position: relative;
}
.artists-section::before {
  content: 'ARTISTS';
  position: absolute;
  top: 80px;
  right: 60px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  font-weight: 300;
  color: rgba(200,169,110,0.03);
  pointer-events: none;
  line-height: 1;
}
.artists-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
.artist-card {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.artist-portrait {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}
.artist-portrait-bg {
  width: 100%;
  height: 100%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s ease;
  filter: grayscale(30%);
}
.artist-card:hover .artist-portrait-bg { transform: scale(1.04); }
.artist-portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink) 0%, rgba(10,10,10,0.3) 60%, transparent 100%);
}
.artist-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px 32px;
}
.artist-index {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 8px;
}
.artist-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 6px;
}
.artist-style {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--smoke);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.artist-bio {
  padding: 28px 32px;
  background: #111;
  border-top: 1px solid rgba(200,169,110,0.1);
}
.artist-bio p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--smoke);
}
.artist-tags {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.artist-tag {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(200,169,110,0.2);
  color: var(--gold);
}

/* ABOUT / PHILOSOPHY */
.philosophy-section {
  position: relative;
  overflow: hidden;
}
.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
.philosophy-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.philosophy-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200,169,110,0.15);
}
.philosophy-frame::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: 20px; bottom: 20px;
  border: 1px solid rgba(200,169,110,0.08);
}
.philosophy-img-inner {
  position: absolute;
  top: 40px; left: 40px; right: 40px; bottom: 40px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.philosophy-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 32px;
}
.philosophy-text h2 em {
  font-style: italic;
  color: var(--gold);
}
.philosophy-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--smoke);
  margin-bottom: 20px;
}
.philosophy-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(200,169,110,0.15);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--smoke);
  text-transform: uppercase;
}

/* PROCESS */
.process-section { background: #0d0d0d; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 80px;
}
.process-step {
  padding: 48px 36px;
  background: #111;
  position: relative;
  transition: background 0.3s;
}
.process-step:hover { background: #141414; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(200,169,110,0.15);
  line-height: 1;
  margin-bottom: 24px;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 16px;
}
.step-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--smoke);
}
.step-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
}
.process-step:hover .step-line { transform: scaleX(1); }

/* BOOKING */
.booking-section {
  background: var(--ink);
  text-align: center;
  padding: 160px 60px;
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(139,34,34,0.08) 0%, transparent 70%);
}
.booking-section .section-label {
  justify-content: center;
  display: flex;
}
.booking-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 32px;
}
.booking-title em {
  font-style: italic;
  color: var(--gold);
}
.booking-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--smoke);
  max-width: 480px;
  margin: 0 auto 60px;
}
.btn-primary {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 20px 56px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover { color: var(--ink); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

/* CONTACT INFO */
.contact-strip {
  border-top: 1px solid rgba(200,169,110,0.15);
  padding: 48px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
}
.contact-value {
  font-family: 'Noto Serif TC', serif;
  font-size: 15px;
  color: var(--paper);
  font-weight: 300;
}

/* FOOTER */
footer {
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(200,169,110,0.08);
}
.footer-logo {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--smoke);
  letter-spacing: 0.15em;
}
.footer-social {
  display: flex;
  gap: 24px;
}
.footer-social a {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--smoke);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); }

/* FADE IN ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* Hero entrance */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-label { animation: fadeInUp 1s ease 0.3s both; }
.hero-title { animation: fadeInUp 1s ease 0.5s both; }
.hero-desc { animation: fadeInUp 1s ease 0.7s both; }

@media (max-width: 1024px) {
  nav { padding: 24px 32px; }
  section { padding: 80px 32px; }
  .hero { padding: 0 32px 60px; }
  .gallery-grid { columns: 2; }
  .artists-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 60px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .contact-strip { flex-wrap: wrap; gap: 28px; padding: 40px 32px; }
    footer { padding: 32px; flex-direction: column; gap: 20px; text-align: center; }
    .nav-links { display: none; }
    .lang-switcher { gap: 4px; }
    .lang-btn { padding: 4px 6px; font-size: 9px; }
  }
