/* ===== PROFILE PAGE ===== */

/* HERO */
.profile-hero {
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  background: var(--bg-2);
}
.profile-hero-bg-text { display: none; }
.profile-hero-content { position: relative; z-index: 1; }

.profile-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(52px, 10vw, 96px);
  font-weight: 900;
  letter-spacing: 0.06em;
  margin: 12px 0 16px;
  color: var(--text);
}
.profile-hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
}

/* INTRO */
.profile-intro-section { background: var(--bg); }

/* STORY */
.profile-story-section { background: var(--bg-2); }

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.story-item {
  padding: 40px 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.story-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.story-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.story-title { font-size: 17px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.story-text { font-size: 14px; color: var(--muted); line-height: 1.9; }

/* STRENGTHS */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.strength-card {
  position: relative;
  padding: 40px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.strength-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  border-radius: 0 0 2px 0;
  transition: height 0.4s var(--ease-out);
}
.strength-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.strength-card:hover::before { height: 100%; }
.strength-icon {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 20px;
}
.strength-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.strength-text { font-size: 14px; color: var(--muted); line-height: 1.9; }

/* CTA */
.profile-cta {
  position: relative;
  padding: 140px 0;
  background: var(--text);
  text-align: center;
}
.profile-cta-bg { display: none; }
.profile-cta .section-eyebrow { color: var(--gold); }
.profile-cta .section-heading { color: #ffffff; }
.profile-cta .contact-lead { color: rgba(255,255,255,0.5); }
.profile-cta .btn-ghost {
  border-color: rgba(255,255,255,0.25);
  color: #ffffff;
}
.profile-cta .btn-ghost:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--text);
}
.profile-cta .btn-instagram { border-color: transparent; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .strength-grid { grid-template-columns: 1fr; }
}
