/* LETTER SECTION */
.letter-section {
  padding: 80px 24px 96px;
  background: var(--cream);
}
.letter-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.letter-decoration {
  text-align: center; margin-bottom: 32px;
}
.letter-rose { font-size: 3rem; animation: sway 4s ease-in-out infinite; }
@keyframes sway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.letter-paper {
  background: white;
  padding: 64px 72px;
  box-shadow: 0 8px 48px rgba(44,26,31,0.1), 0 2px 8px rgba(44,26,31,0.05);
  position: relative;
  border-top: 3px solid var(--rose);
}
.letter-paper::before {
  content: '';
  position: absolute;
  left: 80px; top: 0; bottom: 0; width: 1px;
  background: rgba(200,89,106,0.12);
}

.letter-date {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.letter-to {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--deep);
  margin-bottom: 36px;
}

.letter-body p {
  font-family: var(--ff-display);
  font-size: 1.08rem;
  line-height: 2;
  color: var(--deep);
  margin-bottom: 24px;
  padding-left: 8px;
}
.letter-sign {
  margin-top: 40px;
  font-style: italic;
  color: var(--muted) !important;
  font-size: 1rem !important;
}
.letter-name {
  font-family: var(--ff-display) !important;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  color: var(--rose) !important;
  font-style: italic;
  margin-bottom: 0 !important;
}

.letter-postscript {
  padding: 32px 0 0;
  text-align: center;
}
.ps-line {
  width: 80px; height: 1px; background: var(--rose-light);
  margin: 0 auto 20px;
}
.letter-postscript p {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
}
.letter-postscript em { font-style: normal; color: var(--rose); font-weight: 600; }

/* PROMISES */
.promises-section {
  padding: 96px 24px;
  background: var(--rose-pale);
}
.promises-inner { max-width: 1000px; margin: 0 auto; }
.promises-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}
.promise-card {
  background: white;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.promise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(200,89,106,0.12);
}
.promise-icon { font-size: 2rem; margin-bottom: 16px; }
.promise-card h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--deep);
}
.promise-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--muted);
}

/* WISH SECTION */
.wish-section {
  padding: 96px 24px;
  background: var(--deep);
  text-align: center;
}
.wish-inner { max-width: 640px; margin: 0 auto; }
.wish-candles { font-size: 2.5rem; margin-bottom: 32px; letter-spacing: 0.5em; }
.wish-section h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--rose-light);
  margin-bottom: 28px;
}
.wish-section p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.wish-sub {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.15rem !important;
  color: var(--gold-light) !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .letter-section { padding: 48px 16px 64px; }
  .letter-paper { padding: 32px 22px; }
  .letter-paper::before { display: none; }
  .letter-body p { padding-left: 0; font-size: 1rem; line-height: 1.85; }
  .letter-to { font-size: 1.3rem; }
  .promises-section { padding: 64px 16px; }
  .promises-grid { gap: 8px; }
  .promise-card { padding: 28px 20px; }
  .wish-section { padding: 64px 16px; }
}
