:root {
  --bg: #F7F5F0;
  --surface: #FFFFFF;
  --ink: #1A1A1A;
  --muted: #5C5A54;
  --line: #E4E0D8;
  --olive: #65A30D;
  --olive-dark: #4D7C0F;
  --olive-light: #84CC16;
  --olive-tint: #EEF4DF;
  --olive-deep: #33421A;
  --radius-lg: 34px;
  --radius-md: 20px;
  --shadow: 0 24px 60px -30px rgba(26, 26, 26, 0.35);
  --sidebar-w: 290px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.home-page { background: var(--bg); }

a { color: var(--olive-dark); text-decoration: none; }
a:hover { color: var(--olive); }

/* ---------- Right vertical sidebar navigation ---------- */
.side-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--olive-deep);
  color: #F1EFE9;
  z-index: 60;
  display: flex;
  flex-direction: column;
}

.side-nav-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px 34px;
}

.side-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  margin-bottom: 56px;
}

.side-brand-mark {
  font-size: 30px;
  line-height: 1;
}

.side-brand-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.side-brand-text small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--olive-light);
}

.side-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.side-links a {
  color: #D7D6CF;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 14px;
  border-radius: 12px;
  border-left: 3px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.side-links a:hover {
  background: rgba(132, 204, 22, 0.12);
  color: #FFFFFF;
  border-left-color: var(--olive-light);
}

.side-meta {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(241, 239, 233, 0.14);
  font-size: 13px;
  color: #BDBBB4;
  line-height: 1.6;
}

.side-meta p { margin: 0 0 14px; }

.side-mail, .side-phone {
  display: block;
  color: #E8E7E1;
  font-weight: 600;
}

.side-mail:hover, .side-phone:hover { color: var(--olive-light); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 80;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 12px;
  background: var(--olive-deep);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Main content clears the sidebar ---------- */
.page-main {
  margin-right: var(--sidebar-w);
  min-height: 100vh;
}

/* ---------- Hero: rounded mega-card ---------- */
.hero-shell {
  padding: 48px 48px 64px;
  background-image: radial-gradient(rgba(77, 124, 15, 0.08) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 72px 72px 60px;
  box-shadow: var(--shadow);
  max-width: 1080px;
  margin: 0 auto;
}

.hero-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-dark);
}

.hero-chip {
  font-size: 13px;
  font-weight: 600;
  color: var(--olive-deep);
  background: var(--olive-tint);
  border: 1px solid #D9E6B9;
  padding: 6px 14px;
  border-radius: 999px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 28px;
  max-width: 18ch;
}

.hero-copy {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 68ch;
  margin: 0 0 38px;
}

.hero-actions { margin-bottom: 44px; }

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--olive);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--olive-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -18px rgba(77, 124, 15, 0.7);
}

.hero-facts {
  list-style: none;
  display: flex;
  gap: 48px;
  margin: 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.hero-facts li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-facts strong {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--olive-dark);
}

.hero-facts span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- Statement row ---------- */
.statement-row {
  padding: 90px 56px;
  max-width: 1000px;
  margin: 0 auto;
}

.statement-lede {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--olive-deep);
}

.statement-body {
  font-size: 1.22rem;
  color: var(--muted);
  max-width: 62ch;
  margin: 0;
}

/* ---------- Section headings ---------- */
.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 14px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 16px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

/* ---------- Numerals section ---------- */
.numerals-section {
  padding: 90px 56px;
  background: var(--olive-tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.numeral-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.numeral-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 28px 34px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.numeral-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.numeral {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 22px;
}

.numeral-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.numeral-card p {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0;
}

/* ---------- Alternating rows ---------- */
.alt-rows-section {
  padding: 100px 56px;
}

.alt-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.alt-row:last-child { border-bottom: none; }

.alt-row-reverse .alt-row-visual { order: -1; }

.alt-row-copy h3 {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.alt-row-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 54ch;
  margin: 0;
}

.alt-row-visual { display: flex; justify-content: center; }

.visual-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px;
  width: 100%;
  max-width: 360px;
  box-shadow: var(--shadow);
}

.visual-card span {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-dark);
  background: var(--olive-tint);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.visual-card strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.visual-card p { color: var(--muted); margin: 0; }

.vc-a { border-top: 6px solid var(--olive); }
.vc-b { border-top: 6px solid var(--olive-light); }
.vc-c { border-top: 6px solid var(--olive-dark); }

/* ---------- Process timeline ---------- */
.process-timeline {
  padding: 100px 56px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--olive-light);
}

.timeline-item {
  position: relative;
  padding-left: 56px;
  padding-bottom: 40px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--olive);
  border: 4px solid var(--olive-tint);
}

.timeline-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 30px;
}

.timeline-step {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 8px;
}

.timeline-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.timeline-card p { color: var(--muted); margin: 0; }

/* ---------- Comparison table ---------- */
.compare-section {
  padding: 100px 56px;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compare-table th, .compare-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}

.compare-table thead th {
  background: var(--olive-deep);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.98rem;
}

.compare-table thead th.highlight-col { background: var(--olive-dark); }

.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th { border-bottom: none; }

.compare-table tbody th {
  font-weight: 700;
  color: var(--ink);
}

.compare-table .highlight-col {
  background: var(--olive-tint);
  color: var(--olive-deep);
  font-weight: 600;
}

/* ---------- Engage / contact ---------- */
.engage-section {
  padding: 100px 56px;
  background: var(--olive-deep);
  color: #F1EFE9;
}

.engage-section .section-kicker { color: var(--olive-light); }
.engage-section .section-heading h2 { color: #FFFFFF; }
.engage-section .section-heading p { color: #C9C8C0; }

.engage-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.engage-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: #FFFFFF;
}

.engage-info p { color: #D7D6CF; margin: 0 0 18px; }
.engage-info a { color: #FFFFFF; font-weight: 600; }
.engage-info a:hover { color: var(--olive-light); }

.engage-note { font-size: 0.95rem; color: #BDBBB4 !important; }

.contact-form {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow);
}

.field { margin-bottom: 20px; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 8px;
}

.field input, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
}

.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(101, 163, 13, 0.18);
}

.form-status {
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--olive-dark);
  min-height: 1.2em;
}

/* ---------- Footer ---------- */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 56px;
  border-top: 1px solid var(--line);
  background: var(--surface);
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 26px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.footer-links a:hover { color: var(--olive-dark); }

/* ---------- Scroll reveal ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .numeral-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .side-nav {
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }
  .side-nav.open { transform: translateX(0); }

  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .page-main { margin-right: 0; }

  .hero-shell { padding: 28px 20px 44px; }
  .hero-card { padding: 44px 28px 38px; }

  .statement-row,
  .numerals-section,
  .alt-rows-section,
  .process-timeline,
  .compare-section,
  .engage-section { padding: 64px 24px; }

  .site-footer { padding: 24px; }

  .alt-row,
  .alt-row-reverse { grid-template-columns: 1fr; gap: 28px; }
  .alt-row-reverse .alt-row-visual { order: 0; }

  .engage-grid { grid-template-columns: 1fr; gap: 36px; }

  .hero-facts { gap: 32px; }
}

@media (max-width: 560px) {
  .numeral-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.1rem; }
  .hero-card { border-radius: 24px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}
