/* About layout */
.about-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.about-portrait {
  width: 240px;
  height: 340px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--border);
}

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

.about-text { flex: 1; }

.about-bio {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  font-family: var(--font-serif);
  margin-bottom: 20px;
}

.about-bio em { font-style: italic; }

/* Credentials */
.credentials {
  background: var(--bg-card);
  border: 1px solid rgba(180, 100, 255, 0.1);
  border-radius: 4px;
  padding: 24px 28px;
  margin-bottom: 16px;
}

.credential-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  list-style: none;
  padding: 0;
  margin-left: 0;
}

.credential-pill {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  padding: 5px 12px;
}

/* Contact form */
.contact-section {
  background: var(--bg-card);
  border: 1px solid rgba(180, 100, 255, 0.15);
  border-radius: 4px;
  padding: 28px 32px;
}

.contact-intro {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 20px;
  margin-top: 8px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 560px;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit--full {
  width: 100%;
  padding: 11px;
  font-size: 12px;
}

/* Thank-you page */
.thankyou-wrap {
  text-align: center;
  padding: 60px 0 40px;
}

.thankyou-message {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 32px;
}

.thankyou-home {
  color: var(--accent-purple-lt);
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(180, 100, 255, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.15s;
}

.thankyou-home:hover { border-color: var(--accent-purple-lt); }

@media (max-width: 640px) {
  .about-layout { flex-direction: column; }
  .about-portrait { width: 180px; height: 240px; }
  .contact-section { padding: 20px; }
}
