:root {
  --bg: #0d0d0d;
  --card-bg: #1a1a1a;
  --surface2: #141414;
  --text: #e8e2d6;
  --text-secondary: #c3c2b7;
  --text-muted: #898781;
  --border: #2a2a2a;
  --gold: #c9a84c;
  --gold-light: #e8cc7a;
  --gold-dim: #7a5e28;
  --gold-track: #3a2f16;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

/* ---------- header ---------- */

.site-header {
  text-align: center;
  margin-bottom: 32px;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-name span {
  color: var(--gold);
}

.brand-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto 0;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  opacity: 0.85;
  transition: opacity 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.social-icon:hover {
  opacity: 1;
  border-color: var(--gold);
  transform: translateY(-1px);
}

.social-icon img {
  width: 17px;
  height: 17px;
  display: block;
}

/* ---------- shared card ---------- */

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

section + section {
  margin-top: 22px;
}

/* ---------- profile / bio ---------- */

.profile-card {
  display: flex;
  align-items: center;
  gap: 24px;
}

.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.bio p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.65;
  text-align: left;
}

.bio p + p {
  margin-top: 14px;
}

@media (max-width: 600px) {
  .profile-card {
    flex-direction: column;
    text-align: center;
  }
  .bio p {
    text-align: left;
  }
}

/* ---------- video ---------- */

.twitch-schedule {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.twitch-wordmark {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #9146ff;
  font-weight: 700;
  font-size: 19px;
  transition: opacity 0.15s ease;
}

.twitch-wordmark:hover {
  opacity: 0.8;
}

.twitch-wordmark img {
  width: 20px;
  height: 20px;
  display: block;
}

.schedule-text {
  color: var(--text-secondary);
  font-size: 14px;
}

.video-wrap {
  padding: 0;
  overflow: hidden;
}

.video-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

/* ---------- road to 100k cta ---------- */

.cta-card {
  display: block;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.cta-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
}

.cta-sub {
  margin-top: 6px;
  color: var(--text-secondary);
  font-size: 14px;
}

.mini-meter {
  margin-top: 18px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-track);
  overflow: hidden;
}

.mini-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-light));
  border-radius: 999px;
  transition: width 1s ease;
}

.mini-meter-caption {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 13px;
}

/* ---------- responsive ---------- */

@media (max-width: 520px) {
  .brand-name {
    font-size: 40px;
  }
}
