:root {
  --graphite-gray: #737373;
  --evergreen-slate: #526058;
  --soft-white: #f7f7f7;
  --growth-green: #7c987d;
  --mint-lift: #b6e2d3;
  --pale-sprout: #d7e6e1;
  --steel-blue: #57718f;

  --font-heading: "Axon", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Quicksand", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

@font-face {
  font-family: "Axon";
  src: local("Axon Ultralight"), local("Axon-Ultralight");
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--evergreen-slate);
  background: var(--soft-white);
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 100vh;
}

.hero__content,
.hero__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem);
}

.hero__content {
  background: var(--soft-white);
}

.hero__content > * {
  max-width: 36rem;
  width: 100%;
}

h1 {
  margin: 0;
  color: var(--evergreen-slate);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0.035em;
}

p {
  margin: clamp(1.75rem, 4.2vw, 3.5rem) 0 clamp(1.5rem, 4vw, 3rem);
  color: var(--evergreen-slate);
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2vw, 2.1rem);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.1rem;
  border: 3px solid var(--evergreen-slate);
  border-radius: 0.75rem;
  background: transparent;
  color: var(--evergreen-slate);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 700;
  cursor: default;
}

.hero__brand {
  background: var(--growth-green);
}

.hero__brand img {
  width: min(75%, 520px);
  height: auto;
}

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

  .hero__content,
  .hero__brand {
    min-height: 50vh;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 4rem);
  }
}
