* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: #fff;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
}

.landing {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.75rem);
  padding: clamp(1.5rem, 4vw, 4rem);
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 13vw, 12rem);
  font-weight: 700;
  letter-spacing: -.09em;
  line-height: .78;
}

.trumpeter {
  display: block;
  width: min(46vw, 29rem);
  max-height: min(58svh, 43rem);
  object-fit: contain;
  transform-origin: center bottom;
  animation: breathe 5s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(-0.3deg); }
}

@media (prefers-reduced-motion: reduce) {
  .trumpeter { animation: none; }
}

@media (max-width: 34rem) {
  .trumpeter { width: min(86vw, 25rem); }
}
