:root {
  --bg-outer: #050504;
  --bg-inner: #102418;
  --gold: #d2a24e;
  --gold-soft: #8a6a34;
  --text: #f5e7c8;
  --muted: #c2ad86;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at center, rgba(35, 70, 46, 0.7) 0%, rgba(11, 18, 12, 0.95) 42%, var(--bg-outer) 72%),
    var(--bg-outer);
  color: var(--text);
}

.teaser-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.ruta-logo {
  display: block;
  width: min(320px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(210, 162, 78, 0.7);
  box-shadow:
    0 0 0 8px rgba(138, 106, 52, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.65),
    0 0 60px rgba(112, 126, 40, 0.18);
  animation: ruta-breathe 8s ease-in-out infinite;
}

@keyframes ruta-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 0 0 8px rgba(138, 106, 52, 0.08),
      0 24px 80px rgba(0, 0, 0, 0.65),
      0 0 60px rgba(112, 126, 40, 0.18);
  }

  50% {
    transform: translateY(-6px) scale(1.015);
    box-shadow:
      0 0 0 10px rgba(138, 106, 52, 0.1),
      0 30px 92px rgba(0, 0, 0, 0.72),
      0 0 78px rgba(112, 126, 40, 0.24);
  }
}

.teaser-copy {
  margin: 42px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 4.8vw, 2.8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text);
  max-width: 760px;
  min-height: 1.9em;
  transition: opacity 350ms ease;
}

.teaser-copy.is-fading {
  opacity: 0;
}

.teaser-note {
  margin: 18px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
