:root {
  --bg: #f4f1ea;
  --surface: #ffffff;
  --surface-2: #ebe6dc;
  --text: #1a1916;
  --muted: #5c564f;
  --primary: #1a4f36;
  --primary-2: #123524;
  --accent: #9a6b1a;
  --ring: rgba(26, 79, 54, 0.22);
  --card-shadow: 0 24px 48px -36px rgba(18, 32, 24, 0.28);
  --border-soft: rgba(26, 25, 22, 0.1);
  --section-space: clamp(80px, 10vw, 120px);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.has-scroll-3d .site-main {
  perspective: 1400px;
  perspective-origin: 50% 40%;
}

body.has-scroll-3d .scroll-scene {
  transform-style: preserve-3d;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 10040;
  display: grid;
  place-items: center;
  background: #0f2418;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s ease;
  animation: loaderHideFallback 2.6s var(--ease-out) forwards;
}

.site-loader.is-done,
body.is-loaded .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none !important;
  animation: none;
}

@keyframes loaderHideFallback {
  0%,
  78% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.site-loader__logo {
  display: block;
  margin: 0 auto 16px;
}

.site-loader__inner {
  width: min(280px, 78vw);
  text-align: center;
  color: #e8efe9;
}

.site-loader__mark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.site-loader__context {
  display: block;
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 239, 233, 0.55);
}

.site-loader__track {
  margin-top: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.site-loader__fill {
  display: block;
  width: 0%;
  height: 100%;
  background: #c9a227;
  transition: width 0.2s ease;
}

.site-main {
  opacity: 1;
  transform: none;
}

body.is-ready .site-main {
  animation: pageEnter 0.75s var(--ease-out) both;
}

@keyframes pageEnter {
  from {
    opacity: 0.4;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.is-loaded .reveal,
body.is-loaded .js-enabled .reveal {
  opacity: 1;
  transform: translateY(0);
  clip-path: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -120px;
  left: 16px;
  z-index: 10050;
  padding: 12px 16px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: top 0.22s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: calc(8px + env(safe-area-inset-top, 0px));
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 241, 234, 0.72);
  backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.site-header.is-compact {
  background: rgba(244, 241, 234, 0.94);
  border-color: var(--border-soft);
  box-shadow: 0 12px 40px -28px rgba(18, 32, 24, 0.18);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 40;
  background: rgba(26, 25, 22, 0.06);
}

header,
main,
footer {
  position: relative;
  z-index: 1;
}

.scroll-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: var(--primary);
  transition: width 0.12s linear;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  gap: 12px 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.12rem;
}

.logo__mark {
  flex-shrink: 0;
}

.logo__wordmark {
  display: inline-block;
}

.btn-nav {
  margin-left: 4px;
  padding: 10px 16px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border: 1px solid var(--primary);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-nav:hover {
  background: var(--primary-2);
  border-color: var(--primary-2);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #c5d9c9;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  background: #fff;
  border-color: #a8c4ae;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
  color: var(--muted);
}

.primary-nav a {
  position: relative;
  transition: color 0.25s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.primary-nav a:hover {
  color: #1e5f3d;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.primary-nav a.is-active {
  color: var(--text);
  font-weight: 700;
}

.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.hero {
  padding: clamp(88px, 12vw, 128px) 0 clamp(64px, 8vw, 88px);
  position: relative;
  overflow: visible;
  background: var(--bg);
}

.hero__veil {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(244, 241, 234, 0.97) 42%, rgba(244, 241, 234, 0.72) 58%, rgba(244, 241, 234, 0.35) 100%),
    url("assets/images/imagem-01.jpeg") center / cover no-repeat;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}

body.is-revealed .hero__veil {
  transform: scale(1);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.88fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: end;
}

.hero-copy {
  position: relative;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.03em;
}

h3 {
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.35rem, 5.2vw, 4.25rem);
  margin-bottom: 20px;
  text-wrap: balance;
}

h2 {
  max-width: 18ch;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  margin-bottom: 18px;
  text-wrap: balance;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.lead {
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.7;
}

.hero-editorial-note {
  margin-top: 22px;
  padding-left: 18px;
  max-width: 48ch;
  border-left: 2px solid rgba(161, 98, 7, 0.42);
  color: #4e4841;
  font-size: 0.98rem;
  line-height: 1.75;
}

.hero-proof {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-proof div {
  padding: 16px 18px;
  border: 1px solid rgba(27, 26, 23, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 36px -30px rgba(19, 34, 24, 0.35);
}

.hero-proof strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 13px 20px;
  font-weight: 600;
  font-size: 0.94rem;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  touch-action: manipulation;
}

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

.btn-primary:hover {
  background: var(--primary-2);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(26, 25, 22, 0.22);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-card {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--card-shadow);
  position: relative;
}

.hero-card-accent {
  width: 40px;
  height: 3px;
  margin-bottom: 20px;
  background: var(--accent);
}

.hero-card-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  color: var(--muted);
  font-size: 0.95rem;
}

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

.stats-grid article {
  background: var(--surface-2);
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(27, 26, 23, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stats-grid article:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -24px rgba(17, 77, 44, 0.7);
  border-color: rgba(161, 98, 7, 0.18);
}

.stats-grid strong {
  display: block;
  font-size: 1.35rem;
}

.stats-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.trust {
  padding: 36px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.trust-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 28px 40px;
  align-items: end;
}

.trust-copy .eyebrow {
  margin-bottom: 10px;
}

.trust-label {
  margin: 0;
  max-width: 42ch;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-tags li {
  padding: 8px 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  border-bottom: 1px solid rgba(154, 107, 26, 0.35);
}

.editorial-break {
  position: relative;
  min-height: clamp(320px, 52vh, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0f2418;
  transform-style: preserve-3d;
}

.scroll-3d {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform: translate3d(0, var(--sy, 0), var(--sz, 0)) rotateX(var(--rx, 0deg)) scale(var(--sc, 1));
  transform-origin: 50% 50%;
  will-change: transform;
}

.editorial-break.scroll-3d {
  transform-origin: 50% 80%;
}

.editorial-break__media {
  position: absolute;
  inset: -6%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate3d(0, var(--parallax-y, 0px), -50px) scale(1.1) rotateX(var(--media-rx, 0deg));
  will-change: transform;
}

.editorial-break.scroll-3d .editorial-break__copy {
  transform: translate3d(0, 0, var(--copy-z, 40px));
  transform-style: preserve-3d;
}

.editorial-break--caatinga .editorial-break__media {
  background-image: url("assets/images/imagem-02.jpeg");
}

.editorial-break--field .editorial-break__media {
  background-image: url("assets/images/imagem-05.jpeg");
}

.editorial-break--community .editorial-break__media {
  background-image: url("assets/images/imagem-09.jpeg");
}

.editorial-break__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(15, 36, 24, 0.92) 0%,
    rgba(15, 36, 24, 0.45) 45%,
    rgba(15, 36, 24, 0.2) 100%
  );
}

.editorial-break__copy {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 8vw, 72px) 0;
  color: #eef4ef;
}

.editorial-break__label {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 220, 190, 0.75);
}

.editorial-break blockquote {
  margin: 0;
  max-width: 20ch;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.8vw, 2.85rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.js-enabled .editorial-break.reveal:not(.is-visible) {
  clip-path: inset(6% 0 6% 0);
}

.js-enabled .editorial-break.reveal.is-visible {
  clip-path: inset(0 0 0 0);
}

.section {
  padding: var(--section-space) 0;
  position: relative;
  transform-style: preserve-3d;
}

.scroll-3d.hero-card,
.scroll-3d.case-card,
.scroll-3d.card {
  transform-origin: 50% 60%;
}

.scroll-3d.inline-cta,
.scroll-3d.testimonial,
.scroll-3d.newsletter-wrap {
  transform-origin: 50% 50%;
}

.timeline article.scroll-3d {
  transform-origin: 50% 100%;
}

.section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1120px, 88%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(30, 27, 22, 0.16), transparent);
  pointer-events: none;
}

section[id] {
  scroll-margin-top: 96px;
}

.section-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.2;
  pointer-events: none;
}

.section-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(244, 247, 242, 0.83), rgba(244, 247, 242, 0.95));
}

.section-image > .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  margin-bottom: 34px;
  display: grid;
  gap: 0;
}

.section-intro {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.section-heading-dark .section-intro {
  color: rgba(232, 243, 234, 0.76);
}

.solucoes-bg::before {
  background-image: url("assets/images/imagem-07.jpeg");
}

.programas-bg::before {
  background-image: url("assets/images/imagem-09.jpeg");
}

.cta-bg::before {
  background-image: url("assets/images/imagem-10.jpeg");
  opacity: 0.28;
}

.cards,
.showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  overflow: visible;
}

.case-card,
.card,
.showcase-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--card-shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  position: relative;
  overflow: hidden;
}

.card {
  border-left: 3px solid rgba(154, 107, 26, 0.4);
}

.card::before,
.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(29, 92, 63, 0.72), rgba(161, 98, 7, 0.56));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.case-card:hover,
.card:hover,
.showcase-card:hover {
  transform: translateY(-3px);
  border-color: rgba(26, 79, 54, 0.2);
  box-shadow: 0 20px 40px -28px rgba(17, 25, 16, 0.32);
}

.card:hover::before,
.showcase-card:hover::before {
  opacity: 1;
}

.card p,
.showcase-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.card-eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.card-list li + li {
  margin-top: 6px;
}

.inline-cta {
  margin-top: 28px;
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-radius: var(--radius-md);
  background: var(--primary-2);
  color: #f0f4f1;
  box-shadow: var(--card-shadow);
}

.inline-cta strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.inline-cta p {
  margin: 0;
  color: rgba(248, 245, 237, 0.8);
}

.badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(161, 98, 7, 0.12);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.showcase-metric {
  display: block;
  margin-top: 14px;
  color: var(--text);
  font-size: 0.96rem;
}

.case-card__head {
  margin-bottom: 14px;
}

.case-card__head h3 {
  margin-top: 10px;
}

.case-card__context {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.case-card__results {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--text);
  font-size: 0.94rem;
}

.case-card__results li + li {
  margin-top: 8px;
}

.case-card__meta {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.results {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(241, 236, 227, 0.72));
}

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

.result-card {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-soft);
  box-shadow: var(--card-shadow);
}

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

.testimonial {
  margin-top: 28px;
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
  background: #141310;
  color: #f4f1ea;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial blockquote {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  max-width: none;
  color: inherit;
}

.testimonial blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.35;
  font-weight: 500;
}

.testimonial figcaption {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial figcaption strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.testimonial figcaption span {
  color: rgba(244, 241, 234, 0.62);
  font-size: 0.88rem;
}

.form-privacy {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--muted);
}

.form-privacy a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-privacy--dark {
  color: rgba(234, 245, 237, 0.65);
}

.form-privacy--dark a {
  color: #a8e8c4;
}

.section-dark {
  background: linear-gradient(150deg, rgba(7, 33, 20, 0.9), rgba(18, 67, 43, 0.9));
  color: #e8f3ea;
}

.metodo-bg::before {
  background-image: url("assets/images/imagem-08.jpeg");
  opacity: 0.24;
}

.section-dark.section-image::after {
  background: linear-gradient(180deg, rgba(10, 36, 22, 0.78), rgba(7, 24, 15, 0.9));
}

.section-dark .eyebrow {
  color: #a3e7bc;
}

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

.timeline article {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 18px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.timeline article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
}

.timeline span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1f6e44;
  margin-bottom: 12px;
  font-weight: 700;
}

.timeline p {
  color: #c7ddcd;
  margin: 0;
}

.quote {
  padding-top: 30px;
}

blockquote {
  margin: 0;
  background: #f6f0e6;
  border-left: 4px solid var(--accent);
  border-radius: 20px;
  padding: 28px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #332e28;
  box-shadow: var(--card-shadow);
  max-width: 54ch;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0 20px;
  box-shadow: var(--card-shadow);
}

.faq-item summary {
  padding: 18px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(27, 26, 23, 0.2);
  color: var(--muted);
  font-weight: 700;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
  color: var(--accent);
  border-color: rgba(161, 98, 7, 0.35);
  transform: rotate(180deg);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--muted);
}

.newsletter {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(238, 232, 219, 0.55));
}

.newsletter-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--card-shadow);
}

.newsletter-copy h2 {
  margin-bottom: 12px;
}

.newsletter-form {
  display: grid;
  gap: 10px;
}

.newsletter-form label {
  font-weight: 600;
}

.newsletter-name-field {
  display: grid;
  gap: 6px;
}

.optional-hint {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.88em;
}

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

.newsletter-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  border: 1px solid #c0b49f;
  background: #fff;
  color: #25211b;
  border-radius: 12px;
  min-height: 48px;
  padding: 10px 14px;
  font: inherit;
}

.newsletter-form input[type="text"]:focus,
.newsletter-form input[type="email"]:focus {
  outline: 2px solid rgba(161, 98, 7, 0.25);
  border-color: #a16207;
}

.newsletter-form input[type="email"].is-invalid {
  border-color: #d27f6f;
}

.newsletter-status {
  margin: 0;
  min-height: 1.3em;
  font-size: 0.9rem;
  color: #7e5d1f;
}

.newsletter-status.is-error {
  color: #ad5a4a;
}

.newsletter-status.is-success {
  color: #1f6e44;
}

.field-error {
  margin: 6px 0 0;
  color: #ad5a4a;
  font-size: 0.86rem;
  line-height: 1.4;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.cta {
  background: #0f2b1b;
  color: #eaf5ed;
}

.cta.section-image::after {
  background: linear-gradient(180deg, rgba(12, 38, 23, 0.8), rgba(7, 20, 13, 0.92));
}

.cta .eyebrow {
  color: #88d4aa;
}

.contact-options {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-options a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.contact-options a:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.contact-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 24px;
  display: grid;
  gap: 14px;
  box-shadow: 0 24px 44px -34px rgba(0, 0, 0, 0.45);
}

.contact-form .field {
  display: grid;
  gap: 6px;
}

.field-split {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field-split > div {
  display: grid;
  gap: 6px;
}

.contact-form label {
  font-weight: 600;
}

.contact-form .form-status {
  margin: 0;
  min-height: 1.25em;
  font-size: 0.9rem;
  color: #f0c9a8;
}

.field-help {
  margin: -2px 0 0;
  color: rgba(234, 245, 237, 0.72);
  font-size: 0.9rem;
}

.contact-form .form-status.is-error {
  color: #ffb4a8;
}

.contact-form .form-status.is-success {
  color: #a8f0c4;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #5a7d68;
  background: #f7fdf9;
  color: #153423;
  border-radius: 10px;
  min-height: 46px;
  padding: 10px 12px;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid var(--ring);
  border-color: #6bb78d;
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid,
.contact-form select.is-invalid {
  border-color: #d27f6f;
}

.site-footer {
  background: #10281c;
  color: #c5d6ca;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 28px 40px;
  padding: 48px 0 32px;
  align-items: start;
}

.footer-logo {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #eef4ef;
}

.footer-tagline {
  margin: 0;
  max-width: 36ch;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(197, 214, 202, 0.82);
}

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

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(232, 241, 236, 0.88);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-meta {
  text-align: right;
  font-size: 0.86rem;
}

.footer-meta p {
  margin: 0 0 8px;
  color: rgba(197, 214, 202, 0.7);
}

.footer-meta a {
  color: rgba(232, 241, 236, 0.88);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: transform 0.65s var(--ease-out), clip-path 0.9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-enabled .reveal.is-visible {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .skip-link {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  .site-loader {
    animation: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none !important;
  }

  .site-main {
    animation: none;
  }

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nav-toggle__bar {
    transition: none;
  }

  .js-enabled .editorial-break.reveal {
    clip-path: none;
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .cta-grid,
  .newsletter-wrap,
  .cards,
  .showcase,
  .timeline,
  .results-grid,
  .hero-proof,
  .field-split {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease, padding 0.25s ease;
  }

  .primary-nav.is-open {
    max-height: 320px;
    opacity: 1;
    padding-top: 8px;
    padding-bottom: 4px;
  }

  .primary-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(22, 51, 34, 0.08);
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 68px;
  }

  .site-header {
    backdrop-filter: none;
  }

  .inline-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-inner {
    grid-template-columns: 1fr;
  }

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

  .footer-meta {
    text-align: left;
  }

  .btn-nav {
    display: none;
  }

  h1,
  h2 {
    max-width: 100%;
  }

  .section-image::before {
    background-attachment: scroll;
  }

  .editorial-break {
    min-height: 280px;
  }

  .editorial-break__media {
    transform: none;
  }

  body.has-scroll-3d .site-main {
    perspective: none;
  }

  .scroll-3d,
  .editorial-break.scroll-3d .editorial-break__copy {
    transform: none !important;
    will-change: auto;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-wrap {
    padding: 22px;
  }

  .newsletter-field {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-proof div,
  .card,
  .showcase-card {
    backdrop-filter: none;
    box-shadow: 0 14px 28px -26px rgba(17, 25, 16, 0.45);
  }

  .card:hover,
  .showcase-card:hover,
  .stats-grid article:hover,
  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none;
  }

}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.motion-toggle {
  display: inline-flex;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-muted);
  font: inherit;
  font-size: 0.875rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.motion-toggle:hover {
  color: var(--color-ink);
}

body.reduce-motion-user .scroll-3d,
body.reduce-motion-user.has-scroll-3d .scroll-3d {
  transform: none !important;
  will-change: auto;
}

.legal-page .site-header.is-compact {
  position: relative;
  box-shadow: none;
}

.legal-main {
  padding: clamp(48px, 8vw, 96px) 0 72px;
}

.legal-content {
  max-width: 42rem;
}

.legal-content h1 {
  margin-bottom: 12px;
}

.legal-updated {
  margin-bottom: 32px;
  color: var(--color-muted);
  font-size: 0.9375rem;
}

.legal-content section {
  margin-bottom: 28px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 1.25rem;
}

.legal-content li + li {
  margin-top: 6px;
}

.footer-content-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.form-privacy a {
  color: inherit;
  text-underline-offset: 2px;
}
