.countdown-module {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
  background-color: #e8d6d2;
  padding: 30px 24px 40px;
  text-align: center;
  overflow: hidden;
}

.countdown-ornament {
  position: absolute;
  top: -10px;
  right: -20px;
  width: 200px;
  z-index: 0;
  opacity: 0.9;
}

.countdown-title {
  position: relative;
  z-index: 1;
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  color: #a9822f;
  font-size: 30px;
  margin: 0 0 32px;
}

.countdown-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.countdown-box {
  background-color: #fff9f1;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.countdown-number {
  font-family: 'Times New Roman', Times, serif;
  font-size: 24px;
  color: #a9822f;
  font-weight: 600;
  line-height: 1;
}

.countdown-label {
  font-family: 'Times New Roman', Times, serif;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8d7a3f;
  margin-top: 5px;
}

.rsvp-note {
  font-family: 'Times New Roman', Times, serif;
  color: #a9822f;
  font-size: 16px;
  line-height: 1.55;
  max-width: 280px;
  margin: 0 auto 24px;
}

.rsvp-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  border: 1px solid #a9822f;
  color: #a9822f;
  font-family: 'Times New Roman', Times, serif;
  letter-spacing: 1.5px;
  padding: 10px 26px;
  text-decoration: none;
  font-size: 13px;
  background: transparent;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.rsvp-btn:hover {
  background-color: #a9822f;
  color: #fff9f1;
}

.monogram {
  width: 130px;
  display: block;
  margin: 34px auto 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 360px) {
  .countdown-box { width: 56px; height: 56px; }
  .countdown-number { font-size: 20px; }
  .countdown-title { font-size: 26px; }
  .rsvp-note { font-size: 14px; }
  .rsvp-btn { font-size: 12px; padding: 9px 22px; }
  .monogram { width: 105px; margin-top: 26px; }
}
