:root {
  --bg: #cbbfb0;
  --bg-deep: #bfb3a4;
  --white: #f5f2ec;
  --gold: #d8b48a;
  --soft: rgba(255,255,255,0.6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background: linear-gradient(180deg, var(--bg), var(--bg-deep));
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Overlay editorial */
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 35%, rgba(0,0,0,0.08));
  pointer-events: none;
}

/* Layout */
.container {
  text-align: center;
  max-width: 900px;
  padding: 20px;

  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 1.2s ease forwards;
}

/* Marca */
.brand {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 20px;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;

  transition: all 0.4s ease;
}

.brand:hover {
  letter-spacing: 6px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Textos */
.subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--white);

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.6s;
}

.highlight {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-style: italic;
  color: var(--gold);
  margin-top: 5px;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.9s;
}

.coming {
  margin-top: 60px;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--soft);

  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.3s;
}

/* Animaciones */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .brand {
    font-size: 46px;
  }

  .subtitle {
    font-size: 22px;
  }

  .highlight {
    font-size: 26px;
  }
}
