:root {
  --ink: #13201f;
  --muted: #5c6965;
  --green: #123f3b;
  --green-2: #1f635d;
  --sage: #dfe9e4;
  --paper: #fbfaf7;
  --stone: #f0eee8;
  --line: #d9ddd6;
  --copper: #b67a3b;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(19, 32, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
.brand {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: 64px;
  font-weight: 700;
}

h2 {
  max-width: 790px;
  font-size: 42px;
  font-weight: 700;
}

h3 {
  font-size: 23px;
  font-weight: 700;
}

p {
  color: var(--muted);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--green);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 24px 6%;
  color: var(--white);
}

.site-header.solid,
.site-header.is-scrolled {
  position: sticky;
  top: 0;
  background: rgba(18, 63, 59, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 2px solid rgba(223, 233, 228, 0.88);
  background: var(--pine);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.18));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--sage);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.16);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 86vh;
  padding: 132px 6% 96px;
  overflow: hidden;
  background: var(--green);
  color: var(--white);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(12, 33, 31, 0.88) 0%, rgba(12, 33, 31, 0.68) 42%, rgba(12, 33, 31, 0.22) 100%),
    linear-gradient(0deg, rgba(10, 29, 28, 0.34), rgba(10, 29, 28, 0.12));
}

.hero-content {
  position: relative;
  width: min(100%, 920px);
  max-width: 920px;
  min-width: 0;
}

.hero-copy {
  max-width: min(650px, 100%);
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sage);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--copper);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #98642f;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.56);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.section-shell {
  width: min(1120px, 88%);
  margin-inline: auto;
}

.intro-band {
  padding: 72px 0;
  background: var(--green);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: start;
}

.intro-grid h2,
.intro-grid p {
  color: var(--white);
}

.intro-grid p:last-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 62px 0;
}

.stat {
  padding: 28px;
  border-left: 1px solid var(--line);
}

.stat:last-child {
  border-right: 1px solid var(--line);
}

.stat span {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 700;
}

.stat p {
  margin-top: 6px;
}

.muted-section,
.contact-hero {
  padding: 86px 0;
  background: var(--stone);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 34px;
}

.section-kicker {
  max-width: 420px;
  align-self: end;
  font-size: 17px;
}

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

.transaction-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(19, 32, 31, 0.05);
}

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

.transaction-card p {
  margin-top: 12px;
}

.accent-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--green);
  color: var(--white);
}

.accent-card p {
  color: rgba(255, 255, 255, 0.82);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--green);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.about-section {
  padding: 96px 0;
}

.services-section {
  padding: 92px 0;
  background: var(--paper);
}

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

.service-card {
  min-height: 285px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card p {
  margin-top: 12px;
}

.highlight-service {
  background: var(--green);
  color: var(--white);
}

.highlight-service p {
  color: rgba(255, 255, 255, 0.82);
}

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 70px;
  align-items: start;
}

.founder-panel {
  position: sticky;
  top: 108px;
  padding: 30px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}

.founder-panel span {
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.founder-panel strong {
  display: block;
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.1;
}

.founder-panel p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.about-copy p:not(.eyebrow) {
  max-width: 790px;
  margin-top: 22px;
  font-size: 17px;
}

.cta-band {
  padding: 76px 0;
  background: var(--green);
  color: var(--white);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band p:not(.eyebrow) {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 30px 0;
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, 88%);
  margin-inline: auto;
}

.footer-brand {
  font-size: 18px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.contact-hero {
  padding-top: 120px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 70px;
  align-items: end;
}

.contact-hero h1 {
  color: var(--green);
}

.contact-hero p {
  max-width: 680px;
  margin-top: 20px;
  font-size: 18px;
}

.contact-details {
  padding: 26px;
  border-left: 4px solid var(--copper);
  background: var(--white);
}

.contact-details span {
  display: block;
  color: var(--green);
  font-weight: 800;
}

.contact-details p {
  margin-top: 10px;
  font-size: 15px;
}

.contact-section {
  padding: 76px 0 96px;
}

.contact-form {
  max-width: 860px;
  margin-inline: auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 28px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd2cb;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(182, 122, 59, 0.24);
  border-color: var(--copper);
}

.hidden {
  display: none;
}

.success-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: var(--green);
}

.success-panel {
  width: min(560px, 100%);
  padding: 42px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.success-panel .brand {
  color: var(--green);
}

.success-panel h1 {
  margin-top: 42px;
  color: var(--green);
}

.success-panel p {
  margin: 12px 0 26px;
}

@media (max-width: 920px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .intro-grid,
  .about-grid,
  .cta-grid,
  .contact-hero-grid,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-heading {
    display: grid;
  }

  .transaction-grid,
  .service-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:last-child {
    border-right: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 1px solid var(--line);
  }

  .founder-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 16px 5%;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 8px;
    background: var(--white);
    color: var(--green);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px;
  }

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

  .nav-toggle {
    display: block;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 84vh;
    padding: 118px 6% 72px;
  }

  .hero-scrim {
    background: linear-gradient(90deg, rgba(12, 33, 31, 0.9) 0%, rgba(12, 33, 31, 0.7) 100%);
  }

  .hero-copy {
    font-size: 16px;
  }

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

  .button {
    padding-right: 16px;
    padding-left: 16px;
    text-align: center;
  }

  .intro-band,
  .muted-section,
  .about-section,
  .services-section,
  .cta-band,
  .contact-section {
    padding: 58px 0;
  }

  .transaction-card {
    min-height: 0;
  }

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

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 28px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 34px;
  }

  .hero-copy {
    max-width: 340px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 29px;
  }

  .section-shell {
    width: min(100% - 32px, 1120px);
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }
}
