* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #111;
  background: #f7f4ef;
  line-height: 1.6;
}

.page {
  max-width: 1050px;
  margin: 0 auto;
  padding: 48px 24px;
}

.hero {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  margin: 0 0 24px;
  font-weight: normal;
}

h2 {
  font-size: 2rem;
  margin-top: 80px;
  margin-bottom: 20px;
  font-weight: normal;
}

.intro {
  max-width: 620px;
  font-size: 1.2rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

a {
  color: #111;
  text-underline-offset: 4px;
}

.hero img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 2px;
}

section {
  max-width: 760px;
}

.links {
  padding-left: 20px;
}

.links li {
  margin-bottom: 12px;
}

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

  .hero img {
    max-height: 480px;
  }
  .site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 60px;
  font-size: 1rem;
}

.site-nav a {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  border-bottom: 1px solid #111;
}
.intro-image {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInImage 1s ease-out forwards;
  animation-delay: 0.6s;
}

@keyframes fadeInImage {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
