/* OBSIDIAN TATTOO — one-page site */
:root {
  --black: #050505;
  --black-2: #0b0b0c;
  --panel: #0e0e10;
  --white: #f5f5f2;
  --muted: #9a9a9a;
  --line: rgba(255,255,255,.14);
  --silver: #c8c8ca;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 4%, rgba(255,255,255,.07), transparent 26%),
    radial-gradient(circle at 8% 30%, rgba(255,255,255,.035), transparent 22%),
    var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 62%, rgba(255,255,255,.018) 62.1% 62.3%, transparent 62.4%);
  z-index: -2;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(5,5,5,.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  letter-spacing: .22em;
  font-weight: 650;
}

.brand-mark {
  color: var(--silver);
  transform: rotate(45deg);
  font-size: .75rem;
}

nav {
  display: flex;
  gap: 28px;
  color: #c2c2c2;
  font-size: .86rem;
}

nav a { transition: color .2s ease; }
nav a:hover { color: white; }

.hero {
  min-height: 86vh;
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 24px 86px;
  display: grid;
  place-items: center;
  align-content: center;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,.015) 38%, transparent 70%);
  filter: blur(8px);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-logo {
  display: block;
  width: min(760px, 93vw);
  height: auto;
  mix-blend-mode: screen;
  object-fit: contain;
  margin: -40px auto -105px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: .72rem;
  letter-spacing: .28em;
  color: #aaa;
  font-weight: 650;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  margin: 0;
  letter-spacing: -.045em;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  margin: 0;
  letter-spacing: -.04em;
}

.artist-line {
  margin: 10px auto 0;
  color: #8f8f8f;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lead {
  max-width: 610px;
  margin: 14px auto 0;
  color: #b9b9b9;
  font-size: clamp(1rem, 2vw, 1.17rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--line);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .06em;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

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

.button-primary {
  color: #050505;
  background: var(--white);
  border-color: var(--white);
}

.button-primary:hover { background: #dcdcdc; }

.button-ghost {
  background: rgba(255,255,255,.025);
  color: #e5e5e5;
}

.button-ghost:hover {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.05);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px 24px;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 48px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head .eyebrow { grid-column: 1 / -1; }
.section-head p:last-child {
  color: var(--muted);
  max-width: 460px;
  margin: 0 0 6px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}

.work-card {
  min-height: 330px;
  position: relative;
  border: 1px solid rgba(255,255,255,.09);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), transparent 38%),
    linear-gradient(35deg, transparent 42%, rgba(255,255,255,.055) 42.5%, transparent 43%),
    #0c0c0e;
  transition: transform .25s ease, border-color .25s ease;
}

.work-card::before,
.work-card::after {
  content: "";
  position: absolute;
  inset: auto;
  border-style: solid;
  opacity: .65;
}

.work-card::before {
  width: 0; height: 0;
  border-width: 0 85px 170px 85px;
  border-color: transparent transparent rgba(255,255,255,.045) transparent;
  left: 16%;
  bottom: -24px;
  transform: rotate(14deg);
}

.work-card::after {
  width: 0; height: 0;
  border-width: 0 55px 120px 55px;
  border-color: transparent transparent rgba(255,255,255,.035) transparent;
  right: 8%;
  top: 20%;
  transform: rotate(-18deg);
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.28);
}

.work-card-1,
.work-card-4 { grid-column: span 7; }
.work-card-2,
.work-card-3,
.work-card-5,
.work-card-6 { grid-column: span 5; }

.work-card-2 { min-height: 430px; }
.work-card-3 { min-height: 390px; }
.work-card-4 { min-height: 390px; }

.work-no {
  position: absolute;
  top: 16px;
  left: 17px;
  font-size: .68rem;
  color: #777;
  letter-spacing: .14em;
}

.work-label {
  position: absolute;
  left: 18px;
  bottom: 17px;
  font-size: .66rem;
  letter-spacing: .22em;
  color: #858585;
}

.center { text-align: center; margin-top: 34px; }

.text-link {
  color: #d2d2d2;
  font-size: .9rem;
  border-bottom: 1px solid #555;
  padding-bottom: 3px;
}

.artist-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: .7fr 1.2fr 1.4fr;
  gap: 42px;
  align-items: center;
}

.artist-number {
  font-family: Georgia, serif;
  font-size: 11rem;
  line-height: .75;
  color: rgba(255,255,255,.04);
  user-select: none;
}

.artist-name {
  margin: 14px 0 0;
  color: #9a9a9a;
  font-size: .88rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.artist-copy {
  color: #aaa;
  padding-top: 12px;
  max-width: 520px;
}

.artist-copy p:first-child { color: #d5d5d5; }

.contact-section { padding-top: 88px; }

.contact-card {
  min-height: 420px;
  padding: clamp(32px, 7vw, 78px);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  position: relative;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.09), transparent 37%),
    linear-gradient(135deg, rgba(255,255,255,.018), transparent),
    #09090a;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255,255,255,.05);
  transform: rotate(45deg);
  top: -310px;
}

.address {
  color: #b0b0b0;
  font-size: 1.02rem;
  margin: 18px 0 0;
}

.contact-note {
  color: #737373;
  font-size: .82rem;
  margin: 18px 0 0;
}

footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 24px 50px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #666;
  font-size: .72rem;
  letter-spacing: .08em;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .045;
  background-image:
    radial-gradient(rgba(255,255,255,.7) .5px, transparent .6px);
  background-size: 5px 5px;
  mix-blend-mode: overlay;
}

@media (max-width: 760px) {
  .site-header { padding: 15px 18px; }
  nav { gap: 15px; }
  nav a:nth-child(2) { display: none; }
  .brand span:last-child { font-size: .72rem; }

  .hero {
    min-height: 80vh;
    padding: 38px 18px 70px;
  }

  .hero-logo {
    width: 118vw;
    max-width: none;
    margin: -34px -9vw -70px;
  }

  .section { padding: 78px 18px; }

  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-head p:last-child { margin-top: 10px; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .work-card,
  .work-card-1,
  .work-card-2,
  .work-card-3,
  .work-card-4,
  .work-card-5,
  .work-card-6 {
    grid-column: span 1;
    min-height: 250px;
  }

  .work-card:nth-child(3n+1) {
    grid-column: 1 / -1;
    min-height: 330px;
  }

  .artist-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .artist-number { display: none; }
  .artist-copy { padding-top: 0; }

  footer { flex-direction: column; }
}

@media (max-width: 440px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .work-card,
  .work-card:nth-child(3n+1) {
    grid-column: 1;
    min-height: 310px;
  }
}


.artist-name-featured {
  margin: 8px 0 0;
  color: #d2d2d2;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: none;
}


.artist-identity {
  align-self: center;
  padding-top: 6px;
}


/* Minimal bilingual switch — preserves the approved v4 layout */
.site-header nav {
  position: relative;
}

.lang-switch {
  position: absolute;
  right: calc(100% + 20px);
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  font-size: .66rem;
  letter-spacing: .10em;
}

.lang-btn {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  color: #656565;
  font: inherit;
  font-weight: 700;
  letter-spacing: inherit;
  cursor: pointer;
  transition: color .18s ease;
}

.lang-btn:hover {
  color: #bdbdbd;
}

.lang-btn.active {
  color: #ececea;
}

.lang-sep {
  color: #3e3e3e;
  user-select: none;
}

@media (max-width: 760px) {
  .lang-switch {
    position: static;
    transform: none;
    margin-right: 2px;
    font-size: .62rem;
  }
}
