:root {
  --bg: #050505;
  --text: #f5ecdf;
  --text-soft: rgba(245, 236, 223, 0.72);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", "Avenir Next", "Segoe UI", sans-serif;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.46) 100%),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.52));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  padding: 24px;
  transform: translateY(-2vh);
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: min(90vw, 860px);
  margin: 0 auto;
  text-align: center;
}

.brand-mark,
.brand-caption {
  margin: 0;
}

.brand-mark {
  display: block;
  width: min(35.5vw, 430px);
  min-width: 244px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.28));
}

.brand-caption {
  margin-top: 28px;
  width: 100%;
  max-width: none;
  font-size: clamp(0.62rem, 0.8vw, 0.82rem);
  line-height: 1.35;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

@media (max-width: 640px) {
  .hero-content {
    transform: translateY(-1.5vh);
  }

  .brand-mark {
    width: min(68vw, 336px);
    min-width: 0;
  }

  .brand-caption {
    width: auto;
    margin-top: 18px;
    font-size: clamp(0.58rem, 2.4vw, 0.72rem);
    letter-spacing: 0.18em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero {
    background: url("./assets/cover-exterior.png") center center / cover no-repeat;
  }
}
