:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #242124;
  background: #f7f3ef;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 85% 15%, rgb(198 38 65 / 10%), transparent 30rem),
    #f7f3ef;
}

main {
  width: min(48rem, 100%);
  margin: auto 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #a51f36;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.summary {
  max-width: 40rem;
  margin: clamp(1.75rem, 4vw, 3rem) 0;
  color: #514b50;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  line-height: 1.55;
}

.contact {
  display: inline-block;
  padding: 0.9rem 1.2rem;
  border: 1px solid #a51f36;
  border-radius: 0.25rem;
  color: #fff;
  background: #a51f36;
  font-weight: 700;
  text-decoration: none;
}

.contact:hover,
.contact:focus-visible {
  background: #7e1729;
  border-color: #7e1729;
}

.contact:focus-visible,
footer a:focus-visible {
  outline: 3px solid rgb(165 31 54 / 30%);
  outline-offset: 4px;
}

footer {
  padding-top: 3rem;
  font-size: 0.9rem;
}

footer a {
  color: #625a60;
  text-underline-offset: 0.2em;
}

@media (prefers-reduced-motion: no-preference) {
  a {
    transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
  }
}
