:root {
  --black: #120d0a;
  --black-deep: #0a0705;
  --espresso: #1e1610;
  --espresso-soft: #2a1f16;
  --ivory: #f3e8d8;
  --blush: #dcb6a4;
  --gold: #cda668;
  --gold-bright: #f0cd8f;
  --gold-dim: #8a6c40;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(60% 50% at 50% 38%, rgba(205, 166, 104, 0.16) 0%, rgba(205, 166, 104, 0) 70%),
    radial-gradient(80% 70% at 82% 88%, rgba(220, 182, 164, 0.10) 0%, rgba(220, 182, 164, 0) 65%),
    radial-gradient(90% 80% at 10% 100%, rgba(138, 108, 64, 0.14) 0%, rgba(138, 108, 64, 0) 60%),
    linear-gradient(175deg, var(--espresso) 0%, var(--black) 45%, var(--black-deep) 100%);
  background-size: 220% 220%, 220% 220%, 220% 220%, 100% 100%;
  animation: driftBg 28s ease-in-out infinite;
  color: var(--ivory);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes driftBg {
  0%   { background-position: 50% 38%, 82% 88%, 10% 100%, 0% 0%; }
  50%  { background-position: 45% 30%, 76% 82%, 16% 92%, 0% 0%; }
  100% { background-position: 50% 38%, 82% 88%, 10% 100%, 0% 0%; }
}

/* Soft ambient glows */
.glow-wrap {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.glow-wrap--one {
  top: -12vmax;
  left: -10vmax;
}

.glow-wrap--two {
  bottom: -16vmax;
  right: -12vmax;
}

.glow {
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  will-change: transform;
}

.glow--one {
  width: 42vmax;
  height: 42vmax;
  background: radial-gradient(circle, rgba(240, 205, 143, 0.35) 0%, rgba(205, 166, 104, 0.08) 65%, transparent 100%);
  animation: floatOne 18s ease-in-out infinite;
}

.glow--two {
  width: 48vmax;
  height: 48vmax;
  background: radial-gradient(circle, rgba(220, 182, 164, 0.22) 0%, rgba(220, 182, 164, 0.05) 65%, transparent 100%);
  animation: floatTwo 22s ease-in-out infinite;
}

@keyframes floatOne {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(3vmax, 4vmax) scale(1.08); }
}

@keyframes floatTwo {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-3vmax, -3vmax) scale(1.06); }
}

/* Subtle diagonal light streak / sheen */
.sheen {
  position: fixed;
  inset: -20% -20%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 32%,
    rgba(240, 205, 143, 0.05) 46%,
    rgba(240, 205, 143, 0.1) 50%,
    rgba(240, 205, 143, 0.05) 54%,
    transparent 68%
  );
  background-size: 260% 260%;
  animation: sheenMove 14s ease-in-out infinite;
  mix-blend-mode: screen;
  opacity: 0.6;
}

/* Vignette for depth and mystery */
.stage::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(120% 100% at 50% 45%, transparent 45%, rgba(0, 0, 0, 0.45) 100%);
}

@keyframes sheenMove {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

/* Hero stage */
.stage {
  position: relative;
  z-index: 1;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6vh 6vw;
}

.brand {
  font-family: 'Cinzel', 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(3rem, 11vw, 8rem);
  letter-spacing: 0.28em;
  color: var(--ivory);
  text-shadow:
    0 0 30px rgba(243, 232, 216, 0.18),
    0 2px 24px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(14px);
  animation: fadeInUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.brand__accent {
  color: var(--gold-bright);
  font-weight: 600;
  text-shadow:
    0 0 18px rgba(240, 205, 143, 0.85),
    0 0 42px rgba(205, 166, 104, 0.55),
    0 0 90px rgba(205, 166, 104, 0.3);
}

.tagline {
  margin-top: clamp(1.25rem, 3vh, 2.25rem);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 2.4vw, 1.6rem);
  letter-spacing: 0.12em;
  color: var(--blush);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.year {
  margin-top: clamp(1.5rem, 4vh, 3rem);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  letter-spacing: 0.45em;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  animation: fadeInUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) 1.15s forwards, glowPulse 6s ease-in-out 3s infinite;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 6px rgba(205, 166, 104, 0.3); }
  50%      { text-shadow: 0 0 16px rgba(240, 205, 143, 0.65); }
}

/* Responsive tuning */
@media (max-width: 768px) {
  .brand {
    letter-spacing: 0.2em;
  }
  .year {
    letter-spacing: 0.4em;
  }
}

@media (max-width: 420px) {
  .brand {
    letter-spacing: 0.14em;
  }
  .tagline {
    letter-spacing: 0.08em;
  }
  .year {
    letter-spacing: 0.32em;
  }
}

@media (prefers-reduced-motion: reduce) {
  body, .glow, .sheen, .brand, .tagline, .year {
    animation: none !important;
  }
  .brand, .tagline, .year {
    opacity: 1;
    transform: none;
  }
}
