:root {
  --bg: #000;
  --ink: #f2f2f2;
  --muted: #8a8a8a;
  --font-sans: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.55; }

.ghost {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #000;
}
.ghost__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  opacity: 0.08;
  filter: brightness(0.45) contrast(1.05) blur(1px);
}
.ghost__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.72) 70%, rgba(0, 0, 0, 0.88) 100%),
    rgba(0, 0, 0, 0.6);
}

.app {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.header {
  z-index: 20;
  width: min(1200px, calc(100% - 10vw));
  margin: 0 auto;
  padding: 2rem 0 1.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}
.mast {
  margin: 0;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}
.mast a { color: inherit; }

.tableau {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(40ch, calc(100% - 10vw));
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 6rem) 0 clamp(4rem, 10vh, 7rem);
  text-align: center;
}

.tableau p {
  margin: 0 0 1.35em;
  font-weight: 300;
  font-size: clamp(0.8rem, 1.9vw, 0.88rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.5);
}
.tableau p:last-child { margin-bottom: 0; }

.foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0 5vw 2.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.foot__home {
  letter-spacing: 0.12em;
  text-transform: none;
  font-size: 0.72rem;
}

@media (max-width: 639px) {
  .header { padding-top: 1.5rem; font-size: 0.65rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ghost__img { filter: brightness(0.45) contrast(1.05); }
}
