/* ── CIVICBASES.ORG DESIGN SYSTEM ── */
:root {
  --dark:        #1a1714;
  --dark-mid:    #2a2520;
  --dark-light:  #3d3830;
  --red:         #c8391a;
  --red-mid:     #d94e2e;
  --red-light:   #e8705a;
  --red-pale:    #fdf0ed;
  --amber:       #c8851a;
  --amber-light: #e09c30;
  --amber-pale:  #fdf4e0;
  --bg:          #ffffff;
  --bg-warm:     #ede8e0;
  --white:       #ffffff;
  --text:        #1a1714;
  --text-body:   #38322c;
  --text-muted:  #7a6e64;
  --text-faint:  #b0a89e;
  --border:      #ddd6cc;
  --font-display: 'Fraunces', serif;
  --font-body:    'Instrument Sans', sans-serif;
  --radius-sm: 0.4rem;
  --radius-md: 0.65rem;
  --radius-lg: 1rem;
  --radius-pill: 2rem;
  --container: 1100px;
  --pad: 1.5rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-body);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  background: var(--dark);
  padding: 0 var(--pad);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 200;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logotype {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: white;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logotype .civic { color: white; font-weight: 300; }
.logotype .bases { color: white; font-weight: 600; }
.logotype .tld   { font-family: var(--font-body); color: rgba(255,255,255,0.35); font-size: 0.72rem; font-weight: 400; margin-left: 1px; }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: white; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 56px; left: 0; right: 0;
  background: var(--dark-mid);
  padding: 0.75rem var(--pad) 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 0;
  z-index: 199;
}
.nav-links.open li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav-links.open a  { display: block; padding: 0.65rem 0; }

/* ── ACCENT STRIPE ── */
.stripe,
.accent-stripe {
  height: 3px;
  background: var(--red);
}
.accent-stripe span { display: none; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--dark);
  padding: 0 var(--pad);
}
.breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.65rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.breadcrumb-inner a { color: rgba(255,255,255,0.4); }
.breadcrumb-inner a:hover { color: white; }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }

/* ── FOOTER ── */
.cb-footer-top {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2rem var(--pad);
}
.cb-footer-bottom {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 0.875rem var(--pad);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-body);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links:not(.open) { display: none; }
}

/* ── FOOTER NAV ── */
.cb-footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.cb-footer-nav a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.15s;
}
.cb-footer-nav a:hover { color: rgba(255,255,255,0.7); }
