:root {
  --ink: #0f4d1e;
  --muted: #5f6b63;
  --paper: #f7faf7;
  --white: #fff;
  --lime: #dff1d6;
  --mint: #e8f5ea;
  --line: #dfe5df;
  --orange: #1e7a34;
  --dark: #0b3717;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Karla", sans-serif;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1180px;
  margin: auto;
  padding: 0 32px;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  box-shadow: none;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}
.site-header.scrolled {
  background: #fff;
  box-shadow: 0 4px 24px rgba(15, 77, 30, 0.1);
}
.nav-wrap {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}
.brand-caption {
  font-size: 7px;
  letter-spacing: 1.7px;
  font-weight: 700;
  color: #5d6a63;
  max-width: 78px;
  line-height: 1.5;
}
.brand-footer .brand-logo {
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 600;
}
.nav-links a:not(.nav-cta) {
  color: #4f5d56;
}
.nav-links a:not(.nav-cta):hover {
  color: var(--ink);
}
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 14px 18px;
  border-radius: 3px;
  transition: background-color 0.2s ease;
}
.nav-cta:hover {
  background: #0a3313;
}
.nav-cta span,
.button span {
  margin-left: 18px;
  display: inline-block;
  transition: transform 0.2s ease;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 24px;
}
.section-pad {
  padding: 72px 0;
}
.hero {
  padding-top: 130px;
  padding-bottom: 56px;
  min-height: auto;
  overflow: hidden;
  background: linear-gradient(120deg, #f7faf7 0%, #eef6ee 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    opacity: 0;
    animation: heroFadeUp 0.6s ease forwards;
  }
  .hero-copy .eyebrow {
    animation-delay: 0.05s;
  }
  .hero-copy h1 {
    animation-delay: 0.15s;
  }
  .hero-copy .hero-lead {
    animation-delay: 0.25s;
  }
  .hero-copy .hero-actions {
    animation-delay: 0.35s;
  }
  .hero-copy .hero-note {
    animation-delay: 0.45s;
  }
  .hero-visual {
    opacity: 0;
    animation: heroFadeIn 0.7s ease 0.3s forwards;
  }
}
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  font-weight: 700;
  color: #718078;
  margin: 0 0 23px;
}
.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 10px;
}
.hero h1,
h2 {
  font-family: Fraunces, serif;
  letter-spacing: -1px;
  line-height: 1.08;
  margin: 0;
  font-weight: 600;
}
.hero h1 {
  font-size: clamp(44px, 5.3vw, 70px);
  max-width: 650px;
}
.hero h1 em,
h2 em {
  font-style: normal;
  color: #789b5c;
}
.hero-lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 490px;
  margin: 18px 0 24px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.button {
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 3px;
  padding: 16px 20px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 77, 30, 0.18);
}
.button:hover span {
  transform: translate(3px, -3px);
}
.button-primary {
  background: var(--ink);
  color: #fff;
}
.button-primary:hover {
  background: #0a3313;
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-dark:hover {
  background: #0a3313;
}
.button-light {
  background: var(--lime);
  color: var(--ink);
}
.button-light:hover {
  background: #cdeabb;
}
.button-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.button-outline:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8a948e;
  font-size: 12px;
  margin-top: 36px;
}
.note-line {
  width: 35px;
  height: 1px;
  background: var(--orange);
}
.hero-visual {
  display: flex;
  align-items: center;
}
.hero-photo {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 6px 6px 6px 0;
}
.hero-photo::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  bottom: 16px;
  left: 16px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  z-index: 0;
}
.hero-photo-frame {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 77, 30, 0.14);
}
.hero-photo-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.verification-shield {
  display: flex;
  flex: none;
}
.trust-strip {
  background: var(--ink);
  color: #aeb9b1;
  padding: 19px 0;
}
.trust-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.trust-divider {
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}
.section-heading h2,
.about-section h2,
.feature-band h2,
.cta-box h2 {
  font-size: 48px;
}
.section-intro {
  max-width: 320px;
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 3px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.service-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  border: 1px solid #eef0ec;
  transition: 0.25s;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(24, 35, 31, 0.08);
}
.service-photo {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--mint);
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.35s;
}
.service-card:hover .service-photo img {
  transform: scale(1.05);
}
.service-body {
  display: block;
  padding: 20px 20px 48px;
}
.service-tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #8c9790;
  font-weight: 700;
}
.service-card h3 {
  font-family: Fraunces, serif;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.6px;
  margin: 12px 0;
}
.service-card p {
  color: #7a857f;
  font-size: 12px;
  line-height: 1.55;
}
.process-section {
  background: var(--mint);
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.process-copy h2 {
  font-size: 48px;
}
.process-copy > p:not(.eyebrow) {
  max-width: 450px;
  color: #66766c;
  margin: 18px 0 22px;
  font-size: 15px;
}
.verification {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
}
.verification p {
  margin: 3px 0 0;
  font-size: 12px;
  color: #7d8a82;
}
.steps-list {
  padding-top: 12px;
}
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 25px;
  padding: 23px 0;
  border-top: 1px solid rgba(24, 35, 31, 0.16);
}
.step:last-child {
  border-bottom: 1px solid rgba(24, 35, 31, 0.16);
}
.step-number {
  font-family: Fraunces, serif;
  font-weight: 800;
  color: var(--orange);
  font-size: 12px;
}
.step h3 {
  font-family: Fraunces, serif;
  margin: 0 0 7px;
  font-size: 18px;
  letter-spacing: -0.5px;
}
.step p {
  margin: 0;
  color: #68766d;
  font-size: 13px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.about-copy {
  padding-top: 16px;
  max-width: 480px;
  color: #65726b;
  font-size: 16px;
}
.about-copy p {
  margin-top: 0;
  margin-bottom: 24px;
}
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.values span {
  font-size: 11px;
  color: var(--ink);
  border: 1px solid #ccd7cf;
  padding: 8px 11px;
  border-radius: 30px;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.values span:hover {
  background: var(--mint);
  border-color: var(--orange);
}
.feature-band {
  background: var(--dark);
  color: #fff;
  padding: 64px 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.eyebrow-light {
  color: #a7b5ab;
}
.feature-band h2 {
  color: #fff;
}
.feature-band h2 em {
  color: var(--lime);
}
.feature-band > .container > div > p:not(.eyebrow) {
  color: #a8b5ac;
  max-width: 410px;
  margin: 25px 0 30px;
}
.feature-list {
  padding-top: 16px;
}
.feature-list div {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #425148;
  padding: 19px 0;
  color: #d0d9d1;
  font-size: 14px;
  transition:
    padding-left 0.2s ease,
    border-color 0.2s ease;
}
.feature-list div:hover {
  padding-left: 8px;
  border-color: var(--orange);
}
.feature-list b {
  color: var(--orange);
  font-size: 11px;
}
.categories-section {
  background: #fff;
}
.compact {
  margin-bottom: 46px;
}
.category-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.category-pill {
  padding: 19px;
  background: var(--paper);
  font-family: Fraunces, serif;
  font-weight: 700;
  font-size: 14px;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}
.category-pill:hover {
  background: var(--mint);
  transform: translateX(4px);
}
.category-pill i {
  font-family: "Karla";
  font-style: normal;
  color: var(--orange);
  font-size: 10px;
  margin-right: 17px;
}
.cta-section {
  padding-top: 48px;
}
.cta-box {
  background: var(--lime);
  padding: 44px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.cta-box h2 {
  font-size: 45px;
}
.cta-box > div > p:not(.eyebrow) {
  max-width: 380px;
  color: #64704f;
  margin-top: 23px;
}
.form-message {
  grid-column: 2;
  background: rgba(255, 255, 255, 0.48);
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 700;
  margin: 0;
}
.form-message.success {
  color: #3c6a42;
}
.form-message.error {
  color: #a24b3a;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: #667249;
}
.contact-form input,
.contact-form select {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(24, 35, 31, 0.3);
  background: transparent;
  padding: 12px 0 10px;
  font: 14px "Karla";
  color: var(--ink);
  outline: 0;
}
.contact-form input::placeholder {
  color: #889366;
}
.contact-form .button {
  margin-top: 8px;
  width: max-content;
}
.site-footer {
  background: var(--ink);
  color: #e4e9e3;
  padding: 48px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: 40px;
}
.brand-footer .brand-caption {
  color: #9ca9a0;
}
.footer-grid > div > p:not(.footer-label) {
  color: #9aa89e;
  font-size: 13px;
  line-height: 1.7;
  margin-top: 25px;
}
.footer-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--orange);
  font-weight: 700;
  margin: 0 0 18px;
}
.footer-grid > div:not(:first-child) a,
.footer-grid > div:not(:first-child) span {
  display: block;
  color: #c0ccc3;
  font-size: 13px;
  margin: 0 0 11px;
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}
.social-link {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 !important;
  transition: 0.2s;
}
.social-link:hover {
  background: var(--orange);
}
.social-link svg {
  width: 16px;
  height: 16px;
  fill: #e4e9e3;
}
.footer-bottom {
  border-top: 1px solid #3b4941;
  margin-top: 32px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  color: #7e8c82;
  font-size: 10px;
}
.auth-section {
  padding: 96px 0;
}
.auth-card {
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 44px 40px;
}
.auth-card h1 {
  font-family: Fraunces, serif;
  font-weight: 600;
  letter-spacing: -0.5px;
  font-size: 30px;
  margin: 0 0 10px;
}
.auth-lead {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 26px;
}
.auth-card .form-message {
  grid-column: auto;
  background: var(--paper);
  margin-bottom: 18px;
}
.auth-foot {
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
}
.account-badges {
  margin-bottom: 26px;
}
.account-fields p {
  margin: 0 0 10px;
  font-size: 14px;
}
.account-fields p:last-child {
  margin-bottom: 26px;
}
.auth-foot a {
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 850px) {
  .auth-card {
    padding: 32px 24px;
  }
  .form-message {
    grid-column: auto;
  }
  .container {
    padding: 0 22px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 22px;
    right: 22px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 15px 30px #0001;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-cta {
    text-align: center;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    padding-top: 130px;
  }
  .hero-grid,
  .process-grid,
  .about-grid,
  .feature-grid,
  .cta-box {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .section-heading {
    display: block;
  }
  .section-intro {
    margin-top: 24px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card:last-child {
    grid-column: span 2;
  }
  .trust-items {
    gap: 13px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .trust-divider {
    display: none;
  }
  .section-heading h2,
  .about-section h2,
  .feature-band h2,
  .cta-box h2,
  .process-copy h2 {
    font-size: 39px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-box {
    padding: 40px 27px;
  }
  .category-pills {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 43px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-visual {
    transform: scale(0.88);
    transform-origin: left top;
    margin-bottom: -45px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card:last-child {
    grid-column: auto;
  }
  .category-pills {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: span 2;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin-bottom: 8px;
  }
}
