/* =========================================
   FRIENDLY FARM FRIENDS — SHARED STYLES
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Lato:wght@400;700&display=swap');

/* ---- VARIABLES ---- */
:root {
  --cream:        #FFF8EE;
  --cream-dark:   #F5EDDC;
  --sage:         #5C9E5A;
  --sage-light:   #9EC89C;
  --sage-pale:    #E8F4E7;
  --sky:          #4F9CB0;
  --sky-light:    #93C8D8;
  --sky-pale:     #E5F3F8;
  --gold:         #D4A017;
  --gold-light:   #F2CA5A;
  --gold-pale:    #FEF6DC;
  --tan:          #C8A882;
  --terra:        #C4614A;
  --terra-light:  #E8927D;
  --terra-pale:   #FCE9E5;
  --brown:        #3D2E1F;
  --brown-mid:    #6B5240;
  --brown-soft:   #9A7B5E;
  --white:        #FFFFFF;
  --shadow:       0 4px 20px rgba(61,46,31,0.10);
  --shadow-sm:    0 2px 8px  rgba(61,46,31,0.08);
  --shadow-lg:    0 8px 40px rgba(61,46,31,0.14);
  --radius:       20px;
  --radius-sm:    12px;
  --radius-pill:  50px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background-color: var(--cream);
  color: var(--brown);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
picture { display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--brown);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.15rem; }
p { color: var(--brown-mid); }
.section-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 0.5rem;
  display: block;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5rem 0;
}
.section-sm {
  padding: 3rem 0;
}
.text-center { text-align: center; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: transform 0.18s, box-shadow 0.18s, background-color 0.18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background-color: var(--terra);
  color: var(--white);
}
.btn-primary:hover { background-color: var(--terra-light); }
.btn-secondary {
  background-color: var(--sage);
  color: var(--white);
}
.btn-secondary:hover { background-color: var(--sage-light); }
.btn-outline {
  background-color: transparent;
  color: var(--sage);
  border: 2.5px solid var(--sage);
}
.btn-outline:hover { background-color: var(--sage); color: var(--white); }
.btn-sky {
  background-color: var(--sky);
  color: var(--white);
}
.btn-sky:hover { background-color: var(--sky-light); }
.btn-gold {
  background-color: var(--gold);
  color: var(--brown);
}
.btn-gold:hover { background-color: var(--gold-light); }
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.btn-group.centered {
  justify-content: center;
}

/* ---- BADGES ---- */
.badge {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-green  { background: var(--sage-pale);  color: var(--sage); }
.badge-sky    { background: var(--sky-pale);   color: var(--sky); }
.badge-gold   { background: var(--gold-pale);  color: #9A6E00; }
.badge-terra  { background: var(--terra-pale); color: var(--terra); }

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* ---- SECTION DIVIDER ---- */
.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.section-divider span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tan);
  opacity: 0.45;
}

/* ---- LOGO ICON ---- */
.logo-icon {
  display: block;
  flex-shrink: 0;
}

/* ---- SECTION LABEL ACCENT ---- */
.section-label::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
  margin-right: 0.4rem;
  vertical-align: middle;
}

/* ---- HIGHLIGHT TEXT ---- */
.highlight {
  position: relative;
  display: inline-block;
  color: var(--terra);
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 4px;
  background: var(--gold-light);
  border-radius: 2px;
  z-index: -1;
  opacity: 0.7;
}

/* ---- PULSE BADGE ---- */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(212,160,23,0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(212,160,23,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,160,23,0); }
}
.badge-pulse {
  animation: pulse-ring 2s ease-out infinite;
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--brown);
  padding: 1.5rem 0;
}
.stats-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1;
  min-width: 3ch;
  text-align: center;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(61,46,31,0.08);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.logo-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--brown);
  line-height: 1.1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo-text span { color: var(--sage); }
.logo-text-footer {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 0.5rem;
}
.logo-text-footer span { color: var(--gold); }
@media (max-width: 600px) {
  .logo-text { font-size: 1.2rem; }
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu a {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brown-mid);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: background 0.18s, color 0.18s;
}
.nav-menu a:hover,
.nav-menu a.active {
  background-color: var(--sage-pale);
  color: var(--sage);
}
.nav-parents {
  background-color: var(--sky-pale) !important;
  color: var(--sky) !important;
}
.nav-parents:hover {
  background-color: var(--sky) !important;
  color: var(--white) !important;
}
.nav-shop {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0 !important;
  border-radius: 50% !important;
  background-color: var(--gold-pale) !important;
  color: var(--gold-dark, #B88A0F) !important;
  margin-left: 0.25rem;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.nav-shop:hover,
.nav-shop.is-active {
  background-color: var(--gold, #D4A017) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}
.nav-shop svg {
  display: block;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(160deg, var(--sage-pale) 0%, var(--cream) 55%, var(--sky-pale) 100%);
  padding: 5rem 0 5rem;
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 72px;
  background: var(--cream);
  clip-path: ellipse(60% 100% at 50% 100%);
}

/* Decorative floating dots */
.hero-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  z-index: 2;
  animation: dot-float 6s ease-in-out infinite, dot-fade-in 1s ease forwards;
}
@keyframes dot-fade-in {
  to { opacity: 1; }
}
@keyframes dot-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(8deg); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge { margin-bottom: 1rem; }
.hero h1 { margin-bottom: 1.25rem; }
.hero-tagline {
  font-size: 1.1rem;
  color: var(--brown-mid);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-farm-scene {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--sage-pale), var(--sky-pale));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

/* ============================================================
   TRUST STRIP (below hero)
   ============================================================ */
.trust-strip {
  background: var(--brown);
  padding: 1.1rem 0;
  position: relative;
  z-index: 2;
}
.trust-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255,248,238,0.88);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  padding: 0.3rem 1.6rem;
}
.trust-item svg { flex-shrink: 0; }
.trust-divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* ============================================================
   SECTION: LATEST VIDEO
   ============================================================ */
.latest-video-section { background: var(--cream-dark); }
.latest-video-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  min-height: 300px;
}
.lv-thumb {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sky) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  position: relative;
  cursor: pointer;
}
.lv-thumb .play-btn {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.lv-thumb:hover .play-btn { transform: scale(1.1); }
.lv-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.lv-info h3 { font-size: 1.5rem; }
.lv-info p { font-size: 0.98rem; }

/* ============================================================
   SECTION: WHAT MAKES US SPECIAL
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--card-accent, var(--sage));
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow);
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.feature-card:hover .feature-icon {
  transform: scale(1.18);
}
.feature-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.feature-card p { font-size: 0.9rem; }

/* ============================================================
   SECTION: BEAN FAMILY INTRO
   ============================================================ */
.bean-intro {
  background: var(--gold-pale);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.bean-avatars {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.bean-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.bean-avatar-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.bean-avatar-circle.mama  { background: var(--terra-pale); color: var(--terra); }
.bean-avatar-circle.daddy { background: var(--sage-pale);  color: var(--sage); }
.bean-avatar-circle.teen  { background: var(--sky-pale);   color: var(--sky); }
.bean-avatar-circle.baby  { background: var(--gold-pale);  color: var(--gold); border: 2px solid var(--gold-light); }
.bean-avatar span {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brown-mid);
}

/* ============================================================
   SECTION: SHOP TEASER
   ============================================================ */
.shop-teaser {
  background: linear-gradient(135deg, var(--terra) 0%, #E8927D 100%);
  border-radius: var(--radius);
  padding: 3.5rem 2.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.shop-teaser h2 { color: var(--white); margin-bottom: 0.75rem; }
.shop-teaser p  { color: rgba(255,255,255,0.85); margin-bottom: 1.75rem; }

/* ============================================================
   SECTION: CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--sage) 0%, #3D8B3B 100%);
  color: var(--white);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(255,255,255,0.85); margin-bottom: 1.75rem; }

/* ============================================================
   CHANNEL HERO (VLOG HOME)
   ============================================================ */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.channel-hero {
  background: linear-gradient(155deg, #F5E8CE 0%, #FDF2DE 35%, #EEE4CE 70%, #F0EAD8 100%);
  padding: 5rem 0 3rem;
  overflow: hidden;
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  will-change: transform;
  transform: translateY(0px);
}
.channel-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg,
    rgba(252,250,246,0.92) 0%,
    rgba(255,253,250,0.86) 40%,
    rgba(250,246,238,0.9) 100%);
  pointer-events: none;
}

/* ── Page-hero background photo (shared helper class) ─── */
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.channel-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.channel-hero-inner > .badge { margin-bottom: 1.25rem; }
.channel-hero-inner h1 { margin-bottom: 1rem; }
.hero-tagline {
  font-size: 1.1rem;
  color: var(--brown-mid);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.7;
}
.hero-cta {
  margin-bottom: 0.85rem;
  padding: 1rem 2.8rem;
  font-size: 1.1rem;
}
.hero-secondary-link {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown-soft);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.hero-secondary-link:hover { color: var(--terra); }
.channel-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 auto 2.5rem;
  padding: 1rem 1.5rem;
  background: rgba(61,46,31,0.05);
  border-radius: var(--radius-pill);
  width: fit-content;
}
.cstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.25rem;
}
.cstat strong {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--brown);
  line-height: 1;
}
.cstat span {
  font-size: 0.72rem;
  color: var(--brown-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.cstat-divider {
  width: 1px;
  height: 32px;
  background: rgba(61,46,31,0.12);
}

/* Hero video card */
.hero-video-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  text-decoration: none;
  background: var(--white);
  max-width: 520px;
  width: 100%;
}
.hero-video-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 60px rgba(61,46,31,0.18);
}
.hvc-thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hvc-thumb svg { display: block; }
.hvc-thumb-scene {
  width: 100%;
  aspect-ratio: 400 / 260;
  display: block;
}
.hvc-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0) 45%, rgba(0,0,0,0.38) 100%);
  pointer-events: none;
}
.hvc-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), background 0.2s;
  padding-left: 4px;
}
.hero-video-card:hover .hvc-play {
  transform: translate(-50%, -50%) scale(1.15);
  background: white;
}
.hvc-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--terra);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.hvc-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.2rem;
  background: var(--white);
}
.hvc-ep {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown);
}
.hvc-watch {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--sage);
}

/* ============================================================
   EPISODE FEED
   ============================================================ */
.ep-feed-section {
  background: var(--cream-dark);
  padding: 3.5rem 0 4rem;
  position: relative;
}

/* Featured Latest Episode Card */
.ep-featured {
  display: grid;
  grid-template-columns: 420px 1fr;
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 6px 32px rgba(61,46,31,0.13);
  text-decoration: none;
  color: inherit;
  margin-bottom: 1.75rem;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
}
.ep-featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 56px rgba(61,46,31,0.18);
}
.ep-featured-thumb {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
.ep-featured-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(61,46,31,0.18) 100%);
}
.ep-featured-badge {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--terra);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
}
.ep-featured-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  animation: blink 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
.ep-featured-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(61,46,31,0.2);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.ep-featured:hover .ep-featured-play {
  transform: translate(-50%, -50%) scale(1.12);
  background: white;
  box-shadow: 0 8px 32px rgba(61,46,31,0.25);
}
.ep-featured-info {
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.ep-featured-info h3 {
  font-size: 1.7rem;
  line-height: 1.2;
  color: var(--brown);
  margin: 0.25rem 0 0.85rem;
}
.ep-featured-info > p {
  color: var(--brown-soft);
  line-height: 1.65;
  margin: 0 0 1.5rem;
  font-size: 1rem;
}
.ep-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--terra);
  letter-spacing: 0.01em;
}
.ep-featured:hover .ep-featured-cta {
  text-decoration: underline;
}
@media (max-width: 900px) {
  .ep-featured { grid-template-columns: 1fr; }
  .ep-featured-thumb { min-height: 220px; }
  .ep-featured-info { padding: 1.5rem 1.75rem; }
  .ep-featured-info h3 { font-size: 1.35rem; }
}

.container-wide {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.75rem;
}
.feed-header h2 { margin-bottom: 0; }
.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.88rem;
}

.ep-feed-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  cursor: grab;
}
.ep-feed-scroll:active { cursor: grabbing; }
.ep-feed-scroll::-webkit-scrollbar {
  height: 4px;
}
.ep-feed-scroll::-webkit-scrollbar-track {
  background: var(--cream-dark);
  border-radius: 2px;
}
.ep-feed-scroll::-webkit-scrollbar-thumb {
  background: var(--tan);
  border-radius: 2px;
}

.ep-card {
  min-width: 248px;
  max-width: 268px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
  display: block;
}
.ep-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: var(--shadow-lg);
}
.ep-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ep-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.48) 100%);
  pointer-events: none;
}
.ep-thumb svg { display: block; width: 100%; }
.ep-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.28);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.ep-card:hover .ep-play { transform: translate(-50%,-50%) scale(1.2); }
.ep-num {
  position: absolute;
  bottom: 0; left: 0; right: 0; top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 14px;
  padding-top: 10px;
  pointer-events: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 5.5rem;
  color: rgba(255,255,255,0.15);
  letter-spacing: -0.04em;
  line-height: 1;
  align-items: flex-start;
  padding-top: 8px;
}
.ep-info {
  padding: 0.9rem 1.1rem 1.1rem;
}
.ep-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.ep-desc {
  font-size: 0.82rem;
  color: var(--brown-soft);
  margin: 0;
}

/* Episode card: real photo thumbnail (populated by home.js when YouTube is live) */
.ep-thumb-photo {
  background: var(--cream-dark);
}
.ep-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ep-thumb-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* ============================================================
   CHARACTER GRID (Bluey-style)
   ============================================================ */
.char-section {
  background: var(--cream);
  padding: 3.5rem 0 4.5rem;
}
.char-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 268px;
  gap: 1rem;
  margin-top: 2rem;
}
.char-card {
  background: var(--cc-bg, var(--cream-dark));
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.char-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.32) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}
.char-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 64px rgba(61,46,31,0.2);
  z-index: 2;
}
.char-card.featured {
  grid-row: span 2;
}
.cc-art {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem 0.5rem 0;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}
.cc-art svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 155px;
}
.char-card.featured .cc-art svg {
  max-width: 220px;
}
.cc-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cc-label {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0.7rem 1rem 1rem;
  width: 100%;
}
.cc-name {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--cc-color, var(--brown));
}
.cc-trait {
  display: block;
  font-size: 0.76rem;
  color: var(--brown-soft);
  margin-top: 2px;
}

/* Meet the Friends page — compact char nav */
.mf-char-nav {
  background: var(--cream-dark);
  padding: 2.5rem 0 3rem;
}
.mf-char-nav .char-grid {
  grid-auto-rows: 210px;
  margin-top: 0;
}
.mf-char-nav .cc-art svg {
  max-width: 120px;
}
.mf-char-nav .char-card.featured .cc-art svg {
  max-width: 175px;
}

/* ============================================================
   FAMILY STRIP
   ============================================================ */
.family-strip {
  background: var(--cream-dark);
  padding: 3rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.family-strip-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.family-avatars {
  display: flex;
  flex-shrink: 0;
  gap: -0.5rem;
}
.family-avatars .bean-avatar-circle {
  width: 60px; height: 60px;
  font-size: 1.4rem;
  margin-left: -12px;
  border: 3px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}
.family-avatars .bean-avatar-circle:first-child { margin-left: 0; }
.family-words { flex: 1; }
.family-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 0.4rem;
}
.family-words h3 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--brown);
  font-weight: 700;
  line-height: 1.35;
}

/* ============================================================
   SUBSCRIBE CTA
   ============================================================ */
.subscribe-cta {
  background: linear-gradient(135deg, var(--sage) 0%, #3D8B3B 100%);
  padding: 5rem 0;
  position: relative;
}
.sub-dot {
  position: absolute;
  border-radius: 50%;
}
.btn-xl {
  padding: 1rem 2.4rem;
  font-size: 1.08rem;
}

/* ============================================================
   SECTION: EMAIL SIGN-UP FORM
   ============================================================ */
.signup-form {
  max-width: 480px;
  margin: 0 auto;
}
.signup-row {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.3rem 0.3rem 1.25rem;
  box-shadow: 0 4px 24px rgba(61,46,31,0.18);
}
.signup-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Nunito', sans-serif;
  font-size: 0.97rem;
  color: var(--brown);
  outline: none;
  min-width: 0;
  padding: 0.5rem 0;
}
.signup-input::placeholder { color: var(--brown-soft); opacity: 1; }
.signup-btn {
  flex-shrink: 0;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill) !important;
  font-size: 0.9rem;
}
.signup-note {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.signup-msg {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  min-height: 1.4em;
  font-weight: 600;
}
.signup-msg--success { color: var(--gold-light); }
.signup-msg--error   { color: #FFB3A7; }

/* Override colours when form sits on a cream/white background */
.coming-soon-box .signup-note    { color: var(--brown-soft); }
.coming-soon-box .signup-msg--success { color: var(--sage); }
.coming-soon-box .signup-msg--error   { color: var(--terra); }

@media (max-width: 480px) {
  .signup-row {
    flex-direction: column;
    padding: 0.75rem;
    border-radius: var(--radius);
    gap: 0.6rem;
  }
  .signup-input { text-align: center; }
  .signup-btn   { width: 100%; justify-content: center; }
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(61,46,31,0.18);
}

/* ============================================================
   MEET THE FRIENDS PAGE — CHAPTER LAYOUT
   ============================================================ */

/* HERO */
.mf-hero {
  background: linear-gradient(160deg, #FBF0CC 0%, #FEF6DA 50%, #FFF8EE 100%);
  padding: 4.5rem 0 0;
  position: relative;
  overflow: hidden;
}
.mf-hero-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.mf-deco-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.mf-deco-blob-a { top: -80px; left: -60px; width: 320px; height: 320px; background: #F2D88A; }
.mf-deco-blob-b { top: 30%; right: -100px; width: 360px; height: 360px; background: #C7E0BA; opacity: 0.45; }
.mf-deco-blob-c { bottom: 40px; left: 35%; width: 280px; height: 280px; background: #F6D7C2; opacity: 0.35; }
.mf-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 4rem;
}
.mf-hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin: 0.75rem 0 1.25rem;
}
.mf-hero-lede {
  color: var(--brown-mid);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2.75rem;
}
.btn-sage {
  background: var(--sage);
  color: white;
  border: none;
}
.btn-sage:hover { background: #4A8048; }

/* Lineup of 5 character cards */
.mf-lineup {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}
.mf-lineup-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding-top: 14px;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.mf-lineup-card:nth-child(even) { transform: translateY(18px); }
.mf-lineup-card:hover { transform: translateY(-8px); }
.mf-lineup-card:nth-child(even):hover { transform: translateY(10px); }
.mf-lineup-num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--lc-color);
  background: white;
  padding: 3px 9px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(61,46,31,0.1);
  z-index: 2;
}
.mf-lineup-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lc-tint);
  padding: 6px;
  margin-bottom: 0.75rem;
  box-shadow: 0 12px 30px rgba(61,46,31,0.14);
  transition: box-shadow 0.25s;
}
.mf-lineup-card:hover .mf-lineup-photo {
  box-shadow: 0 18px 40px rgba(61,46,31,0.22), 0 0 0 3px var(--lc-color);
}
.mf-lineup-photo picture,
.mf-lineup-photo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.mf-lineup-name {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brown);
  line-height: 1.1;
}
.mf-lineup-trait {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--lc-color);
  margin-top: 0.15rem;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

/* wave divider */
.mf-hero-wave {
  position: relative;
  margin-bottom: -2px;
  line-height: 0;
}
.mf-hero-wave svg { display: block; width: 100%; height: 60px; }

/* CHAPTERS */
/* INVITATION CARD */
.mf-invite {
  background: var(--cream-dark);
  padding: 4rem 0 3.5rem;
}
.mf-invite-card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 28px;
  padding: 3.5rem 3rem 2.75rem;
  box-shadow: 0 18px 48px rgba(61,46,31,0.08);
  text-align: center;
  border: 1px solid rgba(158, 200, 156, 0.25);
}
.mf-invite-quote {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  padding-top: 22px;
  box-shadow: 0 6px 16px rgba(61,46,31,0.15);
}
.mf-invite-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sage);
  margin-bottom: 1rem;
}
.mf-invite-headline {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  line-height: 1.35;
  color: var(--brown);
  margin: 0 0 1.25rem;
}
.mf-invite-body {
  color: var(--brown-mid);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 1.75rem;
}
.mf-invite-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px dashed rgba(61,46,31,0.15);
}
.mf-invite-signature {
  font-family: 'Caveat', 'Nunito', cursive;
  font-size: 1.5rem;
  color: var(--brown);
}
.mf-invite-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--sage);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.mf-invite-link:hover { background: #4A8048; transform: translateY(-2px); color: white; }

@media (max-width: 600px) {
  .mf-invite-card { padding: 2.75rem 1.5rem 2rem; border-radius: 20px; }
  .mf-invite-quote { width: 52px; height: 52px; font-size: 2.4rem; padding-top: 18px; top: -22px; }
}

.mf-chapters { background: var(--cream-dark); }
.mf-chapter {
  background: var(--ch-tint, var(--cream));
  padding: 5rem 0;
  border-bottom: 1px solid rgba(61,46,31,0.05);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 78px;
}
.mf-chapter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at var(--ch-side, 20%) 50%, var(--ch-spot, var(--cream)) 0%, transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}
.mf-chapter-flip { --ch-side: 80%; }

.mf-chapter-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
.mf-chapter-flip .mf-chapter-inner {
  grid-template-columns: 1.1fr 1fr;
}
.mf-chapter-flip .mf-chapter-portrait { order: 2; }
.mf-chapter-flip .mf-chapter-info    { order: 1; }

/* Portrait side */
.mf-chapter-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.mf-portrait-disk {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(61,46,31,0.10);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  overflow: hidden;
}
.mf-portrait-disk picture {
  width: 100%;
  height: 100%;
}
.mf-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.mf-chapter:hover .mf-photo {
  transform: scale(1.06);
}
@keyframes mf-bob {
  0%   { transform: translateY(0); }
  40%  { transform: translateY(-14px) scale(1.06); }
  70%  { transform: translateY(-6px) scale(1.03); }
  100% { transform: translateY(0) scale(1); }
}
.mf-number {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: rgba(61,46,31,0.25);
  text-transform: uppercase;
}

/* Info side */
.mf-chapter-info { padding: 0.5rem 0; }
.mf-badge {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}
.mf-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--brown);
  line-height: 1;
  margin: 0 0 0.3rem;
}
.mf-species {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--brown-soft);
  margin-bottom: 1rem;
}
.mf-tagline {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brown-mid);
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--ch-color, var(--sage));
}
.mf-pills {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}
.mf-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--brown-mid);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  width: fit-content;
}
.mf-watch-btn {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ch-color, var(--sage));
  border: 2px solid var(--ch-color, var(--sage));
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-pill);
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.mf-watch-btn:hover {
  background: var(--ch-color, var(--sage));
  color: white;
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 900px) {
  .mf-lineup { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem 1rem; max-width: 460px; }
  .mf-lineup-card { flex: 0 0 calc(33.333% - 0.7rem); }
  .mf-lineup-card:nth-child(even) { transform: none; }
  .mf-lineup-card:nth-child(4),
  .mf-lineup-card:nth-child(5) { transform: translateY(10px); }
  .mf-lineup-card:hover,
  .mf-lineup-card:nth-child(even):hover,
  .mf-lineup-card:nth-child(4):hover,
  .mf-lineup-card:nth-child(5):hover { transform: translateY(-6px); }
  .mf-hero-title { margin-bottom: 1rem; }
  .mf-hero-lede { margin-bottom: 2rem; font-size: 1rem; }
  .mf-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 2.5rem;
  }
  .mf-hero-text p { margin: 0 auto 1.75rem; }
  .mf-hero-mosaic {
    height: 220px;
    width: 380px;
    margin: 0 auto;
  }
  .mc-1 { width:80px;height:80px; top:8px;   left:10px; }
  .mc-2 { width:90px;height:90px; top:0;     left:90px; }
  .mc-3 { width:74px;height:74px; top:10px;  left:195px; }
  .mc-4 { width:84px;height:84px; top:100px; left:0; }
  .mc-5 { width:96px;height:96px; top:90px;  left:90px; }
  .mc-6 { width:80px;height:80px; top:104px; left:200px; }
  .mc-7 { width:84px;height:84px; top:182px; left:45px; }
  .mf-chapter { padding: 3.5rem 0; }
  .mf-chapter-inner,
  .mf-chapter-flip .mf-chapter-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .mf-chapter-flip .mf-chapter-portrait { order: 0; }
  .mf-chapter-flip .mf-chapter-info    { order: 1; }
  .mf-portrait-disk { width: 200px; height: 200px; margin: 0 auto; }
  .mf-tagline { text-align: left; }
  .mf-pills { align-items: center; }
}
@media (max-width: 480px) {
  .mf-hero-mosaic { width: 280px; height: 180px; }
  .mc-1 { width:66px;height:66px; top:6px;  left:6px; }
  .mc-2 { width:74px;height:74px; top:0;    left:72px; }
  .mc-3 { width:60px;height:60px; top:8px;  left:160px; }
  .mc-4 { width:68px;height:68px; top:80px; left:0; }
  .mc-5 { width:78px;height:78px; top:74px; left:72px; }
  .mc-6 { width:64px;height:64px; top:82px; left:160px; }
  .mc-7 { width:68px;height:68px; top:148px;left:36px; }
}

/* ============================================================
   PEEK SECTION (watch page coming-soon previews)
   ============================================================ */
.peek-section {
  margin-top: 4rem;
  background: var(--brown);
  border-radius: var(--radius);
  padding: 3rem 2.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.peek-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(212,160,23,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(92,158,90,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.peek-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.peek-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 0.75rem;
}
.peek-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}
.peek-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cream);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.peek-sub {
  font-size: 0.95rem;
  color: rgba(255,248,238,0.65);
  margin: 0;
}

.peek-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.peek-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.peek-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
}
.peek-card-featured {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.28), 0 0 0 3px var(--gold);
}
.peek-card-featured:hover {
  transform: scale(1.06) translateY(-10px);
  box-shadow: 0 22px 48px rgba(0,0,0,0.35), 0 0 0 3px var(--gold);
}

.peek-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.peek-thumb picture { display: block; width: 100%; height: 100%; }
.peek-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.peek-card:hover .peek-photo { transform: scale(1.05); }
.peek-ep {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: white;
  background: rgba(0,0,0,0.35);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.peek-featured-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  background: var(--gold);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.peek-info {
  padding: 1.1rem 1.25rem 1.25rem;
}
.peek-info .badge { margin-bottom: 0.5rem; }
.peek-info h3 {
  font-size: 0.98rem;
  font-weight: 800;
  margin: 0.35rem 0 0.3rem;
  color: var(--brown);
  line-height: 1.3;
}
.peek-info p {
  font-size: 0.82rem;
  color: var(--brown-soft);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .peek-grid { grid-template-columns: 1fr; }
  .peek-card-featured { transform: none; box-shadow: 0 12px 36px rgba(0,0,0,0.28), 0 0 0 3px var(--gold); }
  .peek-section { padding: 2rem 1.25rem 1.75rem; }
}

/* ============================================================
   WATCH PAGE
   ============================================================ */
.watch-hero {
  background: linear-gradient(155deg, #3A7A5C 0%, #4A9268 45%, #5CAF7A 100%);
  padding: 5rem 0 4rem;
  text-align: center;
}
.watch-hero h1,
.watch-hero .section-label,
.watch-hero p { color: rgba(255,248,238,0.95); }
.watch-hero .section-label { color: rgba(255,248,238,0.7); }
.watch-hero p { max-width: 520px; margin: 1rem auto 0; }

.featured-video-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 300px;
  margin-bottom: 3rem;
}
.featured-thumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sky) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.play-overlay {
  position: absolute;
  width: 70px; height: 70px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.featured-thumb:hover .play-overlay { transform: scale(1.12); }
.featured-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}
.featured-info h2 { font-size: 1.5rem; }
.featured-info p  { font-size: 0.93rem; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sky-light) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.play-badge {
  position: absolute;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.video-info {
  padding: 1.25rem;
}
.video-info h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.video-info p {
  font-size: 0.82rem;
  color: var(--brown-soft);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.coming-soon-box {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  max-width: 560px;
  margin: 0 auto;
}
.coming-soon-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.coming-soon-box h2 { margin-bottom: 0.75rem; }
.coming-soon-box p  { margin-bottom: 1.5rem; }

/* CSS Loading Spinner */
.loading-spinner {
  text-align: center;
  padding: 4rem;
}
.spinner-ring {
  width: 52px; height: 52px;
  border: 4px solid var(--sage-pale);
  border-top-color: var(--sage);
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   MEET THE FRIENDS PAGE
   ============================================================ */
.friends-hero {
  background: linear-gradient(160deg, var(--sage-pale) 0%, var(--cream) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
}
.friends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.friend-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.friend-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.friend-card-top {
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  position: relative;
}
.friend-initial-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-sm);
  color: var(--white);
}
.friend-card-top h3 { margin-bottom: 0.2rem; }
.friend-species {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brown-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.friend-card-body {
  padding: 0 1.5rem 1.75rem;
  border-top: 1.5px solid var(--cream-dark);
  padding-top: 1.25rem;
}
.friend-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}
.friend-detail .detail-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--brown-soft);
  min-width: 80px;
  margin-top: 0.05rem;
}
.friend-detail .detail-val { color: var(--brown-mid); }

/* Color variants for friend cards */
.fc-sage  .friend-initial-circle { background: var(--sage); }
.fc-sky   .friend-initial-circle { background: var(--sky); }
.fc-gold  .friend-initial-circle { background: var(--gold); color: var(--brown); }
.fc-terra .friend-initial-circle { background: var(--terra); }
.fc-tan   .friend-initial-circle { background: var(--tan); }
.fc-sage  .friend-card-top  { background: var(--sage-pale); }
.fc-sky   .friend-card-top  { background: var(--sky-pale); }
.fc-gold  .friend-card-top  { background: var(--gold-pale); }
.fc-terra .friend-card-top  { background: var(--terra-pale); }
.fc-tan   .friend-card-top  { background: #F5EAD8; }

/* ============================================================
   OUR STORY PAGE
   ============================================================ */
.story-hero {
  background: linear-gradient(155deg, #5A3E2E 0%, #7A5040 45%, #9A6850 100%);
  padding: 5rem 0 4rem;
  text-align: center;
}
.story-hero h1,
.story-hero .section-label,
.story-hero p { color: rgba(255,248,238,0.95); }
.story-hero .section-label { color: rgba(255,248,238,0.65); }
.story-section {
  max-width: 780px;
  margin: 0 auto;
}

/* BEAN FAMILY GRID */
.bean-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.bean-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 2rem 1.85rem;
  box-shadow: 0 8px 24px rgba(61,46,31,0.07);
  border: 1px solid rgba(61,46,31,0.05);
  border-top: 5px solid var(--bean-color, var(--sage));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bean-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(61,46,31,0.10);
}
.bean-card-head {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(61,46,31,0.12);
}
.bean-card-name {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--brown);
  line-height: 1.1;
}
.bean-card-role {
  display: inline-block;
  width: fit-content;
  background: var(--bean-bg, var(--cream-dark));
  color: var(--bean-color, var(--brown-mid));
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  margin-top: 0.4rem;
}
.bean-card p {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--brown-mid);
  margin: 0;
}

@media (max-width: 760px) {
  .bean-grid { grid-template-columns: 1fr; gap: 1.25rem; max-width: 520px; }
  .bean-card { padding: 1.75rem 1.5rem 1.5rem; }
  .bean-card-name { font-size: 1.4rem; }
}

/* STORY FEATURE — image + text side-by-side */
.story-feature {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 1.15fr;
  gap: 3rem;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.story-feature-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(61,46,31,0.18);
  aspect-ratio: 4 / 5;
  background: var(--cream-dark);
}
.story-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.story-feature-media:hover img { transform: scale(1.03); }
.story-feature-badge {
  position: absolute;
  bottom: 1.1rem;
  left: 1.1rem;
  background: rgba(255, 248, 238, 0.95);
  color: var(--brown);
  font-family: 'Caveat', 'Nunito', cursive;
  font-size: 1.35rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(61,46,31,0.18);
  backdrop-filter: blur(4px);
}
.story-feature-text { max-width: 560px; }
.story-feature-text h2 { line-height: 1.15; }
.story-feature-lede {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--brown);
  line-height: 1.5;
  margin: 1.25rem 0 1.25rem;
}
.story-feature-text p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--brown-mid);
  margin-bottom: 1rem;
}
.story-feature-text p:last-child { margin-bottom: 0; }

@media (max-width: 880px) {
  .story-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 620px;
  }
  .story-feature-media { aspect-ratio: 4 / 3; }
}
.story-block {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
  align-items: start;
}
.story-block.reverse {
  grid-template-columns: 1fr 120px;
}
.story-block.reverse .story-person { order: 2; }
.story-block.reverse .story-text   { order: 1; }
.story-person {
  text-align: center;
}
.story-person-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  margin: 0 auto 0.5rem;
  box-shadow: var(--shadow-sm);
}
.story-person-circle.mama  { background: var(--terra-pale); color: var(--terra); }
.story-person-circle.daddy { background: var(--sage-pale);  color: var(--sage); }
.story-person-circle.teen  { background: var(--sky-pale);   color: var(--sky); }
.story-person-circle.baby  { background: var(--gold-pale);  color: var(--gold); border: 2px solid var(--gold-light); }
.story-person strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown-mid);
}
.story-text h3 { margin-bottom: 0.6rem; }
.story-text p  { font-size: 0.96rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}
.value-chip {
  background: var(--white);
  border-radius: 18px;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 6px 22px rgba(61,46,31,0.06);
  border: 1px solid rgba(61,46,31,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.value-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(61,46,31,0.10);
}
.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto 1rem;
}
.value-chip strong {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.value-chip p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--brown-mid);
  margin: 0;
  max-width: 26ch;
}

/* Featured "Christian Faith" — spans full width as foundation */
.value-chip.value-featured {
  grid-column: 1 / -1;
  background: var(--white);
  border: 1px solid rgba(158, 200, 156, 0.35);
  border-left: 5px solid #5C9E5A;
  padding: 2.25rem 2rem;
  flex-direction: row;
  text-align: left;
  gap: 1.5rem;
  align-items: center;
}
.value-chip.value-featured .value-icon {
  flex-shrink: 0;
  margin: 0;
  width: 64px;
  height: 64px;
}
.value-chip.value-featured .value-body {
  flex: 1;
}
.value-chip.value-featured strong {
  margin-bottom: 0.35rem;
  font-size: 1.3rem;
}
.value-chip.value-featured p {
  max-width: 70ch;
  font-size: 0.98rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
  .value-chip.value-featured {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .value-chip.value-featured .value-icon { margin: 0 auto; }
  .value-chip.value-featured p { margin-left: auto; margin-right: auto; }
}

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-hero {
  background: linear-gradient(155deg, #B84030 0%, #C4614A 50%, #D87860 100%);
  padding: 5rem 0 4rem;
  text-align: center;
}
.shop-hero h1,
.shop-hero .section-label,
.shop-hero p { color: rgba(255,248,238,0.95); }
.shop-hero .section-label { color: rgba(255,248,238,0.68); }
.shop-coming-soon {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.shop-coming-soon .shop-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.shop-items-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.shop-item-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}
.shop-item-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.shop-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
}
.shop-item-card strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.shop-item-card p { font-size: 0.85rem; }

/* ============================================================
   PARENTS PAGE
   ============================================================ */
.parents-hero {
  position: relative;
  background: #2A6880;
  padding: 7rem 0 6rem;
  min-height: 540px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.75rem;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.parents-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(155deg,
      rgba(42,104,128,0.78) 0%,
      rgba(58,136,160,0.72) 45%,
      rgba(79,160,192,0.65) 100%);
  pointer-events: none;
}
.parents-hero h1,
.parents-hero .section-label,
.parents-hero p { color: rgba(255,248,238,0.97); text-shadow: 0 1px 14px rgba(0,0,0,0.25); }
.parents-hero .section-label { color: rgba(255,248,238,0.75); }
.parents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.promise-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.promise-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.promise-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.promise-item h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.promise-item p  { font-size: 0.88rem; }

/* ---- CONTACT FORM ---- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 0.5rem; }
.contact-form > p { font-size: 0.9rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown-mid);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--brown);
  background: var(--cream);
  outline: none;
  transition: border-color 0.18s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none;
  background: var(--sage-pale);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
  color: var(--sage);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--brown);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.footer-col { min-width: 0; }
.footer-brand .logo-text-footer { margin-bottom: 0.85rem; }
.footer-tagline {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.01em;
}
.footer-heading {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-start;
}
.footer-nav a {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  transition: color 0.15s, transform 0.15s;
}
.footer-nav a:hover { color: var(--white); transform: translateX(3px); }
.footer-blurb {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.footer-cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--brown);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  color: var(--brown);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   PAGE HERO GENERIC
   ============================================================ */
.page-hero {
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p {
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

/* ============================================================
   SECTION WAVE DIVIDERS
   ============================================================ */
.section-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  pointer-events: none;
  line-height: 0;
  z-index: 3;
}
.section-wave svg {
  width: 100%;
  height: 61px;
  display: block;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner     { grid-template-columns: 1fr; text-align: center; }
  .hero-art       { display: none; }
  .btn-group      { justify-content: center; }
  .latest-video-card  { grid-template-columns: 1fr; }
  .featured-video-wrap{ grid-template-columns: 1fr; }
  .parents-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-block    { grid-template-columns: 1fr; text-align: center; }
  .story-block.reverse .story-person { order: 0; }
  .story-block.reverse .story-text   { order: 1; }
  .story-person-circle { margin-bottom: 0.5rem; }
  .footer-inner   { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-brand   { grid-column: 1 / -1; }
  .footer-nav     { align-items: flex-start; }
  /* vlog home */
  .hero-tagline { max-width: 100%; }
  .channel-stats  { margin: 1.5rem auto 0; }
  .feed-header    { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .family-strip-inner { flex-direction: column; text-align: center; }
  .family-avatars { justify-content: center; }
  /* char grid */
  .char-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .mf-char-nav .char-grid { grid-auto-rows: 165px; }
}

@media (max-width: 1024px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 20px rgba(61,46,31,0.1);
    gap: 0.25rem;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { display: block; padding: 0.6rem 1rem; }
  .nav-toggle { display: flex; }
  .navbar { position: sticky; }
  .section  { padding: 3.5rem 0; }
  .bean-avatars { gap: 1rem; }
  .friends-grid { grid-template-columns: 1fr; }
  .stats-inner { gap: 0; }
  .stat-item {
    padding: 0.75rem 1.25rem;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 50%;
  }
  .stat-item:nth-child(even) { border-bottom: none; }
  .stat-item:nth-child(3)    { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hero-dot { display: none; }
}

@media (max-width: 480px) {
  .char-card.featured { grid-row: span 1; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .btn-group { flex-direction: column; align-items: stretch; text-align: center; }
  .stat-num  { font-size: 1.5rem; }
  .stat-item { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom: none; }
  /* Home hero: keep stats pill within viewport and centered */
  .channel-hero-inner { max-width: 100%; }
  .channel-stats {
    width: 100%;
    max-width: 100%;
    padding: 0.85rem 0.5rem;
    justify-content: space-around;
    box-sizing: border-box;
  }
  .cstat { padding: 0 0.5rem; flex: 1; min-width: 0; }
  .cstat strong { font-size: 1rem; }
  .cstat span { font-size: 0.65rem; letter-spacing: 0.06em; }
  .hero-cta { padding: 0.95rem 2rem; }
  /* Trust strip: stack vertically, hide dividers, align by icon */
  .trust-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    margin: 0 auto;
    gap: 0.4rem;
  }
  .trust-divider { display: none; }
  .trust-item { padding: 0.3rem 0; }
}
