:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f4f1ea;
  color: #171717;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(23, 23, 23, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 23, 23, 0.04) 1px, transparent 1px),
    #f4f1ea;
  background-size: 36px 36px;
}

a {
  color: inherit;
}

.shell {
  min-height: 100vh;
  padding: clamp(20px, 4vw, 56px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  min-height: calc(100vh - clamp(40px, 8vw, 112px));
  border: 1px solid rgba(23, 23, 23, 0.16);
  background: #fbfaf7;
}

.hero-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 93, 79, 0.95), rgba(6, 50, 62, 0.98)),
    #0a5d4f;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.ledger {
  position: absolute;
  inset: auto 9% 10% 9%;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.ledger-row {
  height: 26px;
  width: 76%;
  border-left: 4px solid #f0c45c;
  background: rgba(255, 255, 255, 0.82);
}

.ledger-row.wide {
  width: 100%;
}

.ledger-row.short {
  width: 54%;
}

.hero-copy {
  align-self: center;
  padding: clamp(32px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 18px;
  color: #0a5d4f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(4.6rem, 11vw, 9rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.dek {
  max-width: 680px;
  margin: 28px 0 0;
  color: #373737;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 1.42;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid #171717;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: #171717;
  color: #fff;
}

.button.secondary {
  background: #f0c45c;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: rgba(23, 23, 23, 0.14);
  border: 1px solid rgba(23, 23, 23, 0.14);
}

article {
  min-height: 190px;
  padding: 28px;
  background: #fbfaf7;
}

article span {
  color: #0a5d4f;
  font-weight: 900;
}

h2 {
  margin: 38px 0 10px;
  font-size: 1.35rem;
}

article p {
  margin: 0;
  color: #4a4a4a;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .shell {
    padding: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    border-width: 0 0 1px;
  }

  .hero-media {
    min-height: 300px;
    order: 2;
  }

  .hero-copy {
    padding: 34px 22px;
  }

  h1 {
    font-size: clamp(4rem, 19vw, 6.5rem);
  }

  .panel-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
    border-width: 0;
  }
}
