:root {
  --paper: #f4f0e7;
  --paper-deep: #e8e0d2;
  --ink: #182019;
  --muted: #5f675f;
  --green: #355844;
  --green-dark: #173428;
  --lime: #d7e0b8;
  --line: rgba(24, 32, 25, 0.16);
  --white: #fffdf8;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link { position: fixed; left: 1rem; top: -5rem; background: var(--ink); color: white; padding: .7rem 1rem; z-index: 100; }
.skip-link:focus { top: 1rem; }
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 240, 231, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; font-family: Manrope, sans-serif; font-size: .86rem; font-weight: 800; letter-spacing: .11em; text-decoration: none; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; color: var(--white); background: var(--green-dark); border-radius: 50%; font-size: .82rem; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; font-size: .9rem; font-weight: 600; }
.nav-links a { text-decoration: none; }
.nav-links a:not(.nav-cta):hover { color: var(--green); }
.nav-cta { padding: .65rem 1rem; border: 1px solid var(--ink); border-radius: 999px; }
.nav-cta:hover { background: var(--ink); color: var(--white); }
.menu-button { display: none; border: 1px solid var(--line); border-radius: 999px; background: transparent; padding: .5rem .9rem; }

.hero { padding: clamp(5rem, 9vw, 8.5rem) 0 clamp(4rem, 7vw, 6.5rem); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.eyebrow { margin: 0 0 1rem; color: var(--green); font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { font-family: Manrope, sans-serif; line-height: 1.08; letter-spacing: -.04em; }
h1 { max-width: 850px; margin: 0; font-size: clamp(3rem, 6vw, 5.7rem); font-weight: 700; }
h1 em { color: var(--green); font-style: normal; }
.hero-lead { max-width: 720px; margin: 2rem 0 0; color: #414941; font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.hero-actions { margin-top: 2.2rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.button { display: inline-flex; justify-content: center; align-items: center; border: 0; border-radius: 999px; padding: .9rem 1.3rem; text-decoration: none; font-weight: 700; cursor: pointer; }
.button-primary { color: var(--white); background: var(--green-dark); box-shadow: 0 7px 0 #a8ae94; }
.button-primary:hover { transform: translateY(2px); box-shadow: 0 5px 0 #a8ae94; }
.text-link { display: inline-flex; gap: .5rem; align-items: center; color: var(--ink); font-weight: 700; text-underline-offset: .25em; }

.diagnostic-card { background: var(--green-dark); color: var(--white); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.4rem); transform: rotate(1.2deg); box-shadow: 18px 18px 0 var(--lime); }
.card-kicker { margin: 0 0 1.2rem; color: #bed0c2; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
blockquote { margin: 0 0 1.8rem; font-family: Manrope, sans-serif; font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 700; line-height: 1.25; letter-spacing: -.03em; }
.signal-list { display: grid; gap: .55rem; }
.signal-list span { display: block; padding: .7rem .85rem; background: rgba(255,255,255,.08); border-left: 3px solid var(--lime); border-radius: 4px; font-size: .9rem; }
.card-note { margin: 1.4rem 0 0; color: #c9d2ca; font-size: .83rem; }

.trust-line { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-items { min-height: 84px; display: flex; justify-content: space-between; gap: 1.5rem; align-items: center; color: var(--muted); font-size: .84rem; font-weight: 700; }
.trust-items span::before { content: "✓"; margin-right: .55rem; color: var(--green); }

.section { padding: clamp(4.5rem, 7vw, 6rem) 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 10vw, 8rem); }
h2 { margin: 0; font-size: clamp(2.35rem, 4.5vw, 4.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; }
.body-copy { color: #454d46; font-size: 1.15rem; }
.body-copy p:first-child { margin-top: 0; }
.section-heading { margin-bottom: 2.5rem; }
.section-heading.narrow { max-width: 820px; }
.section-heading > p:last-child { max-width: 650px; color: var(--muted); font-size: 1.08rem; }

.approach-section { background: var(--white); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.step { position: relative; padding: 2.2rem 2rem 1rem 0; }
.step + .step { border-left: 1px solid var(--line); padding-left: 2rem; }
.step-number { color: var(--green); font-family: Manrope, sans-serif; font-size: .75rem; font-weight: 800; letter-spacing: .14em; }
.step h3 { margin: 2.2rem 0 .8rem; }
.step p { margin: 0; color: var(--muted); }
.assessment-box { margin-top: 3rem; display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 2rem; align-items: start; padding: 2rem; border-radius: var(--radius); color: var(--white); background: var(--green-dark); }
.assessment-box .card-kicker { margin-bottom: .6rem; }
.assessment-box h3 { margin: 0; font-size: 1.5rem; }
.assessment-box ul { margin: 0; padding-left: 1.2rem; }
.assessment-box li + li { margin-top: .35rem; }
.assessment-box > p { margin: 0; color: #cbd4cd; }

.example-section { background: var(--green-dark); color: var(--white); }
.example-heading { max-width: 980px; }
.example-heading > p:last-child { color: #cbd4cd; }
.case-study { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 9vw, 7rem); align-items: center; }
.case-study + .case-study { margin-top: clamp(4rem, 7vw, 6rem); padding-top: clamp(4rem, 7vw, 6rem); border-top: 1px solid rgba(255,255,255,.18); }
.example-section .eyebrow { color: #bed0c2; }
.example-copy > p:not(.eyebrow) { color: #cbd4cd; }
.example-copy h3 { margin: 0 0 1.4rem; font-size: clamp(1.9rem, 3.2vw, 3rem); }
.case-label { margin: 0 0 .9rem; color: var(--lime) !important; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.example-section .text-link { color: var(--white); }
.workflow-card { background: var(--paper); color: var(--ink); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: 16px 16px 0 rgba(215,224,184,.24); }
.workflow-card .card-kicker { color: var(--green); }
.workflow-card ol { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.workflow-card li { display: flex; align-items: center; gap: 1rem; padding: .9rem; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.workflow-card li > span { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); font-weight: 800; }
.workflow-card strong, .workflow-card small { display: block; }
.workflow-card small { margin-top: .1rem; color: var(--muted); }

.outcomes { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.outcomes article { min-height: 180px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.outcomes h3 { margin-top: 0; }
.outcomes p { margin-bottom: 0; color: var(--muted); }
.honesty-note { max-width: 800px; margin: 2rem 0 0; padding-left: 1rem; border-left: 3px solid var(--green); color: var(--muted); font-size: .93rem; }

.about-section { background: var(--paper-deep); }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 6rem); align-items: center; }
.founder-photo-wrap { overflow: hidden; border-radius: var(--radius); background: var(--green-dark); box-shadow: 14px 14px 0 rgba(53,88,68,.16); }
.founder-photo { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; }
.founder-caption { padding: 1rem 1.2rem; color: var(--white); }
.founder-caption strong, .founder-caption small { display: block; }
.founder-caption small { color: #bdc8bf; }
.about-grid > div:last-child > p:not(.eyebrow) { max-width: 720px; color: #444b44; }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .6fr 1.4fr; gap: clamp(3rem, 10vw, 8rem); align-items: start; }
.faqs { border-top: 1px solid var(--line); }
.faqs details { border-bottom: 1px solid var(--line); }
.faqs summary { position: relative; padding: 1.5rem 2.5rem 1.5rem 0; cursor: pointer; list-style: none; font: 700 1.05rem Manrope, sans-serif; }
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary::after { content: "+"; position: absolute; right: .2rem; top: 1.25rem; font-size: 1.5rem; font-weight: 400; }
.faqs details[open] summary::after { content: "–"; }
.faqs details p { max-width: 720px; margin: -.3rem 0 1.5rem; color: var(--muted); }

.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 10vw, 7rem); align-items: start; }
.whatsapp-card { display: flex; flex-direction: column; margin-top: 2rem; padding: 1rem 1.2rem; border: 1px solid var(--line); border-radius: 14px; text-decoration: none; background: var(--paper); }
.whatsapp-card span { color: var(--muted); font-size: .8rem; }
.whatsapp-card strong { font-size: 1.2rem; }
.whatsapp-card:hover { border-color: var(--green); }
.contact-form { padding: clamp(1.3rem, 4vw, 2.2rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: block; margin-bottom: 1rem; font-size: .82rem; font-weight: 700; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: .42rem; padding: .85rem; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: var(--white); }
.contact-form input:focus, .contact-form textarea:focus { outline: 3px solid rgba(53,88,68,.18); border-color: var(--green); }
.hidden-field { display: none; }
.form-note { margin: 1rem 0 0; color: var(--muted); font-size: .75rem; }

footer { padding: 3rem 0; color: #dbe3dc; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 2rem; align-items: end; }
footer p { margin: .25rem 0 0; color: #aeb8b0; font-size: .82rem; }
footer a { color: #dbe3dc; }
.legal-page { padding: clamp(4rem, 8vw, 7rem) 0; }
.legal-copy { max-width: 820px; }
.legal-copy h1 { font-size: clamp(2.7rem, 6vw, 5rem); }
.legal-copy h2 { margin-top: 2.5rem; font-size: 1.45rem; }
.legal-copy p { color: #444b44; }

@media (max-width: 860px) {
  .shell { width: min(100% - 32px, 720px); }
  .menu-button { display: block; }
  .nav-links { position: absolute; top: 68px; left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: .7rem; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: 0 18px 40px rgba(24,32,25,.15); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .8rem; }
  .nav-cta { margin-top: .35rem; text-align: center; }
  .hero-grid, .split, .case-study, .about-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
  .diagnostic-card { transform: none; box-shadow: 10px 10px 0 var(--lime); }
  .trust-items { padding: 1rem 0; display: grid; grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { padding: 1.6rem 0; }
  .step + .step { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .step h3 { margin-top: 1rem; }
  .assessment-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding-top: 4rem; }
  .section { padding: 3.75rem 0; }
  .section-heading { margin-bottom: 2rem; }
  h1 { font-size: clamp(2.55rem, 13vw, 3.6rem); }
  h2 { font-size: 2.25rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; text-align: center; }
  .trust-items, .outcomes, .field-row { grid-template-columns: 1fr; }
  .outcomes { border-left: 0; }
  .outcomes article { min-height: 0; padding: 1.4rem 0; border-right: 0; }
  .founder-photo { aspect-ratio: 16 / 9; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
