:root {
  --soft-cream: #f7f1ea;
  --warm-cream: #fffaf4;
  --muted-gold: #d6b98c;
  --deep-cocoa: #4a2c1f;
  --rich-espresso: #2b1a12;
  --text-soft: #6b5649;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--rich-espresso);
  background: #f1e7dc;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

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

.background-media {
  position: fixed;
  inset: -8vmax;
  z-index: 0;
  pointer-events: none;
  transform: translateZ(0);
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.08), rgba(241, 231, 220, 0.16)),
    url("./assets/yuuga-bg-desktop-poster.png") center center / cover no-repeat;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: scale(1.08) translateZ(0);
  backface-visibility: hidden;
}

.bg-video-hidden {
  opacity: 0;
}

.video-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(214, 185, 140, 0.18), transparent 24%),
    radial-gradient(circle at 85% 15%, rgba(74, 44, 31, 0.14), transparent 24%),
    linear-gradient(
      180deg,
      rgba(255, 252, 248, 0.5) 0%,
      rgba(247, 241, 234, 0.58) 52%,
      rgba(241, 231, 220, 0.7) 100%
    );
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.7;
  pointer-events: none;
}

.glow-left {
  top: 10%;
  left: -120px;
  width: 280px;
  height: 280px;
  background: rgba(214, 185, 140, 0.22);
}

.glow-right {
  right: -110px;
  bottom: 10%;
  width: 260px;
  height: 260px;
  background: rgba(74, 44, 31, 0.1);
}

.hero {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(560px, 100%);
  padding: clamp(32px, 6vw, 56px);
  border: 1px solid rgba(74, 44, 31, 0.1);
  border-radius: 36px;
  background: rgba(255, 251, 246, 0.5);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 60px rgba(43, 26, 18, 0.12);
}

.monogram {
  width: min(240px, 58vw);
  height: auto;
}

.eyebrow {
  margin: 18px 0 0;
  color: var(--muted-gold);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1 {
  margin: 14px 0 0;
  font-family: "GFS Didot", serif;
  font-size: clamp(3.6rem, 9vw, 5.6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.14em;
}

.copy {
  max-width: 30rem;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.9;
  text-wrap: balance;
}

@media (max-width: 640px) {
  .page {
    padding: 18px;
  }

  .hero {
    padding: 28px 22px 32px;
    border-radius: 28px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .copy {
    font-size: 0.95rem;
  }
}
