/* Letter section */
.letter-section {
  margin-bottom: 80px;
}
.letter-body::before {
  content: "🍂";
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.5rem;
}
.letter-body {
  max-width: 750px;
  margin: 0 auto;
  background: var(--soft-white);
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(99, 46, 10, 0.08);
  position: relative;
  font-family: "EB Garamond", serif;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #233a45;
}
.letter-body p {
  margin-bottom: 20px;
}
.letter-body strong {
  color: #632e0a;
  font-weight: 500;
}
.letter-signature {
  font-family: "EB Garamond", serif;
  color: #8a3e3e;
  margin-top: 40px;
  font-size: 1.1rem;
  position: relative;
  padding-left: 30px;
}
.letter-signature::before {
  content: "~";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2rem;
  color: #8a3e3e;
  opacity: 0.3;
  font-family: "Cormorant Garamond", serif;
}
/* Legacy parity for signature lines */
.signature-warmth {
  font-style: italic;
  color: var(--wood-ash);
  font-size: 1.05rem;
}
.signature-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--cider-brown);
  font-weight: 600;
}
