/* Top Exit Advisors - Global Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0B1D3A;
  --navy-light: #1A2F52;
  --gold: #C5962E;
  --gold-light: #E8C76B;
  --white: #FFFFFF;
  --off-white: #F7F6F3;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }

/* Header */
.site-header {
  background: var(--navy);
  color: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.3px;
}

.site-logo span { color: var(--gold); }

nav { display: flex; gap: 28px; align-items: center; }
nav a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover, nav a.active { color: var(--gold); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero .gold { color: var(--gold); }

.hero p {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 32px;
  opacity: 0.9;
  line-height: 1.7;
}

.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
}
.hero-cta:hover { background: var(--gold-light); color: var(--navy); }

/* Section */
.section {
  padding: 72px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-alt { background: var(--off-white); }
.section-alt .section { padding: 72px 24px; }

.section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  font-size: 16px;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Honoree Cards Grid */
.honoree-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.honoree-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.15s;
}
.honoree-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.honoree-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.honoree-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--gray-900);
}

.honoree-card .firm {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}

.honoree-card .location {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.honoree-card .specialty {
  font-size: 12px;
  color: var(--navy);
  background: rgba(11,29,58,0.06);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.honoree-card .bio {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.6;
}

/* Search/Filter Bar */
.filter-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-bar input,
.filter-bar select {
  padding: 10px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-body);
  background: var(--white);
}

.filter-bar input { min-width: 280px; }
.filter-bar input:focus,
.filter-bar select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,150,46,0.15);
}

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.process-step {
  text-align: center;
  padding: 24px;
}

.process-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
}

.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.process-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Form */
.form-container {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-body);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,150,46,0.15);
}

.btn-submit {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--gold-light); }

/* Articles / Insights */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.article-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 28px;
  transition: box-shadow 0.2s;
}
.article-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.07); }

.article-card .tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.article-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.article-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 12px;
}

.article-card .read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

/* About Content */
.about-content {
  max-width: 760px;
  margin: 0 auto;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
  margin-top: 40px;
}

.about-content h2:first-child { margin-top: 0; }

.about-content p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-content ul {
  margin: 12px 0 20px 24px;
}

.about-content li {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 40px 24px;
  font-size: 13px;
}

.site-footer a { color: rgba(255,255,255,0.6); }
.site-footer a:hover { color: var(--gold); }

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 16px;
}

/* Page Header (non-hero) */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 48px 24px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-header p {
  font-size: 16px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .hero { padding: 56px 20px; }
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .mobile-toggle { display: block; }
  .header-inner { height: 56px; }
  .honoree-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .filter-bar input { min-width: 100%; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .section { padding: 48px 16px; }
  .section-title { font-size: 26px; }
}

/* Loading spinner */
.loading {
  text-align: center;
  padding: 40px;
  color: var(--gray-500);
}

.loading::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Success message */
.form-success {
  background: #E8F5E9;
  color: #2E7D32;
  padding: 16px 20px;
  border-radius: 6px;
  margin-top: 16px;
  display: none;
  font-size: 14px;
}

/* =========================================================
   2026 Inaugural Class additions
   ========================================================= */

.honoree-avatar-featured { box-shadow: 0 0 0 2px var(--gold); }

.honoree-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.honoree-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11,29,58,0.12);
}
.card-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}

/* Ones to Watch */
.otw-section { background: var(--off-white); padding-top: 64px; padding-bottom: 64px; }
.otw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.otw-card {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 32px 28px;
  box-shadow: 0 4px 14px rgba(11,29,58,0.06);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}
.otw-card-featured { border-left-color: var(--navy); background: #FFFCF6; }
.otw-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}
.otw-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.otw-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 20px; font-weight: 700;
  flex-shrink: 0;
}
.otw-avatar-featured { box-shadow: 0 0 0 2px var(--gold); }
.otw-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 2px;
  color: var(--navy);
}
.otw-card .firm { color: var(--gray-700); font-size: 13px; font-weight: 600; }
.otw-card .location { color: var(--gray-500); font-size: 12px; }
.otw-headline {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--navy);
  margin: 4px 0 12px;
  line-height: 1.3;
  font-weight: 700;
}
.otw-body {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.otw-cta {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  align-self: flex-start;
}
.otw-cta:hover { background: var(--navy-light); color: var(--white); }
@media (max-width: 900px) {
  .otw-grid { grid-template-columns: 1fr; }
}

/* Match Form */
.match-section { background: var(--white); padding-top: 64px; padding-bottom: 64px; }
.match-form {
  max-width: 560px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  background: var(--off-white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(11,29,58,0.05);
}
.match-row { display: flex; flex-direction: column; gap: 6px; }
.match-row label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.match-row input, .match-row select {
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  background: var(--white);
  color: var(--gray-900);
  font-family: inherit;
}
.match-row input:focus, .match-row select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}
.match-form button[type="submit"] { border: none; cursor: pointer; margin-top: 8px; font-family: inherit; }
.match-form button[disabled] { opacity: 0.6; cursor: not-allowed; }
.match-status {
  margin-top: 16px;
  padding: 16px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
  display: none;
}
.match-status-success { display: block; background: #E8F5E9; color: #2E7D32; border-left: 4px solid #2E7D32; }
.match-status-error { display: block; background: #FDECEA; color: #C62828; border-left: 4px solid #C62828; }

/* Profile page */
.profile-page { max-width: 860px; margin: 0 auto; padding: 56px 24px; }
.profile-header { text-align: center; margin-bottom: 40px; }
.profile-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 26px; font-weight: 700;
  margin: 0 auto 20px;
}
.profile-avatar-featured { box-shadow: 0 0 0 3px var(--gold); }
.profile-page h1 {
  font-family: var(--font-heading);
  font-size: 38px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.profile-subhead {
  color: var(--gray-500);
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.profile-subhead .firm { color: var(--navy); font-weight: 600; }
.profile-subhead .specialty { color: var(--gold); font-weight: 600; }
.profile-subhead .dot { color: var(--gray-300); }

.profile-editorial {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  padding: 28px 32px;
  margin: 32px 0 40px;
  border-radius: 4px;
}
.profile-editorial-headline {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 14px;
  font-weight: 700;
  line-height: 1.3;
}
.profile-editorial-body { font-size: 15px; color: var(--gray-700); line-height: 1.75; }

.profile-body p { font-size: 17px; color: var(--gray-900); line-height: 1.75; margin-bottom: 24px; }
.profile-firm-note {
  background: var(--gray-100);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 4px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  border-left: 3px solid var(--navy);
}
.profile-firm-note p { font-size: 15px; margin: 0; color: var(--gray-700); }
.profile-outbound { text-align: center; margin: 32px 0; }
.profile-divider { border: none; border-top: 1px solid var(--gray-200); margin: 48px 0; }
.profile-cta {
  text-align: center;
  padding: 32px;
  background: var(--off-white);
  border-radius: 6px;
  margin-bottom: 48px;
}
.profile-cta h2 { font-family: var(--font-heading); font-size: 26px; color: var(--navy); margin-bottom: 10px; }
.profile-cta p { color: var(--gray-700); margin-bottom: 20px; font-size: 15px; }
.profile-related { margin-bottom: 48px; }
.profile-related h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}
.profile-back { text-align: center; margin-top: 16px; }
.profile-back a { color: var(--gray-700); font-size: 14px; }
.profile-back a:hover { color: var(--gold); }

/* Article page */
.article-page { max-width: 760px; margin: 0 auto; padding: 56px 24px; }
.article-header { text-align: center; margin-bottom: 40px; }
.article-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.article-page h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.article-meta { font-size: 14px; color: var(--gray-500); display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.article-meta .dot { color: var(--gray-300); }
.article-body p { font-size: 17px; color: var(--gray-900); line-height: 1.8; margin-bottom: 20px; }

.article-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11,29,58,0.12);
}
