/* ─── Abby Birthday — faithful port of "Abby Birthday.dc.html" ───────────
   Palette: pearl #FBF6F1 · blush #F6DDE2 · soft rose #E8AFBC ·
   champagne #E4C88F / gold #C6A15B · deep plum #3E2438 · night #241322  */

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #241322;
  color: #43273B;
  font-family: 'Jost', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: #B25E7D; text-decoration: none; }
a:hover { color: #C6A15B; }
::selection { background: #E8AFBC; color: #2E1A2B; }
button, input, textarea { font-family: 'Jost', system-ui, sans-serif; }
img, video { display: block; max-width: 100%; }

/* ─── keyframes ─── */
@keyframes petalA {
  0% { transform: translate3d(0,-6vh,0) rotate(0deg); }
  50% { transform: translate3d(38px,50vh,0) rotate(170deg); }
  100% { transform: translate3d(-18px,110vh,0) rotate(330deg); }
}
@keyframes petalB {
  0% { transform: translate3d(0,-6vh,0) rotate(30deg); }
  50% { transform: translate3d(-34px,52vh,0) rotate(-150deg); }
  100% { transform: translate3d(24px,110vh,0) rotate(-320deg); }
}
@keyframes drift { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
@keyframes pulseSoft {
  0%,100% { box-shadow: 0 0 0 0 rgba(198,161,91,.4); }
  50% { box-shadow: 0 0 0 14px rgba(198,161,91,0); }
}
@keyframes gradShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes shimmer { 0% { background-position: -160% 0; } 100% { background-position: 160% 0; } }
@keyframes sparkle {
  0%,100% { opacity: .15; transform: scale(.7); }
  50% { opacity: .85; transform: scale(1.15); }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes glowPulse {
  0%,100% { opacity: .45; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: .8; transform: translate(-50%,-50%) scale(1.06); }
}

/* ─── fixed chrome ─── */
.progress-track {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 80;
  background: rgba(198,161,91,.14);
}
.progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg,#C6A15B,#D98CA4);
  box-shadow: 0 0 10px rgba(198,161,91,.55);
}
.nav-dots {
  position: fixed; right: 14px; top: 50%; transform: translateY(-50%); z-index: 70;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.nav-dots a {
  width: 7px; height: 7px; border-radius: 999px; background: rgba(198,161,91,.45);
  display: block; transition: all .45s cubic-bezier(.22,1,.36,1);
}
.nav-dots a.active {
  width: 22px; background: #C6A15B; box-shadow: 0 0 12px rgba(198,161,91,.6);
}
.music-fab {
  position: fixed; left: 16px; bottom: 16px; z-index: 70;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(198,161,91,.5); background: rgba(46,26,43,.6);
  backdrop-filter: blur(10px); color: #F7E9EF; font-size: 17px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(20,8,18,.35); transition: transform .3s ease;
}
.music-fab:hover { transform: scale(1.08); }
.music-fab .dot {
  position: absolute; top: 6px; right: 6px; width: 7px; height: 7px; border-radius: 50%;
  background: rgba(247,233,239,.35); transition: background .3s ease;
}
.music-fab.on .dot { background: #E2C388; box-shadow: 0 0 8px rgba(226,195,136,.9); }
.surprise-fab {
  position: fixed; right: 16px; bottom: 16px; z-index: 70;
  padding: 9px 18px 11px; border-radius: 999px;
  border: 1px solid rgba(198,161,91,.55); background: rgba(46,26,43,.62);
  backdrop-filter: blur(10px); color: #F3DCE7;
  font-family: 'Great Vibes', cursive; font-size: 19px; line-height: 1;
  white-space: nowrap; cursor: pointer;
  animation: pulseSoft 3.4s ease infinite; transition: background .3s ease;
}
.surprise-fab:hover { background: rgba(62,36,56,.8); }

/* ─── shared headers ─── */
.kicker { font-family: 'Great Vibes', cursive; line-height: 1; }
.sec-title {
  margin: 8px 0 0; font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(38px,5.5vw,62px); line-height: 1.04; text-wrap: pretty;
}
.sec-sub { margin: 14px 0 0; font-size: 15.5px; font-weight: 300; line-height: 1.75; }

/* ─── reveal on scroll ─── */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .9s ease, transform .9s cubic-bezier(.22,1,.36,1); }
[data-reveal].shown { opacity: 1; transform: none; }

/* ─── hero ─── */
.hero {
  position: relative; min-height: 100svh; overflow: hidden;
  background: linear-gradient(175deg,#FBF3EF 0%,#F9EFEA 45%,#F5E4E2 100%);
  display: flex; align-items: center;
  padding: clamp(96px,12vh,150px) clamp(20px,6vw,84px) clamp(72px,9vh,110px);
}
.hero .blob { position: absolute; border-radius: 50%; pointer-events: none; }
.hero .blob-1 {
  top: -12%; right: -8%; width: 46vw; max-width: 640px; aspect-ratio: 1;
  background: radial-gradient(circle,rgba(232,175,188,.5),rgba(232,175,188,0) 65%); filter: blur(30px);
}
.hero .blob-2 {
  bottom: -18%; left: -10%; width: 42vw; max-width: 560px; aspect-ratio: 1;
  background: radial-gradient(circle,rgba(226,195,136,.38),rgba(226,195,136,0) 65%); filter: blur(34px);
}
.hero .blob-3 {
  top: 26%; left: 32%; width: 26vw; max-width: 360px; aspect-ratio: 1;
  background: radial-gradient(circle,rgba(240,196,210,.35),rgba(240,196,210,0) 65%);
  filter: blur(30px); animation: drift 9s ease-in-out infinite;
}
.petals { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.petals span {
  position: absolute; top: -24px;
  border-radius: 64% 36% 60% 40% / 56% 44% 62% 38%;
}
.hero-grid {
  position: relative; z-index: 2; max-width: 1220px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,340px),1fr));
  gap: clamp(40px,6vw,84px); align-items: center;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: #B98A3F;
  margin: 0 0 18px; display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 34px; height: 1px; background: rgba(185,138,63,.6); }
.hero-script { font-family: 'Great Vibes', cursive; font-size: clamp(30px,5vw,48px); color: #C9748C; line-height: 1; }
.hero-name {
  margin: 4px 0 0; font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(62px,11.5vw,138px); line-height: .98; letter-spacing: -.015em;
  color: #3E2438; text-wrap: balance;
}
.hero-name em { font-style: italic; color: #B25E7D; }
.hero-tag {
  margin: 22px 0 0; max-width: 34ch; font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(19px,2.4vw,25px); line-height: 1.45; color: #7C566C;
}
.hero-ctas { margin: 34px 0 0; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-gold {
  padding: 15px 28px; border: 0; border-radius: 999px;
  background: linear-gradient(120deg,#C9A45B,#E0BE83); color: #2E1A2B;
  font-size: 14px; letter-spacing: .05em; font-weight: 500; cursor: pointer;
  box-shadow: 0 14px 34px rgba(198,161,91,.4);
  transition: transform .3s ease, box-shadow .3s ease; display: inline-block;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(198,161,91,.55); color: #2E1A2B; }
.btn-ghost {
  padding: 14px 26px; border-radius: 999px; border: 1px solid rgba(62,36,56,.3);
  color: #3E2438; background: rgba(255,255,255,.55); backdrop-filter: blur(6px);
  font-size: 14px; letter-spacing: .05em; cursor: pointer;
  transition: border-color .3s ease, transform .3s ease; display: inline-block;
}
.btn-ghost:hover { border-color: #C6A15B; transform: translateY(-2px); color: #3E2438; }
.hero-music-link {
  margin: 22px 0 0; padding: 0; border: 0; background: transparent; cursor: pointer;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: #8A6478;
  display: flex; align-items: center; gap: 8px; transition: color .3s ease;
}
.hero-music-link:hover { color: #B25E7D; }
.hero-art-wrap { position: relative; justify-self: center; width: 100%; max-width: 454px; }
.hero-glow {
  position: absolute; inset: -14%; border-radius: 50%;
  background: radial-gradient(circle,rgba(217,140,164,.4),rgba(217,140,164,0) 68%);
  filter: blur(44px); pointer-events: none;
}
.hero-art { position: relative; }
.hero-frame {
  width: 100%; box-sizing: border-box; padding: 12px;
  border: 1px solid rgba(185,138,63,.5); border-radius: 999px 999px 36px 36px;
  background: rgba(255,253,251,.6); backdrop-filter: blur(8px);
  box-shadow: 0 44px 100px rgba(62,36,56,.2);
}
.hero-frame-inner {
  width: 100%; aspect-ratio: 3/4; border-radius: 999px 999px 26px 26px;
  overflow: hidden; position: relative; background: #F1DFE6;
}
.hero-frame-inner img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.hero-badge { position: absolute; top: 30px; right: -12px; transform: rotate(6deg); }
.hero-badge > div {
  animation: drift 7s ease-in-out infinite; padding: 8px 18px 10px; border-radius: 999px;
  background: rgba(255,253,251,.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(198,161,91,.55); box-shadow: 0 12px 30px rgba(62,36,56,.16);
  font-family: 'Great Vibes', cursive; font-size: 20px; line-height: 1; color: #B25E7D;
}
.hero-mini { position: absolute; bottom: 22px; left: -14px; transform: rotate(-7deg); }
.hero-mini > div {
  animation: drift 8.5s ease-in-out 1.4s infinite; background: #FFFDFB;
  padding: 8px 8px 26px; box-shadow: 0 16px 36px rgba(62,36,56,.2);
  border: 1px solid rgba(62,36,56,.06); position: relative;
}
.hero-mini .ph { width: 104px; height: 110px; overflow: hidden; background: #F1DFE6; }
.hero-mini .ph img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.hero-mini .cap {
  position: absolute; left: 0; right: 0; bottom: 3px; text-align: center;
  font-family: 'Great Vibes', cursive; font-size: 15px; color: #7C566C;
}
.scroll-cue {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px; pointer-events: none;
}
.scroll-cue small { font-size: 9.5px; letter-spacing: .3em; text-transform: uppercase; color: rgba(124,86,108,.65); }
.scroll-cue i { width: 1px; height: 30px; background: linear-gradient(180deg,rgba(185,138,63,.7),rgba(185,138,63,0)); }

/* ─── letter ─── */
.letter {
  position: relative; overflow: hidden; background: #2E1A2B;
  padding: clamp(90px,12vw,160px) clamp(20px,6vw,84px);
}
.letter-bg {
  position: absolute; inset: 0;
  background: linear-gradient(115deg,#2E1A2B,#4A2544 30%,#7A4058 52%,#3E2438 78%,#2E1A2B);
  background-size: 280% 280%; animation: gradShift 22s ease infinite; opacity: .9;
}
.letter-vignette { position: absolute; inset: 0; background: radial-gradient(90% 70% at 50% 30%,rgba(0,0,0,0),rgba(24,9,22,.55)); }
.spark { position: absolute; border-radius: 50%; pointer-events: none; }
.letter-card-wrap { position: relative; max-width: 760px; margin: 0 auto; }
.letter-card {
  background: rgba(251,240,246,.07); border: 1px solid rgba(198,161,91,.4);
  border-radius: 32px; backdrop-filter: blur(18px);
  padding: clamp(30px,5.5vw,60px); box-shadow: 0 40px 110px rgba(12,4,12,.5);
}
.letter-card .salute { font-family: 'Great Vibes', cursive; font-size: clamp(30px,4.5vw,40px); color: #D9A8BE; line-height: 1; }
.letter-card p { margin: 20px 0 0; font-weight: 300; font-size: 16.5px; line-height: 1.9; color: rgba(247,233,239,.84); }
.letter-card p + p { margin-top: 16px; }
.letter-quote {
  margin: 34px 0 0; padding: 26px 0;
  border-top: 1px solid rgba(198,161,91,.35); border-bottom: 1px solid rgba(198,161,91,.35);
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(24px,3.4vw,34px); line-height: 1.35; color: #F3DCE7; text-wrap: balance;
}
.letter-quote span { color: #E0BE83; }
.letter-sign { margin: 26px 0 0; display: flex; justify-content: flex-end; }
.letter-sign span { font-family: 'Great Vibes', cursive; font-size: clamp(24px,3.5vw,30px); color: #D9A8BE; }

/* ─── gallery ─── */
.gallery { background: #FBF6F1; padding: clamp(90px,12vw,150px) clamp(20px,6vw,84px); }
.gallery-head {
  max-width: 1200px; margin: 0 auto clamp(30px,4vw,44px);
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 18px;
}
.gallery-head .kicker { font-size: clamp(26px,4vw,38px); color: #C98CA6; }
.gallery-head .sec-title { color: #3E2438; }
.gallery-head .sec-sub { max-width: 52ch; color: #8A6478; }
.photo-count {
  font-family: ui-monospace, Menlo, monospace; font-size: 11px; color: #B98A3F;
  border: 1px solid rgba(185,138,63,.4); border-radius: 999px; padding: 8px 16px;
  background: rgba(255,255,255,.5);
}
.cat-chips { max-width: 1200px; margin: 0 auto 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.cat-chip {
  padding: 9px 18px; border-radius: 999px; border: 1px solid rgba(62,36,56,.22);
  background: rgba(255,255,255,.55); color: #5A3550; font-size: 13px;
  letter-spacing: .04em; cursor: pointer; transition: all .3s ease;
}
.cat-chip:hover { border-color: rgba(198,161,91,.8); }
.cat-chip.active { background: #3E2438; color: #F7E9EF; border-color: #3E2438; }
.masonry { max-width: 1200px; margin: 0 auto; column-width: 255px; column-gap: 16px; }
.photo-card {
  break-inside: avoid; margin: 0 0 16px; position: relative; border-radius: 18px;
  overflow: hidden; border: 1px solid rgba(198,161,91,.32); background: #F3E2E9;
  transition: transform .5s ease, box-shadow .5s ease; cursor: pointer;
}
.photo-card:hover { transform: translateY(-5px); box-shadow: 0 22px 48px rgba(62,36,56,.18); }
.photo-card .cell { width: 100%; position: relative; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; position: absolute; inset: 0; }
.photo-card .scrim {
  pointer-events: none; position: absolute; left: 0; right: 0; bottom: 0;
  padding: 38px 14px 12px;
  background: linear-gradient(180deg,rgba(46,26,43,0),rgba(46,26,43,.66));
  display: flex; flex-direction: column; gap: 4px;
}
.photo-card .cap { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 17px; color: #FBF0F4; line-height: 1.2; }
.photo-card .cat { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: #E0BE83; }
.photo-card .zoom {
  position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(251,240,244,.4); background: rgba(46,26,43,.4);
  backdrop-filter: blur(6px); color: #FBF0F4; cursor: pointer; font-size: 14px; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .3s ease;
}
.photo-card .zoom:hover { background: rgba(198,161,91,.75); }

/* ─── videos ─── */
.videos { position: relative; background: #241322; padding: clamp(90px,12vw,150px) 0; }
.videos-head { max-width: 1200px; margin: 0 auto clamp(26px,4vw,40px); padding: 0 clamp(20px,6vw,84px); }
.videos-head .kicker { font-size: clamp(26px,4vw,38px); color: #D9A8BE; }
.videos-head .sec-title { color: #F7E9EF; }
.videos-head .sec-sub { max-width: 56ch; color: rgba(247,233,239,.6); }
.film-strip-edge {
  height: 10px; margin: 0 clamp(20px,6vw,84px);
  background: repeating-linear-gradient(90deg,rgba(247,233,239,.14) 0 12px,transparent 12px 24px);
  border-radius: 3px;
}
.video-strip {
  display: flex; gap: 16px; overflow-x: auto; padding: 18px clamp(20px,6vw,84px);
  scroll-snap-type: x mandatory; scrollbar-width: thin;
}
.video-strip .vcard { flex: 0 0 auto; width: min(74vw,440px); scroll-snap-align: start; }
.vcard { text-align: left; background: transparent; border: 0; padding: 0; cursor: pointer; display: block; }
.vcard .thumb {
  position: relative; aspect-ratio: 16/9; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(198,161,91,.3); box-shadow: 0 24px 60px rgba(10,3,10,.5);
  background: #1A0C18;
}
/* portrait phone clips: blurred cover fill + sharp contained poster — nothing cut off */
.vcard .art-blur {
  position: absolute; inset: -12px;
  background-size: cover; background-position: center;
  filter: blur(20px) saturate(1.15) brightness(.72);
}
.vcard .art-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; transition: transform 1.4s ease;
}
.vcard:hover .art-img { transform: scale(1.05); }
.vcard .glow-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(80% 90% at 70% 20%,rgba(255,236,214,.16),rgba(0,0,0,0) 60%);
}
.vcard .shimmer-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg,transparent 42%,rgba(255,224,196,.13) 50%,transparent 58%);
  background-size: 240% 100%; animation: shimmer 3.8s linear infinite;
}
.play-orb {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.play-orb > span {
  width: 58px; height: 58px; border-radius: 50%; background: rgba(20,8,18,.42);
  border: 1px solid rgba(251,240,244,.5); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
}
.play-orb > span::after {
  content: ''; display: block; width: 0; height: 0;
  border-left: 15px solid #FBF0F4; border-top: 9px solid transparent; border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.vcard.small .play-orb > span { width: 44px; height: 44px; }
.vcard.small .play-orb > span::after { border-left-width: 11px; border-top-width: 7px; border-bottom-width: 7px; margin-left: 3px; }
.vcard .group-pill {
  position: absolute; top: 12px; left: 12px; padding: 5px 10px; border-radius: 999px;
  font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: #E0BE83;
  background: rgba(20,8,18,.5); border: 1px solid rgba(198,161,91,.35);
}
.vcard.small .group-pill { top: 10px; left: 10px; padding: 4px 9px; font-size: 8.5px; }
.vcard .dur {
  position: absolute; bottom: 10px; right: 12px; padding: 3px 8px; border-radius: 6px;
  font-family: ui-monospace, Menlo, monospace; font-size: 11px;
  color: rgba(251,240,244,.85); background: rgba(20,8,18,.55);
}
.vcard.small .dur { bottom: 8px; right: 10px; padding: 2px 7px; font-size: 10.5px; }
.vcard .vtitle { margin: 12px 0 0; font-family: 'Cormorant Garamond', serif; font-size: 21px; color: #F7E9EF; line-height: 1.2; }
.vcard .vcap { margin: 3px 0 0; font-size: 13.5px; font-weight: 300; color: rgba(247,233,239,.62); }
.vcard.small .vtitle { margin: 10px 0 0; font-size: 17.5px; }
.vcard.small .vcap { margin: 2px 0 0; font-size: 12.5px; color: rgba(247,233,239,.58); }
.vcard.small .thumb { border-radius: 14px; box-shadow: none; border-color: rgba(198,161,91,.28); }
.video-grid {
  max-width: 1200px; margin: 36px auto 0; padding: 0 clamp(20px,6vw,84px);
  display: grid; grid-template-columns: repeat(auto-fill,minmax(min(100%,235px),1fr)); gap: 18px;
}

/* ─── timeline ─── */
.timeline { background: #FAF3EC; padding: clamp(90px,12vw,150px) clamp(20px,6vw,84px); }
.timeline-head { max-width: 780px; margin: 0 auto clamp(36px,5vw,56px); }
.timeline-head .kicker { font-size: clamp(26px,4vw,38px); color: #C98CA6; }
.timeline-head .sec-title { color: #3E2438; }
.timeline-head .sec-sub { max-width: 52ch; color: #8A6478; }
.timeline-list { max-width: 780px; margin: 0 auto; }
.tl-row { display: grid; grid-template-columns: 44px 1fr; gap: 16px; }
.tl-rail { display: flex; flex-direction: column; align-items: center; }
.tl-dot {
  width: 13px; height: 13px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%,#E8CF9E,#C6A15B);
  box-shadow: 0 0 0 5px rgba(198,161,91,.16); margin-top: 6px; flex: 0 0 auto;
}
.tl-line { width: 1px; flex: 1; background: linear-gradient(180deg,rgba(198,161,91,.55),rgba(198,161,91,.08)); margin-top: 8px; }
.tl-body { padding: 0 0 clamp(40px,7vw,60px); }
.tl-label { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: #B98A3F; }
.tl-title {
  margin: 8px 0 0; font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(24px,3.4vw,32px); line-height: 1.15; color: #3E2438;
}
.tl-text { margin: 10px 0 0; max-width: 58ch; font-size: 15.5px; font-weight: 300; line-height: 1.75; color: #8A6478; }
.tl-media {
  position: relative; max-width: 440px; margin: 18px 0 0; aspect-ratio: 16/10;
  border-radius: 18px; overflow: hidden; border: 1px solid rgba(198,161,91,.4);
  box-shadow: 0 18px 44px rgba(62,36,56,.12); background: #F1DFE6;
}
.tl-media .tl-blur {
  position: absolute; inset: -14px;
  background-size: cover; background-position: center;
  filter: blur(20px) saturate(1.15) brightness(.82);
}
.tl-media img { position: relative; width: 100%; height: 100%; object-fit: contain; }
.tl-play {
  position: absolute; left: 12px; bottom: 12px; display: flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(251,240,244,.4);
  background: rgba(20,8,18,.55); backdrop-filter: blur(8px); color: #FBF0F4;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  transition: background .3s ease;
}
.tl-play:hover { background: rgba(198,161,91,.7); }

/* ─── reasons ─── */
.reasons { background: #F7E9EC; padding: clamp(90px,12vw,150px) clamp(20px,6vw,84px); }
.reasons-head { max-width: 1200px; margin: 0 auto clamp(30px,4vw,44px); }
.reasons-head .kicker { font-size: clamp(26px,4vw,38px); color: #C98CA6; }
.reasons-head .sec-title { color: #3E2438; }
.trait-chips { margin: 18px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.trait-chips span {
  padding: 7px 15px; border-radius: 999px; border: 1px solid rgba(198,161,91,.55);
  font-size: 12px; letter-spacing: .08em; color: #6E3E56; background: rgba(255,255,255,.55);
}
.bento {
  max-width: 1200px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(auto-fill,minmax(150px,1fr));
  grid-auto-rows: 120px; grid-auto-flow: dense; gap: 14px;
}
.bento > * { transition: transform .4s ease; border-radius: 22px; }
.bento > *:hover { transform: translateY(-4px); }
.bento .b-2x2 { grid-column: span 2; grid-row: span 2; }
.bento .b-2x1 { grid-column: span 2; }
.bento-text-dark {
  background: #3E2438; border: 1px solid rgba(198,161,91,.35); padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; box-sizing: border-box;
}
.bento-text-dark .no { font-family: 'Great Vibes', cursive; font-size: 22px; color: #D9A8BE; line-height: 1; }
.bento-text-dark .t { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px,2.6vw,27px); line-height: 1.15; color: #F7E9EF; }
.bento-text-dark .s { font-size: 13px; font-weight: 300; line-height: 1.6; color: rgba(247,233,239,.6); }
.bento-photo { position: relative; overflow: hidden; border: 1px solid rgba(198,161,91,.4); background: #F1DFE6; }
.bento-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; position: absolute; inset: 0; }
.bento-photo .scrim {
  pointer-events: none; position: absolute; left: 0; right: 0; bottom: 0;
  padding: 34px 16px 12px; background: linear-gradient(180deg,rgba(46,26,43,0),rgba(46,26,43,.68));
}
.bento-photo .scrim div { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 19px; color: #FBF0F4; }
.bento-text-light { padding: 20px; display: flex; flex-direction: column; justify-content: center; gap: 4px; box-sizing: border-box; }
.bento-text-light .t { font-family: 'Cormorant Garamond', serif; font-size: 20px; line-height: 1.2; color: #3E2438; }
.bento-text-light .s { font-size: 12.5px; font-weight: 300; color: #8A6478; }
.bento-cream { background: #FBF6F1; border: 1px solid rgba(62,36,56,.12); }
.bento-blush { background: #F6DDE2; border: 1px solid rgba(198,161,91,.35); }
.bento-loop {
  position: relative; overflow: hidden; border: 1px solid rgba(198,161,91,.4);
  background: linear-gradient(135deg,#4A2544,#8A4A63 55%,#C98CA6);
  padding: 0; cursor: pointer; text-align: left;
}
.bento-loop video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; position: absolute; inset: 0; }
.bento-loop .shimmer-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg,transparent 42%,rgba(255,224,196,.15) 50%,transparent 58%);
  background-size: 240% 100%; animation: shimmer 4.2s linear infinite;
}
.bento-loop .tag {
  position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 999px;
  font-size: 9px; letter-spacing: .2em; color: #E0BE83; background: rgba(20,8,18,.5);
  border: 1px solid rgba(198,161,91,.4); z-index: 2;
}
.bento-loop .cap { position: absolute; left: 16px; right: 16px; bottom: 12px; z-index: 2; }
.bento-loop .cap div { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 19px; color: #FBF0F4; }
.bento-loop .play-orb > span { width: 50px; height: 50px; }
.bento-loop .play-orb > span::after { border-left-width: 13px; border-top-width: 8px; border-bottom-width: 8px; margin-left: 3px; }

/* ─── abby coded ─── */
.coded { background: #FBF6F1; padding: clamp(90px,12vw,150px) clamp(20px,6vw,84px); }
.coded-head { max-width: 1200px; margin: 0 auto clamp(30px,4vw,48px); }
.coded-head .kicker { font-size: clamp(26px,4vw,38px); color: #C98CA6; }
.coded-head .sec-title { color: #3E2438; }
.coded-head .sec-sub { max-width: 52ch; color: #8A6478; }
.coded-body { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(36px,5vw,52px); }
.coded-label { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: #B98A3F; margin: 0 0 16px; }
.palette { display: flex; flex-wrap: wrap; gap: 22px; }
.swatch { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.swatch i {
  width: 58px; height: 58px; border-radius: 50%; border: 1px solid rgba(62,36,56,.12);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.5);
}
.swatch .n { font-size: 11.5px; color: #5A3550; }
.swatch .h { font-family: ui-monospace, Menlo, monospace; font-size: 9.5px; color: #B08FA3; }
.energy { display: flex; flex-wrap: wrap; gap: 10px; }
.energy span {
  padding: 9px 18px; border-radius: 999px; border: 1px solid rgba(198,161,91,.5);
  background: rgba(255,255,255,.65); font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 15.5px; color: #6E3E56;
}
.shrine { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 6px; }
.shrine-label { text-align: center; }
.polaroid {
  background: #FFFDFB; padding: 10px 10px 42px; box-shadow: 0 16px 36px rgba(62,36,56,.14);
  border: 1px solid rgba(62,36,56,.06); position: relative;
}
.polaroid .ph { width: 152px; height: 158px; overflow: hidden; background: #F1DFE6; }
.polaroid .ph img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; }
.polaroid .cap {
  position: absolute; left: 0; right: 0; bottom: 10px; text-align: center;
  font-family: 'Great Vibes', cursive; font-size: 19px; color: #7C566C;
}
.soundtrack-note { font-size: 12px; font-weight: 300; color: #B08FA3; margin: 0 0 16px; font-style: italic; }
.tracks { display: flex; gap: 14px; overflow-x: auto; padding: 2px 2px 8px; }
.track {
  flex: 0 0 auto; width: 238px; display: flex; gap: 12px; align-items: center; padding: 12px;
  border-radius: 16px; border: 1px solid rgba(62,36,56,.12); background: #FFFDFB;
  box-shadow: 0 10px 26px rgba(62,36,56,.07);
}
.track .disc { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.track .disc i { width: 26px; height: 26px; border-radius: 50%; border: 7px solid rgba(36,19,34,.7); }
.track .meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.track .t { font-family: 'Cormorant Garamond', serif; font-size: 16.5px; color: #3E2438; }
.track .k { font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: #B98A3F; }
.track .s { font-style: italic; font-size: 12px; font-weight: 300; color: #8A6478; }

/* ─── surprise ─── */
.surprise {
  position: relative; overflow: hidden; background: #1E0F1C;
  padding: clamp(100px,14vw,170px) clamp(20px,6vw,84px);
}
.surprise-bg { position: absolute; inset: 0; background: radial-gradient(60% 50% at 50% 42%,rgba(122,64,88,.35),rgba(30,15,28,0) 70%); }
.surprise-inner { position: relative; max-width: 680px; margin: 0 auto; text-align: center; }
.surprise .kicker { font-size: clamp(28px,4.5vw,40px); color: #D9A8BE; }
.surprise-title {
  margin: 10px 0 0; font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(30px,4.6vw,46px); line-height: 1.1; color: #F7E9EF; text-wrap: balance;
}
.gift { margin: 40px auto 0; width: min(86vw,380px); position: relative; }
.gift-box {
  border-radius: 20px; border: 1px solid rgba(198,161,91,.5);
  background: linear-gradient(160deg,#3A1F36,#2A1428);
  padding: 0 26px 30px; box-shadow: 0 30px 80px rgba(0,0,0,.5); position: relative;
}
.gift-box .lid {
  position: absolute; top: 0; left: 0; right: 0; height: 56px;
  background: linear-gradient(180deg,rgba(198,161,91,.16),rgba(198,161,91,0));
  border-radius: 20px 20px 0 0; border-bottom: 1px dashed rgba(198,161,91,.35);
}
.gift-box .seal {
  position: relative; width: 74px; height: 74px; border-radius: 50%; margin: 20px auto 0;
  background: radial-gradient(circle at 35% 30%,#E0BE83,#B98A3F);
  box-shadow: 0 10px 26px rgba(0,0,0,.4); display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 32px; color: #2E1A2B;
  animation: pulseSoft 3s ease infinite;
}
.gift-box .for { margin: 18px 0 0; font-family: 'Great Vibes', cursive; font-size: 23px; color: #D9A8BE; }
.gift-box .fine { margin: 8px 0 0; font-family: ui-monospace, Menlo, monospace; font-size: 10px; letter-spacing: .1em; color: rgba(247,233,239,.4); }
.surprise .btn-gold { margin: 28px auto 0; display: inline-flex; }
.surprise-open {
  animation: riseIn 1.1s cubic-bezier(.22,1,.36,1) both; text-align: left;
  background: rgba(251,240,246,.06); border: 1px solid rgba(198,161,91,.45);
  border-radius: 30px; backdrop-filter: blur(16px);
  padding: clamp(26px,5vw,52px); box-shadow: 0 40px 110px rgba(0,0,0,.55);
}
.surprise-open .salute { font-family: 'Great Vibes', cursive; font-size: clamp(28px,4.5vw,38px); color: #D9A8BE; line-height: 1; }
.surprise-open p { margin: 20px 0 0; font-weight: 300; font-size: 16.5px; line-height: 1.9; color: rgba(247,233,239,.85); }
.surprise-open p + p { margin-top: 14px; }
.surprise-photo {
  margin: 26px 0 0; aspect-ratio: 4/3; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(198,161,91,.45); background: #3A1F36;
}
.surprise-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.surprise-actions { margin: 18px 0 0; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-clip {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 999px;
  border: 1px solid rgba(198,161,91,.55); background: rgba(20,8,18,.4); color: #F7E9EF;
  font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  transition: background .3s ease;
}
.btn-clip:hover { background: rgba(198,161,91,.35); }
[hidden] { display: none !important; }

/* ─── finale ─── */
.finale {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg,#241322,#301A2E 60%,#3E2438);
  padding: clamp(110px,15vw,180px) clamp(20px,6vw,84px) clamp(60px,8vw,100px);
  text-align: center;
}
.finale-halo {
  position: absolute; left: 50%; top: 34%; transform: translate(-50%,-50%);
  width: min(80vw,720px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle,rgba(226,195,136,.26),rgba(226,195,136,0) 68%);
  filter: blur(40px); animation: glowPulse 6s ease-in-out infinite; pointer-events: none;
}
.finale-inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; }
.finale-photos { display: flex; justify-content: center; align-items: center; margin: 0 0 48px; }
.finale-side { z-index: 1; }
.finale-side.left { margin-right: -24px; }
.finale-side.right { margin-left: -24px; }
.finale-side .frame {
  width: clamp(104px,18vw,200px); aspect-ratio: 3/4; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(198,161,91,.5); box-shadow: 0 24px 60px rgba(0,0,0,.5); background: #3A1F36;
}
.finale-side.left .frame { transform: rotate(-7deg); }
.finale-side.right .frame { transform: rotate(6deg); }
.finale-side img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.finale-center { position: relative; z-index: 2; }
.finale-center .ring {
  padding: 10px; border: 1px solid rgba(198,161,91,.55); border-radius: 999px 999px 28px 28px;
  background: rgba(255,253,251,.07); backdrop-filter: blur(8px); box-shadow: 0 50px 120px rgba(0,0,0,.55);
}
.finale-center .frame {
  width: min(66vw,400px); aspect-ratio: 3/4; border-radius: 999px 999px 20px 20px;
  overflow: hidden; background: #3A1F36;
}
.finale-center img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; }
.finale .kicker { font-size: clamp(30px,5vw,44px); color: #D9A8BE; }
.finale-title {
  margin: 10px 0 0; font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(46px,8vw,96px); line-height: 1; color: #F7E9EF; text-wrap: balance;
}
.finale-title em { font-style: italic; color: #E0BE83; }
.finale-sub { margin: 20px auto 0; max-width: 46ch; font-size: 15.5px; font-weight: 300; line-height: 1.8; color: rgba(247,233,239,.6); }
.finale-ctas { margin: 34px 0 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.btn-outline {
  padding: 14px 28px; border-radius: 999px; border: 1px solid rgba(247,233,239,.4);
  background: transparent; color: #F7E9EF; font-size: 14px; letter-spacing: .05em; cursor: pointer;
  transition: border-color .3s ease, transform .3s ease;
}
.btn-outline:hover { border-color: #E0BE83; transform: translateY(-2px); }
.finale-footer {
  margin: clamp(60px,9vw,100px) auto 0; padding: 22px 0 0;
  border-top: 1px solid rgba(198,161,91,.2);
  font-family: ui-monospace, Menlo, monospace; font-size: 10.5px; color: rgba(247,233,239,.4);
}

/* ─── lightbox + video modal ─── */
.modal {
  position: fixed; inset: 0; z-index: 100; background: rgba(18,7,17,.9);
  backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center;
  padding: clamp(14px,4vw,40px);
}
.modal-close, .modal-nav {
  position: absolute; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(251,240,244,.4); background: rgba(46,26,43,.5); color: #FBF0F4;
  cursor: pointer; transition: background .3s ease; z-index: 2;
}
.modal-close:hover, .modal-nav:hover { background: rgba(198,161,91,.6); }
.modal-close { top: 18px; right: 18px; font-size: 16px; }
.modal-nav { top: 50%; transform: translateY(-50%); font-size: 22px; line-height: 1; }
.modal-nav.prev { left: 14px; }
.modal-nav.next { right: 14px; }
.lightbox-body { max-width: 920px; width: 100%; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.lightbox-img {
  max-width: min(860px, 100%); max-height: min(70vh, 74vw);
  width: auto; height: auto; object-fit: contain;
  filter: drop-shadow(0 30px 70px rgba(0,0,0,.55));
  border-radius: 10px;
}
.lightbox-meta { display: flex; gap: 14px; align-items: baseline; flex-wrap: wrap; justify-content: center; }
.lightbox-meta .cap { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 20px; color: #FBF0F4; }
.lightbox-meta .cat { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: #E0BE83; }
.lightbox-meta .counter { font-size: 11px; color: rgba(251,240,244,.5); font-family: ui-monospace, Menlo, monospace; }
.video-modal-body { width: fit-content; max-width: 92vw; }
.video-shell {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(198,161,91,.45); background: #120711;
  box-shadow: 0 50px 140px rgba(0,0,0,.65);
}
.video-shell video {
  display: block; width: auto; height: auto;
  max-width: 92vw; max-height: 66vh; margin: 0 auto;
  background: #120711;
}
.video-modal-meta { margin: 16px 0 0; display: flex; flex-direction: column; gap: 6px; }
.video-modal-meta .row { display: flex; gap: 12px; align-items: baseline; flex-wrap: wrap; }
.video-modal-meta .t { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: #F7E9EF; }
.video-modal-meta .g { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: #E0BE83; }
.video-modal-meta .c { font-size: 14px; font-weight: 300; color: rgba(247,233,239,.65); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
