:root {
  --rose: #b76e79;
  --rose-deep: #8e4a55;
  --rose-soft: #d4a5ac;
  --cream: #faf6f2;
  --cream-soft: rgba(250, 246, 242, 0.85);
  --gold: #d4af37;
  --gold-soft: #e8c967;
  --midnight: #1a1a2e;
  --midnight-soft: #252542;
  --plum: #2d2438;

  --shadow-soft: 0 8px 32px rgba(26, 26, 46, 0.3);
  --shadow-deep: 0 16px 48px rgba(26, 26, 46, 0.5);
  --glow-rose: 0 0 60px rgba(183, 110, 121, 0.2);
  --glow-gold: 0 0 40px rgba(212, 175, 55, 0.15);

  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cormorant Garamond", Georgia, serif;
  background: linear-gradient(
    180deg,
    var(--midnight) 0%,
    var(--plum) 50%,
    var(--midnight) 100%
  );
  color: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.7;
}

/* Ambient Effects */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 150 150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='150' height='150' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.4;
  z-index: 100;
}

.warm-glow {
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 80vh;
  background: radial-gradient(
    ellipse at 50% 30%,
    rgba(183, 110, 121, 0.15) 0%,
    rgba(212, 175, 55, 0.08) 30%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
  animation: warmPulse 6s ease-in-out infinite;
}

@keyframes warmPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.floating-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.6), transparent);
  border-radius: 50%;
  animation: floatParticle 10s ease-in-out infinite;
}

@keyframes floatParticle {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Main Layout */
main {
  position: relative;
  z-index: 2;
}

/* Section Styling */
section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ornament {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--rose-soft);
  font-style: italic;
}

/* Hero Section */
.hero {
  background: radial-gradient(
    ellipse at 50% 70%,
    rgba(183, 110, 121, 0.1) 0%,
    transparent 50%
  );
}

.hero-content {
  text-align: center;
  max-width: 700px;
  animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anniversary-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(183, 110, 121, 0.2);
  border: 1px solid rgba(183, 110, 121, 0.4);
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 2rem;
}

.badge-icon {
  font-size: 1rem;
}

.badge-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rose-soft);
}

.anniversary-number {
  margin-bottom: 2rem;
  position: relative;
}

.number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(6rem, 18vw, 10rem);
  font-weight: 600;
  background: linear-gradient(
    135deg,
    var(--rose-soft),
    var(--rose),
    var(--gold)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  animation: gentleGlow 4s ease-in-out infinite;
}

@keyframes gentleGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(183, 110, 121, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 35px rgba(183, 110, 121, 0.5));
  }
}

.number-label {
  display: block;
  font-size: 1.2rem;
  color: var(--cream-soft);
  font-style: italic;
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}

.hero-title {
  margin-bottom: 2rem;
}

.title-line {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.title-accent {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-top: 0.5rem;
}

.hero-message {
  font-size: 1.15rem;
  color: var(--cream-soft);
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto 3rem;
}

.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: gentleBounce 2.5s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.85rem;
  color: rgba(250, 246, 242, 0.5);
  letter-spacing: 0.1em;
  font-style: italic;
}

.scroll-arrow {
  font-size: 1.3rem;
  color: var(--rose-soft);
}

@keyframes gentleBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* Journey Section */
.journey-section {
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(212, 175, 55, 0.06) 0%,
    transparent 50%
  );
  min-height: auto;
  padding: 6rem 2rem;
}

.journey-content {
  max-width: 650px;
  width: 100%;
}

.journey-card {
  background: linear-gradient(
    145deg,
    rgba(45, 36, 56, 0.8),
    rgba(26, 26, 46, 0.9)
  );
  border: 1px solid rgba(183, 110, 121, 0.25);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-deep), var(--glow-rose);
}

.journey-text {
  font-size: 1.1rem;
  color: var(--cream-soft);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.journey-text:last-child {
  margin-bottom: 0;
}

.journey-text.highlight {
  color: var(--cream);
  padding: 1.2rem 1.5rem;
  background: rgba(183, 110, 121, 0.15);
  border-left: 3px solid var(--rose);
  border-radius: 0 12px 12px 0;
  margin: 1.5rem 0;
}

/* Future Section */
.future-section {
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(183, 110, 121, 0.08) 0%,
    transparent 50%
  );
  min-height: auto;
  padding: 6rem 2rem;
}

.future-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  max-width: 900px;
}

.future-card {
  background: linear-gradient(
    145deg,
    rgba(45, 36, 56, 0.7),
    rgba(26, 26, 46, 0.85)
  );
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  width: 260px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.future-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-deep), var(--glow-gold);
}

.future-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.future-card .card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.future-card .card-text {
  font-size: 0.95rem;
  color: var(--cream-soft);
  line-height: 1.6;
}

/* Invitation Section */
.invitation-section {
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(212, 175, 55, 0.06) 0%,
    transparent 50%
  );
}

.invitation-card {
  position: relative;
  width: min(520px, 92vw);
  background: linear-gradient(
    145deg,
    rgba(45, 36, 56, 0.9),
    rgba(26, 26, 46, 0.95)
  );
  border-radius: 12px;
  padding: 4px;
  box-shadow: var(--shadow-deep), var(--glow-rose);
  animation: cardReveal 1s ease-out;
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.invitation-border {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  pointer-events: none;
}

.invitation-inner {
  padding: 2.5rem 2rem;
}

.invitation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(183, 110, 121, 0.25);
}

.invitation-date {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.95rem;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.03em;
}

.invitation-seal {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(183, 110, 121, 0.4);
}

.invitation-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.invitation-greeting {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--rose-soft);
  margin-bottom: 1.2rem;
}

.invitation-text {
  margin-bottom: 1rem;
  color: var(--cream-soft);
}

.invitation-text.highlight {
  color: var(--cream);
  font-weight: 500;
  padding: 1rem 1.2rem;
  background: rgba(183, 110, 121, 0.12);
  border-left: 3px solid var(--rose);
  border-radius: 0 10px 10px 0;
  margin-top: 1rem;
}

.invitation-signature {
  margin-top: 1.5rem;
  text-align: right;
  font-style: italic;
}

.invitation-signature span {
  display: block;
  color: var(--cream-soft);
}

.invitation-signature .signature-heart {
  color: var(--rose);
  font-weight: 600;
  margin-top: 0.3rem;
}

/* Menu Section */
.menu-section {
  background: radial-gradient(
    ellipse at 30% 70%,
    rgba(183, 110, 121, 0.08) 0%,
    transparent 50%
  );
  min-height: auto;
  padding: 6rem 2rem;
}

.menu-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  max-width: 900px;
}

.wine-glass-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.wine-glass {
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 10px 25px rgba(183, 110, 121, 0.25));
}

.glass-bowl {
  width: 90px;
  height: 110px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.04)
  );
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  position: relative;
  overflow: hidden;
}

.wine-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: linear-gradient(
    180deg,
    rgba(183, 110, 121, 0.85) 0%,
    rgba(142, 74, 85, 0.95) 100%
  );
  transition: height 0.3s ease-out;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.wine-shine {
  position: absolute;
  top: 12%;
  left: 18%;
  width: 16px;
  height: 35px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25), transparent);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.glass-stem {
  width: 7px;
  height: 55px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.08)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.glass-base {
  width: 60px;
  height: 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.04)
  );
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  margin-top: -2px;
}

.wine-note {
  font-size: 0.85rem;
  color: var(--cream-soft);
  font-style: italic;
  opacity: 0.7;
}

.menu-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}

.menu-card {
  width: 150px;
  height: 180px;
  position: relative;
  perspective: 1000px;
  cursor: pointer;
}

.card-front,
.card-back {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1rem;
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.card-front {
  background: linear-gradient(
    145deg,
    rgba(212, 175, 55, 0.12),
    rgba(212, 175, 55, 0.04)
  );
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-soft);
}

.card-back {
  background: linear-gradient(145deg, var(--rose), var(--rose-deep));
  border: 1px solid rgba(212, 175, 55, 0.3);
  transform: rotateY(180deg);
  box-shadow: var(--shadow-deep);
}

.menu-card:hover .card-front {
  transform: rotateY(-180deg);
}

.menu-card:hover .card-back {
  transform: rotateY(0);
}

.menu-card .card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.menu-card .card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.card-hint {
  font-size: 0.7rem;
  color: var(--cream-soft);
  font-style: italic;
  opacity: 0.8;
}

.card-description {
  font-size: 0.8rem;
  color: var(--cream-soft);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.card-tag {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  margin-top: auto;
}

/* Love Letter Section */
.love-letter-section {
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(183, 110, 121, 0.1) 0%,
    transparent 50%
  );
  min-height: auto;
  padding: 6rem 2rem;
}

.love-letter-container {
  position: relative;
  max-width: 680px;
  width: 100%;
}

.letter-card {
  background: linear-gradient(
    145deg,
    rgba(45, 36, 56, 0.9),
    rgba(26, 26, 46, 0.95)
  );
  border: 1px solid rgba(183, 110, 121, 0.3);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-deep), var(--glow-rose);
  position: relative;
  overflow: hidden;
}

.letter-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rose-deep),
    var(--rose),
    var(--gold),
    var(--rose),
    var(--rose-deep)
  );
}

.letter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.letter-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.letter-hearts {
  display: flex;
  gap: 0.3rem;
  color: var(--rose);
  font-size: 0.9rem;
}

.letter-hearts span {
  animation: heartPulse 1.5s ease-in-out infinite;
}

.letter-hearts span:nth-child(2) {
  animation-delay: 0.2s;
}
.letter-hearts span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes heartPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

.letter-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--rose-soft);
  margin-bottom: 2rem;
  text-align: center;
}

.letter-content {
  margin-bottom: 2rem;
}

.letter-text {
  font-size: 1.05rem;
  color: var(--cream-soft);
  margin-bottom: 1.3rem;
  line-height: 1.85;
}

.letter-text.highlight {
  color: var(--cream);
  padding: 1.2rem 1.5rem;
  background: rgba(183, 110, 121, 0.12);
  border-left: 3px solid var(--rose);
  border-radius: 0 12px 12px 0;
  margin: 1.5rem 0;
}

.letter-signature {
  text-align: right;
  font-style: italic;
}

.signature-text {
  display: block;
  font-size: 1rem;
  color: var(--cream-soft);
  margin-bottom: 0.4rem;
}

.letter-signature .signature-heart {
  font-size: 1.5rem;
}

.floating-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.heart-float {
  position: absolute;
  font-size: 1.1rem;
  animation: heartFloat 4.5s ease-in-out forwards;
  opacity: 0;
}

@keyframes heartFloat {
  0% {
    transform: translateY(0) scale(0);
    opacity: 0;
  }
  15% {
    opacity: 0.9;
    transform: translateY(-15px) scale(1);
  }
  100% {
    transform: translateY(-140px) scale(0.4);
    opacity: 0;
  }
}

/* RSVP Section */
.rsvp-section {
  background: radial-gradient(
    ellipse at 50% 70%,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 50%
  );
}

.rsvp-container {
  text-align: center;
  max-width: 500px;
}

.rsvp-seal {
  width: 75px;
  height: 75px;
  background: linear-gradient(145deg, var(--rose), var(--rose-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow:
    var(--shadow-soft),
    0 0 25px rgba(183, 110, 121, 0.35);
}

.seal-icon {
  font-size: 2.2rem;
}

.rsvp-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1rem;
}

.rsvp-text {
  font-size: 1.1rem;
  color: var(--cream-soft);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.rsvp-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  background: rgba(183, 110, 121, 0.12);
  border: 1px solid rgba(183, 110, 121, 0.2);
  padding: 1rem 1.3rem;
  border-radius: 14px;
  min-width: 110px;
}

.detail-icon {
  font-size: 1.4rem;
}

.detail-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rose-soft);
}

.detail-value {
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 500;
}

.rsvp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: var(--cream);
  border: none;
  padding: 1.1rem 2.8rem;
  border-radius: 999px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(183, 110, 121, 0.4);
  transition: all 0.3s ease;
}

.rsvp-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(183, 110, 121, 0.5);
}

.rsvp-button:active {
  transform: translateY(-1px) scale(1);
}

.button-icon {
  font-size: 1.3rem;
}

/* Success Section */
.success-section {
  display: none;
  min-height: 100vh;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(183, 110, 121, 0.15) 0%,
    transparent 60%
  );
  position: relative;
}

.success-section.visible {
  display: flex;
}

.confetti-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
}

.success-content {
  text-align: center;
  max-width: 550px;
  animation: fadeInUp 0.8s ease-out;
}

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: heartPulse 1s ease-in-out infinite;
}

.success-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  color: var(--rose-soft);
  margin-bottom: 1.5rem;
}

.success-text {
  font-size: 1.15rem;
  color: var(--cream-soft);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.success-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.success-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: rgba(183, 110, 121, 0.2);
  border: 1px solid rgba(183, 110, 121, 0.25);
  padding: 1rem 1.3rem;
  border-radius: 12px;
  min-width: 90px;
}

.detail-emoji {
  font-size: 1.8rem;
}

.detail-name {
  font-size: 0.8rem;
  color: var(--cream);
}

.success-closing {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold);
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(26, 26, 46, 0.6));
}

.footer-hearts {
  display: block;
  color: var(--rose);
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  margin-bottom: 1rem;
}

.footer-text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-subtext {
  font-size: 0.9rem;
  color: var(--cream-soft);
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 4rem 1.5rem;
  }

  .journey-card,
  .letter-card {
    padding: 2rem 1.5rem;
  }

  .future-cards {
    flex-direction: column;
    align-items: center;
  }

  .future-card {
    width: 100%;
    max-width: 300px;
  }

  .invitation-inner {
    padding: 2rem 1.5rem;
  }

  .menu-showcase {
    gap: 2rem;
  }

  .rsvp-details {
    gap: 0.8rem;
  }

  .detail-item {
    min-width: 100px;
    padding: 0.8rem 1rem;
  }
}

@media (max-width: 480px) {
  .anniversary-badge {
    padding: 0.4rem 1rem;
  }

  .hero-message {
    font-size: 1rem;
  }

  .menu-cards {
    gap: 0.8rem;
  }

  .menu-card {
    width: 140px;
    height: 165px;
  }

  .success-details {
    gap: 0.8rem;
  }

  .success-detail {
    min-width: 80px;
    padding: 0.8rem 1rem;
  }
}
