h1 { font-size: 2.2rem; margin-bottom: 10px; }
h2 { color: var(--gold); margin-bottom: 5px; }
.philosophy { font-style: italic; opacity: 0.8; }

.gold-frame {
  border: 1.5px solid var(--gold);
  padding: 10px;
}

.hero-image img,
.evidence-image img {
  width: 100%;
  display: block;
}

.strategic-map {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
}

.map-line {
  position: absolute;
  top: 50%;
  width: 80%;
  height: 1px;
  background: var(--gold);
}

.map-node {
  background: transparent;
  border: 1px solid var(--gold);
  padding: 14px 28px;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 1;
}

.map-node.primary {
  font-weight: 600;
}

.map-node:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0.85;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.quick-links a {
  border: 1px solid var(--navy);
  padding: 8px 16px;
  text-decoration: none;
  font-size: 0.9rem;
}

.divider {
  width: 60%;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 40px;
}

.footer {
  padding: 40px;
  text-align: center;
  font-style: italic;
  color: var(--gold);
}

.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
}
