/* Layout */
* { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; background:#fbfaf6; color:#1b1b1b; }
.page { max-width: 1200px; margin: 0 auto; }
.hero { height: 280px; background: url('images/bee-hero-blur.jpg') center/cover no-repeat, #1a1a1a; position: relative; display: flex; align-items: center; justify-content: center; }
.hero::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.hero-inner { position: relative; text-align: center; color: #fff; }
.hero h1 { margin: 0 0 8px; letter-spacing:.5px; }
.tagline { opacity: .9; }
.frame-stage { position: relative; padding: 24px; }
.comb-frame { width: 100%; height: auto; display: block; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,.15); }
.bee-layer { position: absolute; inset: 24px; pointer-events: none; overflow: hidden; border-radius: 12px; }
.bee { position: absolute; width: 42px; height: 42px; transform-origin: center; filter: drop-shadow(0 2px 3px rgba(0,0,0,.3)); transition: opacity .25s ease; }
.bee.hidden { opacity: 0; }
@keyframes flutter { 0%{ transform: rotate(0deg) } 50%{ transform: rotate(.6deg) } 100%{ transform: rotate(0deg) } }
.bee img { width: 100%; height: 100%; display:block; animation: flutter .18s infinite linear; }
.showcase { padding: 32px 24px 60px; }
