/* ===== About + Reel (hero spacing, clean typography) ===== */
#about-reel{
  /* roomy, hero-like block */
  --pad: clamp(72px, 12vw, 140px);
  --gap: clamp(24px, 4vw, 44px);
  width: min(1100px, 92vw);
  margin: var(--pad) auto;
  padding-block: var(--pad);
  display: grid;
  justify-items: center;
  gap: var(--gap);
  position: relative; /* for bird counter & floaters */
}

/* Title + copy */
#about-reel h2{
  font-family: "Canela Text", serif;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  margin: 0 0 .35em;
  letter-spacing: .01em;
}
#about-reel p{
  margin: 0;
  max-width: 66ch;
  line-height: 1.8;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

/* Normalize inline interactive words so they don't look like default buttons */
#about-reel [data-ink],
#about-reel [data-wiggle],
#about-reel [data-bird]{
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0 .25em;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

/* Ink highlight words */
#about-reel .ink-word{
  background: linear-gradient(120deg, rgba(255,219,141,.65), rgba(186,197,255,.65));
  background-size: 0% 60%;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .35s ease;
  border-radius: .5rem;
}
#about-reel .ink-word.active{ background-size: 100% 60%; }

/* Video shell */
#reel-wrap{
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  position: relative;
}

/* Overlay play/pause button */
#reel-toggle{
  all: unset;
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255,255,255,.95);
  font-size: clamp(36px, 7vw, 70px);
  cursor: pointer;
  transition: transform .15s ease, color .15s ease;
}
#reel-toggle:hover{ transform: scale(1.03); color: #fff; }

/* Muted badge */
#reel-muted{
  position: absolute;
  right: 12px; bottom: 12px;
  font-size: 12px;
  background: rgba(255,255,255,.9);
  color: #111;
  padding: 6px 8px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}

/* Tip under the video */
#about-reel .reel-tip{
  margin-top: .6rem;
  color: #6b7280;
  font-size: .95rem;
}

/* Bird counter pill */
#about-reel .bird-counter{
  position: absolute;
  top: 12px; right: 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 6px 10px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  display: inline-flex; align-items: center; gap: 6px;
}

/* Floating bird emoji particle */
#about-reel .floater{
  position: absolute;
  left: 0; top: 0;
  transform: translate(-50%,-50%);
  pointer-events: none;
  font-size: 22px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.18));
  animation: arFloatUp 1.1s ease-out forwards;
}
@keyframes arFloatUp{
  0%   { opacity:.95; transform:translate(-50%,-10%) scale(.9) rotate(-6deg) }
  100% { opacity:0;   transform:translate(-50%,-110%) scale(1.1) rotate(4deg) }
}

/* Reveal animation (once) */
#about-reel .ar-rev{
  opacity: 0;
  transform: translateY(12px) scale(.98);
  filter: blur(2px);
  transition: opacity .45s ease, transform .45s ease, filter .45s ease;
  will-change: opacity, transform, filter;
}
#about-reel .ar-rev.in{ opacity: 1; transform: none; filter: none; }

/* Motion safety */
@media (prefers-reduced-motion: reduce){
  #about-reel .ar-rev,
  #about-reel .ar-rev.in{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
