:root {
  --color-bg: #FAF8F5;
  --color-bg-alt: #F3F0EB;
  --color-bg-alt-rgb: 243, 240, 235;
  --color-surface: #FFFFFF;
  --color-text: #1A1A1A;
  --color-text-mid: #5A5651;
  --color-text-lt: #918B83;
  --color-accent: #B8956A;
  --color-border: #E5E0D9;
  --color-overlay: rgba(15, 12, 8, .88);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', Helvetica, Arial, sans-serif;
  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  --space-xxl: 10rem;
  --ease-out: cubic-bezier(.25, .46, .45, .94);
  --ease-smooth: cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

a {
  color: inherit;
  text-decoration: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp .9s var(--ease-out) forwards
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-smooth), transform .7s var(--ease-smooth)
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0)
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  transition: background .4s, box-shadow .4s
}

.nav.is-scrolled {
  background: rgba(250, 248, 245, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border)
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: .04em
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 2rem
}

.nav__links a {
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width .35s var(--ease-smooth)
}

.nav__links a:hover::after {
  width: 100%
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  position: relative;
  z-index: 101
}

.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s
}

.nav__toggle.is-open span:first-child {
  transform: translateY(3.25px) rotate(45deg)
}

.nav__toggle.is-open span:last-child {
  transform: translateY(-3.25px) rotate(-45deg)
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
 background: rgba(var(--color-bg-alt-rgb), 0.5);
  overflow: hidden
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  background: var(--color-border)
}

.hero::before {
  width: 1px;
  height: 120px;
  top: 0;
  left: 50%
}

.hero::after {
  width: 120px;
  height: 1px;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%)
}

.hero__inner {
  max-width: 680px
}

.hero__kicker {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-text-mid);
  margin-bottom: var(--space-sm)
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 10rem);
  font-weight: 300;
  line-height: .9;
  letter-spacing: -.02em;
  margin-bottom: var(--space-lg)
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--color-accent)
}

.hero__countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: var(--space-lg)
}

.countdown__block {
  text-align: center
}

.countdown__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: .02em
}

.countdown__label {
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-text-lt);
  margin-top: 4px;
  display: block
}

.countdown__sep {
  font-size: 1.4rem;
  color: var(--color-border);
  margin-top: -1rem
}

.hero__quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--color-text-mid);
  min-height: 3.4rem;
  transition: opacity .5s
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem
}

.hero__scroll span {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-text-lt)
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: var(--color-accent);
  animation: scrollPulse 2s ease-in-out infinite
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(.6)
  }

  50% {
    opacity: 1;
    transform: scaleY(1)
  }
}

/* SECTIONS */
.section {
  padding: var(--space-xxl) var(--space-md)
}

.section__inner {
  max-width: 960px;
  margin: 0 auto
}

.section__kicker {
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xs)
}

.section__heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: var(--space-lg)
}

/* DETAILS */
.section--details {
  background: var(--color-bg)
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md)
}

.detail-card {
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  text-align: center
}

.detail-card__icon {
  display: block;
  font-size: 1.6rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm)
}

.detail-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: .5rem
}

.detail-card__text {
  font-size: .88rem;
  color: var(--color-text-mid);
  line-height: 1.7
}

/* TIMELINE */
.section--weekend {
  background: rgba(var(--color-bg-alt-rgb), 0.18);
}

.timeline {
  position: relative;
  padding-left: 2.5rem
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--color-border)
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-lg)
}

.timeline__item:last-child {
  padding-bottom: 0
}

.timeline__marker {
  position: absolute;
  left: -2.5rem;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  background: var(--color-bg-alt)
}

.timeline__time {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 400
}

.timeline__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin: .2rem 0 .4rem
}

.timeline__desc {
  font-size: .88rem;
  color: var(--color-text-mid);
  max-width: 480px
}

/* BRING */
.section--bring {
  background: var(--color-bg)
}

.bring-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md)
}

.bring-card {
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--color-border)
}

.bring-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-border);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-sm)
}

.bring-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: .5rem
}

.bring-card__title em {
  font-weight: 300;
  color: var(--color-text-mid)
}

.bring-card__text {
  font-size: .88rem;
  color: var(--color-text-mid)
}

/* GALLERY */
.section--gallery {
  background: rgba(var(--color-bg-alt-rgb), 0.5);
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: var(--space-lg)
}

.gallery-tab {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-text-lt);
  padding-bottom: 4px;
  border-bottom: 1.5px solid transparent;
  transition: color .3s, border-color .3s
}

.gallery-tab--active,
.gallery-tab:hover {
  color: var(--color-text);
  border-color: var(--color-accent)
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: .6rem
}

.gallery-grid .gallery-item:nth-child(1) {
  grid-row: span 2
}

.gallery-grid .gallery-item:nth-child(4) {
  grid-column: span 2
}

.gallery-grid--hidden {
  display: none
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--color-border)
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-smooth), filter .6s
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.05)
}


/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible
}

.lightbox__img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: #fff;
  line-height: 1
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: rgba(255, 255, 255, .7);
  padding: 1rem;
  transition: color .2s
}

.lightbox__prev:hover,
.lightbox__next:hover {
  color: #fff
}

.lightbox__prev {
  left: 1.5rem
}

.lightbox__next {
  right: 1.5rem
}

/* ON THE DAY */
.section--ontheday {
  background: var(--color-bg)
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md)
}

.info-block {
  padding: var(--space-md);
  border-left: 2px solid var(--color-accent);
  background: var(--color-surface)
}

.info-block--wide {
  grid-column: 1/-1
}

.info-block__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: .5rem
}

.info-block__text {
  font-size: .88rem;
  color: var(--color-text-mid);
  line-height: 1.8
}

.info-block__text strong {
  color: var(--color-text);
  font-weight: 500
}

/* FOOTER */
.footer {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid var(--color-border);
  background-color: #1A1A1A;
}

.footer__text {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 400;
  color: var(--color-text-lt);
  letter-spacing: .08em
}

/* RESPONSIVE */
@media(max-width:768px) {
  .nav__links {
    display: none
  }

  .nav__toggle {
    display: flex
  }

  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    position: fixed;
    inset: 0;
    background: rgba(250, 248, 245, .97);
    backdrop-filter: blur(16px);
    justify-content: center;
    z-index: 100
  }

  .music-btn.nav-is-open {
    display: none
  }

  .nav__links.is-open a {
    font-size: 1rem;
    letter-spacing: .16em
  }

  .details-grid {
    grid-template-columns: 1fr
  }

  .bring-grid {
    grid-template-columns: 1fr
  }

  .info-grid {
    grid-template-columns: 1fr
  }

  .info-block--wide {
    grid-column: auto
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px
  }

  .gallery-grid .gallery-item:nth-child(1) {
    grid-row: span 2
  }

  .gallery-grid .gallery-item:nth-child(4) {
    grid-column: span 1
  }

  .section {
    padding: var(--space-xl) var(--space-sm)
  }

  .hero__title {
    margin-bottom: var(--space-md)
  }
}

@media(max-width:480px) {
  .nav {
    padding: 1rem 1.25rem
  }

  .hero__countdown {
    gap: .6rem
  }

  .countdown__number {
    font-size: 2rem
  }

  .countdown__sep {
    font-size: 1rem
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px
  }

  .gallery-grid .gallery-item:nth-child(1) {
    grid-row: span 1
  }
}

/* SECTION ILLUSTRATIONS */
.section--details,
.section--weekend,
.section--bring,
.section--gallery,
.section--ontheday {
  position: relative;
  overflow: hidden
}

.section--details::after,
.section--weekend::after,
.section--bring::after,
.section--gallery::after,
.section--ontheday::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain
}

.section__inner,
.hero__inner,
.hero__scroll,
.footer__text {
  position: relative;
  z-index: 1
}

.hero {
  position: relative;
  overflow: hidden
}

.hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-image: url('assets/images/molove-13.jpg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 400px;
  height: 540px;
  bottom: -30px;
  right: 5%;
  opacity: .18
}

.section--details::after {
  background-image: url('assets/images/molove-14.jpg');
  width: 460px;
  height: 260px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: .25
}

.section--weekend::after {
  background-image: url('assets/images/molove-15.jpg');
  width: 360px;
  height: 480px;
  bottom: -20px;
  left: 0;
  opacity: .18
}

.section--bring::after {
  background-image: url('assets/images/molove-19.jpg');
  width: 600px;
  height: 330px;
  bottom: -30px;
  right: 0;
  opacity: .2
}

.section--gallery::after {
  background-image: url('assets/images/molove-17.jpg');
  width: 320px;
  height: 430px;
  bottom: 0px;
  left: 0;
  opacity: .15
}

.section--ontheday::after {
  display: none
}

@media(max-width:768px) {
  .hero::after {
    width: 260px;
    height: 350px;
    right: -20px;
    opacity: .12
  }

  .section--details::after {
    width: 300px;
    height: 170px;
    right: 20px;
    top: 90px;
    position: absolute;
    opacity: .18;
  }

  .section--weekend::after {
    width: 240px;
    height: 320px;
    left: -30px
  }

  .section--bring::after {
    width: 380px;
    height: 210px
  }

  .section--gallery::after {
    width: 220px;
    height: 290px;
    left: 160px;
    position: absolute;
    opacity: .18;
    top: 10px;
  }

  .section--ontheday::after {
    width: 340px;
    height: 185px
  }
}

/* On the Day — header with illustration */
.ontheday-header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg)
}

.ontheday-header__text {
  flex: 1
}

.ontheday-header__text .section__kicker {
  margin-bottom: var(--space-xs)
}

.ontheday-header__text .section__heading {
  margin-bottom: 0
}

.ontheday-header__img {
  flex: 0 0 320px;
  max-width: 320px;
  opacity: .85
}

.ontheday-header__img img {
  width: 100%;
  height: auto
}

@media(max-width:768px) {
  .ontheday-header {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center
  }

  .ontheday-header__img {
    flex: 0 0 auto;
    max-width: 240px
  }
}

/* SUBTLE CONFETTI — gentle falling petals/shapes */
.confetti-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden
}

.confetti-piece {
  position: absolute;
  top: -20px;
  opacity: 0;
  animation: confettiFall linear infinite, confettiSway ease-in-out infinite
}

@keyframes confettiFall {
  0% {
    top: -5%;
    opacity: 0
  }

  8% {
    opacity: 1
  }

  80% {
    opacity: .6
  }

  100% {
    top: 105%;
    opacity: 0
  }
}

@keyframes confettiSway {

  0%,
  100% {
    transform: translateX(0) rotate(0deg)
  }

  25% {
    transform: translateX(18px) rotate(40deg)
  }

  50% {
    transform: translateX(-12px) rotate(-20deg)
  }

  75% {
    transform: translateX(22px) rotate(60deg)
  }
}

/* Individual pieces — varied sizes, colours, speeds, delays */
.confetti-piece:nth-child(1) {
  left: 5%;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation-duration: 14s, 4s;
  animation-delay: 0s
}

.confetti-piece:nth-child(2) {
  left: 15%;
  width: 4px;
  height: 8px;
  background: #D4C9BB;
  border-radius: 1px;
  animation-duration: 18s, 5s;
  animation-delay: 2s
}

.confetti-piece:nth-child(3) {
  left: 25%;
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  opacity: .7;
  border-radius: 50%;
  animation-duration: 16s, 3.5s;
  animation-delay: 4s
}

.confetti-piece:nth-child(4) {
  left: 35%;
  width: 3px;
  height: 10px;
  background: #C8BAA9;
  border-radius: 1px;
  animation-duration: 20s, 4.5s;
  animation-delay: 1s
}

.confetti-piece:nth-child(5) {
  left: 45%;
  width: 7px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 1px;
  animation-duration: 15s, 5.5s;
  animation-delay: 6s
}

.confetti-piece:nth-child(6) {
  left: 55%;
  width: 5px;
  height: 5px;
  background: #E5E0D9;
  border-radius: 50%;
  animation-duration: 19s, 3s;
  animation-delay: 3s
}

.confetti-piece:nth-child(7) {
  left: 65%;
  width: 4px;
  height: 9px;
  background: var(--color-accent);
  opacity: .6;
  border-radius: 1px;
  animation-duration: 17s, 4s;
  animation-delay: 7s
}

.confetti-piece:nth-child(8) {
  left: 75%;
  width: 6px;
  height: 3px;
  background: #D4C9BB;
  border-radius: 1px;
  animation-duration: 22s, 5s;
  animation-delay: 5s
}

.confetti-piece:nth-child(9) {
  left: 82%;
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 50%;
  animation-duration: 16s, 3.8s;
  animation-delay: 8s
}

.confetti-piece:nth-child(10) {
  left: 92%;
  width: 3px;
  height: 7px;
  background: #C8BAA9;
  border-radius: 1px;
  animation-duration: 21s, 4.2s;
  animation-delay: 0.5s
}

.confetti-piece:nth-child(11) {
  left: 10%;
  width: 5px;
  height: 3px;
  background: var(--color-accent);
  opacity: .5;
  border-radius: 1px;
  animation-duration: 23s, 5.2s;
  animation-delay: 9s
}

.confetti-piece:nth-child(12) {
  left: 40%;
  width: 4px;
  height: 4px;
  background: #E5E0D9;
  border-radius: 50%;
  animation-duration: 18s, 3.6s;
  animation-delay: 11s
}

.confetti-piece:nth-child(13) {
  left: 60%;
  width: 6px;
  height: 5px;
  background: var(--color-accent);
  opacity: .4;
  border-radius: 1px;
  animation-duration: 20s, 4.8s;
  animation-delay: 3.5s
}

.confetti-piece:nth-child(14) {
  left: 88%;
  width: 3px;
  height: 6px;
  background: #D4C9BB;
  border-radius: 1px;
  animation-duration: 17s, 3.2s;
  animation-delay: 6.5s
}

.confetti-piece:nth-child(15) {
  left: 50%;
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  opacity: .5;
  border-radius: 50%;
  animation-duration: 25s, 5.5s;
  animation-delay: 13s
}

.confetti-piece:nth-child(16) {
  left: 8%;
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
  animation-duration: 13s, 3.8s;
  animation-delay: 1.5s
}

.confetti-piece:nth-child(17) {
  left: 18%;
  width: 3px;
  height: 11px;
  background: #D4C9BB;
  border-radius: 1px;
  animation-duration: 19s, 4.6s;
  animation-delay: 4.5s
}

.confetti-piece:nth-child(18) {
  left: 28%;
  width: 6px;
  height: 4px;
  background: var(--color-accent);
  opacity: .8;
  border-radius: 1px;
  animation-duration: 16s, 5s;
  animation-delay: 8.5s
}

.confetti-piece:nth-child(19) {
  left: 38%;
  width: 4px;
  height: 4px;
  background: #E5E0D9;
  border-radius: 50%;
  animation-duration: 21s, 3.4s;
  animation-delay: 2.5s
}

.confetti-piece:nth-child(20) {
  left: 48%;
  width: 5px;
  height: 8px;
  background: var(--color-accent);
  opacity: .6;
  border-radius: 1px;
  animation-duration: 14s, 4.2s;
  animation-delay: 10s
}

.confetti-piece:nth-child(21) {
  left: 58%;
  width: 8px;
  height: 5px;
  background: #C8BAA9;
  border-radius: 1px;
  animation-duration: 18s, 5.8s;
  animation-delay: 0.8s
}

.confetti-piece:nth-child(22) {
  left: 68%;
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
  animation-duration: 22s, 3.2s;
  animation-delay: 7.5s
}

.confetti-piece:nth-child(23) {
  left: 78%;
  width: 4px;
  height: 9px;
  background: #D4C9BB;
  opacity: .7;
  border-radius: 1px;
  animation-duration: 17s, 4.4s;
  animation-delay: 5.5s
}

.confetti-piece:nth-child(24) {
  left: 85%;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  opacity: .5;
  border-radius: 50%;
  animation-duration: 20s, 3.6s;
  animation-delay: 12s
}

.confetti-piece:nth-child(25) {
  left: 3%;
  width: 3px;
  height: 8px;
  background: #E5E0D9;
  border-radius: 1px;
  animation-duration: 24s, 5.2s;
  animation-delay: 9.5s
}

.confetti-piece:nth-child(26) {
  left: 22%;
  width: 7px;
  height: 3px;
  background: var(--color-accent);
  opacity: .45;
  border-radius: 1px;
  animation-duration: 15s, 4s;
  animation-delay: 14s
}

.confetti-piece:nth-child(27) {
  left: 43%;
  width: 4px;
  height: 6px;
  background: #C8BAA9;
  border-radius: 1px;
  animation-duration: 19s, 3s;
  animation-delay: 6.5s
}

.confetti-piece:nth-child(28) {
  left: 62%;
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
  animation-duration: 23s, 4.8s;
  animation-delay: 1.8s
}

.confetti-piece:nth-child(29) {
  left: 80%;
  width: 3px;
  height: 10px;
  background: #D4C9BB;
  opacity: .6;
  border-radius: 1px;
  animation-duration: 16s, 5.4s;
  animation-delay: 11.5s
}

.confetti-piece:nth-child(30) {
  left: 95%;
  width: 6px;
  height: 4px;
  background: var(--color-accent);
  opacity: .55;
  border-radius: 1px;
  animation-duration: 21s, 3.8s;
  animation-delay: 4s
}

/* Reduce on mobile for performance — show first 15 */
@media(max-width:768px) {
  .confetti-piece:nth-child(n+16) {
    display: none
  }
}

/* Respect reduced motion preference */
@media(prefers-reduced-motion:reduce) {
  .confetti-wrap {
    display: none
  }
}

/* MUSIC BUTTON */
.music-btn {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 150;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(184,149,106,.35);
  transition: transform .25s var(--ease-out), box-shadow .25s, background .25s
}

.music-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(184,149,106,.5)
}

.music-btn__icon {
  position: absolute;
  transition: opacity .2s, transform .2s
}

.music-btn__icon--play {
  opacity: 1;
  transform: scale(1)
}

.music-btn__icon--pause {
  opacity: 0;
  transform: scale(.7)
}

.music-btn__note {
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0;
  position: absolute;
  pointer-events: none
}

.music-btn.is-playing .music-btn__icon--play {
  opacity: 0;
  transform: scale(.7)
}

.music-btn.is-playing .music-btn__icon--pause {
  opacity: 1;
  transform: scale(1)
}

/* Pulsing ring when playing */
.music-btn.is-playing::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  animation: musicPulse 2s ease-out infinite;
  opacity: 0
}

@keyframes musicPulse {
  0% { transform: scale(1); opacity: .6 }
  100% { transform: scale(1.6); opacity: 0 }
}

@media(max-width:480px) {
  .music-btn {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 42px;
    height: 42px
  }
}