/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --leaf:        #5B9A3C;
  --leaf-light:  #8DC96A;
  --leaf-pale:   #D4EDBA;
  --pink:        #F48FB1;
  --pink-light:  #FCCEDD;
  --pink-pale:   #FDE8F0;
  --peacock:     #0077B6;
  --saffron-lt:  #FFB347;
  --parchment:   #F5DEB3;
  --scroll-dark: #6B3E10;
  --text-mid:    #7A4520;
  --white:       #FFFFFF;
  --yt-red:      #FF0000;
  --ig-pink:     #E1306C;
  --pack-green: #eef6ea;
  --pack-pink: #faeef4;
  --pack-border: #dccfbf;
  --pack-text: #7a4c1c;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--white);
  color: var(--scroll-dark);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
nav {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 2px 16px rgba(91, 154, 60, 0.13);
  border-bottom: 3px solid var(--leaf-pale);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 2;
}

.nav-logo img {
  height: 52px;
  object-fit: contain;
}

.nav-brand {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--scroll-dark);
  line-height: 1.1;
  padding-left: 0.5rem;
}

.nav-brand-tales { color: var(--leaf); }

.nav-brand sup {
  font-size: 0.55rem;
  vertical-align: super;
  color: var(--text-mid);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--leaf); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 92vh;
  background: linear-gradient(180deg, #87CEEB 0%, #B8E4F7 25%, #C8EEA0 60%, #8DC96A 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2.2rem;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50px;
  pointer-events: none;
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50%;
}

.c1 { width: 120px; height: 36px; top: 13%; left: 6%;  animation: drift 18s ease-in-out infinite alternate; }
.c1::before { width: 58px; height: 58px; top: -30px; left: 14px; }
.c1::after  { width: 44px; height: 44px; top: -22px; left: 52px; }

.c2 { width: 90px;  height: 28px; top: 20%; right: 8%; animation: drift 24s ease-in-out infinite alternate-reverse; }
.c2::before { width: 44px; height: 44px; top: -23px; left: 10px; }
.c2::after  { width: 34px; height: 34px; top: -17px; left: 38px; }

.c3 { width: 68px;  height: 21px; top: 8%;  left: 39%; animation: drift 21s ease-in-out infinite alternate; }
.c3::before { width: 35px; height: 35px; top: -18px; left: 8px; }
.c3::after  { width: 27px; height: 27px; top: -13px; left: 29px; }

.hero-scroll {
  position: relative;
  z-index: 5;
  width: 410px;
  max-width: 90%;
  filter: saturate(1.15) contrast(1.05) drop-shadow(0 6px 16px rgba(0, 0, 0, 0.15));
  animation: fadeDown 0.65s 0.1s both;
}

.hero-tag {
  position: relative;
  z-index: 5;
  text-align: center;
  margin-top: 0.4rem;
  animation: fadeDown 0.65s 0.3s both;
}

.hero-tag h2,
.hero-tag p {
  font-family: 'Baloo 2', cursive;
  color: var(--scroll-dark);
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8);
}

.hero-tag h2 {
  font-weight: 800;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  line-height: 1.2;
}

.hero-tag p {
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.hero-bubble {
  position: relative;
  z-index: 5;
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
  animation: bubblePop 0.5s 0.9s cubic-bezier(0.36, 1.5, 0.5, 1) both;
}

.welcome-bubble-img,
.thankyou-bubble-img {
  width: clamp(200px, 5vw, 320px);
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 80, 160, 0.22));
  animation: float 4s ease-in-out infinite;
}

.hero-chars {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 640px;
  padding: 0 2rem;
  margin-top: 0.5rem;
  animation: fadeUp 0.65s 0.55s both;
}

.hero-chars img:first-child { margin-right: -40px; }
.hero-chars img:last-child  { margin-left: -40px; }

.char-img {
  width: clamp(150px, 24vw, 220px);
  mix-blend-mode: screen;
  filter: brightness(1.04) contrast(1.05) saturate(1.1);
  animation: float 3.6s ease-in-out infinite;
}

.char-img.leela { animation-delay: 0.75s; }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes drift         { from { transform: translateX(0); }    to { transform: translateX(38px); } }
@keyframes float         { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
@keyframes fadeDown      { from { opacity: 0; transform: translateY(-22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp        { from { opacity: 0; transform: translateY(22px); }  to { opacity: 1; transform: translateY(0); } }
@keyframes bubblePop     { from { transform: scale(0.4); opacity: 0; }        to { transform: scale(1); opacity: 1; } }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: transform 0.15s, opacity 0.2s;
}

.btn svg   { flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); opacity: 0.9; }

.btn-yt   { background: var(--yt-red);  color: #fff; box-shadow: 0 4px 14px rgba(255, 0, 0, 0.28); }
.btn-fb   { background: var(--peacock); color: #fff; box-shadow: 0 4px 14px rgba(0, 119, 182, 0.3); }
.btn-ig   { background: linear-gradient(135deg, var(--ig-pink), #F77737); color: #fff; box-shadow: 0 4px 14px rgba(225, 48, 108, 0.3); }
.btn-pink { background-color: var(--pink); color: #fff; box-shadow: 0 6px 16px rgba(236, 64, 122, 0.35); text-shadow: none; }

.btn-pink:hover { background-color: var(--ig-pink); }

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar {
  width: 100%;
  background: linear-gradient(90deg, var(--leaf) 0%, #4a8430 50%, var(--leaf) 100%);
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1rem 5%;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 0.5rem;
}

.stat-n {
  font-family: 'Baloo 2', cursive;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.stat-l {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.87;
}

/* ═══════════════════════════════════════════
   CTA ROW
═══════════════════════════════════════════ */
.cta-row {
  width: 100%;
  background: var(--pink-pale);
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1.3rem 5%;
  flex-wrap: wrap;
  border-bottom: 3px solid var(--pink-light);
}

/* ═══════════════════════════════════════════
   SHARED SECTION STYLES
═══════════════════════════════════════════ */
section { padding: 4.5rem 5%; }

.inner {
  max-width: 1100px;
  margin: 0 auto;
}

.centered-section { text-align: center; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--leaf-pale);
  color: var(--leaf);
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

.badge.pk { background: var(--pink-pale); color: #C2185B; }
.badge.wh { background: rgba(255, 255, 255, 0.2); color: var(--parchment); }

.stitle {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--scroll-dark);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.ssub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* ═══════════════════════════════════════════
   VIDEO MARQUEE
═══════════════════════════════════════════ */
.marquee-wrap {
  width: 100%;
  background: var(--white);
  border-top: 3px solid var(--leaf-pale);
  border-bottom: 3px solid var(--leaf-pale);
  overflow: hidden;
  padding: 0.6rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 2rem;
  text-decoration: none;
  color: var(--scroll-dark);
  border-right: 2px solid var(--leaf-pale);
  transition: background 0.2s;
  white-space: nowrap;
}

.marquee-item:hover { background: var(--leaf-pale); }

.marquee-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yt-red);
  flex-shrink: 0;
}

.marquee-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--scroll-dark);
}

.marquee-tag {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--leaf-pale);
  color: var(--leaf);
  padding: 0.1rem 0.55rem;
  border-radius: 50px;
}

/* ═══════════════════════════════════════════
   ABOUT + FEATURE BLOCKS
═══════════════════════════════════════════ */
.about { background: var(--white); }

.about-tagline {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: -10px;
  margin-bottom: 20px;
}

.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.feat {
  border-radius: 22px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feat:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09); }
.feat.g  { background: var(--leaf-pale); }
.feat.pk { background: var(--pink-pale); }
.feat.sk { background: #E0F4FF; }
.feat.go { background: #FFF3D4; }

.feat-ic { font-size: 2.1rem; flex-shrink: 0; }

.feat-h {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1rem;
  color: var(--scroll-dark);
  margin-bottom: 0.25rem;
}

.feat-p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════
   VIDEOS
═══════════════════════════════════════════ */
.videos { background: linear-gradient(160deg, var(--leaf-pale) 0%, var(--pink-pale) 100%); }

.vid-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.vid-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(80, 60, 30, 0.08);
  min-width: 0;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.vid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(91, 154, 60, 0.16);
}

.vid-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 230px;
  overflow: hidden;
  background: #eef3df;
  border-radius: 28px 28px 0 0;
}

.vid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 2;
  color: var(--ig-pink);
}

.vid-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); }

.vid-body {
  padding: 1.2rem 1.1rem 1.4rem;
  text-align: center;
}

.vid-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.15rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.45rem;
}

.tg-g  { background: var(--leaf-pale); color: var(--leaf); }
.tg-pk { background: var(--pink-pale); color: #C2185B; }
.tg-sk { background: #E0F4FF; color: var(--peacock); }

.vid-h {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1rem;
  color: var(--scroll-dark);
  margin: 0.8rem 0 0.4rem;
  line-height: 1.35;
}

.vid-m {
  font-size: 0.82rem;
  color: #999;
  margin-top: 0.7rem;
}

/* ═══════════════════════════════════════════
   PLATFORM ICON CARDS
═══════════════════════════════════════════ */
.plat-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.97);
  border-radius: 15px;
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.plat-card svg { width: 46px; height: 46px; }
.plat-card:hover  { transform: translateY(-5px); }
.plat-card.yt:hover { border-color: var(--yt-red);  box-shadow: 0 12px 28px rgba(255, 0, 0, 0.12); }
.plat-card.fb:hover { border-color: var(--peacock); box-shadow: 0 12px 28px rgba(0, 119, 182, 0.14); }
.plat-card.ig:hover { border-color: var(--ig-pink); box-shadow: 0 12px 28px rgba(225, 48, 108, 0.16); }

/* ═══════════════════════════════════════════
   CREATOR NOTE
═══════════════════════════════════════════ */
#creator-note .creator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
  gap: 1rem;
  align-items: start;
  margin-top: 2rem;
}

.creator-copy {
  text-align: center;
  text-wrap: balance;
}

#creator-note .creator-copy {
  text-align: center;
}

#creator-note .creator-copy .ssub {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

#creator-note .creator-signoff {
  font-weight: 600;
}

#creator-note .creator-feats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0;
}

#creator-note .creator-feats .feat {
  width: 100%;
}

#creator-note .creator-feats .feat-p {
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.nl {
  background: linear-gradient(180deg, var(--leaf) 0%, #4a8430 40%, #7abf50 80%, #C8EEA0 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.nl .stitle { color: var(--parchment); }
.nl .ssub   { color: rgba(255, 255, 255, 0.82); }

.nl-hint {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.nl-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 460px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.form-row input { flex: 1; min-width: 180px; }

.nl-form input,
.nl-form textarea {
  padding: 0.85rem 1.4rem;
  border-radius: 50px;
  border: none;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  outline: none;
  width: 100%;
}

.nl-form textarea {
  border-radius: 18px;
  resize: vertical;
}

.form-meta {
  margin-top: 0.4rem;
  text-align: right;
}

#message-counter {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-error,
.form-success {
  font-size: 14px;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 6px;
}

.form-error {
  color: #d93025;
  background: #fdecea;
  border: 1px solid #f5c2c0;
}

.form-success {
  color: #188038;
  background: #e6f4ea;
  border: 1px solid #cce7d6;
}

.cf-turnstile {
  margin: 14px 0;
}

#turnstile-wrapper {
  margin: 16px 0;
}

#turnstile-wrapper.is-hidden {
  display: none;
}

.form-btn {
  text-align: center;
  margin-top: 0.3rem;
}

.form-btn button {
  background: var(--pink);
  color: #fff;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(244, 143, 177, 0.4);
  transition: background 0.2s, transform 0.15s;
}

.form-btn button:hover {
  background: #F06292;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   DYNAMIC / JS STATES
═══════════════════════════════════════════ */
.loading-videos {
  text-align: center;
  width: 100%;
  opacity: 0.8;
}

#backToTop {
  position: fixed;
  bottom: 90px;
  right: 16px;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  color: #6b3b1f;
  font-family: 'Baloo 2', cursive;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

#backToTop .label {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

#backToTop:hover {
  transform: scale(1.05);
}

#backToTop:hover .label {
  opacity: 1;
  max-width: 40px;
}

/* ═══════════════════════════════════════════
   FAREWELL + FOOTER
═══════════════════════════════════════════ */
.bottom-wrap {
  background: linear-gradient(180deg,
    #C8EEA0 0%,
    #8DC96A 22%,
    #7B5A2A 52%,
    #6B3E10 72%,
    #4a2a0a 100%
  );
  position: relative;
  overflow: hidden;
}

.farewell {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  min-height: 280px;
  padding: 0 5%;
  background: transparent;
}

.farewell-bubble {
  position: absolute;
  top: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.bye-bubble-img {
  width: clamp(170px, 5vw, 260px);
  height: auto;
  mix-blend-mode: multiply;
  filter: contrast(1.05) saturate(1.05);
}

.farewell-char {
  width: clamp(120px, 20vw, 185px);
  filter: brightness(1.0) contrast(1.08) saturate(1.15);
  position: relative;
  z-index: 1;
  margin-bottom: -4px;
}

.farewell-char + .farewell-char { margin-left: -70px; }

footer {
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  padding: 2.5rem 5% 2.2rem;
  font-size: 0.88rem;
  line-height: 1.9;
}

.foot-tagline {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.foot-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 0.4rem 0 0.8rem;
}

.foot-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--saffron-lt);
  text-decoration: none;
  font-weight: 600;
}

.foot-links a:hover { color: var(--pink-light); }

.foot-copy {
  max-width: 680px;
  margin: 0.8rem auto 0;
  font-size: 0.78rem;
  opacity: 0.6;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 0.9rem;
}

/* ═══════════════════════════════════════════
   THANK-YOU PAGE OVERRIDES
═══════════════════════════════════════════ */
body.page-thankyou .bottom-wrap {
  background: linear-gradient(180deg, #8DC96A 1%, #7B5A2A 62%, #6B3E10 72%, #4a2a0a 100%);
}

body.page-thankyou .hero-tag p { padding-top: 0.7rem; }
body.page-thankyou .hero-chars img:first-child { margin-right: -40px; }
body.page-thankyou .hero-chars img:last-child  { margin-left: -40px; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .vid-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  #creator-note .creator-layout {
    grid-template-columns: 1fr;
  }

  #creator-note .creator-feats {
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero { min-height: 0; }
  .nav-links { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-ic { font-size: 1.4rem; }

  .stats-bar {
    gap: 1.5rem;
    padding: 0.2rem;
  }

  .stat-n { font-size: 1rem; }
  .stat-l { font-size: 0.58rem; }
  .stat svg { width: 23px; height: 23px; }

  .yt-follow,
  .fb-follow,
  .ig-follow {
    display: none;
  }

  .hero-chars { gap: 0; }
  .hero-scroll { max-width: 70%; }
  .welcome-bubble-img,
  .thankyou-bubble-img { width: clamp(140px, 5vw, 320px); }

  .marquee-wrap { padding: 0.4rem 0; }

  .bye-bubble-img { width: clamp(140px, 5vw, 260px); }
  .farewell { min-height: 200px; }

  .cta-row { display: none; }
  .plat-card {
    max-width: 40px;
    border-radius: 10px;
  }
  .plat-card svg { width: 33px; height: 33px; }

  #backToTop .label {
    opacity: 1;
    max-width: 40px;
  }
  #creator-note .creator-copy {
    max-height: 510px;
  }
}

@media (max-width: 640px) {
  .vid-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  #backToTop {
    display: none !important;
  }
}

.nav-packs,
.nav-packs-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: #e17b2d;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  animation: navBadgePop 1.8s ease-in-out infinite;
  transform-origin: center;
}

@keyframes navBadgePop {
  0%, 100% { transform: scale(1); }
  12% { transform: scale(1.08); }
  24% { transform: scale(1); }
  36% { transform: scale(1.12); }
  48% { transform: scale(1); }
}

.festival-packs-page {
  /* background: linear-gradient(
    180deg,
    #faeef4 0%,
    #f4f3ec 35%,
    #e7f3e3 70%,
    #dff0d8 100%
  ); */
  /* background: linear-gradient(160deg, var(--pink-pale) 0%, var(--leaf-pale) 100%); */
}

.festival-packs-page .inner {
  max-width: 1160px;
}

.packs-intro {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.packs-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 420px));
  justify-content: center;
  gap: 28px;
}

.festival-pack-card {
  background: var(--pack-green, #eef6ea);
  border: 1px solid #d9cfbe;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  max-width: 360px;
  margin: 0 auto;
}

.festival-pack-thumb-wrap {
  padding: 16px 16px 8px;
  display: flex;
  justify-content: center;
}

.festival-pack-thumb-frame {
  width: 100%;
  max-width: 250px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.festival-pack-thumb {
  max-height: 150px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.festival-pack-body {
  padding: 10px 18px 20px;
  text-align: center;
}

.festival-pack-body h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.3;
}

.festival-pack-desc {
  margin: 0 0 14px;
  line-height: 1.55;
}

.festival-pack-includes {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fffdf8;
  border: 1px solid #f0e5d6;
  text-align: left;
}

.festival-pack-subtitle {
  margin: 0 0 8px;
  font-weight: 700;
}

.festival-pack-includes ul {
  margin: 4px 0 0;
  padding-left: 16px;
  line-height: 1.5;
}

.festival-pack-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.festival-pack-placeholder {
  max-width: 320px;
  min-height: 420px;
  margin: 0 auto;
  border-radius: 14px;
  border: 1px dashed #d8c3a5;
  background: #f8f1e7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a6f4d;
  font-weight: 700;
}

.coming-soon-card {
  opacity: 0.96;
}

.packs-grid {
  gap: 20px;   /* was ~28+ */
  grid-template-columns: repeat(auto-fit, minmax(320px, 420px));
}

@media (max-width: 640px) {
  .packs-grid {
    grid-template-columns: 1fr;
  }

  .festival-pack-card {
    max-width: 420px;
    margin: 0 auto;
  }
}
.festival-pack-details {
  margin-top: 12px;
  border: 1px solid #eadfce;
  border-radius: 16px;
  background: #fffdf8;
  overflow: hidden;
}

.festival-pack-summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #7a4c1c;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.festival-pack-summary::-webkit-details-marker {
  display: none;
}

.festival-pack-summary::after {
  content: "+";
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 700;
  color: #7a4c1c;
  transition: transform 0.2s ease;
}

.festival-pack-details[open] .festival-pack-summary::after {
  content: "–";
}

.festival-pack-details-body {
  padding: 0 16px 14px;
  text-align: left;
}

.festival-pack-details-body ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.65;
}

@media (max-width: 768px) {

  .festival-pack-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    max-width: 100%;
  }

  .festival-pack-thumb-wrap {
    padding: 0;
  }

  .festival-pack-thumb-frame {
    width: 100px;
    height: 120px;
    border-radius: 12px;
    padding: 6px;
  }

  .festival-pack-thumb {
    max-height: 100%;
    max-width: 100%;
  }

  .festival-pack-body {
    padding: 0;
    text-align: left;
  }

  .festival-pack-body h2 {
    font-size: 1rem;
    margin-bottom: 4px;
    margin-left: 0;
  }

  .festival-pack-desc {
    font-size: 0.85rem;
    margin-bottom: 6px;
    line-height: 1.4;
    margin-left: 0;
  }

  /* Hide collapsible on mobile to reduce height */
  .festival-pack-details {
    display: none;
  }

  .festival-pack-actions {
    margin-top: 8px;
    display: flex;
    justify-content: flex-start;   /* important */
  }

  .festival-pack-actions .btn {
    font-size: 0.85rem;
    display: inline-block;
    margin-left: 0;
  }
}
.btn-primary {
  background: #d97745;
  color: white;
}

.mobile-festival-bar {
  display: none;
}

@media (max-width: 768px) {

  .mobile-festival-bar {
    margin-top: 4px;
    display: block;
    width: 100%;
    padding: 8px 12px;   /* reduce */
    background: linear-gradient(
      90deg,
      #faeef4,
      #eef6ea
    );
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .mobile-festival-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    text-decoration: none;
    font-weight: 700;
    color: #7a4c1c;

    background: rgba(255, 255, 255, 0.6);
    padding: 8px 12px;   /* reduce */
    font-size: 0.9rem;
    border-radius: 999px;
    border: 1px solid #e3d6c2;
    box-shadow: 0 4px 12px rgba(225, 123, 45, 0.08);
  }

  .mobile-new-badge {
    font-size: 0.65rem;
    background: #e17b2d;
    color: white;
    padding: 2px 6px;
    border-radius: 999px;
    font-weight: 700;
  }
  .mobile-festival-link:active {
    transform: scale(0.98);
  }
}

.mobile-new-badge {
  animation: pulseBadge 1.6s infinite;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.cta-features {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}