.card {
  position: absolute;
  bottom: 12px;
  left: 4%;
  transform: translateY(-100%);
  width: 92%;
  height: 85%;
  background: #fff;
  background-image:
    radial-gradient(
      circle at 100% 0%,
      rgba(212, 175, 55, 0.03) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 0% 100%,
      rgba(212, 175, 55, 0.03) 0%,
      transparent 25%
    );
  border-radius: 4px; /* Sharper corners look more like premium cardstock */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 6;
  padding: 30px;
  box-sizing: border-box;
}

/* Elegant Inner Frame */
.card::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  pointer-events: none;
  z-index: 1;
}

.card.tucked {
  transform: translateY(0) scale(0.96);
  opacity: 0.95;
}

/* Typography Enhancements */
.c-name {
  font-family: "Allura", cursive;
  font-size: clamp(1.7rem, 5.5vw, 2.2rem);
  font-weight: 900;
  color: #5c0f22; /* Deep, rich berry tone */
  letter-spacing: 5px;
  text-align: center;
  z-index: 2;
  margin: 0;
}

.c-weds {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  color: #d4af37; /* Classic Gold */
  margin: 20px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
}

/* The horizontal dividers flanking 'weds' */
.c-weds::before,
.c-weds::after {
  content: "";
  width: 25px;
  height: 1px;
  background: linear-gradient(to var(--direction, right), #d4af37, transparent);
}
.c-weds::before {
  --direction: left;
}
.c-weds::after {
  --direction: right;
}

/* Subtle Texture Overlay */
.card-texture {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/dark-exa.png");
  opacity: 0.3;
  pointer-events: none;
}
