/* dezglassworks — shared styles
   girly-pop cottagecore, refined: 🍓🦋🌺🐚✨
   warm cream base · fresh rose · berry accent · sage whisper         */

:root {
  --cream:      #fff7ee;   /* warm cream base */
  --cream-2:    #ffeee0;   /* peachy cream */
  --cream-3:    #fce4d2;   /* soft peach */
  --off-white:  #fffaf3;
  --blush:      #ffd5dd;   /* blush pink */
  --blush-2:    #ffbfc9;   /* deeper blush */
  --bubblegum:  #ffa8bb;   /* girly pop pink */
  --rose:       #ff7a94;   /* fresh rose */
  --rose-deep:  #e85c7a;   /* saturated rose */
  --berry:      #d13a5f;   /* berry accent */
  --cherry:     #e54c4c;   /* bright cherry red */
  --sage:       #b3d1a8;   /* fresh sage */
  --mint:       #c9e8d4;   /* mint whisper */
  --honey:      #ffd98a;   /* butterfly honey */
  --sky:        #c8e5f0;   /* whisper sky */
  --ink:        #5a2a36;   /* warm plum text */
  --soft-ink:   #8a555f;
  --shadow:     rgba(209, 58, 95, .18);
  --shadow-deep:rgba(90, 42, 54, .22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Fraunces', 'Lora', Georgia, serif;
  font-size: 1.05rem;
  background:
    radial-gradient(ellipse at 15% 5%, rgba(255, 169, 187, 0.35), transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(255, 217, 138, 0.28), transparent 55%),
    radial-gradient(ellipse at 50% 90%, rgba(201, 232, 212, 0.3), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 60%, var(--cream-3) 100%);
  background-attachment: fixed;
  color: var(--ink);
  line-height: 1.75;
  overflow-x: hidden;
  position: relative;
}

/* soft paper grain — barely-there */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .12;
  mix-blend-mode: multiply;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .9 0 0 0 0 .6 0 0 0 0 .65 0 0 0 .5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* --- nav --- */
nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 2rem;
  background: rgba(255, 247, 238, 0.82);
  backdrop-filter: blur(14px) saturate(1.15);
  border-bottom: 1px dashed var(--blush-2);
  box-shadow: 0 4px 16px -6px var(--shadow);
}
.logo {
  font-family: 'Caveat', cursive;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--berry);
  line-height: .9;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  letter-spacing: .01em;
  text-shadow: 0 1px 0 var(--cream);
}
.logo .berry-dot { font-size: 1.1rem; filter: none; }
nav ul { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
nav a {
  color: var(--ink); text-decoration: none;
  font-family: 'Fraunces', serif;
  font-size: .98rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: .01em;
  position: relative; padding: .3rem 0;
  transition: color .3s;
}
nav a::after {
  content: '';
  position: absolute; left: 50%; bottom: -2px;
  transform: translateX(-50%);
  height: 2px; width: 0;
  background: var(--rose);
  border-radius: 2px;
  transition: width .4s ease;
}
nav a:hover { color: var(--berry); }
nav a:hover::after { width: 100%; }
nav a.active { color: var(--berry); }
nav a.active::after { width: 100%; }

/* --- hero --- */
.hero {
  min-height: 82vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 5rem 1.5rem 4rem;
  position: relative;
}

/* big soft blush bloom behind the headline */
.hero::before {
  content: '';
  position: absolute;
  top: 15%; left: 50%;
  transform: translateX(-50%);
  width: min(780px, 95%);
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(255, 168, 187, 0.45), rgba(255, 213, 221, 0.25) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}
.hero > * { position: relative; z-index: 2; }

.hero .tag {
  display: inline-flex; align-items: center; gap: .4rem;
  background: linear-gradient(180deg, var(--cream), var(--blush));
  color: var(--berry);
  padding: .5rem 1.2rem;
  border-radius: 999px;
  font-size: .9rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1.75rem;
  border: 1px dashed var(--rose);
  box-shadow: 0 4px 12px -4px var(--shadow);
}
.hero h1 {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: clamp(3.8rem, 12vw, 8rem);
  line-height: .92;
  color: var(--ink);
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 0 rgba(255, 247, 238, .6);
}
.hero h1 .accent {
  color: var(--rose-deep);
  font-style: italic;
  display: inline-block;
  position: relative;
  padding: 0 .1em;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 3%; right: 3%;
  bottom: 6%;
  height: .28em;
  background: var(--bubblegum);
  opacity: .45;
  border-radius: 999px;
  z-index: -1;
}
.hero p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  max-width: 560px;
  color: var(--soft-ink);
  margin-bottom: 2rem;
}
.hero .cta-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.cta {
  display: inline-block;
  background: linear-gradient(180deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: var(--cream);
  padding: .9rem 2.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .01em;
  border: 2px solid var(--cream);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .55),
    0 6px 16px -6px var(--shadow),
    0 2px 0 rgba(209, 58, 95, .45);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.cta:hover {
  transform: translateY(-2px) rotate(-1deg);
  background: linear-gradient(180deg, var(--rose-deep), var(--berry));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .55),
    0 10px 24px -6px var(--shadow),
    0 3px 0 rgba(209, 58, 95, .45);
}
.cta.outline {
  background: var(--cream);
  color: var(--berry);
  border: 2px solid var(--rose);
  box-shadow: 0 4px 12px -6px var(--shadow);
}
.cta.outline:hover {
  background: var(--blush);
  color: var(--berry);
  transform: translateY(-2px) rotate(1deg);
}

.wave-divider {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 50px;
  overflow: hidden; line-height: 0;
}
.wave-divider svg { width: 100%; height: 100%; }
.wave-divider path { fill: var(--cream-3); }

/* --- sections --- */
section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-title {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  text-align: center;
  margin-bottom: .3rem;
  line-height: 1;
  color: var(--ink);
}
.section-sub {
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--soft-ink);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* --- product grid --- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

/* scalloped card edge via mask — sweet cloud-petal bottom */
.card {
  background: var(--off-white);
  border-radius: 22px;
  overflow: visible;
  border: 1px solid var(--blush);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 16px 32px -18px var(--shadow),
    0 4px 10px -4px var(--shadow);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
  cursor: pointer;
  display: flex; flex-direction: column;
  position: relative;
  transform: rotate(-0.8deg);
}
.card:nth-child(2) { transform: rotate(1.2deg); }
.card:nth-child(3) { transform: rotate(-0.4deg); }
.card:hover {
  transform: translateY(-8px) rotate(0.3deg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 28px 48px -18px rgba(209, 58, 95, .3),
    0 8px 14px -4px var(--shadow);
}
.card:nth-child(2):hover { transform: translateY(-8px) rotate(-0.5deg); }

.card .img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--blush);
  position: relative;
  border-radius: 22px 22px 0 0;
}
.card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.card:hover .img-wrap img { transform: scale(1.06); }

.card .img-wrap::after {
  content: '✿ view';
  position: absolute;
  bottom: 1rem; right: 1rem;
  background: rgba(255, 247, 238, 0.95);
  color: var(--berry);
  padding: .45rem 1rem;
  border-radius: 999px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: .85rem;
  border: 1px solid var(--blush);
  box-shadow: 0 3px 10px -4px var(--shadow);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s, transform .3s;
}
.card:hover .img-wrap::after { opacity: 1; transform: translateY(0); }

.card-body { padding: 1.4rem 1.5rem 1.75rem; text-align: center; }
.card-body h3 {
  font-family: 'Caveat', cursive;
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: .3rem;
  font-weight: 600;
  color: var(--ink);
}
.card-body .price {
  color: var(--berry);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  margin-bottom: .6rem;
  font-size: .95rem;
}
.card-body .desc {
  font-family: 'Fraunces', serif;
  font-size: .96rem;
  color: var(--soft-ink);
  line-height: 1.6;
}

.card.custom .img-wrap {
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 217, 138, 0.6), transparent 55%),
    linear-gradient(135deg, var(--blush) 0%, var(--honey) 100%);
  display: flex; align-items: center; justify-content: center;
}
.card.custom .img-wrap::before {
  content: '✿';
  font-size: 5.5rem;
  color: var(--rose-deep);
  opacity: .7;
  text-shadow: 0 2px 8px rgba(232, 92, 122, .35);
}

/* little pop heart that floats up on hover */
.card .heart-pop {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(0) scale(.6);
  font-size: 1.8rem;
  color: var(--rose);
  opacity: 0;
  pointer-events: none;
  z-index: 6;
  text-shadow: 0 2px 6px rgba(209, 58, 95, .45);
}
.card:hover .heart-pop {
  animation: heartPop 1.1s ease-out forwards;
}
@keyframes heartPop {
  0%   { opacity: 0; transform: translateX(-50%) translateY(0) scale(.5) rotate(-12deg); }
  30%  { opacity: 1; transform: translateX(-50%) translateY(-20px) scale(1.15) rotate(4deg); }
  100% { opacity: 0; transform: translateX(-50%) translateY(-80px) scale(.8) rotate(20deg); }
}

/* --- about --- */
.about-wrap {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 217, 138, 0.3), transparent 60%),
    linear-gradient(180deg, var(--blush), var(--cream-2));
  border-radius: 28px;
  padding: 4rem 2rem;
  text-align: center;
  max-width: 820px;
  margin: 3rem auto;
  position: relative;
  overflow: hidden;
  border: 1px dashed var(--rose);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .6),
    0 18px 34px -20px var(--shadow);
}
.about-wrap::before, .about-wrap::after {
  content: '🍓';
  position: absolute;
  font-size: 3rem;
  opacity: .5;
}
.about-wrap::before { top: 1rem; left: 1.5rem; transform: rotate(-18deg); }
.about-wrap::after  { bottom: 1rem; right: 1.5rem; transform: rotate(18deg); }
.about-wrap p {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--ink);
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.75;
}
.about-wrap p em { color: var(--berry); font-style: italic; font-weight: 500; }

/* --- customs callout --- */
.customs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 100%);
  border-radius: 26px;
  padding: 3rem;
  border: 1px dashed var(--rose);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .6),
    0 18px 34px -20px var(--shadow);
}
.customs h2 {
  font-family: 'Caveat', cursive;
  font-size: clamp(2.4rem, 5.5vw, 3.4rem);
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--berry);
}
.customs p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--soft-ink);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.customs .illustration {
  aspect-ratio: 1/1;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 217, 138, 0.6), transparent 65%),
    linear-gradient(135deg, var(--blush), var(--honey));
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  line-height: 1.3;
  border: 1px dashed var(--rose);
  box-shadow: inset 0 0 40px rgba(255, 169, 187, .35);
  animation: breathe 8s ease-in-out infinite;
}
@keyframes breathe {
  0%,100% { transform: scale(1) rotate(-1deg); }
  50%     { transform: scale(1.02) rotate(1deg); }
}
@media (max-width: 720px) {
  .customs { grid-template-columns: 1fr; padding: 2rem; }
  .customs .illustration { aspect-ratio: 16/9; font-size: 3.5rem; }
}

/* --- footer --- */
footer {
  background: linear-gradient(180deg, var(--blush), var(--rose));
  color: var(--cream);
  padding: 4rem 2rem 2.5rem;
  text-align: center;
  margin-top: 4rem;
  border-top: 1px dashed var(--cream);
  position: relative;
}
footer::before {
  /* little scalloped top edge */
  content: '';
  position: absolute;
  top: -18px; left: 0; right: 0;
  height: 18px;
  background-image: radial-gradient(circle at 10px 18px, var(--rose) 10px, transparent 11px);
  background-size: 20px 18px;
  background-repeat: repeat-x;
}
footer .logo { color: var(--cream); font-size: 2.4rem; }
footer .logo .berry-dot { filter: brightness(1.2); }
footer p {
  margin-top: .5rem;
  opacity: .95;
  font-size: 1rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
}
footer .socials {
  display: flex; justify-content: center; gap: 1rem;
  margin-top: 1.75rem; flex-wrap: wrap;
}
footer .socials a {
  color: var(--cream);
  text-decoration: none;
  padding: .55rem 1.2rem;
  border: 1px solid var(--cream);
  border-radius: 999px;
  font-family: 'Fraunces', serif;
  font-size: .9rem;
  font-style: italic;
  transition: background .25s, color .25s, transform .25s;
}
footer .socials a:hover {
  background: var(--cream);
  color: var(--berry);
  transform: translateY(-2px) rotate(-2deg);
}

/* --- lightbox --- */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(90, 42, 54, 0.85);
  backdrop-filter: blur(6px);
  z-index: 100;
  align-items: center; justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}
.lightbox.open { display: flex; animation: fadeIn .2s; }
.lightbox img {
  max-width: 90%; max-height: 90vh;
  border-radius: 16px;
  border: 4px solid var(--cream);
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
}
.lightbox .close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--cream); color: var(--berry);
  border: 1px solid var(--rose);
  width: 42px; height: 42px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- behind the scenes page --- */
.bts-hero {
  padding: 5rem 1.5rem 3rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.bts-hero h1 {
  font-family: 'Caveat', cursive;
  font-size: clamp(3rem, 9vw, 5.5rem);
  line-height: 1;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--ink);
}
.bts-hero h1 .accent {
  color: var(--rose-deep);
  font-style: italic;
  position: relative;
  display: inline-block;
  padding: 0 .1em;
}
.bts-hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 3%; right: 3%; bottom: 6%;
  height: .28em;
  background: var(--bubblegum);
  opacity: .45;
  border-radius: 999px;
  z-index: -1;
}
.bts-hero p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--soft-ink);
  font-size: 1.15rem;
}
.bts-hero .tag {
  display: inline-flex; align-items: center; gap: .4rem;
  background: linear-gradient(180deg, var(--cream), var(--blush));
  color: var(--berry);
  padding: .5rem 1.2rem;
  border-radius: 999px;
  font-size: .9rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px dashed var(--rose);
  box-shadow: 0 4px 12px -4px var(--shadow);
}

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.step {
  background: var(--off-white);
  border-radius: 22px;
  padding: 2.2rem 1.8rem;
  border: 1px dashed var(--blush-2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .6),
    0 14px 26px -18px var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.step:hover {
  transform: translateY(-5px) rotate(.5deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .6),
    0 22px 38px -16px rgba(209, 58, 95, .3);
}
.step:nth-child(even):hover { transform: translateY(-5px) rotate(-.5deg); }

.step .num {
  font-family: 'Caveat', cursive;
  font-size: 3.4rem;
  color: var(--rose-deep);
  line-height: 1;
  font-weight: 700;
}
.step h3 {
  font-family: 'Caveat', cursive;
  font-size: 1.9rem;
  margin: .25rem 0 .6rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}
.step p {
  font-family: 'Fraunces', serif;
  color: var(--soft-ink);
  font-size: .98rem;
  line-height: 1.65;
}

.placeholder-photo {
  aspect-ratio: 4/3;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 217, 138, 0.5), transparent 60%),
    linear-gradient(135deg, var(--blush), var(--honey));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--berry);
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  font-weight: 500;
  border: 2px dashed var(--rose);
  margin-bottom: 1rem;
  box-shadow: inset 0 0 30px rgba(255, 169, 187, .3);
}

@media (max-width: 600px) {
  nav { padding: 1rem; }
  nav ul { gap: 1rem; font-size: .9rem; }
  .logo { font-size: 1.8rem; }
  section { padding: 3rem 1.25rem; }
}

/* --- decorative motif layer — 🍓🦋🌺🐚✨ in abundance -------------- */
.motif-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.motif-layer span {
  position: absolute;
  font-size: 2.2rem;
  opacity: .42;
  filter: drop-shadow(0 3px 6px rgba(209, 58, 95, .2));
  user-select: none;
  will-change: transform;
}
.motif-layer .m1  { top: 7%;  left: 5%;  font-size: 2.4rem; animation: drift1 14s ease-in-out infinite alternate; }
.motif-layer .m2  { top: 14%; right: 7%; font-size: 2.9rem; animation: drift2 18s ease-in-out infinite alternate; }
.motif-layer .m3  { top: 30%; left: 3%;  font-size: 2rem;   animation: drift3 16s ease-in-out infinite alternate; }
.motif-layer .m4  { top: 48%; right: 4%; font-size: 2.6rem; animation: drift1 20s ease-in-out infinite alternate-reverse; }
.motif-layer .m5  { top: 62%; left: 6%;  font-size: 2.2rem; animation: drift2 15s ease-in-out infinite alternate-reverse; }
.motif-layer .m6  { top: 28%; left: 48%; font-size: 1.8rem; animation: drift3 19s ease-in-out infinite alternate; opacity: .3; }
.motif-layer .m7  { top: 80%; right: 14%; font-size: 2rem;  animation: drift1 17s ease-in-out infinite alternate; }
.motif-layer .m8  { top: 4%;  right: 32%; font-size: 1.6rem; animation: drift2 13s ease-in-out infinite alternate-reverse; opacity: .35; }
.motif-layer .m9  { top: 55%; left: 42%; font-size: 1.6rem; animation: drift3 22s ease-in-out infinite alternate; opacity: .28; }
.motif-layer .m10 { top: 72%; right: 38%; font-size: 1.8rem; animation: drift1 21s ease-in-out infinite alternate-reverse; opacity: .35; }
.motif-layer .m11 { top: 90%; left: 28%; font-size: 2rem;   animation: drift2 19s ease-in-out infinite alternate; }
.motif-layer .m12 { top: 38%; right: 22%; font-size: 1.7rem; animation: drift3 23s ease-in-out infinite alternate-reverse; opacity: .3; }

@keyframes drift1 {
  from { transform: translate(0, 0) rotate(-6deg); }
  to   { transform: translate(18px, -14px) rotate(10deg); }
}
@keyframes drift2 {
  from { transform: translate(0, 0) rotate(4deg); }
  to   { transform: translate(-16px, 16px) rotate(-10deg); }
}
@keyframes drift3 {
  from { transform: translate(0, 0) rotate(-10deg); }
  to   { transform: translate(12px, 16px) rotate(14deg); }
}

/* sparkle layer — twinkling ✨ */
.sparkle-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.sparkle-layer span {
  position: absolute;
  font-size: 1rem;
  opacity: 0;
  animation: twinkle 4s ease-in-out infinite;
  user-select: none;
}
.sparkle-layer .s1 { top: 12%; left: 22%; animation-delay: 0s;   font-size: 1.1rem; }
.sparkle-layer .s2 { top: 28%; left: 78%; animation-delay: 1.2s; font-size: .9rem; }
.sparkle-layer .s3 { top: 48%; left: 18%; animation-delay: 2.4s; font-size: 1rem; }
.sparkle-layer .s4 { top: 66%; left: 72%; animation-delay: 0.8s; font-size: 1.2rem; }
.sparkle-layer .s5 { top: 82%; left: 32%; animation-delay: 2s;   font-size: .9rem; }
.sparkle-layer .s6 { top: 38%; left: 50%; animation-delay: 3.2s; font-size: 1.1rem; }
.sparkle-layer .s7 { top: 72%; left: 55%; animation-delay: 1.6s; font-size: .85rem; }
.sparkle-layer .s8 { top: 20%; left: 40%; animation-delay: 2.8s; font-size: 1rem; }

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(.5) rotate(0deg); }
  40%      { opacity: .9; transform: scale(1) rotate(15deg); }
  60%      { opacity: .75; transform: scale(1.1) rotate(-10deg); }
}

/* main content above motifs */
nav, header, section, footer { position: relative; z-index: 2; }

/* --- card corner stickers — peeling-off-the-page ------------------ */
.card .img-wrap { border-radius: 22px 22px 0 0; overflow: hidden; }
.card .sticker {
  position: absolute;
  top: -14px;
  right: -10px;
  font-size: 2.4rem;
  transform: rotate(18deg);
  filter: drop-shadow(0 4px 6px rgba(209, 58, 95, .4));
  z-index: 5;
  pointer-events: none;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.card:nth-child(2) .sticker { top: -16px; right: auto; left: -12px; transform: rotate(-18deg); }
.card:hover .sticker { transform: rotate(28deg) scale(1.15); }
.card:nth-child(2):hover .sticker { transform: rotate(-28deg) scale(1.15); }

/* --- hero flutters — more, and gently following cursor ------------ */
.hero { position: relative; }
.hero .flutter {
  position: absolute;
  font-size: 2.4rem;
  pointer-events: none;
  filter: drop-shadow(0 3px 8px rgba(209, 58, 95, .3));
  transition: transform .6s ease-out;
}
.hero .flutter.f1 { top: 14%; left: 10%;  animation: flutter1 6s ease-in-out infinite; }
.hero .flutter.f2 { top: 20%; right: 12%; animation: flutter2 7s ease-in-out infinite; font-size: 2.1rem; }
.hero .flutter.f3 { bottom: 22%; left: 18%; animation: flutter1 8s ease-in-out infinite; font-size: 1.7rem; }
.hero .flutter.f4 { bottom: 26%; right: 18%; animation: flutter2 9s ease-in-out infinite; font-size: 1.7rem; }
.hero .flutter.f5 { top: 48%; left: 6%; animation: flutter1 7.5s ease-in-out infinite; font-size: 1.5rem; opacity: .8; }

@keyframes flutter1 {
  0%,100% { transform: translate(0,0) rotate(-10deg); }
  25%     { transform: translate(10px,-12px) rotate(6deg); }
  50%     { transform: translate(-4px,-20px) rotate(-4deg); }
  75%     { transform: translate(-14px,-8px) rotate(12deg); }
}
@keyframes flutter2 {
  0%,100% { transform: translate(0,0) rotate(8deg); }
  33%     { transform: translate(-14px,8px) rotate(-6deg); }
  66%     { transform: translate(8px,14px) rotate(14deg); }
}

/* section-title motif bookends */
.section-title .title-dec {
  display: inline-block;
  font-size: .65em;
  vertical-align: middle;
  margin: 0 .4em;
  opacity: .9;
  animation: wobble 5s ease-in-out infinite;
}
@keyframes wobble {
  0%,100% { transform: rotate(-10deg); }
  50%     { transform: rotate(12deg); }
}
