:root {
  --bg: #0b0b0c;
  --panel: #141417;
  --panel-2: #1b1b20;
  --text: #f3f3f3;
  --muted: #a6a6ad;
  --line: #2a2a31;
  --accent: #ffffff;
  --max: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #09090a 0%, #111114 100%);
  color: var(--text);
  line-height: 1.45;
}

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

.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 12, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dice-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 5px;
}

.dice-mark span {
  background: #fff;
  border-radius: 50%;
  opacity: 0.92;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.hero {
  padding: 72px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.section-panel,
.metric,
.contact-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
}

.hero-copy {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 530px;
}

.eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(2.1rem, 4.3vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.hero-copy p.lead {
  max-width: 48ch;
  color: #d0d0d7;
  font-size: 1.02rem;
}

.project-meta {
  margin-top: 28px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.96rem;
}

.project-meta strong {
  color: var(--text);
  font-weight: 600;
}

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

.btn,
button.btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #fff;
  color: #111;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.btn:hover,
button.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn.secondary {
  background: transparent;
  color: var(--text);
}

.hero-visual {
  overflow: hidden;
  min-height: 530px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15), transparent 28%),
    linear-gradient(135deg, #18181c 0%, #0b0b0d 100%);
}

.art-frame {
  position: absolute;
  inset: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  background: #0e0e11;
}

.art-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  grid-template-rows: repeat(24, 1fr);
  gap: 4px;
  padding: 18px;
}

.art-cell {
  border-radius: 4px;
  background: #1a1a1d;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.art-overlay {
  position: absolute;
  inset: auto 20px 20px 20px;
  background: rgba(0, 0, 0, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
}

.art-title {
  font-weight: 700;
  margin-bottom: 4px;
}

.art-subtitle {
  color: #d3d3d8;
  font-size: 0.92rem;
}

.art-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.86rem;
  color: #e6e6ea;
}

section {
  padding: 18px 0 24px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  letter-spacing: -0.03em;
}

.section-head p {
  color: var(--muted);
  max-width: 48ch;
}

.sold-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.section-panel {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
}

.thumb {
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.thumb::before,
.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
}

.thumb-portrait {
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,0.92) 0 7%, transparent 8%),
    radial-gradient(circle at 36% 38%, rgba(255,255,255,0.08) 0 36%, transparent 37%),
    radial-gradient(circle at 64% 38%, rgba(255,255,255,0.08) 0 36%, transparent 37%),
    linear-gradient(180deg, #ededed 0 24%, #8e8e93 25%, #2b2b2f 56%, #121214 100%);
  filter: grayscale(100%);
}

.thumb-billiards {
  background:
    radial-gradient(circle at 50% 50%, #f8f8f8 0 12%, #141417 13% 17%, transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.09) 0 34%, transparent 35%),
    linear-gradient(135deg, #2d2d32 0%, #101012 62%, #090909 100%);
}

.thumb-placeholder {
  background:
    linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.05) 75%, transparent 75%, transparent),
    linear-gradient(135deg, #1f1f24, #0f0f12);
  background-size: 28px 28px, cover;
}

.panel-body {
  padding: 18px;
}

.panel-body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.panel-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

.sold-tag {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #d9d9df;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.metric {
  padding: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.metric .num {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}

.metric .label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  margin-bottom: 8px;
}

.metric .note {
  color: #d5d5db;
  font-size: 0.96rem;
}

.contact-box {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.contact-copy h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.6rem);
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}

.contact-copy p {
  color: var(--muted);
  max-width: 50ch;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer {
  padding: 18px 0 42px;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-box,
  .sold-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-visual {
    min-height: auto;
  }

  .hero-visual {
    min-height: 480px;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .nav {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-copy,
  .contact-box,
  .metric,
  .panel-body {
    padding: 18px;
  }

  .art-frame {
    inset: 14px;
  }

  .art-grid {
    gap: 3px;
    padding: 14px;
  }
}
