:root {
  --navy: #1b2a3d;
  --navy-light: #2c425e;
  --cream: #f4ecdc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vmin, 32px);
  padding: 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--cream);
}

.hero-logo {
  width: clamp(140px, 45vmin, 420px);
  height: clamp(140px, 45vmin, 420px);
  border-radius: 50%;
  border: 4px solid var(--cream);
  object-fit: cover;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.5px;
  font-size: clamp(1.75rem, 7vmin, 3.5rem);
}
