@charset "UTF-8";
@font-face {
  font-family: "Dosis";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("/Dosis/Dosis-VariableFont_wght.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

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

body {
  background: #f7f4ef;
  color: #1f2327;
  font-family: "Dosis", system-ui, sans-serif;
}

.page {
  min-height: 100dvh;
  display: grid;
  align-content: center;
  padding: 1rem 1.5rem 0.75rem;
  text-align: center;
}

.portrait {
  grid-row: 2;
  width: min(620px, 84vw);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  opacity: 0.55;
}

h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  line-height: 0.98;
  font-weight: 500;
}

p {
  margin: 0.75rem 0;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.45;
}

.lead {
  margin: 0 0 1.35rem;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  line-height: 1.28;
}

.traits {
  margin-top: 1.25rem;
  line-height: 1.45;
}

.trace {
  grid-row: 3;
  justify-self: center;
  margin-top: 1rem;
  color: inherit;
  font-size: 0.8rem;
  opacity: 0.45;
  text-decoration: none;
}

.trace:hover {
  opacity: 0.75;
}

.scene {
  display: block;
  width: 100%;
  margin: 0.4rem auto 1.25rem;
  border-radius: 18px;
  opacity: 0.96;
  filter: brightness(1.04) saturate(0.92);
}

@media (max-width: 600px) {
  .page {
    padding: 0.8rem 1rem 0.6rem;
  }

  h1 {
    font-size: clamp(2.3rem, 10vw, 4rem);
  }

  .lead {
    font-size: clamp(1.15rem, 4vw, 1.5rem);
  }

  p {
    font-size: 1rem;
  }

  .scene {
    width: 92vw;
    border-radius: 14px;
  }
}
