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

html, body {
  min-height: 100%;
  background: #111;
  color: #ccc;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── Header ── */
.about-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px 0;
  position: relative;
}

.back-link {
  position: absolute;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #888;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.back-link:hover {
  color: #ddd;
}

.about-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #ddd;
}

/* ── Main content ── */
.about-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.about-content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* ── Portrait ── */
.about-portrait {
  flex-shrink: 0;
  width: 280px;
}

.portrait-img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

/* ── Bio ── */
.about-bio {
  flex: 1;
  min-width: 0;
}

.bio-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 300;
  color: #eee;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.bio-tagline {
  font-size: 13px;
  color: #888;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.about-bio p {
  font-size: 15px;
  line-height: 1.7;
  color: #bbb;
  margin-bottom: 16px;
}

/* ── Links ── */
.about-links {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.about-cta {
  display: inline-block;
  padding: 10px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #111;
  background: #fff;
  transition: background 0.25s, transform 0.2s;
}

.about-cta:hover {
  background: #e8e8e8;
  transform: translateY(-1px);
}

.about-blog {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #aaa;
  border: 1px solid #444;
  transition: color 0.25s, border-color 0.25s, transform 0.2s;
}

.about-blog:hover {
  color: #fff;
  border-color: #888;
  transform: translateY(-1px);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 32px;
  }

  .about-portrait {
    width: 200px;
    margin: 0 auto;
  }

  .bio-name {
    font-size: 26px;
    text-align: center;
  }

  .bio-tagline {
    text-align: center;
  }

  .about-links {
    flex-direction: column;
    align-items: center;
  }
}
