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

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

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

body {
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(35, 70, 46, 0.72) 0%, rgba(11, 18, 12, 0.96) 43%, var(--bg-outer) 73%),
    var(--bg-outer);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 22%, rgba(210, 162, 78, 0.035), transparent 28%),
    radial-gradient(circle at 78% 75%, rgba(112, 126, 40, 0.045), transparent 30%);
  content: "";
  pointer-events: none;
}

::selection {
  background: rgba(210, 162, 78, 0.28);
  color: var(--text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.teaser-shell {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: max(36px, env(safe-area-inset-top)) 24px max(36px, env(safe-area-inset-bottom));
  text-align: center;
}

.logo-wrap {
  position: relative;
  width: min(320px, 72vw);
  aspect-ratio: 1;
}

.logo-wrap::before {
  position: absolute;
  inset: -11%;
  border: 1px solid rgba(210, 162, 78, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(112, 126, 40, 0.1);
  content: "";
  pointer-events: none;
}

.ruta-logo {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(210, 162, 78, 0.7);
  border-radius: 50%;
  object-fit: cover;
  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;
}

.teaser-kicker,
.teaser-note {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.teaser-kicker {
  margin: 38px 0 0;
  color: var(--gold);
  font-size: 0.64rem;
  letter-spacing: 0.3em;
}

.teaser-copy {
  max-width: 760px;
  min-height: 2.1em;
  margin: 18px 0 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 4.8vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.018em;
  line-height: 1.02;
  text-wrap: balance;
  transition: opacity 350ms ease, transform 350ms ease;
}

.teaser-copy.is-fading {
  opacity: 0;
  transform: translateY(4px);
}

.teaser-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
}

@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);
  }
}

@media (max-height: 720px) {
  .teaser-shell {
    padding-block: 28px;
  }

  .logo-wrap {
    width: min(250px, 57vh, 70vw);
  }

  .teaser-kicker {
    margin-top: 28px;
  }
}

@media (max-width: 420px) {
  .teaser-shell {
    padding-inline: 20px;
  }

  .teaser-note {
    letter-spacing: 0.21em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ruta-logo {
    animation: none;
  }

  .teaser-copy {
    transition: none;
  }
}
