/* ---------- Brand tokens ---------- */
:root {
  --navy-900: #101B33;
  --brass-500: #B0793C;
  --brass-400: #C79350;
  --paper-100: #F6F4EF;
  --ink-600: #4B5266;
  --line: #E4E1D8;
}

html, body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--paper-100);
}

.title, h1, h2, h3 {
  font-family: "Source Serif 4", Georgia, serif !important;
  color: var(--navy-900);
}

/* ---------- Navbar ---------- */
.navbar {
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.navbar .brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--brass-500);
  color: var(--brass-500);
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
}

.brand-name {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy-900);
}

.navbar-item.is-active,
.navbar-item:hover {
  color: var(--navy-900) !important;
  background-color: transparent !important;
  border-bottom: 2px solid var(--brass-500);
}

.navbar-item {
  border-bottom: 2px solid transparent;
}

/* push content below the fixed navbar */
main { display: block; padding-top: 52px; }

/* ---------- Buttons (brass accent instead of Bulma's default green) ---------- */
.button.is-primary {
  background-color: var(--brass-500);
  border-color: var(--brass-500);
  color: var(--navy-900);
  font-weight: 600;
}
.button.is-primary:hover {
  background-color: var(--brass-400);
  border-color: var(--brass-400);
}

/* ---------- Hero sections (navy) ---------- */
.main-hero,
.page-hero {
  background-color: var(--navy-900);
  color: var(--paper-100);
}

.main-hero { padding: 3.5rem 0; }
.page-hero { padding: 2.75rem 0; }
.page-hero-compact { padding: 2.25rem 0; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-400);
  margin-bottom: 0.75em;
}

.hero-title { color: #FFFFFF !important; }
.hero-lede { color: #C9CEDC; max-width: 46ch; }
.page-hero a { color: var(--brass-400); }

/* Signature element: ledger panel with monogram, echoing the original design */
.hero-panel {
  position: relative;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 40px;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
}

.panel-figure {
  position: absolute;
  top: 28px;
  left: 40px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 4rem;
  font-weight: 600;
  color: var(--brass-500);
  opacity: 0.9;
}

.panel-line {
  height: 1px;
  background: rgba(255,255,255,0.18);
  width: 100%;
}
.panel-line.short { width: 60%; }

/* ---------- Pillars ---------- */
.pillars-section .pillar {
  border-top: 3px solid var(--brass-500);
  padding-top: 18px;
}
.pillars-section p { color: var(--ink-600); }

/* ---------- CTA band ---------- */
.cta-band {
  background: #FFFFFF;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------- Content sections ---------- */
.content-section .content p,
.content-section .content li {
  color: var(--ink-600);
}

.legal-copy .title { margin-top: 1.6em; }
.legal-copy .title:first-of-type { margin-top: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: #9AA2B8;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
}

.footer-brand .brand-mark {
  width: 24px;
  height: 24px;
  font-size: 0.8rem;
}

.footer-nav a {
  color: #9AA2B8;
  text-decoration: none;
  margin-right: 22px;
  font-size: 0.9rem;
}
.footer-nav a:hover { color: #FFFFFF; }

.footer-copy {
  font-size: 0.82rem;
  color: #77809A;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
