:root {
  --bg: #fafaf8;
  --text: #111114;
  --muted: #7a7a80;
  --line: #e4e4e0;
}

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

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.wrap {
  width: 100%;
  max-width: 480px;
  padding: 96px 0 48px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--line);
  margin-bottom: 32px;
  overflow: hidden;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.tagline {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 10px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-size: 11px;
}

.social-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--text);
  padding-bottom: 1px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: opacity 0.2s ease;
}

.social-link:hover {
  opacity: 0.55;
}

.dot {
  color: var(--muted);
}

.rule {
  height: 1px;
  background: var(--line);
  margin: 56px 0;
}

.row-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.row-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  text-decoration: none;
  color: var(--text);
}

.row-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.005em;
}

.embed {
  border-radius: 12px;
  overflow: hidden;
}

.embed iframe {
  display: block;
  border-radius: 12px;
}

.embed-video {
  margin-top: 16px;
  aspect-ratio: 16 / 9;
}

.embed-video iframe {
  width: 100%;
  height: 100%;
}

.row-arrow {
  font-size: 18px;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.row-main:hover .row-arrow {
  transform: translateX(4px);
}

.row-sub {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  margin-top: 6px;
  text-transform: uppercase;
}

.gig {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.gig-info {
  display: flex;
  flex-direction: column;
}

.gig-link {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--text);
  padding-bottom: 1px;
  white-space: nowrap;
}

.gig-link:hover {
  opacity: 0.55;
}

.footer {
  color: var(--muted);
  font-size: 12px;
  padding-bottom: 40px;
  text-transform: uppercase;
}

@media (max-width: 420px) {
  .wrap { padding-top: 64px; }
  .name { font-size: 38px; }
  .gig { flex-direction: column; align-items: flex-start; gap: 10px; }
}
