:root {
  --bg: #f6f4ef;
  --ink: #1a1a18;
  --muted: #8a877e;
  --line: #e3e0d6;
  --accent: #9c1c22;
  --surname: #4c4a44;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", -apple-system, sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.home-main {
  flex: 1;
  min-height: 0;
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3rem);
}

.hero {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0;
}

.hero-video.is-active {
  opacity: 1;
}
