:root {
  --black: #050706;
  --night: #071812;
  --night-2: #0b241a;
  --forest: #123d29;
  --green: #69b85e;
  --green-bright: #8fdd79;
  --amber: #d68a22;
  --paper: #fffdf8;
  --soft: #f5f0e7;
  --ink: #111817;
  --muted: #5e6866;
  --line: #d8ddd3;
  --line-dark: rgba(255, 255, 255, 0.18);
  --shadow: 0 18px 42px rgba(4, 16, 12, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body::selection {
  background: rgba(105, 184, 94, 0.28);
}

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

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

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

p {
  line-height: 1.55;
}

.hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 8, 6, 0.9), rgba(7, 24, 18, 0.78)),
    url("assets/burnham-enterprises-hero.jpg") center / cover no-repeat;
}

.hero-inner {
  width: min(100% - 48px, var(--max));
  min-height: 430px;
  margin: 0 auto;
  padding: 78px 0 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.kicker,
.card-kicker {
  color: var(--green-bright);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero h1 {
  max-width: 720px;
  margin-top: 14px;
  color: #fff;
  font-size: 3.9rem;
  line-height: 1.04;
  font-weight: 900;
}

.hero-lede {
  max-width: 650px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.16rem;
}

.ventures-section {
  padding: 66px 24px 72px;
  background: linear-gradient(180deg, var(--paper), var(--soft));
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 26px;
}

.section-heading h2 {
  max-width: 720px;
  margin-top: 10px;
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1.1;
  font-weight: 900;
}

.venture-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.venture-card {
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.venture-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 22px;
  border-radius: 8px;
}

.venture-logo-app {
  padding: 0;
  background: transparent;
}

.venture-logo-sales {
  width: 126px;
  object-position: left center;
}

.venture-card h3 {
  margin-top: 9px;
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1.08;
  font-weight: 900;
}

.venture-card p:not(.card-kicker) {
  margin-top: 12px;
  color: #45504c;
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: #14512f;
  font-weight: 900;
}

.text-link {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.site-footer {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 34px;
  color: rgba(255, 255, 255, 0.82);
  background: #050706;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-end;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--green-bright);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-delay-1 {
  transition-delay: 100ms;
}

.js .reveal-delay-2 {
  transition-delay: 180ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}

@media (max-width: 900px) {
  .venture-grid {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 760px) {
  .hero-inner {
    width: min(100% - 32px, var(--max));
    min-height: 400px;
    padding: 50px 0 42px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .ventures-section {
    padding: 48px 16px 54px;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }
}

@media (max-width: 520px) {
  .hero-inner {
    min-height: 360px;
    padding: 38px 0 34px;
  }

  .hero h1 {
    font-size: 2.1rem;
    line-height: 1.08;
  }

  .venture-card {
    padding: 20px;
  }

  .venture-logo {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
  }

  .venture-logo-sales {
    width: 110px;
  }

  .venture-card h3 {
    font-size: 1.45rem;
  }

}
