:root {
  --bg: #ffffff;
  --fg: #111111;
  --muted: #555555;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  margin: 0;
  width: 100%;
  line-height: 0;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 75vh;
  object-fit: cover;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
}

h1 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0 0 0.75rem 0;
}

p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}
