@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=Source+Sans+3:wght@300;400;500&display=swap");

:root {
  --bg: #f4efee;
  --ink: #131313;
  --muted: rgba(19, 19, 19, 0.65);
  --accent: #9c8d74;
  --max-width: 720px;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.canvas {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 4rem clamp(1.5rem, 4vw, 3rem);
  max-width: 960px;
  margin: 0 auto;
}

.hero {
  text-align: center;
  margin-bottom: 3rem;
}

.eyebrow {
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  margin: 0 0 1rem;
}

.lede {
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--muted);
}

.imprint {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 3rem;
}

.imprint h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.imprint p {
  margin: 0.2rem 0;
  line-height: 1.6;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 600px) {
  .canvas {
    padding: 2.5rem 1.25rem;
  }

  .imprint {
    gap: 1.5rem;
  }
}
