body {
  margin: 0;
  min-height: 100vh;
  font-family: "Cormorant Garamond", serif;
  cursor: none;
  color: #d6c38c;

  background: radial-gradient(circle at center, #1b2e1b 0%, #0f1c0f 60%, #091409 100%);

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Subtle texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
  opacity: 0.05;
  pointer-events: none;
}

.container {
  padding: 20px;
  max-width: 1200px;
}

/* Brand section */
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.brand img {
  height: 55px;
}

/* Brand text */
.brand h1 {
  letter-spacing: 10px;
  font-size: 30px;
  text-transform: uppercase;

  background: linear-gradient(
    120deg,
    #b89c5a 0%,
    #d6c38c 25%,
    #ffffff 40%,
    #f5e7b8 50%,
    #ffffff 60%,
    #d6c38c 75%,
    #b89c5a 100%
  );

  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: goldWave 8s linear infinite;
}

.line {
  width: 160px;
  height: 1px;
  background: #d6c38c;
  opacity: 0.4;
  margin: 30px auto;
}

/* Main heading */
.main-heading {
  font-size: 90px;
  letter-spacing: 10px;
  margin: 0;

  background: linear-gradient(
    120deg,
    #b89c5a 0%,
    #d6c38c 25%,
    #ffffff 40%,
    #f5e7b8 50%,
    #ffffff 60%,
    #d6c38c 75%,
    #b89c5a 100%
  );

  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: goldWave 6s linear infinite;
}

@keyframes goldWave {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.tagline {
  letter-spacing: 6px;
  font-size: 14px;
  opacity: 0.7;
  margin-top: 40px;
}

/* Magnifier */
.magnifier {
  position: fixed;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
  display: none;

  backdrop-filter: blur(6px);
  border: 1px solid rgba(214,195,140,0.25);

  box-shadow:
    0 0 25px rgba(214,195,140,0.15),
    inset 0 0 30px rgba(255,255,255,0.08);
}

/* ========================= */
/* MOBILE RESPONSIVE DESIGN  */
/* ========================= */

@media (max-width: 768px) {

  body {
    cursor: auto;
    padding: 40px 20px;
    align-items: flex-start;
  }

  .magnifier {
    display: none !important;
  }

  .brand {
    flex-direction: column;
    gap: 10px;
  }

  .brand h1 {
    font-size: 22px;
    letter-spacing: 6px;
  }

  .main-heading {
    font-size: 42px;
    letter-spacing: 6px;
    line-height: 1.2;
  }

  .tagline {
    font-size: 13px;
    letter-spacing: 4px;
  }

  .line {
    width: 120px;
  }
}



.signature {
  position: fixed;
  bottom: 25px;
  right: 35px;

  font-size: 15px;
  letter-spacing: 3px;
  font-weight: 500;

  background: linear-gradient(
    120deg,
    #f5e7b8,
    #ffffff,
    #f5e7b8
  );

  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: goldWave 8s linear infinite;

  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

