  /* ── Scroll Reveal ── */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── Hero Animations ── */
  .hero-anim {
    opacity: 0;
    transform: translateY(24px);
    animation: heroIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .hero-anim:nth-child(1) { animation-delay: 0.1s; }
  .hero-anim:nth-child(2) { animation-delay: 0.25s; }
  .hero-anim:nth-child(3) { animation-delay: 0.4s; }
  .hero-anim:nth-child(4) { animation-delay: 0.55s; }

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

  /* ── Header Scroll State ── */
  #site-header.scrolled {
    background: rgba(254, 253, 251, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  }

  /* ── Mobile Menu ── */
  #mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
  }

  /* ── Smooth Scroll ── */
  html {
    scroll-behavior: smooth;
  }

  /* ── Selection Color ── */
  ::selection {
    background: #FFD0C8;
    color: #1F2126;
  }
