:root {
  --primary: #2d5d4f;
  --primary-dark: #1f3f37;
  --primary-light: #3d7466;
  --accent: #d97757;
  --accent-dark: #b85a3d;
  --bg: #fdfcf7;
  --bg-alt: #f4f0e6;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --border: #e5e2da;
  --max-width: 1100px;
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.2;
  color: var(--text);
  font-weight: 600;
}

h1 {
  font-size: 2.75rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

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

.lede {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 720px;
}

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.logo {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

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

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--bg) !important;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-family: inherit;
  transition: background 0.15s ease, transform 0.1s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--bg) !important;
}

.btn-primary:active {
  transform: translateY(1px);
}

/* Hero (home) */
.hero {
  padding: 100px 0 90px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 6px 14px;
  background: rgba(217, 119, 87, 0.12);
  border-radius: 100px;
}

.hero h1 {
  font-size: 3.4rem;
  margin-bottom: 28px;
  max-width: 920px;
}

.hero .lede {
  margin-bottom: 40px;
}

.trust-strip {
  margin-top: 32px;
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 80px 0 60px;
  background: var(--bg-alt);
}

.page-hero h1 {
  margin-bottom: 16px;
}

/* Sections */
section {
  padding: 80px 0;
}

section h2 + .lede {
  margin-bottom: 16px;
}

/* CTA section */
section.cta {
  background: var(--primary);
  color: var(--bg);
  text-align: center;
}

section.cta h2,
section.cta p {
  color: var(--bg);
}

section.cta p {
  max-width: 640px;
  margin: 0 auto 32px;
  color: rgba(253, 252, 247, 0.92);
  font-size: 1.15rem;
}

section.cta .btn-primary {
  background: var(--accent);
  color: var(--bg) !important;
}

section.cta .btn-primary:hover {
  background: var(--accent-dark);
}

/* Why grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.why-card {
  background: var(--bg-alt);
  padding: 32px;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

.why-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

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

/* How it works */
.how {
  background: var(--bg);
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 36px;
  margin-top: 48px;
}

.steps li {
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: var(--bg);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  font-family: Georgia, serif;
  margin-bottom: 24px;
}

.steps h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

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

/* Impact section */
.impact {
  background: var(--primary);
  color: var(--bg);
}

.impact h2,
.impact p {
  color: var(--bg);
}

.impact-content {
  max-width: 820px;
}

.impact h2 {
  margin-bottom: 24px;
}

.impact p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(253, 252, 247, 0.95);
}

.impact strong {
  color: #fff;
  font-weight: 700;
}

/* Founder */
.founder {
  background: var(--bg);
}

.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.founder-photo {
  text-align: center;
}

.photo-placeholder {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-size: 4.5rem;
  font-family: Georgia, serif;
  font-weight: 700;
  margin: 0 auto 16px;
  letter-spacing: -0.05em;
}

.photo-caption {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
}

.founder-text h2 {
  margin-bottom: 24px;
}

.founder-text p {
  font-size: 1.08rem;
  line-height: 1.7;
}

/* Values */
.values {
  background: var(--bg-alt);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  padding: 32px;
  background: var(--bg);
  border-radius: var(--radius);
  border-top: 4px solid var(--accent);
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

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

/* Contact */
.contact-info {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 80px;
}

.contact-card {
  padding: 36px 32px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  text-align: center;
  border-top: 4px solid var(--primary);
}

.contact-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-item {
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-item a {
  font-weight: 600;
}

.contact-hours {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Form */
.form-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.form-section h2 {
  margin-bottom: 12px;
}

.form-section > p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.contact-form {
  margin-top: 8px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.95rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 93, 79, 0.1);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  margin-top: 8px;
}

/* CTA strip — soft mid-page funnel */
.cta-strip {
  background: var(--bg-alt);
  padding: 28px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-strip p {
  font-size: 1.15rem;
  margin: 0;
  color: var(--text);
}

.cta-strip a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  margin-left: 8px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

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

/* FAQ */
.faq {
  background: var(--bg);
}

.faq-list {
  display: grid;
  gap: 24px;
  margin-top: 48px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--bg-alt);
  padding: 32px;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.faq-item p {
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  margin: 56px auto 0;
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
}

.faq-cta a {
  font-weight: 600;
}

/* Founder CTA line */
.founder-cta-line {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 1.05rem;
  color: var(--text-muted);
}

.founder-cta-line a {
  font-weight: 600;
}

.contact-meta {
  position: absolute;
  left: -10000px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* Thank you page */
.thank-you-body {
  background: var(--bg);
  padding: 80px 0;
}

.thank-you-content {
  max-width: 640px;
  font-size: 1.1rem;
}

/* Footer */
.site-footer {
  background: var(--primary-dark);
  color: var(--bg);
  padding: 60px 0 30px;
}

.site-footer .logo {
  color: var(--bg);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 12px;
}

.site-footer p {
  color: rgba(253, 252, 247, 0.85);
  margin-bottom: 8px;
}

.site-footer a {
  color: rgba(253, 252, 247, 0.95);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-tagline {
  font-size: 0.95rem;
  font-style: italic;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.copyright {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(253, 252, 247, 0.7);
  padding-top: 24px;
  border-top: 1px solid rgba(253, 252, 247, 0.15);
}

/* Mobile */
@media (max-width: 768px) {
  body {
    font-size: 17px;
  }

  h1 {
    font-size: 2.25rem;
  }

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

  h2 {
    font-size: 1.85rem;
  }

  .lede {
    font-size: 1.1rem;
  }

  .hero {
    padding: 60px 0 50px;
  }

  .page-hero {
    padding: 50px 0 40px;
  }

  section {
    padding: 60px 0;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .photo-placeholder {
    width: 200px;
    height: 200px;
    font-size: 3.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-nav {
    gap: 20px;
  }

  .form-section {
    padding: 32px 24px;
  }

  .contact-item {
    font-size: 1.2rem;
  }
}
