/* xity.one — mid-century modern showcase, card grid, single neon orange accent */

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

:root {
  --bg: #f8f5f0;
  --card: #f0ece4;
  --neon: #ff6b35;
  --neon-dim: #cc5528;
  --text: #2a2a28;
  --muted: #6a6a64;
  --rule: #c8c4bc;
  --tech: #4a4a44;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
}

body {
  position: relative;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(0, 0, 0, 0.012) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 60%, rgba(0, 0, 0, 0.012) 0 1px, transparent 2px),
    radial-gradient(circle at 50% 90%, rgba(0, 0, 0, 0.012) 0 1px, transparent 2px);
  background-size: 80px 80px;
}

/* Exhibit entrance */
.exhibit {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 16vh 32px 8vh;
}
.exhibit-meta {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6vh;
}
.exhibit-title {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 700;
  font-size: clamp(72px, 18vw, 280px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text);
}
.dot-one {
  color: var(--neon);
  font-weight: 700;
}
.grid-rule {
  border: none;
  border-top: 1px solid var(--text);
  margin: 36px 0 24px;
}
.exhibit-tag {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--muted);
  max-width: 600px;
}

/* Tech accent strip */
.tech-strip {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 16px 32px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(0, 0, 0, 0.012);
}
.tech-strip svg { width: 100%; height: 60px; display: block; }

/* Card grid */
.grid {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 32px 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: var(--card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(74, 74, 68, 0.05) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 32%, rgba(74, 74, 68, 0.04) 0 1px, transparent 2px),
    radial-gradient(circle at 28% 78%, rgba(74, 74, 68, 0.04) 0 1px, transparent 2px),
    radial-gradient(circle at 86% 84%, rgba(74, 74, 68, 0.05) 0 1px, transparent 2px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
}

.card-art {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.card-h {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.card-h em { font-style: italic; color: var(--muted); }
.card p {
  font-size: 14.5px;
  flex: 1;
}
.card p em { color: var(--muted); font-style: italic; }

.card-meta {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.card-meta .counter {
  color: var(--text);
  margin-left: 6px;
}

.card.featured .card-meta .counter { color: var(--neon); }

.neon { color: var(--neon); }

/* Footer */
.foot {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px;
  border-top: 1px solid var(--text);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 880px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 32px; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .card { aspect-ratio: auto; min-height: 320px; }
  .exhibit { padding: 14vh 24px 6vh; }
  .tech-strip { padding: 16px 24px; }
}
