/* ═══════════════════════════════════════
   CONNECT PAGE
   ═══════════════════════════════════════ */

.c-inner {
  max-width: 1320px; margin: 0 auto;
  padding-left: 64px; padding-right: 64px;
}

/* ── Hero ── */
.c-hero { background: var(--dark); position: relative; overflow: hidden; }
.c-hero-bg {
  position: absolute; inset: 0;
  background: url('assets/bg-hero.jpg') center/cover no-repeat; z-index: 1;
}
.c-hero-bg::after { content: ''; position: absolute; inset: 0; background: rgba(10,12,20,0.6); z-index: 2; }
.c-hero .c-inner { padding-top: 156px; padding-bottom: 80px; position: relative; z-index: 3; }
.c-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--gold); margin-bottom: 16px; text-transform: uppercase; }
.c-hero h1 { font-size: 46px; font-weight: 300; line-height: 1.2; color: var(--white); margin-bottom: 20px; }
.c-hero h1 .gold { color: var(--gold); font-weight: 600; }
.c-hero-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 480px; }

/* ── Body ── */
.c-body { background: var(--white); }
.c-body .c-inner {
  padding-top: 72px; padding-bottom: 80px;
  display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: start;
}

/* Profile card */
.c-profile {
  background: #F7F5F0; border-radius: 16px; padding: 36px 28px;
  text-align: center; position: sticky; top: 96px;
  border: 3px solid var(--white); box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.c-profile-photo {
  width: 120px; height: 120px; border-radius: 50%;
  margin: 0 auto 20px; overflow: hidden;
  border: 3px solid var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.c-profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.c-profile-name { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.c-profile-title { font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 1.5px; margin-bottom: 20px; }
.c-profile-bio { font-size: 13px; font-weight: 400; color: #777; line-height: 1.65; text-align: left; margin-bottom: 24px; }
.c-profile-stats { display: flex; gap: 0; margin-bottom: 24px; }
.c-stat {
  flex: 1; text-align: center; padding: 12px 0;
  border-right: 1px solid #E5E2DA;
}
.c-stat:last-child { border-right: none; }
.c-stat-num { font-size: 20px; font-weight: 800; color: var(--gold); display: block; margin-bottom: 2px; }
.c-stat-label { font-size: 9px; font-weight: 600; letter-spacing: 1px; color: #999; text-transform: uppercase; }
.c-profile-callout {
  background: var(--white); border-radius: 10px; padding: 14px;
  display: flex; align-items: center; gap: 12px; text-align: left;
}
.c-callout-icon {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 14px; flex-shrink: 0;
}
.c-profile-callout h4 { font-size: 11px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.c-profile-callout p { font-size: 10px; font-weight: 400; color: #999; line-height: 1.4; }

/* Connect section */
.c-connect-title { font-size: 28px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.c-connect-sub { font-size: 14px; font-weight: 400; color: #999; margin-bottom: 32px; }
.c-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; }
.c-row {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; background: #F9F7F2; border-radius: 12px;
  text-decoration: none; transition: all 0.25s; border: 1px solid transparent;
}
.c-row:hover { border-color: var(--gold); background: #FBF9F4; transform: translateX(4px); }
.c-row-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 1.5px solid #E0DDD5;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--text-dark); flex-shrink: 0; transition: all 0.25s;
}
.c-row:hover .c-row-icon { border-color: var(--gold); color: var(--gold); }
.c-row-text { flex: 1; }
.c-row-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; display: block; }
.c-row-sub { font-size: 12.5px; font-weight: 400; color: #999; display: block; }
.c-row-chev { color: #ccc; font-size: 16px; transition: color 0.25s; }
.c-row:hover .c-row-chev { color: var(--gold); }

/* Topics */
.c-topics-label { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; color: var(--gold); margin-bottom: 20px; }
.c-topics-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.c-chip {
  padding: 10px 20px; background: #F2F0EA; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: #555;
  border: 1px solid #E8E5DD; transition: all 0.2s;
}
.c-chip:hover { border-color: var(--gold); color: var(--gold); }

/* ── CTA ── */
.c-cta { background: var(--dark); position: relative; overflow: hidden; }
.c-cta-bg {
  position: absolute; inset: 0;
  background: url('assets/footer-bg.jpg') center/cover no-repeat; z-index: 1;
}
.c-cta-bg::after { content: ''; position: absolute; inset: 0; background: rgba(14,16,24,0.55); }
.c-cta .c-inner {
  padding-top: 72px; padding-bottom: 72px; position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.c-cta h2 { font-size: 40px; font-weight: 300; color: var(--white); line-height: 1.3; }
.c-cta h2 .gold { color: var(--gold); }
.c-cta-sub { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.4); margin-top: 12px; font-style: italic; }
.c-btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: var(--gold); color: var(--dark);
  text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: 2px;
  border-radius: 4px; transition: background 0.25s; white-space: nowrap; flex-shrink: 0;
}
.c-btn-gold:hover { background: var(--gold-hover); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .c-inner { padding-left: 24px; padding-right: 24px; }
  .c-body .c-inner { grid-template-columns: 1fr; gap: 40px; }
  .c-profile { position: static; }
  .c-hero h1 { font-size: 32px; }
  .c-cta .c-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .c-cta h2 { font-size: 28px; }
}
@media (max-width: 600px) {
  .c-hero h1 { font-size: 26px; }
  .c-profile-photo { width: 96px; height: 96px; }
  .c-topics-grid { gap: 8px; }
  .c-chip { padding: 8px 14px; font-size: 12px; }
}
