/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #2E5941;
  --green-dark: #243d33;
  --gold: #C5A470;
  --gold-light: #d4bb91;
  --bg: #F8F7F5;
  --text: #1a1a1a;
  --text-light: #666;
  --text-lighter: #999;
  --white: #ffffff;
  --border: #e8e6e3;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
}

/* Navigation */
nav {
  padding: 1.5rem 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  line-height: 1.2;
}

.logo-line1 {
  display: block;
  font-family: Garamond, 'Times New Roman', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
}

.logo-line2 {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--green);
  background-color: rgba(46, 89, 65, 0.08);
  transform: translateY(-2px);
}

.nav-links a.active {
  color: var(--green);
}

.nav-links a.nav-contact {
  background-color: var(--green);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.nav-links a.nav-contact:hover {
  background-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(46, 89, 65, 0.25);
}

/* Main content */
main {
  flex: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  width: 100%;
}

/* Hero (home page) */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70vh;
  padding-top: 0;
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
}

.cta {
  margin-top: 2rem;
  color: var(--green);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.cta:hover {
  color: var(--gold);
}

.credibility {
  margin-top: 4rem;
  font-size: 0.875rem;
  color: var(--text-lighter);
}

/* Page headers */
.page-header {
  margin-bottom: 1rem;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 300;
  color: var(--text);
}

.page-intro {
  color: var(--text-light);
  margin-bottom: 3rem;
}

/* Sections */
section {
  margin-bottom: 3rem;
}

section h2 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
}

section p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

section ul {
  color: var(--text-light);
  margin-left: 1.25rem;
  list-style: disc;
}

section ul li {
  margin-bottom: 0.35rem;
}

.note {
  font-size: 0.875rem;
  color: var(--text-lighter);
  margin-top: 1rem;
  font-style: italic;
}

/* Service Cards */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 6px;
  padding: 1.75rem;
}

.service-card h2 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.service-card p:last-of-type {
  margin-bottom: 0;
}

.service-card ul {
  color: var(--text-light);
  margin-left: 1.25rem;
  margin-bottom: 1rem;
  list-style: disc;
}

.service-card ul li {
  margin-bottom: 0.35rem;
}

.service-card .note {
  margin-bottom: 0;
}

/* Insights Cards */
.insights-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

a.insight-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.2s;
}

a.insight-card:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

a.insight-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

a.insight-card:hover h3 {
  color: var(--green-dark);
}

a.insight-card p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
}

/* Contact */
.contact-info {
  margin-top: 2rem;
}

.contact-info p {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact-info span {
  color: var(--text-lighter);
}

.contact-info a {
  color: var(--green);
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--gold);
}

/* Footer */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  margin-top: auto;
}

footer p {
  font-size: 0.875rem;
  color: var(--text-lighter);
}

footer .disclaimer {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* Article pages */
.article {
  padding-top: 3rem;
}

.back-link {
  display: inline-block;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--green);
}

article h1 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

article .subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-style: italic;
}

article .legal-note {
  font-size: 0.875rem;
  color: var(--text-lighter);
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}

/* Executive Summary styling */
.executive-summary {
  background: var(--white);
  border-left: 3px solid var(--green);
  padding: 1.5rem;
  border-radius: 0 6px 6px 0;
  margin-bottom: 2.5rem;
}

.executive-summary h2 {
  color: var(--green);
  margin-bottom: 1rem;
}

.executive-summary p {
  margin-bottom: 1rem;
}

.executive-summary p:last-child {
  margin-bottom: 0;
}

article section {
  margin-bottom: 2.5rem;
}

article section h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  margin-top: 0;
}

article section p {
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.7;
}

article section p strong {
  color: var(--text);
}

article section ul {
  color: #444;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: disc;
}

article section ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.why-matters {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}

.why-matters h2 {
  color: var(--green);
}

.why-matters ul {
  margin: 0;
  margin-left: 1.25rem;
  list-style: disc;
}

.why-matters ul li {
  margin-bottom: 0.5rem;
  color: #444;
}

.footer-line {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  main {
    padding: 1.5rem;
  }

  .service-card,
  a.insight-card {
    padding: 1.25rem;
  }
}
