/* =============================================================
   PASTELMANÍA · Katty Marce — Repostería Creativa
   Paleta de marca: turquesa + lila pastel + crema + dorado
   ============================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  --turq:        #34c4bd;
  --turq-deep:   #159a94;
  --turq-soft:   #b8ede9;
  --lila:        #b193e6;
  --lila-deep:   #8a63d6;
  --lila-soft:   #e5d9f7;
  --rose:        #f4a6c4;
  --rose-soft:   #ffe0ec;
  --gold:        #e6b34d;
  --cream:       #fff8fb;
  --cream-2:     #fdeef4;
  --ink:         #3a2f45;
  --ink-soft:    #6d6178;
  --white:       #ffffff;

  --grad-brand:  linear-gradient(120deg, var(--turq) 0%, var(--lila) 100%);
  --grad-brand-r:linear-gradient(120deg, var(--lila) 0%, var(--turq) 100%);
  --grad-soft:   linear-gradient(160deg, var(--cream) 0%, var(--cream-2) 100%);

  --sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --script: "Parisienne", cursive;

  --shadow-sm: 0 4px 18px rgba(138, 99, 214, 0.12);
  --shadow-md: 0 14px 40px rgba(138, 99, 214, 0.16);
  --shadow-lg: 0 30px 70px rgba(21, 154, 148, 0.22);

  --radius: 26px;
  --radius-sm: 16px;
  --gutter: clamp(1.15rem, 5vw, 5rem);
  --maxw: 1180px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; font-weight: 500; }
::selection { background: var(--lila); color: var(--white); }

:focus-visible { outline: 2px solid var(--lila-deep); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--white); color: var(--ink);
  border-radius: 10px; font-weight: 600; box-shadow: var(--shadow-sm);
}
.skip-link:focus { top: 1rem; }

/* ---------- 3. Reveal system ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }  /* defensive */

.split-word { display: inline-block; opacity: 0; transform: translateY(0.5em) rotate(2deg); }
.split-word.is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.5rem; border-radius: 100px;
  font-family: var(--sans); font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), filter .35s var(--ease-out);
  will-change: transform;
}
.btn svg { flex: none; }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-wa { background: #25D366; color: #fff; box-shadow: 0 10px 26px rgba(37, 211, 102, .32); }
.btn-wa:hover { box-shadow: 0 16px 34px rgba(37, 211, 102, .42); filter: brightness(1.04); }

.btn-ig { color: #fff; background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); box-shadow: 0 10px 26px rgba(220,39,67,.28); }
.btn-ig:hover { box-shadow: 0 16px 34px rgba(220,39,67,.4); }

.btn-ig-outline { color: var(--lila-deep); background: var(--white); border: 1.5px solid var(--lila); box-shadow: var(--shadow-sm); }
.btn-ig-outline:hover { background: var(--lila); color: #fff; }

/* ---------- 5. Splash ---------- */
.splash {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  background: var(--grad-brand);
  transition: clip-path 1s var(--ease-out), opacity .8s ease;
  animation: splashSafety .01s 4.2s forwards;
}
.splash.is-out { clip-path: inset(0 0 100% 0); opacity: 0; pointer-events: none; }
@keyframes splashSafety { to { clip-path: inset(0 0 100% 0); opacity: 0; pointer-events: none; } }
.splash-mark { text-align: center; color: #fff; animation: splashPop 1s var(--ease-bounce) both; }
.splash-pk { display: block; font-family: var(--serif); font-size: clamp(3.5rem,12vw,6rem); font-weight: 500; letter-spacing: .05em; }
.splash-word { display: block; font-family: var(--script); font-size: clamp(1.6rem,6vw,2.6rem); margin-top: -.4rem; opacity: .95; }
@keyframes splashPop { from { opacity: 0; transform: scale(.8); } to { opacity: 1; transform: scale(1); } }

/* ---------- 6. Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 1rem;
  padding: .85rem var(--gutter);
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}
.nav.scrolled { background: rgba(255,248,251,.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 6px 24px rgba(138,99,214,.1); padding-block: .6rem; }
.nav-brand { display: flex; align-items: center; gap: .65rem; margin-right: auto; }
.nav-logo { width: 44px; height: 44px; border-radius: 50%; box-shadow: var(--shadow-sm); }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-name { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--turq-deep); }
.nav-brand-sig { font-family: var(--script); font-size: 1rem; color: var(--lila-deep); margin-top: 1px; }
.nav-links { display: none; gap: 1.6rem; }
.nav-links a { font-weight: 500; font-size: .95rem; color: var(--ink); position: relative; padding: .2rem 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--grad-brand); border-radius: 2px; transition: width .3s var(--ease-out); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: none; }

.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: 8px; margin-left: .3rem; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: transform .3s var(--ease-out), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); z-index: 99;
  background: var(--white); box-shadow: -10px 0 50px rgba(138,99,214,.2);
  display: flex; flex-direction: column; gap: .4rem;
  padding: 6rem 1.8rem 2rem;
  transform: translateX(100%); transition: transform .45s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { padding: .9rem .4rem; font-weight: 500; font-size: 1.1rem; border-bottom: 1px solid var(--cream-2); }
.mobile-menu .btn { margin-top: 1rem; }

/* ---------- 7. Decorative blobs & sprinkles ---------- */
.blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .5; pointer-events: none; }
.blob-a { width: 40vw; height: 40vw; max-width: 480px; max-height: 480px; background: var(--turq-soft); top: -8%; right: -6%; animation: floaty 14s ease-in-out infinite; }
.blob-b { width: 34vw; height: 34vw; max-width: 400px; max-height: 400px; background: var(--lila-soft); bottom: -12%; left: -8%; animation: floaty 18s ease-in-out infinite reverse; }
.blob-c { width: 22vw; height: 22vw; max-width: 260px; max-height: 260px; background: var(--rose-soft); top: 40%; left: 45%; animation: floaty 12s ease-in-out infinite; }
.blob-d { width: 30vw; height: 30vw; max-width: 360px; background: rgba(255,255,255,.35); top: -10%; left: 5%; animation: floaty 16s ease-in-out infinite; }
.blob-e { width: 26vw; height: 26vw; max-width: 320px; background: rgba(255,224,236,.4); bottom: -14%; right: 2%; animation: floaty 20s ease-in-out infinite reverse; }
@keyframes floaty { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(2%, -4%) scale(1.06); } }

.sprinkle { position: absolute; width: 14px; height: 6px; border-radius: 6px; opacity: .8; animation: sprinkleFloat 9s ease-in-out infinite; }
.s1 { background: var(--turq);  top: 22%; left: 12%; transform: rotate(24deg); }
.s2 { background: var(--lila);  top: 30%; right: 16%; transform: rotate(-40deg); animation-delay: -2s; }
.s3 { background: var(--rose);  top: 62%; left: 8%;  transform: rotate(60deg); animation-delay: -4s; }
.s4 { background: var(--gold);  top: 70%; right: 24%; transform: rotate(-18deg); animation-delay: -1s; }
.s5 { background: var(--lila-deep); top: 14%; left: 46%; transform: rotate(50deg); animation-delay: -3s; }
.s6 { background: var(--turq-deep); top: 80%; left: 60%; transform: rotate(-30deg); animation-delay: -5s; }
@keyframes sprinkleFloat { 0%,100% { transform: translateY(0) rotate(var(--r,0)); } 50% { transform: translateY(-16px) rotate(30deg); } }

/* ---------- 8. Hero ---------- */
.hero { position: relative; padding: 8.5rem var(--gutter) 0; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-inner {
  position: relative; z-index: 1; max-width: var(--maxw); margin-inline: auto;
  display: grid; gap: 2.5rem; align-items: center; padding-bottom: 3rem;
}
.hero-kicker { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--turq-deep); background: var(--turq-soft); padding: .45rem 1rem; border-radius: 100px; width: fit-content; }
.hero-kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--turq-deep); }
.hero-title { font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem, 8.5vw, 5.2rem); line-height: 1.02; letter-spacing: -.015em; margin: 1.1rem 0 .3rem; max-width: 15ch; }
.hero-title em { font-style: italic; color: transparent; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; }
.hero-sig { font-family: var(--script); font-size: clamp(1.5rem, 5vw, 2.2rem); color: var(--lila-deep); margin-bottom: 1rem; }
.hero-lead { font-size: clamp(1rem, 2.4vw, 1.18rem); color: var(--ink-soft); max-width: 46ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.6rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; list-style: none; }
.hero-badges li { font-size: .92rem; font-weight: 500; color: var(--ink-soft); }

.hero-visual { position: relative; height: min(96vw, 500px); }
.hero-photo { position: absolute; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid #fff; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main { width: 58%; height: 82%; left: 21%; top: 9%; z-index: 2; }
.hero-photo-top { width: 40%; height: 46%; left: -2%; top: 0; z-index: 1; transform: rotate(-6deg); }
.hero-photo-bottom { width: 40%; height: 46%; right: -2%; bottom: 0; z-index: 3; transform: rotate(6deg); }
.hero-sticker { position: absolute; z-index: 4; display: grid; place-items: center; border-radius: 50%; font-size: 1.4rem; box-shadow: var(--shadow-md); animation: floaty 7s ease-in-out infinite; }
.sticker-heart { width: 58px; height: 58px; background: var(--rose); color: #fff; top: 2%; right: 8%; }
.sticker-star { width: 48px; height: 48px; background: var(--gold); color: #fff; bottom: 6%; left: 4%; animation-delay: -3s; }

/* Marquee */
.marquee { position: relative; z-index: 1; margin-top: 1.5rem; padding: .9rem 0; background: var(--grad-brand); overflow: hidden; transform: rotate(-1.5deg) scale(1.04); }
.marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track span { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: #fff; white-space: nowrap; padding-right: 1.5rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 9. Section shared ---------- */
section { position: relative; }
.section-head { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); text-align: center; }
.section-kicker { font-weight: 600; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--lila-deep); margin-bottom: .6rem; }
.section-kicker.light { color: rgba(255,255,255,.85); }
.section-title { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 5.5vw, 3.2rem); letter-spacing: -.015em; }
.section-sub { color: var(--ink-soft); max-width: 52ch; margin: .9rem auto 0; }

/* ---------- 10. Intro ---------- */
.intro { padding: clamp(4rem, 10vw, 7rem) 0; text-align: center; }
.intro-inner { max-width: 760px; margin-inline: auto; padding: 0 var(--gutter); }
.intro-lead { font-family: var(--serif); font-size: clamp(1.4rem, 3.6vw, 2.1rem); line-height: 1.35; letter-spacing: -.01em; margin-bottom: 1.4rem; }
.intro-lead em { font-style: italic; color: var(--turq-deep); }
.intro-text { color: var(--ink-soft); font-size: 1.06rem; }

/* ---------- 11. Creaciones ---------- */
.creations { padding: clamp(3rem, 8vw, 5rem) 0 clamp(4rem,10vw,7rem); }
.creations-grid { max-width: var(--maxw); margin: 2.8rem auto 0; padding: 0 var(--gutter); display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.c-card { position: relative; background: var(--white); border-radius: var(--radius); padding: 2.1rem 1.8rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(177,147,230,.12); transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out); overflow: hidden; }
.c-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out); }
.c-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.c-card:hover::before { transform: scaleX(1); }
.c-icon { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 20px; font-size: 1.9rem; background: var(--grad-soft); box-shadow: inset 0 0 0 1px rgba(177,147,230,.18); margin-bottom: 1.1rem; }
.c-card h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; margin-bottom: .5rem; color: var(--ink); }
.c-card p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- 12. Galería ---------- */
.gallery { padding: clamp(3rem,7vw,5rem) 0 clamp(4rem,10vw,7rem); background: var(--grad-soft); }
.gallery-grid { max-width: var(--maxw); margin: 2.8rem auto 0; padding: 0 var(--gutter); display: grid; gap: 1.3rem; grid-template-columns: 1fr; }
.g-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.g-item:hover img { transform: scale(1.07); }
.g-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 2.2rem 1.2rem 1.1rem; font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: #fff; background: linear-gradient(to top, rgba(58,47,69,.75), transparent); }
.gallery-cta { text-align: center; margin-top: 2.4rem; padding: 0 var(--gutter); font-size: 1.08rem; color: var(--ink-soft); }
.gallery-cta a { color: var(--lila-deep); font-weight: 600; border-bottom: 2px solid var(--lila-soft); transition: border-color .3s; }
.gallery-cta a:hover { border-color: var(--lila-deep); }

/* ---------- 13. Ocasiones ---------- */
.occasions { padding: clamp(3rem,8vw,6rem) 0; }
.occasions-list { max-width: var(--maxw); margin: 2.6rem auto 0; padding: 0 var(--gutter); list-style: none; display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
.occasions-list li { display: flex; align-items: center; gap: .8rem; background: var(--white); border-radius: var(--radius-sm); padding: 1.1rem 1.3rem; font-weight: 500; box-shadow: var(--shadow-sm); border: 1px solid rgba(177,147,230,.1); transition: transform .35s var(--ease-out), background .35s; }
.occasions-list li span { font-size: 1.5rem; }
.occasions-list li:hover { transform: translateY(-4px); background: var(--cream-2); }

/* ---------- 14. Features ---------- */
.features { padding: clamp(3rem,8vw,6rem) 0; }
.features-grid { max-width: var(--maxw); margin-inline: auto; padding: 0 var(--gutter); display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
.f-item { padding: 2rem 1.6rem; border-radius: var(--radius); background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.f-item:nth-child(2) { background: linear-gradient(120deg, var(--lila) 0%, var(--rose) 100%); }
.f-item:nth-child(3) { background: linear-gradient(120deg, var(--gold) 0%, var(--rose) 100%); }
.f-num { font-family: var(--serif); font-size: 2.6rem; font-weight: 500; opacity: .55; display: block; margin-bottom: .3rem; }
.f-item h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; margin-bottom: .5rem; }
.f-item p { color: rgba(255,255,255,.92); font-size: .98rem; }

/* ---------- 15. CTA ---------- */
.cta { margin: clamp(2rem,6vw,4rem) var(--gutter); padding: clamp(3.5rem,9vw,6rem) 1.5rem; border-radius: clamp(28px, 5vw, 48px); background: var(--grad-brand-r); position: relative; overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; }
.cta-inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; }
.cta-title { font-family: var(--serif); font-weight: 500; color: #fff; font-size: clamp(1.9rem, 5.5vw, 3.1rem); letter-spacing: -.015em; margin-bottom: 1rem; }
.cta-lead { color: rgba(255,255,255,.94); font-size: 1.08rem; max-width: 44ch; margin: 0 auto 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }
.cta .btn-wa { background: #fff; color: #128C4B; }
.cta .btn-wa:hover { background: #fff; filter: brightness(1); box-shadow: 0 16px 40px rgba(0,0,0,.18); }
.cta-loc { color: #fff; font-weight: 500; margin-top: 1.6rem; }

/* ---------- 16. Footer ---------- */
.footer { background: var(--ink); color: #fff; padding: clamp(3rem,7vw,4.5rem) 0 1.5rem; }
.footer-inner { max-width: var(--maxw); margin-inline: auto; padding: 0 var(--gutter); display: grid; gap: 2.5rem; }
.footer-name { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--turq); }
.footer-sig { font-family: var(--script); font-size: 1.4rem; color: var(--rose); margin-left: .4rem; }
.footer-tag { color: rgba(255,255,255,.7); margin-top: .6rem; max-width: 30ch; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-col h4 { font-family: var(--serif); font-size: 1.05rem; margin-bottom: .9rem; color: var(--turq-soft); }
.footer-col a, .footer-col span { display: block; color: rgba(255,255,255,.75); font-size: .94rem; padding: .28rem 0; transition: color .3s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { max-width: var(--maxw); margin: 2.5rem auto 0; padding: 1.5rem var(--gutter) 0; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-size: .85rem; color: rgba(255,255,255,.6); }

/* ---------- 17. Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; background: #25D366;
  box-shadow: 0 10px 30px rgba(37,211,102,.5);
  transition: transform .35s var(--ease-bounce), box-shadow .35s;
  animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 14px 38px rgba(37,211,102,.6); }
@keyframes waPulse { 0%,100% { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4); } 50% { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 14px rgba(37,211,102,0); } }

/* ---------- 18. Responsive ---------- */
@media (min-width: 540px) {
  .creations-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1.2fr 2fr; align-items: start; }
}
@media (min-width: 720px) {
  .hero-badges li { font-size: 1rem; }
}
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle, .mobile-menu { display: none; }
  .hero { padding-top: 9.5rem; }
  .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 3.5rem; padding-bottom: 4rem; }
  .hero-visual { height: min(46vw, 560px); }
  .occasions-list { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .creations-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1280px) {
  .hero-title { font-size: clamp(3rem, 5vw, 5.4rem); }
}

/* ---------- 19. Reduced motion (only intrusive) ---------- */
@media (prefers-reduced-motion: reduce) {
  .blob, .sprinkle, .hero-sticker { animation: none; }
  .marquee-track { animation-duration: 60s; }
  .wa-float { animation: none; }
  html { scroll-behavior: auto; }
}
