/* ============================================
   Expert Bias — exposingexpertbias.com
   Clean minimal design, June 2026
   ============================================ */

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: #1C1C2E;
  background: #FFFFFF;
  line-height: 1.75;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: normal;
  line-height: 1.25;
  color: #0D1B2A;
}

h1 { font-size: 2.25rem; margin-bottom: 1rem; }
h2 { font-size: 1.6rem; margin-bottom: 0.75rem; margin-top: 2.5rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; margin-top: 2rem; color: #C9953C; }
h4 { font-size: 1rem; margin-bottom: 0.4rem; }

p { margin-bottom: 1.25rem; }

a { color: #C9953C; text-decoration: none; }
a:hover { text-decoration: underline; }

em { font-style: italic; }
strong { font-weight: bold; }

/* --- Layout --- */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Navigation --- */
nav {
  background: #0D1B2A;
  border-bottom: 3px solid #C9953C;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  color: #FFFFFF;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.2;
  text-decoration: none;
  max-width: 260px;
}

.nav-brand:hover { text-decoration: none; color: #C9953C; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #C8D0DC;
  font-family: Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: #C9953C; text-decoration: none; }

.nav-cta {
  background: #C9953C;
  color: #0D1B2A !important;
  padding: 0.4rem 1rem;
  border-radius: 3px;
  font-weight: bold;
  font-size: 0.85rem !important;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.nav-cta:hover { background: #B07D2A !important; text-decoration: none !important; }

/* --- Hero --- */
.hero {
  background: #0D1B2A;
  color: #FFFFFF;
  padding: 5rem 2rem;
  text-align: center;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 2.5rem;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.hero .tagline {
  color: #C9953C;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-style: italic;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #C9953C;
  color: #0D1B2A;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: #B07D2A; text-decoration: none; color: #0D1B2A; }

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid #C8D0DC;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-secondary:hover { border-color: #C9953C; color: #C9953C; text-decoration: none; }

/* --- Sections --- */
.section {
  padding: 4rem 2rem;
}

.section-alt {
  background: #F4F4F0;
  padding: 4rem 2rem;
}

.section-dark {
  background: #0D1B2A;
  color: #C8D0DC;
  padding: 4rem 2rem;
}

.section-dark h2 { color: #FFFFFF; }
.section-dark p { color: #C8D0DC; }
.section-dark a { color: #C9953C; }

.section-label {
  font-family: Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9953C;
  margin-bottom: 0.5rem;
}

/* --- Factor Grid --- */
.factor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.factor-card {
  border-left: 3px solid #C9953C;
  padding: 1rem 1.25rem;
  background: #FFFFFF;
}

.factor-card h4 { color: #0D1B2A; font-size: 0.95rem; margin-bottom: 0.4rem; }
.factor-card p { font-size: 0.9rem; margin-bottom: 0; color: #444; }

/* --- Service Cards --- */
.service-block {
  border-top: 1px solid #D8D8D0;
  padding: 2rem 0;
}

.service-block:first-of-type { border-top: none; padding-top: 0; }

.service-block h3 {
  color: #0D1B2A;
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

/* --- Legislative callout --- */
.callout {
  border: 1.5px solid #C9953C;
  border-radius: 4px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: #FDFAF5;
}

.callout h3 { color: #0D1B2A; margin-top: 0; font-size: 1.1rem; }
.callout p { margin-bottom: 0.75rem; font-size: 0.95rem; }
.callout p:last-child { margin-bottom: 0; }

/* --- Footer --- */
footer {
  background: #0D1B2A;
  color: #8A9BB0;
  padding: 2.5rem 2rem;
  font-size: 0.8rem;
  line-height: 1.6;
  text-align: center;
}

footer a { color: #C9953C; }
footer .footer-brand {
  color: #FFFFFF;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

/* --- About page --- */
.bio-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.credentials-bar {
  background: #F4F4F0;
  border-left: 4px solid #C9953C;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.credentials-bar p { margin-bottom: 0.4rem; }
.credentials-bar p:last-child { margin-bottom: 0; }

/* --- Responsive --- */
@media (max-width: 680px) {
  h1 { font-size: 1.75rem; }
  .hero h1 { font-size: 1.85rem; }
  .hero { padding: 3rem 1.25rem; }
  .factor-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 1rem; }
  .nav-brand { font-size: 0.8rem; max-width: 180px; }
  .nav-links a { font-size: 0.8rem; }
  .container, .section, .section-alt, .section-dark { padding-left: 1.25rem; padding-right: 1.25rem; }
}

@media (max-width: 480px) {
  .nav-links .hide-mobile { display: none; }
}
