:root {
  --ink: #17231d;
  --ink-soft: #4f5e57;
  --ink-faint: #64736b;
  --paper: #f4f7f3;
  --surface: #ffffff;
  --surface-soft: #eaf1ec;
  --forest: #0f6b4f;
  --forest-deep: #0a4b38;
  --forest-ink: #07382a;
  --mint: #e5f2eb;
  --mint-strong: #b9ddcb;
  --amber: #d6932f;
  --amber-deep: #9a6518;
  --amber-soft: #f7ead2;
  --line: #dbe4de;
  --line-strong: #bdcbc3;
  --danger: #b42318;
  --danger-soft: #fce8e6;
  --success: #1f7a4d;
  --success-soft: #e7f5ec;
  --shadow-sm: 0 1px 2px rgba(12, 41, 29, 0.06), 0 4px 12px rgba(12, 41, 29, 0.05);
  --shadow-md: 0 12px 32px rgba(12, 41, 29, 0.1);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --container: 1180px;
  --header-height: 72px;
  --font-ui: "Aptos", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Aptos Display", "Aptos", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  min-width: 320px;
}

body.nav-open {
  overflow: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

a:hover {
  color: var(--forest-deep);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin-bottom: 22px;
  font-size: 48px;
  font-weight: 760;
}

h2 {
  margin-bottom: 14px;
  font-size: 34px;
  font-weight: 720;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 680;
}

h4 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 660;
}

p {
  margin-bottom: 16px;
}

ul,
ol {
  margin-top: 0;
}

::selection {
  color: #ffffff;
  background: var(--forest);
}

:focus-visible {
  outline: 3px solid rgba(214, 147, 47, 0.72);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--forest-ink);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

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

.section {
  padding-block: 78px;
}

.section-tight {
  padding-block: 54px;
}

.section-soft {
  background: var(--surface-soft);
}

.section-white {
  background: var(--surface);
}

.section-dark {
  color: #edf6f0;
  background: var(--forest-ink);
}

.section-dark .eyebrow {
  color: #9fd6bb;
}

.section-dark h2,
.section-dark h3 {
  color: #ffffff;
}

.section-dark p {
  color: #c7d9cf;
}

.section-dark a:not(.button) {
  color: #b8e3ce;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}

.section-head.align-center {
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 0;
}

.section-head p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.72;
}

.section-dark .section-head p {
  color: #c7d9cf;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 17px;
  height: 17px;
}

.lead {
  font-size: 18px;
  line-height: 1.75;
}

.text-balance {
  text-wrap: balance;
}

.muted {
  color: var(--ink-soft);
}

.small {
  font-size: 13px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-22 {
  margin-top: 22px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-26 {
  margin-top: 26px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-34 {
  margin-top: 34px;
}

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

.justify-center {
  justify-content: center;
}

.max-w-520 {
  max-width: 520px;
}

.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;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  color: #ffffff;
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  color: #ffffff;
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  transform: translateY(-1px);
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line-strong);
}

.button-secondary:hover {
  color: var(--forest-deep);
  background: var(--mint);
  border-color: var(--forest);
}

.button-amber {
  color: #2c200c;
  background: var(--amber);
  border-color: var(--amber);
}

.button-amber:hover {
  color: #1e1608;
  background: #e5a642;
  border-color: #c98527;
}

.button-light {
  color: var(--forest-ink);
  background: #ffffff;
  border-color: #ffffff;
}

.button-light:hover {
  color: var(--forest-ink);
  background: #dcefe4;
  border-color: #dcefe4;
}

.button-block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 720;
}

.text-link svg {
  width: 17px;
  height: 17px;
  transition: transform 160ms ease;
}

.text-link:hover svg {
  transform: translateX(3px);
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.icon-tile {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--forest);
  background: var(--mint);
  border-radius: var(--radius-sm);
}

.icon-tile svg {
  width: 23px;
  height: 23px;
}

.icon-tile-amber {
  color: #74480f;
  background: var(--amber-soft);
}

.stat {
  min-width: 0;
}

.stat strong {
  display: block;
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 760;
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.section-dark .stat strong {
  color: #ffffff;
}

.section-dark .stat span {
  color: #bdd0c5;
}

.topbar {
  color: #d6e7de;
  background: var(--forest-ink);
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}

.topbar a:hover {
  color: #ffffff;
}

.topbar svg {
  width: 14px;
  height: 14px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 184px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 7px 10px;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 620;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--forest-deep);
  background: var(--mint);
}

.main-nav a[aria-current="page"] {
  color: var(--forest-deep);
  background: var(--mint);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-quote {
  min-height: 42px;
  padding: 9px 14px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 106px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #143a2c;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 27, 20, 0.92) 0%, rgba(5, 27, 20, 0.76) 44%, rgba(5, 27, 20, 0.28) 100%),
    linear-gradient(0deg, rgba(5, 27, 20, 0.34) 0%, rgba(5, 27, 20, 0) 32%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
  padding-block: 92px 104px;
}

.hero-inner {
  max-width: 720px;
}

.hero .eyebrow {
  color: #c3ead5;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  line-height: 1.04;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 28px;
  color: #e6f1eb;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 32px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: #ffffff;
  background: rgba(9, 53, 38, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  backdrop-filter: blur(8px);
}

.hero-proof svg {
  width: 15px;
  height: 15px;
  color: #9fdcbb;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 340px;
  overflow: hidden;
  color: #ffffff;
  background: var(--forest-ink);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 35, 25, 0.62) 0%, rgba(6, 35, 25, 0.86) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
  padding-block: 70px 62px;
}

.page-hero .eyebrow {
  color: #b6e5cc;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 48px;
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: #d9e9e0;
  font-size: 18px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: #b9d6c6;
  font-size: 13px;
}

.breadcrumbs a {
  color: #dceee4;
}

.breadcrumbs span[aria-hidden="true"] {
  color: #7fa391;
}

.proof-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  color: #ffffff;
  background: var(--forest-deep);
}

.proof-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.proof-item {
  min-height: 120px;
  padding: 24px;
  background: var(--forest-deep);
}

.proof-item svg {
  width: 22px;
  height: 22px;
  margin-bottom: 11px;
  color: #a9dec2;
}

.proof-item strong {
  display: block;
  margin-bottom: 3px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
}

.proof-item span {
  color: #b9d2c5;
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 60px;
}

.split-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--surface-soft);
  border-radius: var(--radius-md);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.split-media-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  margin: 0;
  padding: 10px 12px;
  color: #ffffff;
  background: rgba(7, 42, 30, 0.82);
  border-radius: var(--radius-sm);
  font-size: 12px;
  backdrop-filter: blur(7px);
}

.split-copy h2 {
  margin-bottom: 16px;
}

.split-copy > p {
  color: var(--ink-soft);
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
}

.check-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--forest);
}

.feature-card {
  min-width: 0;
  height: 100%;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.feature-card h3 {
  margin-top: 18px;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.number-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 760;
}

.number-mark span {
  color: var(--amber);
  font-size: 28px;
  line-height: 1;
}

.product-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-soft);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.025);
}

.grade-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  color: #ffffff;
  background: var(--forest-deep);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
}

.product-body {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  padding: 22px;
}

.product-body h3 {
  font-size: 21px;
}

.product-body > p {
  color: var(--ink-soft);
  font-size: 15px;
}

.spec-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 4px 0 20px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.spec-mini div {
  padding: 10px 11px;
  background: var(--paper);
}

.spec-mini dt,
.spec-mini dd {
  margin: 0;
}

.spec-mini dt {
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.spec-mini dd {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-footer .button {
  min-height: 40px;
  padding: 8px 13px;
  font-size: 14px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-width: 0;
  padding: 28px 14px 16px;
  border-top: 2px solid var(--mint-strong);
}

.process-step::before {
  content: counter(process, decimal-leading-zero);
  counter-increment: process;
  position: absolute;
  top: -18px;
  left: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: var(--forest);
  border: 4px solid var(--surface-soft);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 760;
}

.process-step svg {
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  color: var(--forest);
}

.process-step h3 {
  margin-bottom: 7px;
  font-size: 16px;
}

.process-step p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 12px;
}

.mosaic figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--surface-soft);
  border-radius: var(--radius-sm);
}

.mosaic figure:nth-child(1),
.mosaic figure:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.mosaic figure:hover img {
  transform: scale(1.03);
}

.mosaic figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 26px 14px 10px;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(5, 30, 21, 0.86) 0%, rgba(5, 30, 21, 0) 100%);
  font-size: 13px;
  font-weight: 650;
}

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

.data-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table th,
.data-table td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.data-table th {
  color: #ffffff;
  background: var(--forest-deep);
  font-size: 13px;
  font-weight: 700;
}

.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.data-table tbody tr:nth-child(even) {
  background: #fafcfb;
}

.data-table td:first-child {
  color: var(--ink);
  font-weight: 700;
}

.data-table .metric {
  color: var(--forest);
  font-weight: 750;
}

.tabs {
  margin-top: 8px;
}

.tab-list {
  display: flex;
  gap: 8px;
  margin: 0 0 18px;
  padding: 5px;
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.tab-button {
  min-height: 42px;
  flex: 1 0 auto;
  padding: 9px 15px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.tab-button:hover {
  color: var(--forest-deep);
  background: var(--mint);
}

.tab-button[aria-selected="true"] {
  color: #ffffff;
  background: var(--forest);
}

.tab-panel {
  display: none;
  animation: fade-in 180ms ease both;
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel:not([hidden]) {
  display: block;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: 22px;
}

.panel-media {
  min-height: 340px;
  overflow: hidden;
  background: var(--surface-soft);
  border-radius: var(--radius-md);
}

.panel-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.panel-copy {
  padding: 8px 0;
}

.panel-copy h3 {
  font-size: 26px;
}

.panel-copy p {
  color: var(--ink-soft);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  color: var(--forest-deep);
  background: var(--mint);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
}

.tag svg {
  width: 14px;
  height: 14px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: start;
  gap: 0;
}

.flow-step {
  position: relative;
  min-width: 0;
  padding: 0 14px 0 0;
}

.flow-step::after {
  content: "";
  position: absolute;
  top: 21px;
  right: 6px;
  left: calc(100% - 26px);
  height: 1px;
  background: #46685a;
}

.flow-step:last-child::after {
  display: none;
}

.flow-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  place-items: center;
  color: #9fdcbb;
  background: #144d3a;
  border: 1px solid #356e58;
  border-radius: 50%;
}

.flow-icon svg {
  width: 21px;
  height: 21px;
}

.flow-step h3 {
  color: #ffffff;
  font-size: 16px;
}

.flow-step p {
  color: #bdd0c5;
  font-size: 13px;
}

.quote-band {
  position: relative;
  display: grid;
  min-height: 290px;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--forest-deep);
}

.quote-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
}

.quote-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 37, 26, 0.96) 0%, rgba(5, 37, 26, 0.72) 100%);
}

.quote-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 60px;
}

.quote-band h2 {
  margin-bottom: 10px;
  color: #ffffff;
}

.quote-band p {
  max-width: 650px;
  margin-bottom: 0;
  color: #c9ddd2;
}

.quote-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 11px;
  color: #ffffff;
  background: rgba(7, 42, 30, 0.84);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 650;
}

.certificate-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.certificate-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.certificate-list h3 {
  margin-bottom: 4px;
  font-size: 17px;
}

.certificate-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

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

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-trigger {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 4px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.accordion-trigger:hover {
  color: var(--forest-deep);
}

.accordion-trigger svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--forest);
  transition: transform 180ms ease;
}

.accordion-trigger[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.accordion-panel-inner {
  padding: 0 4px 20px;
  color: var(--ink-soft);
}

.accordion-panel-inner p:last-child {
  margin-bottom: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

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

.form-field label,
.form-field legend {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(15, 107, 79, 0.12);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  display: none;
  color: var(--danger);
  font-size: 13px;
}

.form-field.has-error .field-error {
  display: block;
}

.form-note {
  color: var(--ink-faint);
  font-size: 13px;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  color: var(--success);
  background: var(--success-soft);
  border: 1px solid #a8d8bc;
}

.form-status.error {
  color: var(--danger);
  background: var(--danger-soft);
  border: 1px solid #ecc3be;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 28px;
}

.contact-form-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-form-card h2 {
  margin-bottom: 8px;
}

.contact-form-card > p {
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: 26px;
  color: #eaf5ef;
  background: var(--forest-deep);
  border-radius: var(--radius-md);
}

.contact-panel h2 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 27px;
}

.contact-panel > p {
  margin-bottom: 18px;
  color: #c2d8cc;
}

.contact-line {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding-block: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-line:last-child {
  padding-bottom: 0;
}

.contact-line svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: #a7dfc0;
}

.contact-line strong {
  display: block;
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 14px;
}

.contact-line a,
.contact-line span {
  color: #c4d9cd;
  overflow-wrap: anywhere;
}

.contact-line a:hover {
  color: #ffffff;
}

.map-frame {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 42px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.blog-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.blog-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-soft);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  padding: 20px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin-bottom: 11px;
  color: var(--ink-faint);
  font-size: 12px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-meta svg {
  width: 14px;
  height: 14px;
}

.blog-card h3 {
  margin-bottom: 9px;
  font-size: 20px;
}

.blog-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: var(--forest);
}

.blog-card p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.blog-card .text-link {
  margin-top: auto;
  font-size: 14px;
}

.sidebar-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.sidebar-card + .sidebar-card {
  margin-top: 16px;
}

.sidebar-card h2 {
  margin-bottom: 14px;
  font-size: 19px;
}

.topic-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topic-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 11px;
  color: var(--ink-soft);
  background: var(--paper);
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-decoration: none;
}

.topic-list a:hover {
  color: var(--forest-deep);
  background: var(--mint);
}

.topic-list svg {
  width: 16px;
  height: 16px;
}

.article-page {
  max-width: 850px;
  margin-inline: auto;
}

.article-header {
  margin-bottom: 38px;
}

.article-header h1 {
  margin-bottom: 16px;
  font-size: 44px;
}

.article-cover {
  aspect-ratio: 21 / 9;
  margin-bottom: 38px;
  overflow: hidden;
  background: var(--surface-soft);
  border-radius: var(--radius-md);
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  color: #2e3a34;
  font-size: 17px;
  line-height: 1.82;
}

.article-body h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: 28px;
}

.article-body h3 {
  margin-top: 30px;
  font-size: 21px;
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
}

.article-body li {
  margin-bottom: 9px;
}

.article-body blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  color: var(--forest-deep);
  background: var(--mint);
  border-left: 4px solid var(--forest);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article-body blockquote p {
  margin-bottom: 0;
}

.article-callout {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 15px;
  margin: 30px 0;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.article-callout h2,
.article-callout h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.article-callout p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.related-posts {
  margin-top: 72px;
}

.related-posts .blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.error-page {
  display: grid;
  min-height: calc(100vh - 200px);
  place-items: center;
  padding-block: 80px;
  text-align: center;
}

.error-code {
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 92px;
  font-weight: 760;
  line-height: 1;
}

.site-footer {
  color: #c5d7ce;
  background: var(--forest-ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 1.1fr;
  gap: 44px;
  padding-block: 62px 48px;
}

.footer-brand img {
  width: 196px;
  height: 45px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 340px;
  margin: 18px 0 0;
  color: #adc3b8;
  font-size: 14px;
}

.footer-column h2 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 720;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #b8ccc1;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #b8ccc1;
  font-size: 14px;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: #8ecfae;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  color: #8fa99d;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal a {
  color: #a9beb3;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #ffffff;
}

.back-to-top {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  color: #ffffff;
  background: var(--forest-deep);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--forest);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1100px) {
  .main-nav a {
    padding-inline: 8px;
    font-size: 13px;
  }

  .brand img {
    width: 166px;
  }

  .header-quote {
    padding-inline: 11px;
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 46px;
  }

  .process-step::before {
    top: -18px;
  }

  .flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 34px;
  }

  .flow-step:nth-child(3)::after,
  .flow-step:nth-child(6)::after {
    display: none;
  }

  .mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1000px) {
  .topbar {
    display: none;
  }

  .header-inner {
    gap: 16px;
  }

  .main-nav,
  .header-actions .header-quote {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 18px 20px 24px;
    background: #ffffff;
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .mobile-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-nav nav {
    display: grid;
    align-content: start;
    gap: 2px;
  }

  .mobile-nav nav a {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 8px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-size: 17px;
    font-weight: 650;
    text-decoration: none;
  }

  .mobile-nav nav a[aria-current="page"] {
    color: var(--forest);
  }

  .mobile-nav nav svg {
    width: 18px;
    height: 18px;
    color: var(--forest);
  }

  .mobile-nav .button {
    width: 100%;
    margin-top: 18px;
  }

  .hero {
    min-height: 690px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .split {
    gap: 34px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .sidebar-card + .sidebar-card {
    margin-top: 0;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 62px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: minmax(0, 1fr);
  }

  .split-media {
    min-height: 330px;
  }

  .split-media img {
    min-height: 330px;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 46px;
  }

  .mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 170px;
  }

  .mosaic figure:nth-child(1),
  .mosaic figure:nth-child(6) {
    grid-column: span 2;
  }

  .panel-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .panel-media,
  .panel-media img {
    min-height: 300px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-band-inner {
    display: grid;
  }

  .quote-actions {
    justify-content: flex-start;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-field-full {
    grid-column: auto;
  }

  .related-posts .blog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-header h1 {
    font-size: 37px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 52px;
  }

  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 27px;
  }

  h3 {
    font-size: 20px;
  }

  .section-head p,
  .lead {
    font-size: 16px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-block: 66px 78px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
  }

  .page-hero {
    min-height: 390px;
  }

  .page-hero-content {
    padding-block: 60px 50px;
  }

  .page-hero h1 {
    font-size: 37px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .split-media {
    min-height: 260px;
  }

  .split-media img {
    min-height: 260px;
  }

  .feature-card {
    padding: 20px;
  }

  .proof-strip-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .proof-item {
    min-height: 0;
  }

  .process-grid {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 34px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 10px;
    padding: 0 0 0 52px;
    border-top: 0;
    border-left: 2px solid var(--mint-strong);
  }

  .process-step::before {
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border-width: 4px;
  }

  .process-step svg {
    position: absolute;
    top: 4px;
    left: 7px;
    width: 18px;
    height: 18px;
    margin: 0;
    color: #ffffff;
    z-index: 1;
  }

  .process-step h3 {
    grid-column: 2;
  }

  .process-step p {
    grid-column: 2;
  }

  .mosaic {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: 230px;
  }

  .mosaic figure:nth-child(1),
  .mosaic figure:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .flow {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 30px;
  }

  .flow-step {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 12px;
    padding-right: 0;
  }

  .flow-step::after {
    display: none;
  }

  .flow-icon {
    margin-bottom: 0;
  }

  .flow-step h3,
  .flow-step p {
    grid-column: 2;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tabs {
    margin-right: -14px;
    margin-left: -14px;
  }

  .tab-list {
    margin-right: 14px;
    margin-left: 14px;
    padding-right: 14px;
  }

  .blog-grid,
  .blog-sidebar {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-card h3 {
    font-size: 19px;
  }

  .article-header h1 {
    font-size: 32px;
  }

  .article-body {
    font-size: 16px;
  }

  .article-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    padding-block: 48px 36px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .topbar,
  .site-header,
  .mobile-nav,
  .quote-band,
  .back-to-top,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000000;
    background: #ffffff;
  }

  .section,
  .hero,
  .page-hero {
    padding-block: 20px;
    min-height: 0;
  }

  .hero-media img,
  .page-hero img {
    position: static;
    max-height: 260px;
  }

  .hero-media::after,
  .page-hero::after {
    display: none;
  }
}
