:root {
  --bg: #fff;
  --text: #222222;
  --muted: #555555;
  --accent: #d600b2;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: #d600b2;
  text-decoration: none;
}

a:hover {
  color: hsla(272, 100%, 50%, 0.7);
}

.site-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2.25rem;
  color: #ec27ce;
}

.hero {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  margin: 0 0 1.5rem;
  font-size: 5rem;
  line-height: 1;
}

.hero-text p {
  margin: 0;
  max-width: 620px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 3.5rem;
  }

  .hero-image {
    max-width: 360px;
  }
}