:root {
  --burdeos: #6e2a29;
  --olivo: #90835e;
  --naranja: #dd9a63;
  --crema: #f6efe4;
  --texto: #3a3128;
  --texto-suave: #4a4038;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html,
body {
  margin: 0;
  background: var(--crema);
}

.landing {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  box-sizing: border-box;
  background: linear-gradient(120deg, #fbf7f1 0%, var(--crema) 58%, #efe4d3 100%);
  font-family: Jost, sans-serif;
  color: var(--texto);
  text-align: center;
}

.landing__glow {
  position: absolute;
  right: -20vw;
  top: -25vw;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(144, 131, 94, 0.16), rgba(144, 131, 94, 0) 70%);
  pointer-events: none;
  animation: glow-in 2200ms var(--ease) both;
}

.landing__bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: var(--burdeos);
  transform-origin: top;
  animation: bar-in 1100ms var(--ease) both;
}

.landing__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.landing__logo {
  display: block;
  width: min(300px, 70vw);
  height: auto;
  animation: logo-in 1200ms var(--ease) 250ms both;
}

.landing__line {
  margin-top: clamp(48px, 8vh, 80px);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--burdeos), var(--olivo) 55%, var(--naranja));
  animation: line-in 900ms var(--ease) 800ms both;
}

.landing__title {
  margin: clamp(32px, 5vh, 48px) 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(48px, 9vw, 104px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--burdeos);
  animation: rise-in 1100ms var(--ease) 1050ms both;
}

.landing__phone {
  margin-top: clamp(36px, 6vh, 56px);
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: 0.08em;
  color: var(--texto-suave);
  text-decoration: none;
  transition: color 150ms var(--ease);
  animation: phone-in 1100ms var(--ease) 1450ms both;
}

.landing__phone:hover,
.landing__phone:focus-visible {
  color: var(--burdeos);
}

@keyframes bar-in {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@keyframes glow-in {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes logo-in {
  from { opacity: 0; transform: translateY(18px); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}

@keyframes line-in {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes phone-in {
  from { opacity: 0; transform: translateY(14px); letter-spacing: 0.3em; }
  to { opacity: 1; transform: none; letter-spacing: 0.08em; }
}

@media (prefers-reduced-motion: reduce) {
  .landing *,
  .landing__glow,
  .landing__bar {
    animation: none !important;
  }
}
