@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&family=Manrope:wght@300;400&display=swap");

:root {
  color-scheme: light;
  --ink: #514943;
  --muted: #7b7068;
  --line: rgba(81, 73, 67, 0.28);
}

* {
  box-sizing: border-box;
}

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

body {
  background: #eee9e3;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__video,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  z-index: -3;
  object-fit: cover;
  filter: saturate(0.62) contrast(0.86);
}

.hero__veil {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(248, 246, 243, 0.72), rgba(239, 234, 228, 0.78)),
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.36), rgba(224, 217, 210, 0.52));
  backdrop-filter: blur(1.5px);
}

.hero__content {
  width: min(860px, calc(100% - 48px));
  padding: 56px 0;
  text-align: center;
  animation: reveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__logo {
  display: block;
  width: min(620px, 82vw);
  height: auto;
  margin: 0 auto 36px;
}

.hero__line {
  width: 44px;
  height: 1px;
  margin: 0 auto 31px;
  background: var(--line);
}

h1 {
  max-width: 720px;
  margin: 0 auto;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.hero__soon,
.hero__location {
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.hero__soon {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 500;
}

.hero__location {
  position: absolute;
  right: 30px;
  bottom: 24px;
  margin: 0;
  color: rgba(81, 73, 67, 0.65);
  font-size: 0.56rem;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .hero__content {
    width: min(100% - 40px, 520px);
  }

  .hero__logo {
    width: min(390px, 92vw);
    margin-bottom: 28px;
  }

  h1 {
    font-size: clamp(1.3rem, 6vw, 1.72rem);
    line-height: 1.45;
  }

  .hero__location {
    right: 0;
    bottom: 20px;
    width: 100%;
    text-align: center;
  }
}

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

  .hero__content {
    animation: none;
  }
}
