:root {
  --bg: #0f0f12;
  --card: #18181d;
  --text: #f2f2f4;
  --muted: #b8b8c2;
  --accent: #ff7ab6;
  --accent-2: #7ad7ff;
  --radius: 20px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.hero {
  padding: 56px 20px 30px;
  text-align: center;
  background: radial-gradient(1200px circle at 50% -20%, #232338, transparent 60%);
}
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 8px; }
.sub { color: var(--muted); margin: 0; }

.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  margin: 16px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tile {
  background: #111116;
  border-radius: 14px;
  padding: 12px;
}
.tile img {
  width: 100%;
  border-radius: 12px;
  display: block;
  margin-top: 8px;
}

.title-block {
  display: flex;
  flex-direction: column;
  align-items: center;   /* <<< centers the welcome line under the title */
}
.buttons { display: flex; flex-wrap: wrap; gap: 10px; }

.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid #2a2a33;
  background: linear-gradient(180deg, #202027, #16161b);
  cursor: pointer;
}
.btn:hover { border-color: #3a3a46; }
.btn.subtle { background: transparent; }

.reasons { padding-left: 18px; color: var(--muted); }
.foot {
  text-align: center;
  padding: 30px 12px 50px;
  color: var(--muted);
  font-size: 0.9rem;
}
.anniversary-header{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin: 40px 0 25px;
  text-align:center;
}

.title-block{
  display:flex;
  flex-direction:column;   /* title on top, welcome under it */
  align-items:center;
  justify-content:center;
}

.anni-title{
  font-family: 'Caveat', cursive;  /* keep your font */
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 0;               /* prevents extra jump spacing */
}

.welcome-sub{
  margin-top: 6px;         /* sits UNDER title */
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 500;
  color: #ffd9ec;
  opacity: 0.95;
}

.chibi{
  width: clamp(60px, 12vw, 110px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.35));
  user-select: none;
  pointer-events: none;
}

/* RIGHT chibi bigger */
.right-chibi{
  width: clamp(80px, 16vw, 150px);
  transform: scale(0.9);
}
/* mobile stack */
@media (max-width: 480px){
  .anniversary-header{
    flex-direction:column;
    gap:8px;
  }
  .chibi-right{
    transform: scale(1.1);
  }
}

/* =========================================================
   ENVELOPE + ANIMATED TRIFOLD LETTER  — FINAL CLEAN VERSION
   ========================================================= */

.envelope-section{
  display:grid;
  place-items:center;
  margin: 8px 0 26px;
  position: relative;
  transition: margin-bottom 0.6s ease; /* smooth push down/up */
}

.env-wrap{
  cursor:pointer;
  user-select:none;
  outline:none;
  transform-style:preserve-3d;
}

.env{
  position:relative;
  width:min(520px,92vw);
  height:clamp(240px,38vw,300px);
  border-radius:18px;
  background:transparent;
  transform-style:preserve-3d;
  perspective:1800px;
  overflow:hidden; /* closed state clips */
}

/* --------------------------
   Envelope Back Panel
   -------------------------- */
.env-back{
  position:absolute;
  inset:0;
  border-radius:18px;
  background:
    radial-gradient(800px circle at 10% -40%, rgba(255,122,182,0.22), transparent 60%),
    radial-gradient(700px circle at 110% 0%, rgba(122,215,255,0.16), transparent 55%),
    linear-gradient(180deg,#20202b,#15151c);
  box-shadow:
    0 18px 50px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.05) inset;
  z-index:1;
}

/* ---------- Pocket (STATIC front lip) ---------- */
.env-pocket{
  position:absolute;
  left:0; right:0; bottom:0;
  height:62%;
  border-bottom-left-radius:18px;
  border-bottom-right-radius:18px;
  background: linear-gradient(180deg,#1a1a23,#0f0f14);
  clip-path: polygon(0 0, 50% 65%, 100% 0, 100% 100%, 0 100%);
  border-top:1px solid rgba(255,255,255,0.06);
  z-index:6;
  pointer-events:none;
}

/* ---------- Shared flap base ---------- */
.env-flap-top,
.env-flap-bottom{
  position:absolute;
  left:0; right:0;
  transform-style:preserve-3d;
  will-change:transform;
  z-index: 7;
  backface-visibility: visible; /* ✅ critical: don't disappear */
}

/* Give flaps a visible backside */
.env-flap-top::after,
.env-flap-bottom::after{
  content:"";
  position:absolute;
  inset:0;
  background: inherit;
  transform: rotateX(180deg); /* backside */
  backface-visibility: visible;
}

/* ---------- Bottom flap (ANIMATED) ---------- */
.env-flap-bottom{
  bottom:0;
  height:62%;
  border-bottom-left-radius:18px;
  border-bottom-right-radius:18px;
  background: linear-gradient(180deg,#262637,#15151d);
  clip-path: polygon(0 0, 50% 65%, 100% 0, 100% 100%, 0 100%);
  border-top:1px solid rgba(255,255,255,0.08);

  transform-origin: bottom center;
  transform: translateZ(2px) rotateX(0deg);
  z-index:3;
}

/* ---------- Top flap (ANIMATED) ---------- */
.env-flap-top{
  top:0;
  height:70%;
  border-top-left-radius:18px;
  border-top-right-radius:18px;
  background: linear-gradient(180deg,#232334,#171720);
  clip-path: polygon(0 0, 100% 0, 50% 72%);
  border-bottom:1px solid rgba(255,255,255,0.06);

  transform-origin: top center;
  transform: translateZ(3px) rotateX(0deg);
  z-index:2;
}

/* ---------- OPEN STATE (KEYFRAMES) ---------- */
.env-wrap.open .env-flap-top{
  animation: openTop 2.0s cubic-bezier(.18,.9,.2,1) forwards;
}
.env-wrap.open .env-flap-bottom{
  animation: openBottom 1.9s cubic-bezier(.18,.9,.2,1) forwards;
}

/* Stop a little short of flat-behind to keep it visible */
@keyframes openTop{
  0%   { transform: translateZ(3px) rotateX(0deg); }
  60%  { transform: translateZ(3px) rotateX(135deg); }
  100% { transform: translateZ(3px) rotateX(155deg); }
}

@keyframes openBottom{
  0%   { transform: translateZ(2px) rotateX(0deg); }
  60%  { transform: translateZ(2px) rotateX(-135deg); }
  100% { transform: translateZ(2px) rotateX(-155deg); }
}
/* --------------------------
   Wax Seal
   -------------------------- */
.env-seal{
  position:absolute;
  left:50%; top:55%;
  transform: translate(-50%,-50%) translateZ(30px); /* ✅ in front of flaps */
  width:56px; height:56px;
  border-radius:999px;
  background: radial-gradient(circle at 30% 20%, #ffb9d7, #ff7ab6 60%, #d94b8d);
  display:grid;
  place-items:center;
  font-size:22px;
  box-shadow:0 8px 18px rgba(0,0,0,.45);
  z-index:40;
  transform-style:preserve-3d;
  backface-visibility:hidden;
  transition: opacity .4s ease, transform .4s ease;
}


/* =========================================================
   TRIFOLD LETTER — folded -> unfolds and extends
   ========================================================= */

.letter{
  position:absolute;
  left:50%;
  top:0;
  width:88%;
  height:260%;
  transform-style:preserve-3d;
  perspective:1000px;

  /* completely hidden + folded */
  transform: translateX(-50%) translateY(70%) scaleY(0.33);
  transform-origin: top center;

  transition: transform 1.1s cubic-bezier(.2,.8,.2,1);
  z-index:3;
}
/* Top fold (with content) */
.fold1{
  top:0;
  z-index:3;
  transform-origin: top center;
  transform: translateZ(6px);

  /* ruled paper + faint BOTTOM crease */
  background:
    /* bottom crease cue */
    linear-gradient(
      to bottom,
      transparent 0%,
      transparent 94%,
      rgba(0,0,0,0.08) 96%,
      transparent 100%
    ),
    /* ruled lines */
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 22px,
      rgba(0,0,0,0.045) 23px
    ),
    #f7f3ea;
}


/* Middle fold (hidden + folded) */
.fold2{
  top:33.333%;
  z-index:2;
  transform-origin: top center;
  transform: translateZ(3px) rotateX(180deg);

  opacity:0;
  visibility:hidden;
  backface-visibility: hidden;
  background:
    /* top crease (visible when unfolding) */
    linear-gradient(to bottom, rgba(0,0,0,0.10), transparent 10px),
    /* soft “fold shadow” just below crease */
    linear-gradient(to bottom, rgba(0,0,0,0.04), transparent 30px),
    /* ruled lines */
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 22px,
      rgba(0,0,0,0.045) 23px
    ),
    #f7f3ea;
}


/* Bottom fold (hidden + folded) */
.fold3{
  top:66.666%;
  z-index:1;
  transform-origin: top center;
  transform: translateZ(0px) rotateX(180deg);

  opacity:0;
  visibility:hidden;
  backface-visibility: hidden;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.09), transparent 10px),
    linear-gradient(to bottom, rgba(0,0,0,0.035), transparent 30px),
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 22px,
      rgba(0,0,0,0.045) 23px
    ),
    #f7f3ea;
}

/* =========================================================
   TRIFOLD PANELS (BASE) — REQUIRED
   ========================================================= */
.fold{
  position:absolute;
  left:0;
  width:100%;
  height:33.333%;
  border-radius:12px;
  transform-style:preserve-3d;
  backface-visibility: visible;
  will-change: transform, opacity;
}

/* =======================
   Fold 1 (top, visible)
   ======================= */
.fold1{
  top:0;
  z-index:3;
  transform-origin: top center;
  transform: translateZ(6px);

  background:
    linear-gradient(
      to bottom,
      transparent 0%,
      transparent 94%,
      rgba(0,0,0,0.08) 96%,
      transparent 100%
    ),
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 22px,
      rgba(0,0,0,0.045) 23px
    ),
    #f7f3ea;
}

/* =======================
   Fold 2 (middle, folded)
   ======================= */
.fold2{
  top:33.333%;
  z-index:2;
  transform-origin: top center;

  /* start folded up behind fold1 */
  transform: translateZ(3px) rotateX(180deg);
  opacity:0;
  visibility:hidden;
  backface-visibility: hidden;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.10), transparent 10px),
    linear-gradient(to bottom, rgba(0,0,0,0.04), transparent 30px),
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 22px,
      rgba(0,0,0,0.045) 23px
    ),
    #f7f3ea;
}

/* =======================
   Fold 3 (bottom, folded)
   ======================= */
.fold3{
  top:66.666%;
  z-index:1;
  transform-origin: top center;

  transform: translateZ(0px) rotateX(180deg);
  opacity:0;
  visibility:hidden;
  backface-visibility: hidden;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.09), transparent 10px),
    linear-gradient(to bottom, rgba(0,0,0,0.035), transparent 30px),
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 22px,
      rgba(0,0,0,0.045) 23px
    ),
    #f7f3ea;
}

/* =========================================================
   TRUE SLOW UNFOLD — ONLY THESE OPEN RULES
   ========================================================= */
.env-wrap.open .fold2{
  animation: unfold2_slow 0.9s linear 1.0s forwards;
}
.env-wrap.open .fold3{
  animation: unfold3_slow 1.0s linear 2.0s forwards;
}

@keyframes unfold2_slow{
  0%{
    opacity:0;
    visibility:visible;
    transform: translateZ(3px) rotateX(180deg);
  }
  20%{ opacity:1; }
  100%{
    opacity:1;
    visibility:visible;
    transform: translateZ(3px) rotateX(0deg);
  }
}

@keyframes unfold3_slow{
  0%{
    opacity:0;
    visibility:visible;
    transform: translateZ(0px) rotateX(180deg);
  }
  20%{ opacity:1; }
  100%{
    opacity:1;
    visibility:visible;
    transform: translateZ(0px) rotateX(0deg);
  }
}



.paper-content{
  padding:18px 18px 12px;
  height:100%;
  border-radius:12px;

  /* ✅ opaque paper base + lines on top */
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 23px,
      rgba(0,0,0,0.05) 24px
    ),
    #f7f3ea;  /* <- this blocks crease shading */

  position: relative;
  z-index: 2; /* keep content above any fold shading */
}

.paper-content h3{
  margin:0 0 8px;
  font-size:1.2rem;
  font-weight:700;
  color:#1a1a1a;
}

.paper-content p{
  margin:0;
  line-height:1.55;
  font-size:clamp(1rem,2.2vw,1.2rem);
  white-space:pre-wrap;
  color:#1a1a1a;
  overflow:hidden;
}

/* =========================================================
   OPEN STATE — flaps open, letter rises & unfolds
   ========================================================= */

/* ---------- OPEN STATE flap motion ---------- */

@media (max-width: 520px){
  /* Give each fold a little more usable space */
  .paper-content{
    padding: 14px 14px 10px;
    height: 100%;
    overflow: auto;                 /* ✅ allow scroll inside fold */
    -webkit-overflow-scrolling: touch;
  }
  .letter{
    height: 380%;
  }
  /* Don't clip text on mobile */
  .paper-content p{
    overflow: visible;              /* ✅ stop cutting off */
  }

  /* Optional: hide scrollbar but keep scroll */
  .paper-content::-webkit-scrollbar{
    width: 0px;
    height: 0px;
  }
}

.env-wrap.open .env-seal{
  opacity:0.25;
  transform: translate(-50%,-50%) translateZ(30px) scale(0.82); /* ✅ keep Z push */
}


.env-wrap.open .letter{
  transform: translateX(-50%) translateY(0%) scaleY(1) translateZ(120px);
  transition-duration: 1.8s;
  transition-timing-function: cubic-bezier(.25,.9,.25,1);
  z-index:10;
}

/* Allow letter to extend outside AFTER it aligns */
.env-wrap.spill .env{
  overflow:visible;
}



/* ===== CLOSE (reverse) ===== */

/* flaps close */
.env-wrap.closing .env-flap-top{
  animation: closeTop 1.6s cubic-bezier(.18,.9,.2,1) forwards !important;
}
.env-wrap.closing .env-flap-bottom{
  animation: closeBottom 1.5s cubic-bezier(.18,.9,.2,1) forwards !important;
}

/* letter refolds + shrinks back into envelope */
.env-wrap.closing .letter{
  animation: letterClose 1.0s cubic-bezier(.2,.8,.2,1) forwards !important;
}

/* folds flip back up + fade out */
.env-wrap.closing .fold2{
  animation: refold2 .9s cubic-bezier(.18,.9,.2,1) forwards !important;
  animation-delay: .05s !important;
}
.env-wrap.closing .fold3{
  animation: refold3 .9s cubic-bezier(.18,.9,.2,1) forwards !important;
  animation-delay: .30s !important;
}

@keyframes closeTop{
  from { transform: translateZ(3px) rotateX(155deg); }
  to   { transform: translateZ(3px) rotateX(0deg); }
}

@keyframes closeBottom{
  from { transform: translateZ(2px) rotateX(-155deg); }
  to   { transform: translateZ(2px) rotateX(0deg); }
}

@keyframes letterClose{
  from { transform: translateX(-50%) translateY(0%) scaleY(1) translateZ(120px); }
  to   { transform: translateX(-50%) translateY(70%) scaleY(0.33); }
}

@keyframes refold2{
  0%{
    opacity:1; visibility:visible;
    transform: translateZ(3px) rotateX(0deg);
  }
  100%{
    opacity:0; visibility:hidden;
    transform: translateZ(3px) rotateX(180deg);
  }
}

@keyframes refold3{
  0%{
    opacity:1; visibility:visible;
    transform: translateZ(0px) rotateX(0deg);
  }
  100%{
    opacity:0; visibility:hidden;
    transform: translateZ(0px) rotateX(180deg);
  }
}

/* =========================
   Polaroid Board Section
   ========================= */

.polaroid-section{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers the whole section */
  justify-content: center;
  margin: 50px 0;
  padding: 0 10px;
  text-align: center;
}

.section-header{
  margin-bottom: 25px;
  max-width: 650px;
}

.polaroid-board{
  width: 100%;
  max-width: 1100px;           /* keeps layout from stretching too wide */
  display: grid;
  justify-content: center;      /* centers the grid itself */
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
  padding: 25px;
  border-radius: 18px;

  background:
    radial-gradient(1200px circle at 10% -40%, rgba(255,122,182,0.12), transparent 60%),
    radial-gradient(900px circle at 110% 0%, rgba(122,215,255,0.10), transparent 55%),
    linear-gradient(180deg, #14141b, #0b0b10);

  box-shadow: 0 18px 60px rgba(0,0,0,0.5);
}

.section-header{
  text-align:center;
  margin-bottom: 18px;
}

.section-header h2{
  font-size: clamp(1.9rem, 3.6vw, 2.5rem);
  margin: 0 0 6px;
  letter-spacing: .5px;
}

.section-header p{
  margin: 0;
  opacity: .75;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
}

/* Corkboard vibe */
.polaroid-board{
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  padding: 18px;
  border-radius: 18px;

  background:
    radial-gradient(1200px circle at 10% -40%, rgba(255,122,182,0.12), transparent 60%),
    radial-gradient(900px circle at 110% 0%, rgba(122,215,255,0.10), transparent 55%),
    linear-gradient(180deg, #14141b, #0b0b10);

  box-shadow: 0 18px 60px rgba(0,0,0,0.5);
}

/* A single polaroid */
.polaroid{
  position: relative;
  background: #f8f5ee;
  border-radius: 10px;
  padding: 10px 10px 14px;
  box-shadow:
    0 10px 25px rgba(0,0,0,0.35),
    0 0 0 1px rgba(0,0,0,0.04) inset;

  transform: rotate(var(--rot)) translateY(var(--lift));
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: default;
}

/* Tape corners */
.polaroid::before,
.polaroid::after{
  content:"";
  position:absolute;
  width: 68px;
  height: 20px;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  backdrop-filter: blur(2px);
}

.polaroid::before{
  top: -8px; left: 8px;
  transform: rotate(-6deg);
}
.polaroid::after{
  top: -8px; right: 8px;
  transform: rotate(5deg);
}

/* Photo area */
.polaroid-photo{
  width: 100%;
  height: 220px;
  border-radius: 7px;
  background: #ddd center/cover no-repeat;
  filter: saturate(1.05) contrast(1.02);
}

/* Caption */
.polaroid-caption{
  margin-top: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1b1b1b;
  text-align: center;
}

/* Date / tiny note */
.polaroid-date{
  margin-top: 4px;
  font-size: 0.9rem;
  opacity: .7;
  text-align: center;
}

/* Hover lift */
.polaroid:hover{
  transform: rotate(0deg) translateY(-6px) scale(1.03);
  box-shadow:
    0 18px 36px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.06) inset;
  z-index: 5;
}

/* Mobile tweaks */
@media (max-width: 520px){
  .polaroid-photo{ height: 200px; }
}

/* ===========================
   Favorite Memories Section
   =========================== */
.favorite-memories{
  margin-top: 60px;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.fav-container{
  max-width: 1000px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.fav-text{
  flex: 1 1 300px;
  text-align: left;
}

.fav-title{
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 16px;
  color: #ff9bcf;
  text-shadow: 0 0 8px rgba(255, 140, 200, 0.3);
}

.fav-text p{
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  color: #e8e8e8;
}

.fav-chibi{
  flex: 0 1 300px;
  display: flex;
  justify-content: center;
}

.fav-chibi img{
  width: clamp(160px, 28vw, 260px);
  height: auto;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.35));
}

/* ===== Love Jar Notes ===== */
.love-jar .jar-stage{
  display:grid;
  place-items:center;
  gap:18px;
  margin-top: 12px;
  position: relative;
}

.love-jar .jar{
  width: min(280px, 72vw);
  height: 190px;
  border-radius: 28px 28px 40px 40px;
  position: relative;
  background:
    radial-gradient(200px circle at 30% 20%, rgba(255,255,255,0.14), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 18px 50px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}

.love-jar .jar::before{
  content:"";
  position:absolute;
  left:50%;
  top:-22px;
  transform: translateX(-50%);
  width: 78%;
  height: 36px;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.18);
}

.love-jar .note-wrap{
  position:absolute;
  top: 64px;
  width: min(300px, 78vw);
  display:grid;
  place-items:center;
  pointer-events:none;
}

.love-jar .note{
  position: relative;
  width: 100%;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.82));
  color: #1a1a1a;
  box-shadow: 0 20px 50px rgba(0,0,0,0.30);
  padding: 18px 16px 16px;
  transform-origin: 50% 100%;
  opacity: 0;
  transform: translateY(60px) rotate(-4deg) scale(0.92);
}

.love-jar .note-pin{
  position:absolute;
  top:-10px;
  left: 14px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: radial-gradient(circle at 30% 20%, #ffd1e6, #ff7ab6 60%, #d94b8d);
  box-shadow: 0 10px 18px rgba(0,0,0,0.25);
  font-size: 16px;
}

.love-jar .note-text{
  font-size: clamp(1.05rem, 2.1vw, 1.25rem);
  line-height: 1.45;
  font-weight: 600;
}

/* animations */
.love-jar .note.pop-in{
  animation: notePopIn 750ms cubic-bezier(.18,.9,.2,1) forwards;
}
.love-jar .note.pop-out{
  animation: notePopOut 420ms ease forwards;
}

@keyframes notePopIn{
  0%   { opacity:0; transform: translateY(70px) rotate(-6deg) scale(0.90); }
  55%  { opacity:1; transform: translateY(-10px) rotate(2deg) scale(1.02); }
  100% { opacity:1; transform: translateY(0px) rotate(-1deg) scale(1); }
}

@keyframes notePopOut{
  0%   { opacity:1; transform: translateY(0px) rotate(-1deg) scale(1); }
  100% { opacity:0; transform: translateY(40px) rotate(6deg) scale(0.95); }
}
