/* ─────────────────────────────────────────────
   Variables & Reset
───────────────────────────────────────────── */
:root {
  --bg:        #F5F2EE;
  --ink:       #1A1714;
  --muted:     #8C8680;
  --accent:    #C9A96E;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
}

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

html, body {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
  /* Grain texture sutil */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
}

/* ─────────────────────────────────────────────
   Línea decorativa superior
───────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: lineDown 1.2s ease forwards;
  opacity: 0;
}

body::after {
  content: '';
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to top, transparent, var(--accent));
  animation: lineDown 1.2s ease forwards;
  opacity: 0;
}

@keyframes lineDown {
  0%   { opacity: 0; height: 0; }
  100% { opacity: 1; height: 60px; }
}

/* ─────────────────────────────────────────────
   Contenedor principal
───────────────────────────────────────────── */
.stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  padding: 3rem 2rem;
  animation: fadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────────────────────────────────────────
   Logo
───────────────────────────────────────────── */
.logo-wrap {
  width: clamp(280px, 28vw, 560px);
  aspect-ratio: 591 / 389;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ─────────────────────────────────────────────
   Separador
───────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: clamp(160px, 40vw, 300px);
}

.divider span {
  flex: 1;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.divider em {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  user-select: none;
}

/* ─────────────────────────────────────────────
   Lema
───────────────────────────────────────────── */
.tagline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: var(--ink);
  max-width: 520px;
  font-style: italic;
}

/* ─────────────────────────────────────────────
   Responsive
───────────────────────────────────────────── */
@media (max-width: 480px) {
  .stage {
    gap: 1.5rem;
    padding: 4rem 1.5rem;
  }
}
