.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}

.pulse-heart {
  animation: pulse-heart 2s ease-in-out infinite;
}
@keyframes pulse-heart {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.heartbeat-line {
  animation: heartbeat-opacity 1.5s ease-in-out infinite;
}
@keyframes heartbeat-opacity {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.gradient-hero {
  background: linear-gradient(135deg, #d9704e 0%, #f5c26b 100%);
}

.card-lift {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.card-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(61, 44, 46, 0.1);
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}
.tab-content.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .pulse-heart,
  .heartbeat-line {
    animation: none;
  }
}
