:root {
  --ink: #edf7f0;
}

* {
  box-sizing: border-box;
}

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

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: start center;
  font-family: "Syne", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    url("2025-Bugatti-Brouillard-002-1080.jpg") center center / cover no-repeat;
}

.hero {
  position: relative;
  z-index: 2;
  width: min(90vw, 760px);
  margin-top: 12vh;
  padding: 2rem 2.5rem;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-align: center;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(134, 255, 187, 0.1);
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(1.75rem, 9vw, 2.7rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
