* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #eeeae3;
  color: #171717;
  font-family: Arial, Helvetica, sans-serif;
}

main {
  min-height: 100vh;
  max-width: 1180px;
  margin: auto;
  padding: 42px;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 7vw;
}

.photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d7d1c7;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content {
  max-width: 470px;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 13px;
  letter-spacing: .18em;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 9vw, 120px);
  line-height: .86;
  font-weight: 400;
}

.intro {
  margin: 34px 0 42px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.35;
  max-width: 390px;
}

.links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-block;
  padding: 15px 22px;
  background: #171717;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.button:hover {
  background: #333;
}

.text-link {
  color: #171717;
  text-decoration: underline;
  text-underline-offset: 5px;
  font-size: 14px;
  font-weight: 700;
}

footer {
  border-top: 1px solid #bcb6ad;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: #555;
}

footer a {
  color: inherit;
}

@media (max-width: 720px) {
  main {
    padding: 22px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 20px 0 45px;
  }

  .photo {
    aspect-ratio: 4 / 3;
  }

  h1 {
    font-size: clamp(64px, 20vw, 100px);
  }

  .intro {
    margin: 25px 0 30px;
    font-size: 22px;
  }

  footer {
    flex-direction: column;
  }
}
