* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  -webkit-font-smoothing: antialiased;
}
body, html {
  height: 100%;
}

/* MAIN HERO BACKGROUND */
.hero {
  height: 100vh;
  width: 100%;

  background: linear-gradient(
    135deg,
    #120c08 0%,
    #1b120d 25%,
    #2a1a14 50%,
    #140d09 75%,
    #0b0705 100%
  );

  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -120px;
  left: -120px;

  background: radial-gradient(
    circle,
    rgba(255, 180, 120, 0.05),
    transparent 70%
  );

  filter: blur(100px);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: repeating-linear-gradient(
    to right,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 4px
  );

  opacity: 0.4;
  pointer-events: none;
}
.hero .vignette {
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at center,
    transparent 40%,
    rgba(0, 0, 0, 0.6) 100%
  );

  pointer-events: none;
}
.content {
  position: relative;
  height: 100%;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

/* TOP GOLD TEXT */
.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #d4a24c;
  margin-bottom: 20px;
  font-style: italic;
}

/* MAIN HEADING */
.content h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: #f1ede8;
  letter-spacing: 2px;

  font-size: clamp(42px, 10vw, 110px);
}

.content h1 span {
  font-weight: 400;
  color: #dcd6cf;
}

/* GOLD DIVIDER */
.divider {
  width: 60px;
  height: 2px;
  background: #d4a24c;
  margin: 30px auto;
}

/* DESCRIPTION */
.desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 40px;
}

/* CTA */
.cta {
  cursor: pointer;
  display: inline-block;
}

/* TEXT */
.cta p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);

  transition: all 0.4s ease;
}

/* LINE */
.cta .line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.3);
  margin: 15px auto 0;

  transition: all 0.4s ease;
}
.cta:hover p {
  color: #d4a24c; /* gold */
  letter-spacing: 4px; /* subtle expansion */
}

.cta:hover .line {
  height: 70px; /* grows */
  background: #d4a24c;
}
@media (max-width: 768px) {

  .hero {
    padding: 40px 20px;
  }

  .content {
   justify-content: flex-start;
    padding-top: 120px;
  }

  /* TAGLINE */
  .tagline {
    font-size: 14px;
    margin-bottom: 0;
  }

  /* MAIN HEADING */
  .content h1 {
    font-size: 64px;
    line-height: 1.2;
    letter-spacing: 1px;
  }

  .content h1 span {
    display: block; /* forces clean break */
    margin-top: 5px;
  }

  /* DIVIDER */
  .divider {
    margin: 10px auto;
    width: 40px;
  }

  /* DESCRIPTION */
  .desc {
    font-size: 14px;
    line-height: 1.5;
    padding: 0;
    
    max-width: 90%;
  }

  /* CTA */
  .cta {
    margin-top: 10px;
  }

  .cta p {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .cta .line {
    height: 45px;
  }

}
.content {
  max-width: 100%;
}
.cta:active p {
  color: #d4a24c;
}

.cta:active .line {
  height: 65px;
  background: #d4a24c;
}
/* PAGE FADE */
body {
  opacity: 1;
  transition: opacity 0.6s ease;
}

body.fade-out {
  opacity: 0;
}