*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #111111;
  min-height: 100vh;
  background: linear-gradient(to bottom, #FFB07C, #FFE44D);
}

.page {
  min-height: 100vh;
  padding: 80px 60px;
}

.container {
  max-width: 870px;
  margin: 0 auto;
}

/* ── SVG composition grid ────────────────────────────────── */
/*
  col 1 (445px): sky01 + title
  col 2 (1fr):   sky02 + people
  row 1 (192px): sky elements
  row 2 (auto):  title + people
*/
.graphic {
  display: grid;
  grid-template-columns: 445px 1fr;
  grid-template-rows: 192px auto;
}

/* Sun — upper left */
.graphic__sky {
  grid-column: 1;
  grid-row: 1;
  width: 349px;
  align-self: start;
}

/* Clouds — upper right; starts at x=412 in the 870px container,
   which is 33px left of col-2's origin (x=445), so pull it back */
.graphic__clouds {
  grid-column: 2;
  grid-row: 1;
  width: 316px;
  align-self: start;
  margin-top: 12px;
  margin-left: -33px;
}

/* Title SVG — lower left */
.graphic__title {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
}

/* People — lower right; starts at x=497 (52px right of col-2 origin)
   and y=244 (52px below row-2 origin at y=192) */
.graphic__people {
  grid-column: 2;
  grid-row: 2;
  width: 373px;
  align-self: start;
  margin-top: 52px;
  margin-left: 52px;
}

/* ── Text ────────────────────────────────────────────────── */
.tagline {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 28px;
}

.contact {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 16px;
}

.contact a {
  color: inherit;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .page {
    padding: 24px 24px;
  }

  .graphic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .graphic__sky {
    width: 220px;
    margin-bottom: 20px;
  }

  .graphic__clouds {
    display: none;
  }

  .graphic__title {
    grid-column: 1;
    grid-row: 2;
    width: 60%;
  }

  .graphic__people {
    grid-column: 1;
    grid-row: 3;
    width: min(373px, 85%);
    margin: 16px 0 0 0;
  }

}

@media (max-width: 660px) {
  .graphic__title {
    width: 90%;
  }
}
