:root {
  --accent: #1e5c5a;
  --accent-dark: #164844;
  --text: #1c2329;
  --text-light: #4a5568;
  --text-muted: #5c6b73;
  --bg: #f7f6f3;
  --bg-alt: #efede8;
  --border: #d8d4cc;
  --card-bg: #fff;
  font-family: 'Libre Franklin', system-ui, -apple-system, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1, 'tnum' 1;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}
a:hover { color: var(--accent-dark); }

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 1.85rem; margin-bottom: 1.1rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }

p {
  margin: 0 0 1rem;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 246, 243, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}

.logo:hover {
  color: var(--accent-dark);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: white;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--accent-dark);
  color: white;
}

/* Hero */
.hero {
  padding: 6rem 0 4.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-size: 2.65rem;
  line-height: 1.1;
  max-width: 820px;
  margin: 0 auto 1.1rem;
}

.hero .tag {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 2rem;
}

.cta-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 0.85rem 1.9rem;
  border-radius: 8px;
  margin: 0.4rem 0.4rem 0;
  text-decoration: none;
}

.cta-primary:hover {
  background: var(--accent-dark);
  color: white;
}

.cta-secondary {
  display: inline-block;
  font-weight: 500;
  padding: 0.85rem 1.4rem;
  color: var(--text-light);
  text-decoration: none;
}

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

/* Sections */
section {
  padding: 3.75rem 0;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.25rem;
}

.section-header h2 {
  font-size: 1.75rem;
}

/* Cards */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.6rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.work-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.4rem 1.5rem;
}

.work-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

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

.work-item p + p {
  margin-top: 0.75rem;
}

/* Who this is for */
.founder-traits ul {
  column-count: 2;
  column-gap: 2.5rem;
  font-size: 1rem;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.founder-traits li {
  position: relative;
  padding-left: 1.3rem;
}

.founder-traits li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Testimonials */
.testimonial {
  font-size: 1.02rem;
  line-height: 1.55;
  border-left: 4px solid var(--accent);
  padding-left: 1.3rem;
  margin-bottom: 2rem;
}

.testimonial .author {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* CTA (Clara-style contact box) */
.section {
  padding: 2.25rem 0 2.75rem;
}

#cta {
  border-top: 1px solid var(--border);
}

.cta-header {
  text-align: center;
}

.muted {
  color: var(--text-muted);
}

.contact-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.audit-form {
  text-align: left;
  margin-bottom: 1.75rem;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.req {
  color: var(--accent);
}

.form-row input,
.form-row textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30, 92, 90, 0.12);
}

.form-row textarea {
  resize: vertical;
  min-height: 5rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  width: 100%;
  margin: 0.5rem 0 0;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-status {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.25rem;
}

.form-status--success {
  color: var(--accent);
  font-weight: 500;
}

.form-status--error {
  color: #9b2c2c;
}

.contact-fallback {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.contact-lead {
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.contact-box .email {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.contact-box .email:hover {
  text-decoration: underline;
}

footer {
  padding: 2rem 0 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
}

.pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

#examples,
#proof {
  background: var(--bg-alt);
}

.who-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem 2.25rem;
}

.proof-content {
  max-width: 820px;
  margin: 0 auto;
}

.proof-background {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.work-sub {
  max-width: 720px;
  margin: 1.5rem auto 0;
  font-size: 0.95rem;
  color: var(--text-light);
  text-align: center;
}

.examples-lead {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--text-light);
}

.who-note {
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
}

.contact-line {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-line a {
  color: var(--text-light);
  text-decoration: none;
}

.contact-line a:hover {
  color: var(--accent);
  text-decoration: underline;
}

footer p:first-child {
  margin-bottom: 0.25rem;
}

footer p:last-child {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.6;
}

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

  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .founder-traits ul {
    column-count: 1;
  }
}