﻿/* ═══════════════════════════════════════════════════════════════
   TWIN RIVER DEVELOPMENT - bio.css
   Shared styles for all three leadership bio pages
   ═══════════════════════════════════════════════════════════════ */

/* ── PAGE HEADER - minimal ──────────────────────────────────── */
.bio-header {
  padding: 40px var(--sp-10) 0;
  background: var(--white);
}
.bio-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.bio-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}
.bio-breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.bio-breadcrumb a:hover { color: var(--blue); }
.bio-breadcrumb-sep { color: var(--border); }
.bio-breadcrumb-current { color: var(--text-secondary); }

/* ── BIO BODY - SPLIT LAYOUT ────────────────────────────────── */
.bio-body {
  padding: var(--sp-12) var(--sp-10) var(--sp-20);
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
}
.bio-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--sp-16);
  align-items: start;
}

/* ── LEFT - Photo + details ─────────────────────────────────── */
.bio-left { position: sticky; top: calc(var(--nav-height) + var(--sp-8)); }

.bio-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--off-white);
  margin-bottom: var(--sp-6);
  border: 0.5px solid var(--border);
}
.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.bio-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: var(--sp-1);
  line-height: 1.1;
}

.bio-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
  display: block;
}

.bio-meta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 0.5px solid var(--border-light);
  margin-bottom: var(--sp-6);
}

.bio-meta-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.bio-meta-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
}
.bio-meta-icon--linkedin {
  color: var(--blue);
}
.bio-meta-icon svg { width: 14px; height: 14px; }
.bio-meta-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
}
.bio-meta-text a {
  color: var(--blue);
  transition: color var(--transition);
}
.bio-meta-text a:hover { color: var(--blue-dark); }

.bio-cta {
  display: block;
  width: 100%;
  text-align: center;
}

/* ── RIGHT - Bio text ───────────────────────────────────────── */
.bio-right { padding-top: var(--sp-4); }

.bio-intro {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.4;
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 0.5px solid var(--border-light);
}

.bio-section {
  margin-bottom: var(--sp-8);
}

.bio-section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--sp-4);
  display: block;
}

.bio-section p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: var(--sp-5);
}
.bio-section p:last-child { margin-bottom: 0; }
.bio-section p strong { color: var(--text-primary); font-weight: 600; }

/* Career highlights */
.bio-highlights {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--sp-4);
}

.bio-highlight {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 0.5px solid var(--border-light);
  align-items: flex-start;
}
.bio-highlight:first-child { border-top: 0.5px solid var(--border-light); }

.bio-highlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 6px;
  opacity: 0.6;
}

.bio-highlight-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}
.bio-highlight-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ── BACK LINK ──────────────────────────────────────────────── */
.bio-back {
  padding: var(--sp-8) var(--sp-10);
  background: var(--off-white);
  border-bottom: 0.5px solid var(--border);
}
.bio-back-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.bio-back-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  transition: gap var(--transition);
}
.bio-back-link:hover { gap: var(--sp-3); }

.bio-nav-links {
  display: flex;
  gap: var(--sp-5);
}
.bio-nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.bio-nav-link:hover { color: var(--blue); }

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: var(--blue);
  border-bottom: none;
  text-align: center;
  padding: var(--sp-20) var(--sp-10);
}
.cta-section .section-inner--narrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-4);
  line-height: 1.1;
}
.cta-section p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  max-width: 440px;
  margin-bottom: var(--sp-8);
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  justify-content: center;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .bio-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .bio-left {
    position: static;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--sp-6);
    align-items: start;
  }
  .bio-photo {
    margin-bottom: 0;
    aspect-ratio: 1 / 1;
  }
  .bio-body { padding: var(--sp-8) var(--sp-6) var(--sp-16); }
  .bio-header { padding: var(--sp-6) var(--sp-6) 0; }
  .bio-back { padding: var(--sp-6); }
}

@media (max-width: 600px) {
  .bio-left {
    grid-template-columns: 1fr;
  }
  .bio-photo {
    max-width: 280px;
  }
  .bio-back-inner { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: stretch; text-align: center; }
}

/* Dark contrast polish */
.bio-header,
.bio-body {
  background: var(--white);
}
.bio-photo,
.bio-meta-icon {
  background: rgba(255,255,255,0.035);
  border-color: rgba(255,255,255,0.12);
}
.bio-intro,
.bio-meta,
.bio-highlight,
.bio-back {
  border-color: rgba(255,255,255,0.1);
}
.bio-back {
  background: var(--off-white);
}
