:root {
  --navy: #003b5c;
  --orange: #e8620a;
  --text: #111;
  --mid: #555;
  --faint: #999;
  --rule: #e8e8e8;
  --bg: #fff;
  --bg2: #fafafa;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --max: 1200px;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.2px;
  flex-shrink: 0;
}

.nav-logo .org {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--sans);
}

.nav-logo .brand {
  font-size: 22px;
  font-weight: 700;
}

.nav-logo .brand sup {
  color: var(--orange);
  font-size: 14px;
  vertical-align: super;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  font-size: 13px;
  color: var(--mid);
  text-decoration: none;
  font-weight: 400;
  padding: 0 13px;
  height: 56px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition:
    color 0.15s,
    border-color 0.15s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.current {
  color: var(--navy);
  font-weight: 600;
  border-bottom-color: var(--orange);
}

.nav-links a.fellowship-tab {
  color: var(--orange);
  font-weight: 600;
}

.nav-links a.fellowship-tab:hover {
  color: var(--orange);
}

.nav-apply {
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-apply:hover {
  opacity: 0.88;
}
.switcher {
  position: relative;
}
.color-scheme-switcher {
  background-color: #003b5c;
  border: none;
  padding: 5px;
  border-radius: 4px;
  position: absolute;
  top: 0px;
  left: -66px;
  color: white;
  z-index: 9999;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  cursor: pointer;
  height: 46px;
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Color Scheme Switcher */
.color-switcher {
  position: fixed;
  top: 100px;
  right: 0px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-width: 320px;
  /* display: none; */
}
.collapsed {
  right: -320px;
}
.color-switcher h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #003b5c;
}

.color-option {
  margin: 10px 0;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9em;
}

.color-option:hover {
  border-color: #00a9ce;
  background: #f8fbfd;
}

.color-option.active {
  border-color: #003b5c;
  background: #f0f8ff;
  font-weight: 600;
}

.color-sample {
  display: flex;
  gap: 5px;
  margin-top: 5px;
}

.color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ddd;
}

sup {
  
}