:root {
  --ink: #10242b;
  --muted: #5c6f75;
  --line: #dbe5e3;
  --paper: #fbfaf6;
  --soft: #eef4f1;
  --aqua: #2f8d83;
  --aqua-dark: #1c655f;
  --copper: #b77445;
  --blue: #315b78;
  --nav: rgba(251, 250, 246, 0.9);
  --shadow: 0 18px 50px rgba(16, 36, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(219, 229, 227, 0.8);
  background: var(--nav);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1160px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: white;
  background: conic-gradient(from 210deg, var(--aqua), var(--blue), var(--copper), var(--aqua));
}

.mark svg {
  width: 21px;
  height: 21px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #344a50;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: #edf4f1;
  color: var(--aqua-dark);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 11px 16px;
  font-weight: 750;
  line-height: 1.2;
}

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

.button.primary:hover {
  background: #164f4b;
}

.button.secondary {
  color: var(--ink);
  border-color: #cfdcda;
  background: rgba(255, 255, 255, 0.72);
}

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

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/hero-transfer.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.96) 0%, rgba(251, 250, 246, 0.88) 34%, rgba(251, 250, 246, 0.26) 68%, rgba(251, 250, 246, 0.08) 100%);
}

.hero-inner,
.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-copy {
  width: min(700px, 100%);
  padding: 70px 0 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--aqua-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.18rem;
}

.lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: #324a51;
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  width: min(650px, 100%);
  border: 1px solid rgba(207, 220, 218, 0.9);
  background: rgba(207, 220, 218, 0.9);
  box-shadow: var(--shadow);
}

.proof {
  min-height: 92px;
  padding: 18px;
  background: rgba(251, 250, 246, 0.9);
}

.proof strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: #edf4f1;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(16, 36, 43, 0.06);
}

.opportunity {
  min-height: 100%;
  padding: 22px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 4px 10px;
  color: #24464d;
  background: #e6f1ee;
  font-size: 0.78rem;
  font-weight: 800;
}

.tag.copper {
  color: #694223;
  background: #f5e7d6;
}

.opportunity p,
.service p,
.bio p,
.contact-panel p,
.text-block p {
  color: var(--muted);
}

.service {
  padding: 26px;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: white;
  background: var(--blue);
}

.icon svg {
  width: 24px;
  height: 24px;
}

.process {
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: var(--aqua-dark);
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 50px;
  align-items: start;
}

.bio {
  padding: 28px;
}

.bio-visual {
  min-height: 260px;
  border-radius: 8px 8px 0 0;
  background:
    radial-gradient(circle at 68% 28%, rgba(183, 116, 69, 0.55), transparent 18%),
    linear-gradient(135deg, #244d58, #e8f0ec 54%, #f4dfc7);
  display: grid;
  place-items: center;
}

.bio-visual svg {
  width: 58%;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.92);
}

.list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  padding: 10px 0;
  color: #344a50;
}

.list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 3px;
  background: var(--copper);
}

.page-hero {
  padding: 86px 0 70px;
  background: #edf4f1;
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.contact-band {
  padding: 72px 0;
  color: white;
  background: #17343c;
}

.contact-band .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.contact-band p {
  max-width: 680px;
  color: #c8d9d7;
}

.contact-panel {
  padding: 28px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field label {
  font-weight: 800;
  font-size: 0.92rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cad8d6;
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: white;
  font: inherit;
}

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

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #f4f3ee;
}

.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(251, 250, 246, 0.96), rgba(251, 250, 246, 0.84));
  }

  .hero-copy {
    padding: 58px 0 70px;
  }

  .proof-row,
  .grid.three,
  .grid.two,
  .section-heading,
  .split,
  .contact-band .section-inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }
}

@media (max-width: 560px) {
  .hero-inner,
  .section-inner,
  .nav,
  .footer-inner {
    width: min(100% - 28px, 1160px);
  }

  .proof-row {
    box-shadow: none;
  }

  .hero-actions .button,
  .cta-row .button,
  .contact-band .button {
    width: 100%;
  }

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