:root {
  --bg: #FAF8F4;
  --surface: #FFFFFF;
  --ink: #2A231D;
  --slate: #8A7A68;
  --accent: #9C4A2E;
  --accent-soft: #F0E2D8;
  --line: #E8DDCF;
  --display: 'Libre Franklin', sans-serif;
  --body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Skip link (accessibility) ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- Nav ---------- */
header {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--ink);
}
.logo span { color: var(--accent); }
nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}
nav a {
  text-decoration: none;
  font-size: 14px;
  color: var(--slate);
  font-weight: 500;
}
nav a:hover, nav a[aria-current="page"] { color: var(--ink); }
.nav-cta {
  border: 1px solid var(--ink);
  padding: 8px 18px;
  font-size: 13px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--body);
}
.nav-cta:hover { background: var(--ink); color: var(--bg); }
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  background: none;
  border: 1px solid var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}
.mobile-nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.mobile-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  padding: 14px 28px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--body);
  display: inline-block;
  border: 1px solid var(--ink);
  transition: all 0.15s ease;
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }

/* ---------- Page header (non-home pages) ---------- */
.page-header {
  padding: 70px 0 50px;
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow { margin-bottom: 14px; }
.page-header h1 {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.01em;
  max-width: 680px;
}
.page-header .lede {
  margin-top: 18px;
  font-size: 17px;
  color: var(--slate);
  max-width: 560px;
}

/* ---------- Hero (home) ---------- */
.hero { padding: 90px 0 80px; }
.hero-content { background: var(--bg); }
.eyebrow-line {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
h1 {
  font-family: var(--display);
  font-size: 52px;
  line-height: 1.1;
  font-weight: 600;
  max-width: 780px;
  letter-spacing: -0.01em;
}
h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  margin-top: 24px;
  font-size: 18px;
  color: var(--slate);
  max-width: 560px;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-actions .meta {
  font-size: 13px;
  color: var(--slate);
}

/* ---------- Inline highlight (bold + accent color) ---------- */
.highlight {
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Ledger / results signature ---------- */
.ledger {
  margin-top: 44px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  max-width: 620px;
}
.ledger-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  font-size: 15px;
  flex-wrap: wrap;
}
.ledger-row .item { color: var(--slate); }
.ledger-leader { flex: 1; min-width: 24px; border-bottom: 1px dotted var(--line); margin-bottom: 5px; }
.ledger-row .was { color: #B4A895; text-decoration: line-through; white-space: nowrap; }
.ledger-row .arrow { color: var(--slate); }
.ledger-row .now { color: var(--accent); font-weight: 600; white-space: nowrap; font-family: var(--display); }

/* ---------- Section shared ---------- */
section { padding: 90px 0; border-bottom: 1px solid var(--line); }
.eyebrow {
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
h2 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 600;
  max-width: 620px;
  letter-spacing: -0.01em;
}
h2 em {
  font-style: normal;
  color: var(--accent);
}

/* ---------- Why-me / feature grid ---------- */
.why-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.why-card {
  background: var(--surface);
  padding: 36px 30px 32px;
  border-top: 2px solid var(--accent);
}
.why-num {
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 20px;
}
.why-card h3 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
}

/* ---------- Process ---------- */
.process { margin-top: 52px; display: flex; flex-direction: column; }
.process-row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.process-row:last-child { border-bottom: 1px solid var(--line); }
.process-num { font-family: var(--display); font-weight: 600; color: var(--accent); font-size: 15px; }
.process-row h3 { font-family: var(--display); font-size: 20px; font-weight: 600; }
.process-row p { color: var(--slate); font-size: 15px; }

/* ---------- Numbers strip ---------- */
.numbers { background: var(--ink); color: var(--bg); border-bottom: none; }
.numbers .wrap { display: grid; grid-template-columns: repeat(3, 1fr); }
.num-item { padding: 44px 30px; border-left: 1px solid rgba(255,255,255,0.12); }
.num-item:first-child { border-left: none; }
.num-item .val { font-family: var(--display); font-size: 38px; font-weight: 600; color: #fff; }
.num-item .label {
  margin-top: 10px;
  font-family: var(--body);
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: 13px;
  color: #C9BEB2;
}

/* ---------- Proof / evidence list ---------- */
.proof-list { margin-top: 44px; display: flex; flex-direction: column; }
.proof-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
}
.proof-row:last-child { border-bottom: 1px solid var(--line); }
.proof-name { font-family: var(--display); font-size: 18px; font-weight: 600; }
.proof-desc { color: var(--slate); font-size: 14px; max-width: 480px; }
.proof-arrow { color: var(--accent); font-size: 18px; flex-shrink: 0; }

/* ---------- CTA ---------- */
.cta-section { text-align: left; border-bottom: none; }
.cta-box {
  border: 1px solid var(--ink);
  padding: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-box h2 { max-width: 420px; }

/* ---------- Simple content pages (about/services/etc) ---------- */
.prose { max-width: 680px; }
.prose p { margin-bottom: 20px; font-size: 16px; color: var(--ink); }
.prose h2 { margin-top: 40px; margin-bottom: 16px; font-size: 26px; }
.prose ul { margin: 0 0 20px 20px; }
.prose li { margin-bottom: 8px; font-size: 16px; }

.service-list { margin-top: 48px; display: flex; flex-direction: column; }
.service-row {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row h3 { font-family: var(--display); font-size: 20px; font-weight: 600; }
.service-row p { color: var(--slate); font-size: 15px; }

.contact-block { margin-top: 40px; display: flex; flex-direction: column; gap: 18px; max-width: 480px; }
.contact-row { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding: 16px 0; }
.contact-row span:first-child { color: var(--slate); font-size: 14px; }
.contact-row a { font-weight: 600; text-decoration: none; }
.contact-row a:hover { color: var(--accent); }

footer {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--slate);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 800px) {
  h1 { font-size: 34px; }
  .page-header h1 { font-size: 30px; }
  .why-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; gap: 8px; }
  .numbers .wrap { grid-template-columns: 1fr; }
  .num-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); }
  .num-item:first-child { border-top: none; }
  .cta-box { flex-direction: column; align-items: flex-start; }
  .service-row { grid-template-columns: 1fr; gap: 10px; }

  /* Hero: much less empty space above the fold on phones */
  .hero { padding: 32px 0 44px; }
  .eyebrow-line { margin-bottom: 16px; }
  .hero-sub { margin-top: 16px; }
  .ledger { margin-top: 32px; }

  /* Ledger: label on its own line, value (was -> now) stays on one line */
  .ledger-row {
    flex-wrap: wrap;
    align-items: baseline;
    row-gap: 4px;
    padding: 12px 0;
  }
  .ledger-row .item { flex: 1 0 100%; }
  .ledger-leader { display: none; }

  /* Mobile nav: hamburger + dropdown panel */
  .mobile-nav-toggle { display: flex; }
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 8px 32px 4px;
    z-index: 100;
  }
  nav ul.is-open { display: flex; }
  nav li { width: 100%; }
  nav li a {
    display: block;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn-primary { transition: none; }
}
