/* ============================================================
   PROFILE SECTION (LAYOUT SPECIFICO)
============================================================ */
#profile-container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 160px 48px 120px;
  max-width: 1160px;
  margin: 0 auto;
}

.profile-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

.profile-left {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-image-wrap {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1/1;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
  margin-bottom: 32px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.profile-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity var(--transition), transform var(--transition);
}

.profile-image-wrap:hover img {
  opacity: 1;
  transform: scale(1.03);
}

.profile-right .section-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.profile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
}

.profile-title-sub {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.profile-bio {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
}

.profile-bio p {
  margin-bottom: 24px;
}

.profile-bio strong {
  color: var(--text);
  font-weight: 500;
}

/* BUTTONS / LINKS */
.profile-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: none;
  transition: all var(--transition);
}

.btn-primary { background: var(--accent); color: #0e0f11; border: 1px solid var(--accent); }
.btn-primary:hover { background: transparent; color: var(--accent); box-shadow: 0 0 30px var(--accent-glow); }
.btn-ghost { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-ghost:hover { color: var(--text); border-color: var(--accent); background: var(--accent-dim); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  #profile-container { padding: 120px 24px 80px; }
  .profile-grid { grid-template-columns: 1fr; gap: 40px; }
  .profile-left { position: relative; top: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 60px 24px 32px; }
  #theme-toggle { top: 16px; right: 16px; }
}

@media (hover: none) and (pointer: coarse) {
  html, body, a, button, .btn, .profile-image-wrap { cursor: auto !important; }
  #cursor-dot, #cursor-ring { display: none !important; }
}

