:root {
  color-scheme: light;
  font-family: Arial, "Segoe UI", sans-serif;
  background: #f7f4ee;
  color: #17211a;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
}

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

.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(2rem, 6vw, 5rem);
  border-inline-end: 1px solid #d8d0c2;
}

.intro-ar {
  background: #1f3a2f;
  color: #fbfaf6;
  border-inline-end: 0;
}

.brand {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.55;
}

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

  .intro {
    min-height: 50vh;
    border-inline-end: 0;
    border-block-end: 1px solid #d8d0c2;
  }

  .intro-ar {
    border-block-end: 0;
  }
}
