/* ─────────────────────────────────────────────────────────────
   MMM-SFX  ·  assets/css/about.css
   About Us landing page.
───────────────────────────────────────────────────────────── */

.about-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--sp-16) var(--sp-6) var(--sp-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  text-align: center;
}

/* Smaller title on this page so "Miniatures Monsters & Magic" stays
   on one line within the narrower centred column, and a wider-spaced
   tagline to balance visually under it. */
.about-hero .hero-name {
  font-size: 2.75rem;
}
.about-hero .hero-tagline {
  letter-spacing: 0.32em;
}

/* ── Portrait ────────────────────────────────────────────────── */
.about-portrait-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--sp-4);
}

.about-portrait {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid var(--c-border-2);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 1px var(--c-border),
    0 0 0 10px var(--c-bg),
    0 0 0 11px var(--c-teal-dim),
    0 0 40px rgba(78, 201, 212, 0.08);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── Person name ─────────────────────────────────────────────── */
.about-person-name {
  font-family: var(--f-display);
  font-size: var(--sz-xl);
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--c-white);
  margin-top: var(--sp-2);
}

/* ── Category nav list ───────────────────────────────────────── */
.about-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 var(--sp-2);
  font-family: var(--f-mono);
  font-size: var(--sz-xs);
  letter-spacing: 0.01em;
  color: var(--c-grey);
}
.about-nav a {
  color: var(--c-grey);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--t-fast);
}
.about-nav a:hover { color: var(--c-teal); }
.about-nav .nav-sep { color: var(--c-border-2); font-size: 0.5rem; }

/* ── Bio copy ────────────────────────────────────────────────── */
.about-bio {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  font-size: var(--sz-sm);
  color: var(--c-grey);
  line-height: 1.75;
  max-width: 640px;
}
.about-bio p { white-space: pre-line; }
.about-bio strong { color: var(--c-white); font-weight: 600; }

/* ── Video link ──────────────────────────────────────────────── */
.about-video-link {
  display: inline-block;
  margin-top: var(--sp-2);
  font-family: var(--f-mono);
  font-size: var(--sz-sm);
  color: var(--c-teal);
  letter-spacing: 0.1em;
  word-break: break-all;
  transition: color var(--t-fast);
}
.about-video-link:hover { color: var(--c-white); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 600px) {
  .about-portrait { width: 220px; height: 220px; }
  .about-bio { text-align: left; }
}
