:root {
  --bg: #f3f0e8;
  --paper: #fbfaf6;
  --ink: #20231f;
  --muted: #656a64;
  --line: #d8d5cc;
  --accent: #4d6254;
  --dark: #263029;
  --focus: #7b8f7f;
  --error: #8b2f24;
  --success: #315b3c;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.55 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body, input, textarea, button { letter-spacing: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 30;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(243, 240, 232, .94);
  border-bottom: 1px solid rgba(32, 35, 31, .08);
  backdrop-filter: blur(14px);
}

.site-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  font-weight: 780;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 550;
  margin-top: 5px;
}

.links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.links > a:not(.btn) {
  color: var(--muted);
  font-size: .92rem;
  text-decoration: none;
}

.links > a:not(.btn):hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 760;
  line-height: 1.1;
  padding: 0 20px;
  text-align: center;
  text-decoration: none;
  transition: background-color .18s ease, transform .18s ease;
}

.btn:hover {
  background: #11140f;
  transform: translateY(-1px);
}

.btn:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, h3 {
  line-height: 1.06;
  margin-top: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.7rem, 7vw, 6.8rem);
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  margin-bottom: 20px;
}

h3 { font-size: clamp(1.8rem, 3vw, 2.8rem); }

section {
  border-top: 1px solid var(--line);
  padding: 84px 0;
}

.hero {
  border-top: 0;
  padding: 92px 0 82px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.hero-copy .lead {
  max-width: 650px;
  color: #3f443f;
  font-size: clamp(1.22rem, 2vw, 1.48rem);
  margin: 0 0 16px;
}

.hero-copy > p:not(.eyebrow):not(.lead) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.text-link {
  color: var(--accent);
  font-weight: 760;
  text-decoration: none;
}

.text-link:hover { text-decoration: underline; }

.hero-visual {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(34, 43, 36, .08);
}

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

figcaption {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .82rem;
  padding: 11px 15px;
}

.split-heading, .about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.split-heading h2, .about h2 { margin-bottom: 0; }

.problem-list { border-top: 1px solid var(--line); }

.problem-list p {
  position: relative;
  margin: 0;
  border-bottom: 1px solid var(--line);
  color: #3d423d;
  font-size: 1.12rem;
  padding: 18px 18px 18px 32px;
}

.problem-list p::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.section-heading > p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.1rem;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service {
  position: relative;
  padding: 34px;
}

.service-number {
  position: absolute;
  right: 28px;
  top: 24px;
  color: #a3aaa3;
  font-size: .8rem;
  font-weight: 800;
}

.label {
  margin: 0 0 32px;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service h3 { margin-bottom: 16px; }

.service > p:not(.label) {
  color: var(--muted);
  font-size: 1.05rem;
}

.service ul {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.service li {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 13px 0 13px 24px;
}

.service li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.simple-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.simple-process > div {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.simple-process > div:last-child { border-right: 0; }

.simple-process span {
  display: block;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 850;
  margin-bottom: 26px;
}

.simple-process strong {
  display: block;
  font-size: 1.22rem;
}

.simple-process p {
  color: var(--muted);
  margin: 8px 0 0;
}

.example {
  background: var(--dark);
  color: #fff;
}

.example-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.example .eyebrow { color: #b8c9bd; }

.example-copy p:not(.eyebrow) {
  max-width: 680px;
  color: #ccd4ce;
  font-size: 1.05rem;
}

.result-card {
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  padding: 30px;
}

.result-metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.result-metric strong {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
}

.result-metric span { color: #b8c1ba; }
.result-flow { padding: 10px 0; }

.result-flow p {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  color: #d8ded9;
}

.result-flow span {
  color: #aebdb2;
  font-size: .75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.result-card blockquote {
  margin: 22px 0 0;
  font-size: 1.28rem;
  font-weight: 760;
  line-height: 1.35;
}

.about-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.about-copy p { margin-top: 0; }
.about-copy strong { color: var(--ink); }

.principle {
  color: var(--ink) !important;
  font-size: 1.35rem;
  font-weight: 800;
  margin-top: 28px !important;
}

.contact {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  padding: clamp(28px, 5vw, 50px);
}

.contact h2 { font-size: clamp(2.6rem, 5vw, 4.7rem); }

.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-copy a { color: var(--ink); }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.full { grid-column: 1 / -1; }

label {
  display: block;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 760;
  margin-bottom: 7px;
}

label span {
  color: var(--muted);
  font-weight: 500;
}

input, textarea {
  width: 100%;
  border: 1px solid #aaa79f;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 14px;
}

input { min-height: 50px; }

textarea {
  min-height: 170px;
  resize: vertical;
}

input:focus, textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(77, 98, 84, .14);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}

.submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.form-status.is-error { color: var(--error); }
.form-status.is-success { color: var(--success); }

.form-privacy {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: .78rem;
}

footer { padding: 70px 0 30px; }
.footer-quote { padding-bottom: 48px; }

.footer-quote blockquote {
  max-width: 900px;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1.12;
}

.footer-quote cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: .84rem;
  font-style: normal;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
  padding-top: 24px;
}

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

@media (max-width: 900px) {
  .hero-layout, .split-heading, .example-layout, .about, .contact {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero { padding-top: 70px; }
  .hero-visual { max-width: 700px; }
  .links > a:not(.btn) { display: none; }
}

@media (max-width: 680px) {
  .wrap { width: min(calc(100% - 26px), var(--max)); }
  .site-nav { min-height: 66px; }
  .brand small { max-width: 170px; }
  .site-nav .btn { min-height: 42px; padding: 0 14px; font-size: .86rem; }
  h1 { font-size: clamp(3.1rem, 15vw, 4.7rem); }
  section { padding: 64px 0; }
  .hero { padding: 58px 0 64px; }

  .services, .simple-process, .contact-form { grid-template-columns: 1fr; }

  .simple-process > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .simple-process > div:last-child { border-bottom: 0; }
  .simple-process span { margin-bottom: 12px; }
  .full { grid-column: auto; }
  .submit-row { align-items: stretch; flex-direction: column; }
  .submit-row .btn { width: 100%; }
  .footer-bottom { flex-direction: column; }
}
