/* LANDING */
#landing {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.landing-inner {
  text-align: center;
}

.landing-main {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeIn 2s forwards;
}

.landing-sub, .enter-cta {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 1rem;
  font-style: italic;
  color: var(--soft);
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 2s forwards;
  animation-delay: 1.4s;
} 

.landing-sub, .enter-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(60,40,25,0.75);
  text-decoration: none;
  position: relative;
}

.landing-sub::after, .enter-cta::after {
  content: "→";
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.6;
}

.landing-sub:hover::after, .enter-cta:hover::after {
  transform: translateX(6px);
  opacity: 1;
}

.landing-sub:hover, .enter-cta:hover {
  color: rgba(60,40,25,1);
}


.landing-sub:hover, .enter-cta:hover {
  color: var(--text);
}



@keyframes fadeIn {
  to { opacity: 1; }
}

.enter-cta {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;

  padding: 0.45rem 1.1rem;
  border-radius: 999px;

  font-style: italic;
  font-size: 0.9rem;
  text-decoration: none;

  color: rgba(60,40,25,0.85);
  background: rgba(60,40,25,0.08);

  cursor: pointer;
  animation: fadeIn 8s forwards, breathe 3s ease-in-out infinite;
  transition:
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.enter-cta .arrow {
  transition: transform 0.35s ease;
}

.enter-cta:hover {
  background: rgba(60,40,25,0.18);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(60,40,25,0.15);
}

.enter-cta:hover .arrow {
  transform: translateX(6px);
}

@keyframes breathe {
  0%, 100% {
    box-shadow: 0 0 0 rgba(60,40,25,0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(60,40,25,0.06);
  }
}