@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy: #060e18;
  --navy-light: #0a1828;
  --navy-mid: #0f2540;
  --silver: #C0C0C0;
  --silver-light: #E0E0E0;
  --silver-pale: #f0f0f0;
  --gold: #c9a84c;
  --gold-light: #e8c96e;
  --gold-pale: #f5e9c5;
  --white: #ffffff;
  --off-white: #f4f6f8;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #777777;
  --border: #d0d8e0;
  --shadow: 0 4px 24px rgba(6, 14, 24, 0.16);
  --shadow-lg: 0 8px 48px rgba(6, 14, 24, 0.24);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 2px solid var(--silver);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.nav-brand .brand-main {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.nav-brand .brand-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}
@media (max-width: 700px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(192,192,192,0.25);
    padding: 12px 0 16px;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { border-radius: 0; padding: 12px 24px; }
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 60%, #081e38 100%);
  color: var(--white);
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 80%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-cta {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

.hero-small {
  padding: 100px 24px 48px;
}
.hero-small h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }

/* ── SECTIONS ────────────────────────────────────────── */
section { padding: 80px 24px; }
section.alt { background: var(--off-white); }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-medium);
  max-width: 680px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.gold-line {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 28px;
  border-radius: 2px;
}

/* ── PILLARS ─────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pillar-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.pillar-icon { font-size: 2.2rem; margin-bottom: 16px; }
.pillar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.pillar-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ── MEMBER CARDS ────────────────────────────────────── */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.member-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.member-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 32px 24px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  border: 3px solid rgba(201,168,76,0.4);
}
.avatar.lg {
  width: 100px;
  height: 100px;
  font-size: 2.2rem;
  border-width: 4px;
}
.card-name-block .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}
.card-name-block .role {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-body p { font-size: 0.9rem; color: var(--text-medium); line-height: 1.65; flex: 1; }
.card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--gold-pale);
  color: var(--navy);
  letter-spacing: 0.04em;
}
.card-footer { padding: 16px 24px 24px; }
.card-footer .btn { width: 100%; text-align: center; }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(13,27,42,0.25); }

/* ── MEMBER PROFILE PAGE ─────────────────────────────── */
.profile-hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 120px 24px 60px;
  color: var(--white);
}
.profile-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.profile-info { flex: 1; }
.profile-info .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.profile-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 8px;
}
.profile-info .role-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.profile-info .tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  line-height: 1.65;
}
@media (max-width: 640px) {
  .profile-hero-inner { flex-direction: column; text-align: center; align-items: center; }
}

.profile-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px) {
  .profile-content { grid-template-columns: 1fr; }
}
.profile-main h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-pale);
}
.profile-main p { color: var(--text-medium); line-height: 1.75; margin-bottom: 20px; font-size: 0.97rem; }
.career-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0 32px;
}
.stat-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  padding: 18px 22px;
  min-width: 120px;
  text-align: center;
}
.stat-box .stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-box .stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.65); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.highlights-list { list-style: none; margin: 0 0 32px; }
.highlights-list li {
  padding: 10px 0 10px 24px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.5;
}
.highlights-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.profile-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.sidebar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 700;
}
.social-links { display: flex; flex-direction: column; gap: 10px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-medium);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--navy); background: var(--gold-pale); }
.social-link .icon { font-size: 1.1rem; width: 24px; text-align: center; flex-shrink: 0; }
.contact-item { font-size: 0.88rem; color: var(--text-medium); margin-bottom: 10px; line-height: 1.5; }
.contact-item a { color: var(--navy); text-decoration: none; }
.contact-item a:hover { color: var(--gold); text-decoration: underline; }
.contact-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 2px; }

/* ── MINUTES TABLE ───────────────────────────────────── */
.minutes-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.minutes-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.minutes-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-medium);
  vertical-align: middle;
}
.minutes-table tr:hover td { background: var(--gold-pale); }
.minutes-table a { color: var(--navy); font-weight: 600; text-decoration: none; }
.minutes-table a:hover { color: var(--gold); text-decoration: underline; }
.badge-placeholder {
  display: inline-block;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--gold-pale);
  color: var(--text-light);
  font-style: italic;
}
.minutes-notice {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  color: var(--white);
  margin-bottom: 40px;
}
.minutes-notice .icon { font-size: 2.5rem; margin-bottom: 16px; }
.minutes-notice h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 10px; }
.minutes-notice p { color: rgba(255,255,255,0.72); max-width: 500px; margin: 0 auto; font-size: 0.92rem; }

/* ── ABOUT / CONTACT ─────────────────────────────────── */
.mission-block {
  background: var(--navy);
  border-radius: 12px;
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}
.mission-block::before {
  content: '"';
  position: absolute;
  top: -20px; left: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 16rem;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  pointer-events: none;
}
.mission-block blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  line-height: 1.55;
  font-style: italic;
  color: var(--white);
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-card p { font-size: 0.9rem; color: var(--text-medium); line-height: 1.65; margin-bottom: 8px; }
.contact-card a { color: var(--navy); text-decoration: none; font-weight: 500; }
.contact-card a:hover { color: var(--gold); }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 2px solid var(--silver);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 40px 24px;
  font-size: 0.85rem;
}
footer .footer-brand {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
footer .footer-tagline { margin-bottom: 20px; font-style: italic; }
footer .footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 20px; }
footer .footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.82rem; }
footer .footer-links a:hover { color: var(--gold); }
footer .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ── UTILITIES ───────────────────────────────────────── */
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); margin: 0 8px; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-0 { margin-bottom: 0 !important; }
