/* 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;
  }
}

/* ===== Home redesign (2026-08-21) ===== */

main.home {
  max-width: 1100px;
}

.hero-split {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3.5rem 0 4rem;
}

.hero-copy { flex: 1.1; }

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

.hero-visual {
  flex: 1;
  min-width: 300px;
}

.hero-visual svg { width: 100%; height: auto; }

.hero-ctas {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-ctas .cta { margin-top: 0; }

.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(46, 89, 65, 0.25);
}

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
  margin-bottom: 3.5rem;
}

.stat { display: flex; flex-direction: column; gap: 0.3rem; }

.stat-num {
  font-weight: 600;
  font-size: 2.1rem;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* Content blocks */
.block { margin-bottom: 4rem; }

.block h2 {
  font-size: 1.6rem;
  font-weight: 350;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.block-cta { margin-top: 1.5rem; }

/* Problem cards */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.6rem;
}

.problem-card .icon { width: 40px; height: 40px; margin-bottom: 1rem; }
.problem-card .icon svg { width: 100%; height: 100%; }

.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.5rem;
}

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

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--border);
}

.tl-step { position: relative; padding-top: 3.2rem; }

.tl-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--border);
}

.tl-step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.tl-step p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

/* Scorecard */
.scorecard-wrap {
  display: flex;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
}

.scorecard-copy { flex: 1.1; }
.scorecard-copy h2 { margin-bottom: 1rem; }
.scorecard-copy p { color: var(--text-light); margin-bottom: 0.75rem; }

.scorecard {
  flex: 1;
  min-width: 280px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(36, 61, 51, 0.08);
}

.sc-head {
  background: var(--green);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.7rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sc-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0.1rem 0.55rem;
}

.sc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.8rem 1.1rem;
  border-top: 1px solid var(--border);
  background: var(--white);
  font-size: 0.92rem;
  color: var(--text-light);
}

.sc-row strong {
  font-weight: 650;
  font-size: 1.25rem;
  color: var(--green);
}

/* CTA band */
.cta-band {
  background: var(--green);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.cta-band h2 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 350;
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.75rem;
}

.btn-invert {
  display: inline-block;
  background: var(--white);
  color: var(--green);
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-invert:hover {
  background: var(--gold-light);
  color: var(--green-dark);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 820px) {
  .hero-split { flex-direction: column; min-height: unset; gap: 2rem; text-align: left; }
  .hero-copy h1 { font-size: 2.2rem; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .problem-grid, .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .scorecard-wrap { flex-direction: column; padding: 1.75rem; gap: 2rem; }
}

@media (max-width: 600px) {
  nav { padding: 1rem; }
  .nav-container { flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
  .nav-links { gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
  .nav-links a { padding: 0.4rem 0.5rem; font-size: 0.85rem; }
  main { padding: 1.25rem; }
  .hero-split { padding: 2rem 0 2.5rem; }
  .hero-ctas { flex-wrap: wrap; gap: 1rem; }
  .cta-band { padding: 2rem 1.25rem; }
}

/* Differentiators (added 2026-08-21, LaTour pattern) */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.diff-item { border-top: 2px solid var(--green); padding-top: 1.1rem; }

.diff-num {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.diff-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0.35rem 0 0.5rem;
}

.diff-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 820px) {
  .diff-grid { grid-template-columns: 1fr; }
}

/* Tension section (2026-08-21) */
.kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.tension h2 { margin-bottom: 1.75rem; }

.promise-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.promise-card {
  border-radius: 6px;
  padding: 1.4rem 1.6rem;
}

.promise-card.told {
  background: #eef3ef;
  border: 1px solid #d7e2da;
}

.promise-card.got {
  background: var(--white);
  border: 1px solid var(--border);
}

.pr-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.promise-card.told .pr-label { color: var(--green); }
.promise-card.got .pr-label { color: var(--text-lighter); }

.promise-card p {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
}

.promise-card.got p { color: var(--text-light); }

.turn {
  font-size: 1.25rem;
  font-weight: 550;
  color: var(--green);
  margin: 0 0 1.75rem;
}

.gap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stage-tag {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}

.stage-tag:hover { color: var(--green); }

@media (max-width: 820px) {
  .promise-row, .gap-grid { grid-template-columns: 1fr; }
}

/* "What we don't do" block (2026-08-21 cosmetic pass) */
.dont-card {
  margin-top: 3rem;
  background: #faf7f1;
  border: 1px solid #eadfc9;
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 1.75rem;
}

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

.dont-card ul { color: var(--text-light); margin-left: 1.25rem; list-style: disc; }
.dont-card ul li { margin-bottom: 0.35rem; }
.dont-card p { color: var(--text-light); margin: 1rem 0 0; }
