:root {
  --ink: #163f36;
  --ink-deep: #11372f;
  --paper: #f8f7f1;
  --muted: #64706a;
  --line: #d9ddd2;
  --lime: #d5e8a0;
  --sage: #e8ece1;
  --cream: #eeeadc;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  scroll-behavior: smooth;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #5a7925;
  outline-offset: 6px;
}
button {
  font: inherit;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.08;
}
p {
  color: var(--muted);
}
[hidden] {
  display: none !important;
}
section[id] {
  scroll-margin-top: 34px;
}
.wrap {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.section-space {
  padding-block: 105px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1.55px;
  color: var(--ink);
  line-height: 1.5;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  padding: 12px 20px;
  background: var(--ink);
  color: white;
  z-index: 20;
}
.skip-link:focus {
  top: 15px;
}
.site-header {
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  flex-shrink: 0;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 37px;
  font-size: 12px;
  font-weight: 550;
}
.site-header nav a:hover,
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.nav-contact {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.nav-contact span {
  margin-left: 15px;
  font-size: 17px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 83px;
  padding-bottom: 78px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 1px;
}
.small-spark {
  font-size: 23px;
  line-height: 1;
  color: #618746;
}
.hero h1 {
  font-size: clamp(45px, 5.1vw, 70px);
  letter-spacing: -3.3px;
  margin: 23px 0 25px;
  line-height: 1.07;
}
.hero h1 span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -2.5px;
}
.hero-description {
  max-width: 395px;
  font-size: 15px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 31px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 49px;
  padding: 14px 21px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  transform: translateY(-2px);
}
.button span {
  font-size: 19px;
  line-height: 1;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: #255448;
}
.text-link {
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  gap: 13px;
  align-items: center;
}
.hero-footnote {
  font-size: 10px;
  margin-top: 22px;
  letter-spacing: 0.2px;
}
.hero-visual {
  position: relative;
  background: var(--sage);
  height: 496px;
  border-radius: 200px 200px 7px 7px;
  overflow: hidden;
}
.visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#758c6920 1px, transparent 1px),
    linear-gradient(90deg, #758c6920 1px, transparent 1px);
  background-size: 29px 29px;
  mask-image: linear-gradient(transparent, black 28%, black 76%, transparent);
}
.visual-label {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 8px;
  letter-spacing: 1.7px;
  color: #6f7a68;
}
.source-paper {
  position: absolute;
  width: 260px;
  top: 83px;
  left: 31px;
  background: #fafaf5;
  border: 1px solid #d9dfd0;
  border-radius: 6px;
  padding: 20px 21px 29px;
  transform: rotate(-9deg);
  box-shadow: 0 10px 40px #2c422710;
}
.paper-top {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
}
.file-glyph {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 23px;
  height: 28px;
  border: 1px solid #a1ad98;
  border-radius: 2px;
}
.file-label {
  font-size: 8px;
  letter-spacing: 0.6px;
  font-weight: 600;
  border: 1px solid #cbd2c3;
  border-radius: 3px;
  padding: 2px 5px;
}
.paper-top .file-label {
  margin-left: auto;
}
.paper-rule {
  height: 1px;
  background: #e0e3d8;
  margin: 16px 0 11px;
}
.paper-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 8px;
  margin-top: 9px;
}
.paper-line span {
  font-size: 7px;
  color: #7b8875;
}
.paper-line b {
  font-weight: 500;
  color: #7a8675;
}
.paper-line i {
  display: block;
  height: 5px;
  background: #e3e7dc;
  width: 130px;
}
.paper-line:last-child i {
  width: 106px;
}
.path-dot {
  position: absolute;
  top: 171px;
  right: 51px;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  border: 1px solid #8c9e7d;
  text-align: center;
  font-size: 25px;
  color: #6c8559;
  background: var(--sage);
}
.result-paper {
  position: absolute;
  top: 228px;
  right: 30px;
  width: 320px;
  padding: 23px 23px 0;
  border-radius: 6px;
  background: #fffefa;
  box-shadow: 0 12px 28px #14322412;
  transform: rotate(4deg);
  border: 1px solid #d8dfd0;
}
.result-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mini-eyebrow {
  display: block;
  font-size: 6px;
  letter-spacing: 1px;
  color: #7a8676;
  margin-bottom: 7px;
}
.result-top h2 {
  font-size: 18px;
  letter-spacing: -0.6px;
}
.sheet-icon {
  width: 26px;
  height: 30px;
  border: 1px solid #a0b391;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 5px 4px;
  border-radius: 2px;
}
.sheet-icon i {
  background: #dbe6d2;
}
.mini-table {
  margin-top: 22px;
  font-size: 8px;
}
.mini-table > div {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid #eceee6;
  align-items: center;
}
.mini-table .mini-table-head {
  color: #82907a;
  font-size: 7px;
  padding: 0 0 6px;
}
.mini-table strong {
  font-size: 8px;
  font-weight: 550;
  letter-spacing: 0.2px;
}
.match-pill,
.review-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 3px;
}
.match-pill {
  color: #4a6840;
  background: #edf2e6;
}
.review-pill {
  color: #846039;
  background: #f8efdd;
}
.paper-bottom {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 12px -23px 0;
  padding: 12px 20px;
  font-size: 7px;
  background: #f4f5ec;
  border-radius: 0 0 6px 6px;
}
.paper-bottom > span:last-child {
  margin-left: auto;
  font-size: 13px;
}
.visual-seal {
  position: absolute;
  left: 24px;
  bottom: 45px;
  width: 91px;
  height: 91px;
  border-radius: 50%;
  border: 1px solid #7e955c;
  background: var(--lime);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-14deg);
}
.visual-seal span {
  text-align: center;
  font-size: 7px;
  font-weight: 650;
  letter-spacing: 1.1px;
  line-height: 1.4;
}
.visual-seal b {
  font-size: 23px;
  line-height: 1.2;
  font-weight: 400;
  margin-top: 4px;
}
.visual-caption {
  position: absolute;
  bottom: 10px;
  left: 15px;
  right: 15px;
  text-align: center;
  font-size: 8px;
  color: #64715d;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 24px;
  font-size: 11px;
}
.principles span {
  display: flex;
  align-items: center;
  gap: 15px;
}
.principles span:nth-child(2) {
  justify-content: center;
}
.principles span:last-child {
  justify-content: end;
}
.principles i {
  font-style: normal;
  font-size: 9px;
  color: #919c86;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 45px;
  gap: 30px;
}
.section-heading h2,
.approach h2,
.example h2,
.contact h2 {
  font-size: 44px;
  letter-spacing: -1.9px;
  margin-top: 17px;
  line-height: 1.1;
}
.section-heading > p {
  max-width: 320px;
  font-size: 13px;
  line-height: 1.9;
  padding-bottom: 4px;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.service-card {
  padding: 33px 34px 28px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
.quote-card {
  background: var(--sage);
}
.catalog-card {
  background: var(--cream);
}
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 33px;
}
.service-number {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.4px;
}
.service-symbol {
  font-size: 28px;
  line-height: 1;
  border: 1px solid #a2ae93;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.service-card h3 {
  font-size: 16px;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}
.service-card .service-intro {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.22;
  color: var(--ink);
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.service-card > p:not(.service-intro) {
  font-size: 12px;
  line-height: 1.9;
  max-width: 360px;
}
.scope-list {
  font-size: 11px;
  line-height: 1.8;
  margin: 22px 0 20px;
}
.scope-list > div {
  display: grid;
  grid-template-columns: 83px 1fr;
  gap: 8px;
  padding: 11px 0;
  border-top: 1px solid #17372f1c;
}
.scope-list dt {
  font-weight: 600;
}
.scope-list dd {
  margin: 0;
  color: #5b675d;
}
.scope-details {
  font-size: 11px;
  margin-top: auto;
}
.scope-details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  gap: 20px;
  padding: 8px 0;
}
.scope-details summary::-webkit-details-marker {
  display: none;
}
.scope-details summary span {
  font-size: 18px;
  font-weight: 400;
}
.scope-details[open] summary span {
  transform: rotate(45deg);
}
.scope-details p {
  padding: 4px 0 17px;
  line-height: 1.85;
}
.service-link {
  border-top: 1px solid #17372f2c;
  margin-top: 18px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
}
.service-link span {
  font-size: 20px;
}
.service-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.approach {
  background: var(--ink);
  color: #f5f4e8;
  overflow: hidden;
}
.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 92px;
}
.approach .eyebrow {
  color: #b6cd9b;
}
.approach h2 {
  margin-bottom: 23px;
}
.approach-heading > p:not(.eyebrow) {
  font-size: 13px;
  color: #c1cbbd;
  line-height: 1.9;
  max-width: 285px;
}
.approach-mark {
  display: flex;
  align-items: center;
  font-size: 98px;
  font-weight: 550;
  letter-spacing: -10px;
  line-height: 1;
  margin-top: 35px;
  color: #d5e8a0;
}
.approach-mark span {
  font-size: 73px;
  font-weight: 400;
  line-height: 1;
  padding-left: 13px;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps li {
  display: flex;
  gap: 27px;
  padding: 26px 0;
  border-top: 1px solid #d9ebc332;
}
.steps li:first-child {
  padding-top: 5px;
  border: 0;
}
.steps li:last-child {
  padding-bottom: 0;
}
.step-number {
  font-size: 10px;
  color: #b8cf9d;
  line-height: 2.6;
}
.steps h3 {
  font-size: 22px;
  font-weight: 450;
  letter-spacing: -0.6px;
  margin-bottom: 13px;
  line-height: 1.2;
}
.steps p {
  font-size: 12px;
  line-height: 1.9;
  color: #c1cbbd;
  max-width: 345px;
}
.example {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 90px;
  align-items: center;
}
.example h2 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 23px;
}
.example-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
  max-width: 340px;
}
.demo-label {
  display: block;
  margin-top: 28px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #6f7868;
}
.example-report {
  border: 1px solid #d9ddd2;
  border-radius: 5px;
  background: #fffefa;
  box-shadow: 7px 7px 0 #e7eadd;
  padding: 25px 28px;
}
.report-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.report-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #70934f;
}
.report-page {
  margin-left: auto;
  font-size: 8px;
  color: #849078;
  letter-spacing: 1px;
}
.report-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 27px;
  gap: 8px;
}
.report-code {
  font-size: 11px;
  letter-spacing: 1px;
}
.report-item .review-pill {
  font-size: 9px;
}
.example-report h3 {
  font-size: 19px;
  letter-spacing: -0.6px;
  margin: 15px 0 13px;
  line-height: 1.3;
}
.example-report > p {
  font-size: 11px;
  line-height: 1.8;
}
.report-fields {
  margin: 25px 0 20px;
  font-size: 10px;
}
.report-fields > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #e8eade;
}
.report-fields dt {
  color: #738069;
}
.report-fields dd {
  margin: 0;
  font-weight: 500;
  text-align: right;
}
.example-report .report-caption {
  font-size: 8px;
  color: #78816e;
  line-height: 1.7;
}
.contact {
  padding-bottom: 39px;
}
.contact-inner {
  border-radius: 5px;
  padding: 56px 57px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 50px;
  background: var(--ink);
  color: #fffdf3;
}
.contact .eyebrow {
  color: #c0d5a2;
}
.contact h2 {
  font-size: 39px;
  line-height: 1.16;
  margin-bottom: 20px;
}
.contact p {
  font-size: 12px;
  color: #bfceba;
  line-height: 1.9;
  max-width: 330px;
}
.contact-action {
  padding-top: 36px;
}
.contact-action > p {
  font-size: 10px;
  margin-top: 17px;
  max-width: 295px;
}
.contact-pending {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-size: 12px;
  padding: 14px 19px;
  border: 1px solid #d5e8a055;
  border-radius: 3px;
}
.contact-pending > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}
.button-lime {
  background: var(--lime);
  color: var(--ink);
}
.button-lime:hover {
  background: #e5f4bb;
}
.privacy {
  padding-block: 0 40px;
}
.privacy details {
  max-width: 670px;
}
.privacy summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  font-size: 11px;
  font-weight: 550;
}
.privacy summary::-webkit-details-marker {
  display: none;
}
.privacy summary span {
  font-size: 18px;
  font-weight: 400;
}
.privacy details[open] summary span {
  transform: rotate(45deg);
}
.privacy details > div {
  padding-top: 8px;
}
.privacy p {
  font-size: 11px;
  line-height: 1.9;
  margin: 10px 0;
}
.site-footer {
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-block: 30px 34px;
  font-size: 9px;
}
.site-footer p {
  margin-right: auto;
  font-size: 10px;
}
.site-footer > a:not(.brand):hover {
  text-decoration: underline;
}
.site-footer > span {
  color: #7b8575;
}
@media (min-width: 1440px) {
  .hero {
    gap: 80px;
    padding-top: 94px;
    padding-bottom: 90px;
  }
  .hero-visual {
    height: 520px;
  }
  .source-paper {
    left: 44px;
    top: 88px;
    width: 280px;
  }
  .result-paper {
    right: 33px;
    top: 235px;
    width: 340px;
  }
  .visual-seal {
    bottom: 50px;
    left: 34px;
  }
  .hero h1 {
    font-size: 74px;
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 25px;
    padding-top: 62px;
  }
  .hero h1 {
    font-size: 53px;
    letter-spacing: -2.5px;
  }
  .hero-description {
    font-size: 13px;
    max-width: 340px;
  }
  .hero-actions {
    gap: 19px;
  }
  .button {
    gap: 22px;
    padding-inline: 17px;
  }
  .hero-visual {
    height: 468px;
  }
  .source-paper {
    left: 12px;
    top: 80px;
    width: 235px;
  }
  .result-paper {
    width: 285px;
    right: 15px;
    top: 225px;
    padding-inline: 19px;
  }
  .result-top h2 {
    font-size: 16px;
  }
  .paper-bottom {
    margin-inline: -19px;
  }
  .visual-seal {
    left: 10px;
    bottom: 29px;
    width: 78px;
    height: 78px;
  }
  .path-dot {
    right: 25px;
    top: 172px;
  }
  .visual-caption {
    font-size: 7px;
    bottom: 8px;
  }
  .service-card {
    padding: 28px;
  }
  .service-card .service-intro {
    font-size: 26px;
  }
  .approach-inner {
    gap: 60px;
    grid-template-columns: 1fr 1.1fr;
  }
  .example {
    gap: 50px;
  }
  .example h2 {
    font-size: 33px;
  }
  .contact-inner {
    gap: 40px;
    padding: 44px 38px;
  }
  .contact h2 {
    font-size: 34px;
  }
  .principles {
    font-size: 10px;
    gap: 14px;
  }
  .principles span {
    gap: 11px;
  }
  .section-space {
    padding-block: 85px;
  }
}
@media (max-width: 780px) {
  .wrap {
    width: calc(100% - 44px);
  }
  .site-header {
    height: 84px;
  }
  .site-header .brand img {
    width: 112px;
  }
  .site-header nav {
    gap: 20px;
    font-size: 10px;
  }
  .site-header nav a:nth-child(2) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 49px;
    padding-bottom: 39px;
  }
  .hero h1 {
    font-size: 62px;
    line-height: 1.05;
    letter-spacing: -2.8px;
    margin-top: 19px;
  }
  .hero h1 br:first-child {
    display: none;
  }
  .hero-description {
    max-width: 450px;
    font-size: 14px;
  }
  .hero-visual {
    width: min(100%, 480px);
    height: 463px;
    margin-inline: auto;
    border-radius: 180px 180px 6px 6px;
  }
  .source-paper {
    left: 37px;
    top: 72px;
    width: 265px;
  }
  .result-paper {
    right: 27px;
    top: 210px;
    width: 320px;
  }
  .visual-seal {
    left: 24px;
    bottom: 41px;
    width: 88px;
    height: 88px;
  }
  .path-dot {
    right: 39px;
    top: 152px;
  }
  .visual-caption {
    font-size: 8px;
    bottom: 10px;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-block: 22px;
  }
  .principles span,
  .principles span:nth-child(2),
  .principles span:last-child {
    justify-content: start;
    font-size: 11px;
    gap: 17px;
  }
  .section-space {
    padding-block: 62px;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
  }
  .section-heading h2,
  .approach h2 {
    font-size: 39px;
  }
  .section-heading > p {
    max-width: 390px;
    font-size: 13px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 19px;
  }
  .service-card {
    padding: 27px;
  }
  .service-card .service-intro {
    font-size: 30px;
  }
  .service-card-top {
    margin-bottom: 27px;
  }
  .service-card > p:not(.service-intro) {
    max-width: 100%;
    font-size: 13px;
  }
  .scope-list {
    font-size: 12px;
  }
  .scope-details {
    font-size: 12px;
  }
  .approach-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .approach-heading {
    position: relative;
  }
  .approach h2 {
    margin-bottom: 17px;
  }
  .approach-heading > p:not(.eyebrow) {
    max-width: 330px;
  }
  .approach-mark {
    display: none;
  }
  .steps li {
    gap: 21px;
    padding-block: 23px;
  }
  .steps p {
    max-width: 100%;
    font-size: 13px;
  }
  .steps h3 {
    font-size: 23px;
  }
  .example {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .example h2 {
    font-size: 35px;
  }
  .example-copy > p:not(.eyebrow) {
    max-width: 450px;
  }
  .example-report {
    padding: 26px;
  }
  .example-report h3 {
    font-size: 21px;
  }
  .example-report > p {
    font-size: 12px;
  }
  .report-fields {
    font-size: 11px;
  }
  .example-report .report-caption {
    font-size: 9px;
  }
  .contact-inner {
    padding: 34px 27px;
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .contact h2 {
    font-size: 34px;
  }
  .contact-action {
    padding-top: 0;
  }
  .contact p {
    font-size: 12px;
  }
  .contact-action > p {
    font-size: 10px;
  }
  .contact {
    padding-bottom: 27px;
  }
  .privacy {
    padding-bottom: 28px;
  }
  .site-footer {
    flex-wrap: wrap;
    gap: 15px 20px;
    padding-block: 25px;
  }
  .site-footer p {
    width: calc(100% - 145px);
  }
  .site-footer > a:not(.brand) {
    margin-left: 0;
    margin-right: auto;
  }
}
@media (max-width: 390px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .site-header nav {
    gap: 13px;
  }
  .hero h1 {
    font-size: 53px;
  }
  .hero-actions {
    gap: 16px;
    flex-wrap: wrap;
  }
  .hero-visual {
    height: 422px;
  }
  .source-paper {
    width: 238px;
    left: 22px;
    top: 70px;
  }
  .result-paper {
    width: 280px;
    right: 15px;
    top: 180px;
    padding-top: 19px;
  }
  .mini-table {
    margin-top: 17px;
  }
  .mini-table > div {
    padding-block: 6px;
  }
  .paper-bottom {
    margin-top: 9px;
    padding-block: 9px;
  }
  .visual-seal {
    width: 68px;
    height: 68px;
    left: 11px;
    bottom: 27px;
  }
  .visual-seal span {
    font-size: 6px;
  }
  .visual-seal b {
    font-size: 18px;
  }
  .path-dot {
    right: 26px;
    top: 132px;
  }
  .result-top h2 {
    font-size: 16px;
  }
  .visual-label {
    font-size: 7px;
    top: 31px;
  }
  .visual-caption {
    font-size: 7px;
  }
  .service-card {
    padding: 23px;
  }
  .service-card .service-intro {
    font-size: 28px;
  }
  .scope-list > div {
    grid-template-columns: 76px 1fr;
  }
  .section-heading h2,
  .approach h2 {
    font-size: 36px;
  }
  .example h2 {
    font-size: 31px;
  }
  .contact-inner {
    padding: 31px 23px;
  }
  .contact h2 {
    font-size: 30px;
  }
  .example-report {
    padding: 22px;
  }
  .hero-footnote {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

.venture-banner {
  margin-top: 30px;
  padding: 40px 44px;
  background: #163f36;
  color: #fff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  overflow: hidden;
}
.venture-banner .eyebrow {
  color: #d5e8a0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.venture-banner .eyebrow span {
  border: 1px solid #597e62;
  border-radius: 20px;
  padding: 4px 9px;
  font-size: 8px;
  letter-spacing: 1px;
  color: #e6eedc;
}
.venture-banner h2 {
  font-size: clamp(32px, 4vw, 54px);
  margin: 22px 0 14px;
  letter-spacing: -1.8px;
}
.venture-banner-copy > p:not(.eyebrow) {
  color: #dae4db;
  max-width: 340px;
  font-size: 16px;
}
.venture-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
  padding: 10px 16px;
  background: #d5e8a0;
  color: #163f36;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 650;
}
.venture-banner-note {
  border-left: 1px solid #426358;
  padding-left: 40px;
}
.venture-banner-note > span {
  font-size: 9px;
  letter-spacing: 2px;
  color: #d5e8a0;
}
.venture-banner-note strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 45px;
  line-height: 0.95;
  font-weight: 400;
  margin: 16px 0;
}
.venture-banner-note i {
  font-weight: 400;
  color: #d5e8a0;
}
.venture-banner-note p {
  font-size: 10px;
  color: #d4dfd4;
}
@media (max-width: 650px) {
  .venture-banner {
    grid-template-columns: 1fr;
    padding: 26px 22px;
    gap: 25px;
    border-radius: 14px;
  }
  .venture-banner-note {
    border-left: 0;
    border-top: 1px solid #426358;
    padding: 20px 0 0;
  }
  .venture-banner-note strong {
    display: none;
  }
  .venture-banner-note p {
    margin-top: 8px;
  }
}
