/* ============================================================
   SWELL VISUALS — about.css
   About page styles only (base.css handles nav/footer/buttons)
   ============================================================ */

.about-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ── LEFT: BIO ── */
.about-left p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.1s;
}

.about-title span { color: var(--blue); }

.about-photo {
  position: relative;
  margin-top: 40px;
  max-width: 320px;
}

.about-photo img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
}

.about-photo-frame {
  position: absolute;
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 2px solid var(--blue);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.4;
}

/* ── RIGHT: CONTACT FORM ── */
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  position: sticky;
  top: 100px;
}

.contact-title {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.1;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

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

/* ── MOBILE ── */
@media (max-width: 768px) {
  .about-wrap { padding: 100px 24px 60px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-card { position: static; }
  .about-photo { max-width: 100%; }
}