/* ══════════════════════════════════════
   BASE
   ══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:    #c9a84c;
  --golddk:  #8b5e14;
  --golddm:  #5c3a06;
  --red:     #c41e3a;
  --reddk:   #8a1020;
  --ivory:   #faf5ec;
  --cream:   #f0e4cc;
  --text:    #3a1a08;
  --subtext: #6b3a18;
  --muted:   rgba(58,26,8,.48);
  --glass:   rgba(255,252,248,.92);
  --gbor:    rgba(196,30,58,.18);
  --Fc: 'Cinzel', serif;
  --Fs: 'Great Vibes', cursive;
  --Fz: 'Ma Shan Zheng', cursive;
  --Fg: 'Cormorant Garamond', serif;
  --Fp: 'Playfair Display', serif;
}

html { height: 100%; }
body {
  min-height: 100%;
  font-family: var(--Fg);
  color: var(--text);
  background: var(--ivory);
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 70% 45% at 8%  4%,  rgba(225,170,140,.18) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 92% 92%, rgba(196,30,58,.07)   0%, transparent 52%),
    radial-gradient(ellipse 45% 35% at 88% 6%,  rgba(201,168,76,.08)  0%, transparent 48%);
  background-attachment: fixed;
}

/* ══════════════════════════════════════
   CANVAS
   ══════════════════════════════════════ */
#bgCanvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ══════════════════════════════════════
   MUSIC BUTTON
   ══════════════════════════════════════ */
.music-btn {
  position: fixed; top: 16px; right: 16px; z-index: 300;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,252,248,.88);
  border: 1px solid rgba(196,30,58,.32);
  color: var(--red); font-size: 17px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 2px 12px rgba(100,20,10,.12);
  transition: background .3s;
}
.music-btn:hover { background: rgba(255,240,238,.95); }
.music-btn.on { animation: mPulse 2s ease-in-out infinite; }
@keyframes mPulse {
  0%,100% { box-shadow: 0 2px 12px rgba(100,20,10,.12), 0 0 0 0   rgba(196,30,58,.25); }
  50%      { box-shadow: 0 2px 12px rgba(100,20,10,.12), 0 0 0 8px rgba(196,30,58,0);  }
}

/* ══════════════════════════════════════
   ENVELOPE SCREEN
   ══════════════════════════════════════ */
#envScreen {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(160deg, #fdf8ef 0%, #f2e4cc 100%);
  transition: opacity .9s ease;
}
#envScreen.hidden { opacity: 0; pointer-events: none; }

.env-inner {
  pointer-events: all;
  text-align: center;
  padding: 44px 32px 48px;
  position: relative;
  z-index: 2;
  width: min(88vw, 320px);
  background: rgba(255,253,248,.78);
  border: 1px solid rgba(196,30,58,.25);
  box-shadow: 0 16px 56px rgba(100,20,10,.1), inset 0 0 0 8px rgba(201,168,76,.04);
}

.env-zh {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: clamp(74px,18vw,90px);
  height: clamp(74px,18vw,90px);
  border: 2.5px solid var(--red);
  border-radius: 50%;
  font-family: var(--Fz);
  font-size: clamp(36px,9vw,46px);
  color: var(--red);
  line-height: 1;
  margin-bottom: 18px;
  position: relative;
  animation: xiPulse 2.8s ease-in-out infinite alternate;
}
.env-zh::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px dashed rgba(196,30,58,.38);
  border-radius: 50%;
}
.env-zh::after {
  content: '';
  position: absolute;
  inset: -7px;
  border: 1px dashed rgba(196,30,58,.22);
  border-radius: 50%;
}
@keyframes xiPulse {
  from { filter: drop-shadow(0 0 8px  rgba(196,30,58,.3)); }
  to   { filter: drop-shadow(0 0 30px rgba(196,30,58,.7)); }
}

.env-pre {
  font-family: var(--Fc); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.env-guest {
  font-family: var(--Fg); font-style: italic;
  font-size: clamp(14px,4vw,20px); color: var(--subtext); margin-bottom: 20px;
}

.orn-row {
  display: flex; align-items: center; gap: 10px;
  justify-content: center; margin-bottom: 16px;
}
.orn-line { flex: 1; max-width: 52px; height: 1px;
  background: linear-gradient(90deg,transparent,var(--golddk),transparent); }
.orn-gem  { color: var(--gold); font-size: 9px; }

.env-names {
  font-family: var(--Fs);
  font-size: clamp(40px,11vw,60px);
  color: var(--golddm); line-height: 1.1; margin-bottom: 8px;
}
.env-names em {
  font-family: var(--Fs); font-style: italic;
  font-size: .6em; color: var(--red);
  vertical-align: middle; display: inline-block; margin: 0 4px;
}

.env-date {
  font-family: var(--Fc); font-size: 11px;
  letter-spacing: .24em; color: var(--muted); margin-bottom: 32px;
}

.open-btn {
  display: inline-flex; flex-direction: column;
  align-items: center; gap: 5px;
  padding: 13px 44px;
  border: 1px solid var(--red);
  background: rgba(196,30,58,.06);
  color: var(--red);
  font-family: var(--Fc); font-size: 12px; letter-spacing: .2em;
  cursor: pointer; border-radius: 2px;
  transition: background .3s, transform .15s;
  -webkit-tap-highlight-color: transparent;
}
.open-btn:hover  { background: rgba(196,30,58,.13); }
.open-btn:active { transform: scale(.96); }
.arrow { font-size: 19px; animation: bounce 1.6s ease-in-out infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

/* corner brackets */
.env-c { position: absolute; width: 26px; height: 26px; }
.env-c::before, .env-c::after { content:''; position:absolute; background:var(--red); opacity:.4; }
.env-c::before { width:100%; height:1.5px; top:0; left:0; }
.env-c::after  { width:1.5px; height:100%; top:0; left:0; }
.env-c-tl { top:14px; left:14px; }
.env-c-tr { top:14px; right:14px; transform:scaleX(-1); }
.env-c-bl { bottom:14px; left:14px; transform:scaleY(-1); }
.env-c-br { bottom:14px; right:14px; transform:scale(-1); }

/* ══════════════════════════════════════
   MAIN CONTENT
   ══════════════════════════════════════ */
#main { position: relative; z-index: 10; }

.sec {
  position: relative;
  min-height: 70svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 56px 20px 48px;
  overflow: hidden;
}

/* ══════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   GLASS CARD
   ══════════════════════════════════════ */
.card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--gbor);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 4px;
  padding: 30px 24px;
  width: 100%; max-width: 382px;
  text-align: center;
  box-shadow: 0 6px 28px rgba(100,20,10,.07);
}

.card-orn { display: flex; align-items: center; gap: 8px; justify-content: center; }
.card-orn.top { margin-bottom: 18px; }
.card-orn.bot { margin-top: 18px; }
.ol { flex: 1; height: 1px; background: linear-gradient(90deg,transparent,var(--golddk),transparent); }
.og { color: var(--gold); font-size: 8px; flex-shrink: 0; }

.sec-lbl {
  font-family: var(--Fc); font-size: 10px;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--red); margin-bottom: 22px;
}

/* ══════════════════════════════════════
   INTRO
   ══════════════════════════════════════ */
#sIntro { padding-top: 100px; }
.intro { text-align: center; }

.zh-lbl {
  display: block; font-family: var(--Fz); font-size: 14px;
  letter-spacing: .3em; color: var(--red); margin-bottom: 12px;
}
.big-name {
  font-family: var(--Fs);
  font-size: clamp(70px,19vw,108px);
  color: var(--golddm); line-height: .88;
  text-shadow: 0 2px 24px rgba(92,58,6,.14);
}
.amp-row {
  display: flex; align-items: center; gap: 14px;
  justify-content: center; margin: 14px 0;
}
.amp-l { flex: 1; max-width: 62px; height: 1px;
  background: linear-gradient(90deg,transparent,var(--golddk),transparent); }
.amp { font-family: var(--Fs); font-style: italic; font-size: 28px; color: var(--red); }
.evt-date {
  font-family: var(--Fc); font-size: 11px;
  letter-spacing: .24em; color: var(--muted);
  margin-top: 16px; margin-bottom: 28px;
}

/* countdown */
.countdown { display: flex; align-items: flex-start; gap: 8px; justify-content: center; }
.cu { display: flex; flex-direction: column; align-items: center; min-width: 54px; }
.cn { font-family: var(--Fp); font-weight: 700; font-size: clamp(28px,8.5vw,46px); color: var(--golddm); line-height: 1; }
.cl { font-family: var(--Fc); font-size: 8px; letter-spacing: .2em;
      text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.cdot { font-size: 26px; color: var(--golddk); padding-top: 5px; }

/* ══════════════════════════════════════
   VERSE
   ══════════════════════════════════════ */
.ref-lbl {
  font-family: var(--Fc); font-size: 10px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--red); margin-bottom: 14px;
}
.verse {
  font-family: var(--Fg); font-style: italic;
  font-size: clamp(15px,4.3vw,19px); line-height: 1.78;
  color: var(--text); font-weight: 300; quotes: none;
}
.verse-orn { font-size: 12px; color: var(--golddk); margin-top: 14px; letter-spacing: .14em; }

/* ══════════════════════════════════════
   COUPLE — VERTICAL
   ══════════════════════════════════════ */
.couple-stack {
  display: flex; flex-direction: column;
  align-items: center; width: 100%; max-width: 382px;
}

.pcard {
  padding: 28px 24px 24px;
  text-align: center;
}

.oval-frame {
  width: 160px; height: 200px;
  border-radius: 50%;
  border: 1.5px solid rgba(196,30,58,.3);
  background: rgba(255,242,240,.6);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  margin: 0 auto 18px;
}
.oval-frame::after {
  content: ''; position: absolute; inset: 5px;
  border-radius: 50%; border: 1px solid rgba(196,30,58,.1);
  pointer-events: none;
}
.oval-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; object-position: center center; }
.photo-jason { object-position: 30% center; }

.pname { font-family: var(--Fp); font-weight: 700; font-size: 36px; color: var(--golddm); line-height: 1; margin-bottom: 8px; }
.pdiv  { width: 32px; height: 1.5px; background: var(--red); opacity: .4; margin: 0 auto 8px; }
.pfrom { font-family: var(--Fc); font-size: 8px; letter-spacing: .16em;
         text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.ppar  { font-family: var(--Fg); font-size: 14px; color: var(--subtext); line-height: 1.6; }

.couple-sep {
  display: flex; align-items: center; gap: 10px;
  width: 80%; padding: 4px 0;
}
.sep-l  { flex: 1; height: 1px; background: linear-gradient(90deg,transparent,var(--golddk),transparent); }
.sep-xi { font-family: var(--Fz); font-size: 24px; color: var(--red); flex-shrink: 0; }

/* ══════════════════════════════════════
   DETAIL ACARA
   ══════════════════════════════════════ */
.dlist { width: 100%; }
.drow  { display: flex; align-items: flex-start; gap: 14px; padding: 11px 0; }
.dico  { font-size: 17px; flex-shrink: 0; line-height: 1.5; }
.drow > div { display: flex; flex-direction: column; gap: 2px; }
.dlbl  { font-family: var(--Fc); font-size: 8.5px; letter-spacing: .2em;
         text-transform: uppercase; color: var(--red); }
.dval  { font-family: var(--Fp); font-size: 15px; font-weight: 400; color: var(--text); line-height: 1.55; }
.dval em { color: var(--muted); font-style: italic; font-size: 13px; font-family: var(--Fg); }
.dsep  { height: 1px; background: linear-gradient(90deg,transparent,rgba(196,30,58,.15),transparent); }

.map-btn {
  display: block; margin-top: 20px; padding: 11px 18px;
  border: 1px solid rgba(196,30,58,.35); color: var(--red);
  text-decoration: none; font-family: var(--Fc);
  font-size: 10px; letter-spacing: .18em; text-align: center;
  border-radius: 2px; transition: background .25s;
}
.map-btn:hover { background: rgba(196,30,58,.07); }

/* ══════════════════════════════════════
   AMPLOP
   ══════════════════════════════════════ */
.angpao-card {
  background: rgba(255,248,248,.92);
  border-color: rgba(196,30,58,.22);
}
.ang-hdr { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 20px; }
.ang-zh  { font-family: var(--Fz); font-size: 38px; color: var(--red);
           filter: drop-shadow(0 0 10px rgba(196,30,58,.3)); }
.ang-ttl { font-family: var(--Fc); font-size: 10px; letter-spacing: .24em;
           text-transform: uppercase; color: var(--golddk); }

.bank-box {
  background: linear-gradient(145deg, #fff6f6, #ffe8ea);
  border: 1px solid rgba(196,30,58,.22); border-radius: 8px;
  padding: 20px 18px; text-align: center;
}
.bank-logo { font-family: var(--Fc); font-size: 22px; font-weight: 600;
             color: var(--golddk); letter-spacing: .1em; margin-bottom: 8px; }
.bank-an   { font-family: var(--Fg); font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.bank-num  { font-family: var(--Fp); font-weight: 700; font-size: 22px; letter-spacing: .14em;
             color: var(--text); margin-bottom: 16px; }
.copy-btn  {
  padding: 9px 22px;
  background: rgba(196,30,58,.08); border: 1px solid rgba(196,30,58,.38);
  color: var(--red); font-family: var(--Fc); font-size: 9.5px;
  letter-spacing: .16em; cursor: pointer; border-radius: 2px;
  transition: background .25s; -webkit-tap-highlight-color: transparent;
}
.copy-btn:hover  { background: rgba(196,30,58,.18); }
.copy-btn:active { transform: scale(.96); }

/* ══════════════════════════════════════
   PHOTO PLACEHOLDER
   ══════════════════════════════════════ */
.photo-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px; border-radius: 50%;
}
.ph-blue { background: linear-gradient(145deg, rgba(100,140,220,.18), rgba(200,185,160,.35)); }
.ph-rose { background: linear-gradient(145deg, rgba(220,100,110,.18), rgba(200,185,160,.35)); }

.ph-init {
  font-family: var(--Fp); font-weight: 700; font-size: 64px;
  color: var(--golddm); line-height: 1;
}
.ph-cam  { font-size: 14px; opacity: .45; line-height: 1; }

/* ══════════════════════════════════════
   INSTAGRAM LINK
   ══════════════════════════════════════ */
.ig-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 12px;
  padding: 5px 12px;
  border: 1px solid rgba(196,30,58,.28);
  border-radius: 20px;
  color: var(--red);
  font-family: var(--Fc); font-size: 9px; letter-spacing: .12em;
  text-decoration: none;
  transition: background .25s, border-color .25s;
  -webkit-tap-highlight-color: transparent;
}
.ig-link:hover { background: rgba(196,30,58,.08); border-color: rgba(196,30,58,.42); }
.ig-ico { width: 13px; height: 13px; flex-shrink: 0; }

/* ══════════════════════════════════════
   AMPLOP NOTE
   ══════════════════════════════════════ */
.ang-note {
  font-family: var(--Fg); font-style: italic;
  font-size: 13px; color: var(--muted);
  margin-bottom: 16px;
}

/* ══════════════════════════════════════
   GUESTBOOK
   ══════════════════════════════════════ */
.wish-card { max-width: 420px; }

.wish-hint {
  font-family: var(--Fg); font-style: italic;
  font-size: 13px; color: var(--muted);
  margin-bottom: 20px;
}

.wish-form {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 0;
}

.wish-input, .wish-textarea {
  width: 100%;
  background: rgba(255,252,248,.85);
  border: 1px solid rgba(196,30,58,.2);
  border-radius: 3px;
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--Fg); font-size: 14px;
  outline: none;
  transition: border-color .25s;
  -webkit-appearance: none;
}
.wish-input::placeholder, .wish-textarea::placeholder { color: var(--muted); }
.wish-input:focus, .wish-textarea:focus { border-color: rgba(196,30,58,.42); }
.wish-textarea { resize: none; min-height: 78px; }

.wish-submit {
  padding: 11px 20px;
  background: rgba(196,30,58,.08);
  border: 1px solid rgba(196,30,58,.35);
  color: var(--red);
  font-family: var(--Fc); font-size: 10px; letter-spacing: .18em;
  cursor: pointer; border-radius: 2px;
  transition: background .25s; -webkit-tap-highlight-color: transparent;
}
.wish-submit:hover   { background: rgba(196,30,58,.16); }
.wish-submit:disabled { opacity: .55; cursor: not-allowed; }
.wish-submit:active  { transform: scale(.96); }

.wish-line {
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(196,30,58,.16),transparent);
  margin: 22px 0;
}

#wishesList { display: flex; flex-direction: column; gap: 12px; }

.wish-item {
  background: rgba(255,248,248,.75);
  border: 1px solid rgba(196,30,58,.12);
  border-radius: 3px;
  padding: 12px 14px;
  text-align: left;
  animation: wishIn .5s ease;
}
@keyframes wishIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }

.wish-name {
  font-family: var(--Fc); font-size: 9.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--red); margin-bottom: 5px;
}
.wish-msg {
  font-family: var(--Fg); font-style: italic;
  font-size: 14px; color: var(--text); line-height: 1.6; margin-bottom: 5px;
}
.wish-date {
  font-family: var(--Fc); font-size: 8px;
  letter-spacing: .14em; color: var(--muted);
}
.wish-empty {
  font-family: var(--Fg); font-style: italic;
  font-size: 14px; color: var(--muted); text-align: center; padding: 8px 0;
}

/* ══════════════════════════════════════
   CLOSING
   ══════════════════════════════════════ */
#sClose { padding-bottom: 90px; background: linear-gradient(180deg, rgba(196,30,58,.04) 0%, transparent 100%); }
.closing { text-align: center; }

.cl-top-deco {
  display: flex; align-items: center; gap: 10px;
  justify-content: center; margin-bottom: 24px;
}
.ctd-fl { font-family: var(--Fz); font-size: 28px; color: var(--red); opacity: .7; }
.ctd-l  { flex: 1; max-width: 60px; height: 1.5px;
          background: linear-gradient(90deg,transparent,var(--red),transparent); opacity: .4; }

.cl-zh    { font-family: var(--Fz); font-size: 72px; color: var(--red);
            animation: xiPulse 2.8s ease-in-out infinite alternate; margin-bottom: 20px;
            filter: drop-shadow(0 4px 16px rgba(196,30,58,.25)); }
.cl-txt   { font-family: var(--Fg); font-style: italic; font-size: 16px;
            color: var(--muted); margin-bottom: 12px; }
.cl-names { font-family: var(--Fs); font-size: 54px; color: var(--golddm); line-height: 1; margin-bottom: 8px; }
.cl-date  { font-family: var(--Fc); font-size: 10px; letter-spacing: .24em; color: var(--muted); margin-bottom: 16px; }
.cl-orn   { font-family: var(--Fz); font-size: 16px; color: var(--red); letter-spacing: .2em; opacity: .7; }

/* ══════════════════════════════════════
   SECTION BACKGROUNDS (alternating)
   ══════════════════════════════════════ */
#sIntro  {
  background:
    radial-gradient(ellipse 90% 50% at 10% 20%, rgba(225,160,130,.14) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 90% 80%, rgba(196,30,58,.06)   0%, transparent 55%);
}
#sVerse  { background: linear-gradient(160deg, rgba(196,30,58,.05) 0%, rgba(201,168,76,.04) 100%); }
#sCouple {
  background:
    radial-gradient(ellipse 100% 60% at 20% 30%, rgba(255,220,200,.18) 0%, transparent 60%),
    radial-gradient(ellipse 80%  60% at 80% 70%, rgba(196,30,58,.06)   0%, transparent 60%);
}
#sDetail { background: linear-gradient(160deg, rgba(201,168,76,.06) 0%, rgba(196,30,58,.04) 100%); }
#sWish   { background: linear-gradient(160deg, rgba(196,30,58,.04) 0%, rgba(255,240,230,.6) 100%); }
#sAngpao { background: linear-gradient(180deg, rgba(196,30,58,.08) 0%, rgba(139,16,32,.06) 100%); }

/* ══════════════════════════════════════
   DIAMOND PATTERN BAND
   ══════════════════════════════════════ */
.diamond-band,
.env-dband,
.intro-band,
.angpao-band {
  width: 100%;
  height: 18px;
  background:
    linear-gradient(135deg, var(--red) 25%, transparent 25%) -4.5px 0/ 9px 9px,
    linear-gradient(225deg, var(--red) 25%, transparent 25%) -4.5px 0/ 9px 9px,
    linear-gradient(315deg, var(--red) 25%, transparent 25%)     0  0/ 9px 9px,
    linear-gradient( 45deg, var(--red) 25%, transparent 25%)     0  0/ 9px 9px;
  background-color: rgba(250,245,236,.6);
  opacity: .28;
}
.env-dband {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 22px;
  opacity: .35;
  border-radius: 0 0 2px 2px;
}
.intro-band {
  margin: 18px auto;
  max-width: 220px;
  opacity: .22;
  border-radius: 2px;
}
.angpao-band {
  height: 14px;
  margin-bottom: 0;
  opacity: .45;
}

/* ══════════════════════════════════════
   ENVELOPE FLOWER CORNERS
   ══════════════════════════════════════ */
.env-flower {
  position: absolute;
  font-family: var(--Fz);
  font-size: clamp(52px,14vw,88px);
  color: var(--red);
  opacity: .2;
  pointer-events: none;
  line-height: 1;
  z-index: 1;
}
.env-fl-tl { top: 0;  left: 0;  transform-origin: top left;    transform: rotate(-15deg) translate(-8px,-8px); }
.env-fl-tr { top: 0;  right: 0; transform-origin: top right;   transform: rotate(15deg)  translate(8px,-8px); }
.env-fl-bl { bottom: 0; left: 0;  transform-origin: bottom left;  transform: rotate(15deg)  translate(-8px,8px); }
.env-fl-br { bottom: 0; right: 0; transform-origin: bottom right; transform: rotate(-15deg) translate(8px,8px); }

/* ══════════════════════════════════════
   ENVELOPE TOP ORNAMENT
   ══════════════════════════════════════ */
.env-top-orn {
  display: flex; align-items: center; gap: 8px;
  justify-content: center; margin-bottom: 14px;
}
.env-knot {
  font-family: var(--Fz); font-size: 20px;
  color: var(--red); opacity: .8;
}
.env-orn-l {
  flex: 1; max-width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--golddk), transparent);
}
.env-orn-gem { color: var(--gold); font-size: 8px; }

/* ══════════════════════════════════════
   CARD DOUBLE-BORDER
   ══════════════════════════════════════ */
.card::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(196,30,58,.08);
  border-radius: 2px;
  pointer-events: none;
}

/* ══════════════════════════════════════
   INTRO DECORATIVE ELEMENTS
   ══════════════════════════════════════ */
.intro-top-deco,
.intro-bot-deco {
  display: flex; align-items: center; gap: 10px;
  justify-content: center;
  margin-bottom: 14px;
}
.intro-bot-deco { margin-top: 22px; margin-bottom: 0; }
.itd-zh {
  font-family: var(--Fz); font-size: 22px;
  color: var(--red); opacity: .8;
}
.itd-fl {
  font-family: var(--Fz); font-size: 18px;
  color: var(--red); opacity: .6;
}
.itd-l {
  flex: 1; max-width: 70px; height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(196,30,58,.4), transparent);
}
.itd-gem {
  font-family: var(--Fc); font-size: 9px;
  color: var(--red); letter-spacing: .2em; opacity: .7;
}

/* ══════════════════════════════════════
   SECTION TOP ORNAMENT
   ══════════════════════════════════════ */
.sec-top-orn {
  display: flex; align-items: center; gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
  width: 100%; max-width: 280px;
}
.sto-zh  { font-family: var(--Fz); font-size: 22px; color: var(--red); opacity: .75; }
.sto-fl  { font-family: var(--Fz); font-size: 18px; color: var(--red); opacity: .6; }
.sto-gem { font-size: 9px; color: var(--gold); opacity: .8; }
.sto-l   {
  flex: 1; height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(196,30,58,.35), transparent);
}

/* ══════════════════════════════════════
   CHERRY BLOSSOM BRANCH SVGs
   ══════════════════════════════════════ */
.blossom-branch {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

/* Envelope branches */
.env-bc-tl {
  top: 0; left: 0;
  width: clamp(110px, 28vw, 165px);
  opacity: .82;
}
.env-bc-br {
  bottom: 0; right: 0;
  width: clamp(110px, 28vw, 165px);
  opacity: .72;
  transform: scale(-1, -1);
  transform-origin: 50% 50%;
}

/* Intro section side branches */
.sec-bc-l {
  top: 0; left: 0;
  width: clamp(90px, 22vw, 150px);
  opacity: .45;
}
.sec-bc-r {
  top: 0; right: 0;
  width: clamp(90px, 22vw, 150px);
  opacity: .38;
  transform: scaleX(-1);
  transform-origin: 50% 50%;
}

/* ══════════════════════════════════════
   ANGPAO SECTION EXTRA
   ══════════════════════════════════════ */
.angpao-card {
  box-shadow: 0 8px 36px rgba(196,30,58,.12);
}
.ang-hdr { gap: 6px; margin-bottom: 24px; }
.ang-zh  { font-size: 48px; }

/* ══════════════════════════════════════
   COUPLE SECTION EXTRA (double sep line)
   ══════════════════════════════════════ */
.couple-sep { padding: 10px 0; }
.sep-xi     { font-size: 28px; text-shadow: 0 2px 12px rgba(196,30,58,.3); }

/* ══════════════════════════════════════
   ENV INNER CARD SHADOW DEPTH
   ══════════════════════════════════════ */
.env-inner {
  box-shadow:
    0 20px 60px rgba(100,20,10,.14),
    0  4px 16px rgba(100,20,10,.08),
    inset 0 0 0 10px rgba(201,168,76,.04),
    inset 0 0 0 12px rgba(196,30,58,.02);
}

/* ══════════════════════════════════════
   INTRO BIG NAME — extra pop
   ══════════════════════════════════════ */
.big-name {
  letter-spacing: .02em;
}
.amp {
  font-size: 32px;
  filter: drop-shadow(0 2px 8px rgba(196,30,58,.2));
}

/* ══════════════════════════════════════
   SEC-LBL — bolder
   ══════════════════════════════════════ */
.sec-lbl {
  letter-spacing: .32em;
  font-size: 11px;
}

/* ══════════════════════════════════════
   RSVP leftover (cleanup)
   ══════════════════════════════════════ */
.rsvp-sub, .rsvp-wrap, .rbtn { display: none; }
