/* ---------------------------------------
   Google Fonts
---------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@400;500;600&display=swap');

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

/* Background + Typography */
body {
  font-family: "Cormorant Garamond", serif;
  background: #272f20; /* Dark Forest */
  color: #d4af37; /* Metallic Gold */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow: hidden;
}

/* Soft vignette glow */
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
  pointer-events: none;
}

/* Layout */
.page {
  padding: 2rem;
  z-index: 2;
}

/* ---------------------------------------
   Brand Name — Cormorant Garamond
---------------------------------------- */
.brand {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 600;
  letter-spacing: 0.045em;
  position: relative;
  display: inline-block;

  /* Gold gradient text */
  background: linear-gradient(
    180deg,
    #f5e7b2 0%,
    #d4af37 40%,
    #b08a2e 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 4px 32px rgba(212, 175, 55, 0.25);
  overflow: hidden;
}

/* Gold shimmer overlay — sweeps across, then goes fully off / invisible before the loop */
.brand::after {
  content: "";
  position: absolute;
  top: 0;
  left: -45%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  pointer-events: none;
  animation: shimmer 3.5s ease-in-out infinite;
}

/*
  Timeline:
  - 0–42%: move strip left → right so it clears all letters
  - 42–100%: hidden (opacity 0) so nothing lingers on “uill” before restart
*/
@keyframes shimmer {
  0% {
    left: -45%;
    opacity: 1;
  }
  42% {
    left: 105%;
    opacity: 1;
  }
  43%,
  100% {
    left: 105%;
    opacity: 0;
  }
}

/* ---------------------------------------
   Tagline — Montserrat
---------------------------------------- */
.tagline {
  margin-top: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.9);
  opacity: 0.95;
}