body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  color: #111;
  background-color: #f7f7f5;
  background-image: radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

.logo {
  font-weight: 600;
  letter-spacing: 1px;
}

.red, {
  color: #e60000;
}



/* NAV */

nav {
  display: flex;
  justify-content: space-between;
  padding: 30px 60px;
  border-bottom: 1px solid #eee;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #111;
  font-size: 13px;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #e60000;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* ABOUT LAYOUT */

.about {
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 40px;
}

/* BIG STATEMENT */

.intro h1 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  max-width: 800px;
  margin-bottom: 80px;
  letter-spacing: -1px;
}

/* GRID */

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* TEXT BLOCKS */

.col h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #e60000;
  margin-bottom: 10px;
}

.col p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

@media screen and (max-width: 430px) {

  /* NAV */
  nav {
    padding: 20px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  nav a {
    margin-left: 0;
    margin-right: 14px;
    font-size: 15px;
  }

  .logo {
    font-size: 14px;
  }

  /* ABOUT SECTION */
  .about {
    padding: 80px 18px;
  }

  .intro h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 50px;
  }

  /* GRID */
  .grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* TEXT */
  .col h3 {
    font-size: 11px;
  }

  .col p {
    font-size: 14px;
    line-height: 1.6;
  }
}