@font-face {
  font-display: swap;
  font-family: "Alpha Lyrae";
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/AlphaLyrae-Medium.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --ink: #231f20;
  --muted: #635d5f;
  --paper: #f8f7f4;
  --surface: #ffffff;
  --spruce: #153f37;
  --spruce-2: #235f52;
  --mist: #e5e0df;
  --lavender: #c4b3c4;
  --lavender-soft: #eee7ef;
  --shadow: 0 24px 80px rgba(35, 31, 32, 0.11);
  font-family:
    "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

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

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
}

.brand img {
  width: 236px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav a {
  transition:
    color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  position: relative;
  border: 1px solid rgba(21, 63, 55, 0.24);
  border-radius: 0;
  padding: 10px 16px;
  color: var(--spruce);
  box-shadow: 4px 4px 0 var(--lavender);
}

.nav-cta::after {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 7px;
  height: 7px;
  background: var(--lavender);
  border-top: 1px solid var(--lavender);
  border-left: 1px solid var(--lavender);
  content: "";
}

.nav-cta:hover {
  background: var(--lavender-soft);
  box-shadow: 2px 2px 0 var(--lavender);
  transform: translate(2px, 2px);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  min-height: calc(100svh - 148px);
  margin: 0 auto;
  padding: 38px 0 76px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: none;
}

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

#hero-title {
  max-width: 980px;
  margin-bottom: 24px;
  font-family: "Alpha Lyrae", "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3.3rem, 8vw, 6.9rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-family: "Alpha Lyrae", "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 4.6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-family: "Alpha Lyrae", "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.15;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--spruce);
  border-radius: 0;
  padding: 13px 22px;
  font-weight: 800;
  box-shadow: 6px 6px 0 var(--lavender);
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.button::after {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 8px;
  height: 8px;
  background: var(--paper);
  border-top: 1px solid var(--spruce);
  border-left: 1px solid var(--spruce);
  content: "";
}

.button:hover {
  box-shadow: 3px 3px 0 var(--lavender);
  transform: translate(3px, 3px);
}

.button.primary {
  background: var(--spruce);
  color: #ffffff;
}

.button.primary:hover {
  background: #0f302a;
}

.button.secondary {
  border-color: var(--mist);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.button.secondary::after {
  background: var(--lavender);
  border-color: var(--lavender);
}

.button.secondary:hover {
  border-color: var(--lavender);
  background: var(--surface);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.band {
  width: 100%;
  background: var(--ink);
  color: #ffffff;
}

.band > * {
  width: min(1120px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  display: grid;
  max-width: 760px;
  margin-bottom: 42px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.process-grid article {
  min-height: 260px;
  background: var(--ink);
  border-top: 6px solid var(--lavender);
  padding: 30px;
}

.process-grid span {
  display: inline-block;
  margin-bottom: 56px;
  color: var(--lavender);
  font-family: "Alpha Lyrae", "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

.process-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 70px;
  align-items: start;
}

.consult-copy p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--mist);
  padding: 28px 0 34px;
  color: var(--muted);
}

.site-footer img {
  width: 180px;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
    min-height: auto;
    padding-top: 42px;
  }

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

  .process-grid article {
    min-height: 0;
  }

  .process-grid span {
    margin-bottom: 32px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .band > *,
  .site-footer {
    width: min(100% - 28px, 1120px);
  }

  .brand img {
    width: 210px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .button {
    width: 100%;
  }

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