:root {
  --bg: #222222;
  --bg-2: #1a1a1a;
  --ink: #f4f1ea;
  --muted: #a29c90;
  --gold: #d8a24a;
  --gold-soft: rgba(216, 162, 74, 0.35);
  --whatsapp: #25d366;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: "Jost", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 50% 25%, #2a2a2a 0%, var(--bg) 45%, var(--bg-2) 100%);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

/* ---------- Sección principal ---------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

/* Marco decorativo tipo cuadro */
.frame {
  position: absolute;
  inset: 22px;
  border: 1px solid var(--gold-soft);
  pointer-events: none;
}
.frame::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(244, 241, 234, 0.06);
}

/* Líneas geométricas (guiño Bauhaus) */
.deco-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.line {
  position: absolute;
  background: var(--gold-soft);
}
.line--v {
  top: 0;
  bottom: 0;
  left: 16%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-soft), transparent);
}
.line--h {
  left: 0;
  right: 0;
  top: 24%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(244, 241, 234, 0.08), transparent);
}
.dot {
  position: absolute;
  right: 18%;
  bottom: 20%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
}

/* ---------- Contenido ---------- */
.content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  animation: rise 1s ease-out both;
}

.logo {
  width: clamp(140px, 22vw, 210px);
  height: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4));
}

.eyebrow {
  font-size: clamp(0.7rem, 1.6vw, 0.82rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 5.5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}

.subtitle {
  font-weight: 300;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 38px;
}

/* Botón WhatsApp */
.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--ink);
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp__icon {
  width: 22px;
  height: 22px;
  fill: var(--gold);
  transition: fill 0.3s ease;
}
.whatsapp:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(216, 162, 74, 0.28);
}
.whatsapp:hover .whatsapp__icon {
  fill: var(--bg);
}

.phone {
  margin-top: 20px;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

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

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .content {
    animation: none;
  }
}

/* Móvil */
@media (max-width: 480px) {
  .frame {
    inset: 14px;
  }
  .line--v {
    left: 10%;
  }
}
