/* ============================================
   NAVPA — "Federal Modern" Design System
   ============================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..800;1,400..500&family=Source+Sans+3:ital,wght@0,300..700;1,400..500&display=swap');

/* --- Custom Properties --- */
:root {
  --navy: #1B2A4A;
  --navy-dark: #111D33;
  --navy-light: #2A3F6B;
  --cream: #F5F0E8;
  --cream-dark: #E8E0D4;
  --burgundy: #8B2332;
  --burgundy-dark: #6E1A27;
  --burgundy-light: #A42D3F;
  --white: #FFFFFF;
  --warm-gray: #6B6560;
  --warm-gray-light: #9B9590;
  --gold: #C9A96E;
  --gold-light: #D4BC8A;
  --gold-dark: #A88A50;
  --gold-text: #8B7440; /* WCAG AA compliant on white (4.6:1) */

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;

  --shadow-sm: 0 1px 3px rgba(27, 42, 74, 0.08);
  --shadow-md: 0 4px 12px rgba(27, 42, 74, 0.10);
  --shadow-lg: 0 8px 30px rgba(27, 42, 74, 0.12);
  --shadow-card: 0 2px 8px rgba(107, 101, 96, 0.10);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --max-width: 1200px;
  --header-height: 80px;

  --transition: 0.3s ease;

  /* Spacing scale (8px base) */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 96px;

  /* Focus ring */
  --focus-ring: 0 0 0 3px rgba(139, 35, 50, 0.4);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--warm-gray);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--burgundy-dark);
}

ul, ol {
  list-style: none;
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--burgundy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
  color: var(--white);
}

/* --- Focus States (Accessibility) --- */
:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
  box-shadow: var(--focus-ring);
}

.btn:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
  box-shadow: var(--focus-ring);
}

.section--navy a:focus-visible,
.section--navy button:focus-visible,
.home-hero a:focus-visible,
.conference-promo a:focus-visible,
.site-footer a:focus-visible {
  outline-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.4);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 0.5em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); margin-bottom: 0.5em; }
h4 { font-size: 1.15rem; margin-bottom: 0.4em; }

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

.label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--cream {
  background-color: var(--cream);
  position: relative;
}

.section--navy {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--cream);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section--navy p {
  color: rgba(245, 240, 232, 0.85);
}

.section--navy .card h3 {
  color: var(--navy);
}

.section--navy .card p {
  color: var(--warm-gray);
}

/* --- Gold Divider --- */
.gold-rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 40px auto;
  max-width: 200px;
}

.gold-rule--wide {
  max-width: 600px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background-color: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

.btn--primary:hover {
  background-color: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(139, 35, 50, 0.3);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn--outline {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--gold);
}

.btn--outline:hover {
  background-color: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
}

.btn--outline:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* On dark backgrounds, outline buttons use gold text */
.home-hero .btn--outline,
.conference-promo .btn--outline,
.page-hero .btn--outline {
  color: var(--gold);
}

/* Inside navy sections but NOT inside cards (direct on dark bg) */
.section--navy > .container > .btn--outline,
.section--navy .hero-ctas .btn--outline {
  color: var(--gold);
}

/* Inside cards on any background, keep navy text (readable on white) */
.card .btn--outline {
  color: var(--navy);
}

.btn--navy {
  background-color: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover {
  background-color: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 32px;
  transition: all var(--transition);
  border-top: 3px solid transparent;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Editorial card accent — colored left border on hover */
.card:hover::before {
  opacity: 1;
}

.card--burgundy {
  border-top-color: var(--burgundy);
}

.card--gold {
  border-top-color: var(--gold);
}

.card--navy {
  border-top-color: var(--navy);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  transition: all var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

/* Official logo image variant */
.logo-mark--img {
  background: none;
  width: 52px;
  height: 52px;
  border-radius: 0;
}

.logo-mark--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text span:first-child {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.logo-text span:last-child {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

/* --- Main Navigation --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link--active {
  color: var(--white);
}

.nav-link--active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 1px;
}

.nav-link .chevron {
  font-size: 0.6rem;
  transition: transform var(--transition);
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  padding: 8px 0;
  z-index: 100;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--warm-gray);
  transition: all var(--transition);
}

.dropdown a:hover {
  color: var(--burgundy);
  background: var(--cream);
}

.dropdown a .pdf-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--burgundy);
  background: rgba(139, 35, 50, 0.1);
  padding: 1px 6px;
  border-radius: 3px;
  text-transform: uppercase;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-toggle {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 8px;
  font-size: 1.1rem;
  transition: color var(--transition);
}

.search-toggle:hover {
  color: var(--white);
}

.btn-join {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: all var(--transition);
  border-radius: 1px;
}

/* --- Page Hero --- */
.page-hero {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  position: relative;
}

.page-hero .subtitle {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 8px;
  position: relative;
}

/* --- Home Hero (larger, American flag gradient) --- */
.home-hero {
  background: var(--navy-dark);
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* American flag background image */
.home-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  right: -5%;
  bottom: -10%;
  background: url('../assets/images/american-flag.jpg') center center / cover no-repeat;
  opacity: 0.18;
  filter: saturate(0.6);
  animation: heroFlagDrift 30s ease-in-out infinite alternate;
}

@keyframes heroFlagDrift {
  0% { transform: scale(1.05) rotate(-1deg); }
  50% { transform: scale(1.1) rotate(0.5deg); }
  100% { transform: scale(1.05) rotate(-1deg); }
}

/* Dark overlay for text contrast */
.home-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(27, 42, 74, 0.6) 0%, rgba(17, 29, 51, 0.85) 100%),
    linear-gradient(170deg, rgba(13, 27, 46, 0.7) 0%, rgba(27, 42, 74, 0.5) 40%, rgba(30, 21, 32, 0.8) 100%);
  pointer-events: none;
  z-index: 0;
}

.home-hero .container {
  position: relative;
  z-index: 1;
}

.home-hero .label,
.home-hero .hero-label {
  margin-bottom: 20px;
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.home-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  max-width: 850px;
  margin: 0 auto 16px;
  line-height: 1.2;
}

.home-hero .hero-subtitle {
  color: rgba(245, 240, 232, 0.8);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Mission Strip --- */
.mission-strip {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.mission-strip p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--warm-gray);
}

/* --- Pillars --- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-card {
  text-align: center;
  padding: 40px 28px;
  position: relative;
}

.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gold);
  opacity: 0;
  transition: all var(--transition);
}

.pillar-card:hover::after {
  opacity: 1;
  width: 60px;
}

.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
}

.pillar-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.pillar-card h3 {
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--warm-gray);
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--burgundy);
  transition: all var(--transition);
}

.pillar-link:hover {
  color: var(--burgundy-dark);
  gap: 8px;
}

/* --- Conference Banner (Home Page) --- */
.conference-banner {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 40%, var(--navy) 100%);
  overflow: hidden;
}

.conference-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(201, 169, 110, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 169, 110, 0.1) 0%, transparent 50%);
}

.conf-banner-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conf-banner-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 6px 20px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 100px;
}

.conf-banner-title {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 32px;
}

.conf-banner-details {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.conf-banner-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.conf-banner-detail strong {
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.conf-banner-detail span {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
}

.conf-banner-address {
  font-size: 0.9rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 400 !important;
}

.conf-banner-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.conf-banner-outline {
  color: var(--gold);
  border-color: var(--gold);
}

.conf-banner-outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.conf-promo-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .conf-banner-details {
    gap: 24px;
  }
}

/* --- Conference Promo --- */
.conference-promo {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--burgundy-dark) 100%);
  overflow: hidden;
}

.conference-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A96E' fill-opacity='0.05'%3E%3Cpath d='M20 0L40 20L20 40L0 20z'/%3E%3C/g%3E%3C/svg%3E");
}

.conference-promo .container {
  position: relative;
  text-align: center;
}

.conference-promo h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.conference-promo .conf-details {
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 12px 0 32px;
}

.conference-promo p {
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* --- Stats / By The Numbers --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  position: relative;
  padding: 0 20px;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(201, 169, 110, 0.3);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-meta {
  display: block;
  font-size: 0.85rem;
  color: var(--warm-gray-light);
  margin-top: 4px;
}

.stat-item .stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.7);
}

/* --- Advocacy / News Cards --- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.news-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.news-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--cream);
  transition: height 0.4s ease;
  z-index: 0;
}

.news-card:hover::after {
  height: 100%;
}

.news-card > * {
  position: relative;
  z-index: 1;
}

.news-card .news-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.news-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.news-card p {
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.news-card .card-link {
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-card .card-link::after {
  content: '\2192';
  transition: transform var(--transition);
}

.news-card:hover .card-link::after {
  transform: translateX(4px);
}

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pricing-card {
  text-align: center;
  padding: 40px 28px;
  position: relative;
}

.pricing-card--featured {
  border-top-color: var(--burgundy);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured::before {
  content: 'Most Common';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--burgundy);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin: 16px 0 4px;
}

.pricing-card .price-period {
  font-size: 0.88rem;
  color: var(--warm-gray-light);
  margin-bottom: 20px;
}

.pricing-card .price-desc {
  font-size: 0.92rem;
  margin-bottom: 24px;
  min-height: 60px;
}

/* --- Board / Team Cards --- */
.exec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.exec-card {
  text-align: center;
  padding: 36px 24px;
}

.exec-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.exec-card h4 {
  font-family: var(--font-heading);
  margin-bottom: 4px;
}

.exec-card .role {
  font-size: 0.88rem;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 4px;
}

.exec-card .institution {
  font-size: 0.85rem;
  color: var(--warm-gray-light);
}

.exec-card .email {
  font-size: 0.85rem;
  margin-top: 8px;
}

/* --- Accordion --- */
.accordion-item {
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.accordion-item:hover {
  box-shadow: var(--shadow-md);
}

.accordion-trigger,
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--transition), color var(--transition);
  text-align: left;
  line-height: 1.5;
}

.accordion-trigger:hover,
.accordion-header:hover {
  background: var(--cream);
  color: var(--burgundy);
}

.accordion-trigger .icon,
.accordion-trigger .accordion-icon,
.accordion-header .icon,
.accordion-header .accordion-icon {
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform var(--transition), color var(--transition);
  color: var(--burgundy);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
}

.accordion-item.active .accordion-trigger,
.accordion-item.active .accordion-header {
  background: var(--cream);
  color: var(--burgundy);
  border-bottom: 1px solid var(--cream-dark);
}

.accordion-item.active .accordion-trigger .icon,
.accordion-item.active .accordion-trigger .accordion-icon,
.accordion-item.active .accordion-header .icon,
.accordion-item.active .accordion-header .accordion-icon {
  transform: rotate(45deg);
  background: var(--burgundy);
  color: var(--white);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content-inner {
  padding: 24px 28px;
  background: var(--white);
  line-height: 1.7;
}

.accordion-content-inner p {
  font-size: 0.95rem;
  color: var(--warm-gray);
}

.accordion-content-inner p + p {
  margin-top: 12px;
}

.accordion-content-inner a {
  font-weight: 600;
}

/* --- Tabs --- */
.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--cream-dark);
  margin-bottom: 32px;
}

.tab-btn {
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--warm-gray);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn:hover {
  color: var(--navy);
}

.tab-btn.active {
  color: var(--burgundy);
  border-bottom-color: var(--burgundy);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* --- Forms --- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 1px;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  color: var(--warm-gray);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.resolutions-form fieldset {
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 24px;
  background: var(--white);
}

.resolutions-form legend {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  padding: 0 8px;
}

/* --- Search/Filter Bar --- */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
}

.filter-bar input,
.filter-bar select {
  flex: 1;
  min-width: 180px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
}

.filter-bar input:focus-visible,
.filter-bar select:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 1px;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

/* --- Institution List --- */
.institution-group {
  margin-bottom: 24px;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  padding: 4px 8px;
  border-radius: var(--radius-md);
}

.institution-group.highlight {
  background: rgba(201, 169, 110, 0.15);
  box-shadow: 0 0 0 3px var(--gold-light);
}

@keyframes highlightFade {
  0% { box-shadow: 0 0 0 3px var(--gold-light); background: rgba(201, 169, 110, 0.15); }
  100% { box-shadow: 0 0 0 0 transparent; background: transparent; }
}

.institution-group.highlight {
  animation: highlightFade 2s ease forwards;
}

.institution-group h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.region-badge {
  display: inline-block;
  padding: 2px 10px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--warm-gray);
  border-radius: 20px;
}

.institution-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 8px;
}

.institution-item {
  padding: 8px 12px;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.institution-item:hover {
  background: var(--cream);
}

.institution-link {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.institution-link:hover {
  color: var(--burgundy);
  text-decoration: underline;
}

.institution-link::after {
  content: '\2197';
  font-size: 0.75em;
  opacity: 0;
  transition: opacity var(--transition);
}

.institution-item:hover .institution-link::after {
  opacity: 0.6;
}

.institution-group.highlight {
  animation: highlightPulse 2s ease;
}

@keyframes highlightPulse {
  0%, 100% { background: transparent; }
  15%, 50% { background: rgba(201, 169, 110, 0.15); }
}

/* --- Map --- */
.map-container {
  max-width: 900px;
  margin: 0 auto 40px;
  position: relative;
}

.map-container .us-map {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  background: var(--cream-dark);
  padding: 1rem;
}

.map-container .us-map path,
.map-container .us-map circle,
.map-container .us-map rect {
  stroke: var(--white);
  stroke-width: 1;
  cursor: pointer;
  transition: opacity var(--transition), filter var(--transition);
}

.map-container .us-map path:hover,
.map-container .us-map circle:hover,
.map-container .us-map rect:hover {
  opacity: 0.75;
  filter: brightness(1.3);
}

.map-container .us-map path.active,
.map-container .us-map circle.active,
.map-container .us-map rect.active {
  stroke: var(--navy);
  stroke-width: 2.5;
  filter: brightness(1.2);
}

.map-tooltip {
  position: fixed;
  background: var(--navy);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  pointer-events: none;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.map-tooltip.visible {
  opacity: 1;
}

/* --- Footer --- */
.site-footer {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: rgba(245, 240, 232, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-col a {
  color: rgba(245, 240, 232, 0.7);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.7);
  transition: all var(--transition);
}

.social-links a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-links a:hover {
  background: var(--burgundy);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
}

.footer-bottom p {
  margin-bottom: 4px;
}

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Reduced Motion (Accessibility) --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* JS adds .js-loaded to body, enabling animations only when JS works */
.js-loaded .animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-loaded .animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .pillars-grid,
  .pricing-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card--featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .section {
    padding: 56px 0;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    transition: right 0.35s ease;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    z-index: 1000;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav > ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    padding: 14px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .nav-link--active::after {
    display: none;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-item.open .dropdown {
    max-height: 300px;
  }

  .dropdown a {
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    justify-content: flex-start;
    text-align: left;
  }

  .dropdown a:hover {
    color: var(--gold);
    background: transparent;
  }

  .header-actions .search-toggle {
    display: none;
  }

  .logo-text span:last-child {
    display: none;
  }

  .pillars-grid,
  .pricing-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .news-card::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-hero {
    padding: 130px 0 80px;
    min-height: auto;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .filter-bar {
    flex-direction: column;
  }

  .exec-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .exec-grid {
    grid-template-columns: 1fr;
  }

  .institution-list {
    grid-template-columns: 1fr;
  }
}

/* --- Mobile overlay --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* --- Download Cards --- */
.download-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--burgundy);
  transition: all var(--transition);
}

.download-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.download-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--burgundy);
  flex-shrink: 0;
}

.download-card .download-title {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.download-card .download-meta {
  font-size: 0.8rem;
  color: var(--warm-gray-light);
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* --- Benefits List --- */
.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.benefits-list--2col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
  .benefits-list--2col {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--burgundy);
  flex-shrink: 0;
}

.benefit-item p {
  font-size: 0.95rem;
}

/* --- Photo Grid --- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.photo-grid .photo-item {
  aspect-ratio: 4/3;
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.photo-grid .photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Contact Info Block --- */
.contact-info {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info address {
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-info .contact-emails {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info .contact-emails a {
  font-size: 0.92rem;
}

/* --- CTA Cards Row --- */
.cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cta-card {
  text-align: center;
  padding: 36px 24px;
}

.cta-card h4 {
  margin-bottom: 8px;
}

.cta-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .cta-cards {
    grid-template-columns: 1fr;
  }
}

/* --- Speaker Cards --- */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.speaker-card {
  text-align: center;
  padding: 28px 20px;
}

.speaker-card .speaker-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--cream);
  margin: 0 auto 16px;
  overflow: hidden;
}

.speaker-card h4 {
  margin-bottom: 4px;
}

.speaker-card .speaker-role {
  font-size: 0.85rem;
  color: var(--warm-gray-light);
}

/* --- Section Title (Editorial) --- */
.section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* --- Inline styles moved to classes --- */
.text-italic { font-style: italic; }
.font-weight-500 { font-weight: 500; }
.opacity-80 { opacity: 0.8; }
.color-gold { color: var(--gold); }
.color-white { color: var(--white); }
.color-cream { color: var(--cream); }
.color-navy { color: var(--navy); }
.letter-spacing-wide { letter-spacing: 2px; }
.text-uppercase { text-transform: uppercase; }
.max-w-600 { max-width: 600px; margin-left: auto; margin-right: auto; }
.max-w-700 { max-width: 700px; margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

/* --- Map Legend Classes --- */
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--warm-gray);
}

.map-legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.map-legend-dot--region-i { background: #1b3a5c; }
.map-legend-dot--region-ii { background: #2e7d32; }
.map-legend-dot--region-iii { background: #c62828; }
.map-legend-dot--region-iv { background: #e65100; }
.map-legend-dot--region-v { background: #6a1b9a; }
.map-legend-dot--region-vi { background: #00838f; }
.map-legend-dot--region-vii { background: #9e9d24; }
.map-legend-dot--region-viii { background: #4e342e; }
.map-legend-dot--no-members { background: #ccc; }

/* --- Conference Page Utility --- */
.conf-hero-compact {
  padding: 120px 0 40px;
}

.conf-subtitle {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.conf-date-range {
  color: var(--cream);
  font-style: italic;
  margin-top: var(--space-sm);
}

.conf-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.conf-detail-label {
  color: var(--gold-text);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.conf-detail-value {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 500;
}

/* --- Scholarship Page Photo Grid Utility --- */
.photo-placeholder {
  background-color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  font-size: 0.9rem;
  color: var(--warm-gray-light);
}

.section-divider {
  width: 80px;
  border: none;
  border-top: 3px solid var(--gold);
  margin: 1rem auto;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 40px; }
.mt-4 { margin-top: 60px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 12px; }
.mb-2 { margin-bottom: 24px; }
.mb-3 { margin-bottom: 40px; }
.mb-4 { margin-bottom: 60px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Board of Directors Cards --- */
.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* For sections with 3 members, keep 3 across */
.board-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.board-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.board-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.board-card__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 32px auto 16px;
  border: 4px solid var(--cream);
  box-shadow: var(--shadow-sm);
}

.board-card__body {
  padding: 0 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.board-card__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.board-card__navpa-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.board-card__title {
  font-size: 0.88rem;
  color: var(--warm-gray);
  margin-bottom: 2px;
}

.board-card__institution {
  font-size: 0.88rem;
  color: var(--warm-gray-light);
  margin-bottom: 16px;
}

.board-card__link {
  margin-top: auto;
}

.board-card__link .btn {
  width: 100%;
}

.board-section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.board-section-desc {
  color: var(--warm-gray);
  margin-bottom: 32px;
  max-width: 700px;
}

@media (max-width: 1024px) {
  .board-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .board-grid {
    grid-template-columns: 1fr;
  }
}
