/* ═══════════════════════════════════════════════════════════════════
   NEURO-CONVERSION LAYER — FirepowerSFX
   Steps 6–9: Typography · Mobile CTAs · Micro-interactions · 3D

   Loaded after midnight-ember.css — intentional cascade override.
   ═══════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════════
   STEP 7 — TYPOGRAPHY UPGRADE
   Playfair Display applied only to testimonial pull-quotes.
   Serif triggers the limbic association of "timeless, significant
   occasion" — appropriate for the most trust-critical section.
   ══════════════════════════════════════════════════════════════════ */

.me-testimonial__text {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.82;
  letter-spacing: 0.01em;
  color: var(--fog);
}

/* Section-level uppercase labels — luxury letter-spacing signal */
.me-section__eyebrow,
.me-service-badge,
.me-hero__trust-item {
  letter-spacing: 0.2em;
}

/* ══════════════════════════════════════════════════════════════════
   STEP 10 — DUAL-REGISTER SERVICE TAGLINE
   Sensory, emotional line beneath the service title.
   Families read this. Planners skip to the spec list below.
   ══════════════════════════════════════════════════════════════════ */

.me-service-tagline {
  font-size: 0.88rem;
  color: var(--fog);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(255, 77, 0, 0.08);
}

/* ══════════════════════════════════════════════════════════════════
   STEP 8 — MOBILE CTA AUDIT
   60×60px WhatsApp float. 44px minimum touch targets.
   CTA band: WhatsApp stacks cleanly on small screens.
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  /* WhatsApp float: 60×60px for easier tap on mobile */
  .me-wa-float {
    width: 60px;
    height: 60px;
  }

  /* Gallery filter pills: minimum 44px tap height */
  .me-filter-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* Nav CTA — visible above 400px, adequate touch size */
  .me-nav__cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* CTA band row: WhatsApp primary stacks above on narrow screens */
@media (max-width: 480px) {
  .me-cta-row {
    flex-direction: column;
    width: 100%;
  }
  .me-cta-row .btn-ignite,
  .me-cta-row .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════════════════════
   STEP 9 — MICRO-INTERACTIONS

   Every interaction must have a physical response. A button that
   responds to a tap with scale(0.96) satisfies the neurological
   correlate of pressing a real button. Absence of response = broken.
   ══════════════════════════════════════════════════════════════════ */

/* WhatsApp float — pulse animation (norepinephrine, single focused call to action) */
@keyframes nc-wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.65),
                          0 0 0 8px rgba(37, 211, 102, 0.07); }
}

.me-wa-float {
  animation: nc-wa-pulse 6s ease-in-out infinite;
}

/* Service cards — translateY lift on hover (dopamine: card rises to meet you) */
.me-service-card {
  transition:
    background var(--t-base),
    transform 0.28s cubic-bezier(0.23,1,0.32,1),
    box-shadow 0.28s ease;
}
.me-service-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 24px 55px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,77,0,0.14);
}

/* Problem cards — smaller lift */
.me-problem-card {
  transition:
    border-color var(--t-base),
    transform 0.28s cubic-bezier(0.23,1,0.32,1);
}
.me-problem-card:hover {
  transform: translateY(-3px);
}

/* Button active — scale press (tactile satisfaction of physical button) */
.btn-ignite:active {
  transform: scale(0.96) translateY(0) !important;
  box-shadow: none !important;
  transition: transform 0.08s ease, box-shadow 0.08s ease !important;
}

.btn-ghost:active {
  transform: scale(0.96) translateY(0) !important;
  transition: transform 0.08s ease !important;
}

.me-nav__cta:active {
  transform: scale(0.96) translateY(0) !important;
}

/* Primary CTA — periodic glow pulse (norepinephrine: once every 6s, near conversion) */
@keyframes nc-cta-glow {
  0%, 100% {
    box-shadow: 0 0 30px rgba(255, 77, 0, 0.35),
                0 8px 20px rgba(255, 77, 0, 0.15);
  }
  50% {
    box-shadow: 0 0 55px rgba(255, 77, 0, 0.65),
                0 8px 30px rgba(255, 77, 0, 0.3),
                0 0 0 6px rgba(255, 77, 0, 0.08);
  }
}

.btn-ignite-pulse {
  animation: nc-cta-glow 6s ease-in-out infinite;
}

/* 3D tilt setup — hardware-accelerated compositing */
.me-service-card,
.me-testimonial,
.me-problem-card {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

/* ══════════════════════════════════════════════════════════════════
   STEP 6 — DUAL-REGISTER SECTION: AVAILABILITY SIGNAL + PLANNERS BOX
   ══════════════════════════════════════════════════════════════════ */

/* Availability signal beneath CTA — honest scarcity, cortisol reduction */
.me-availability-signal {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  text-align: center;
  margin-top: var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
}

.me-availability-signal::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--ignition);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--ignition);
  animation: me-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* Italic accent in CTA band heading */
.me-cta-band em {
  font-style: normal;
  color: var(--ignition);
}

/* Event planners callout — appears at end of Process section */
.me-planners-box {
  background: var(--obsidian-3);
  border: 1px solid var(--iron);
  border-left: 3px solid var(--ignition);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-10);
  margin-top: var(--sp-12);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-8);
  align-items: center;
}

.me-planners-box__label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ignition);
  margin-bottom: var(--sp-2);
}

.me-planners-box__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}

.me-planners-box__body {
  font-size: 0.86rem;
  color: var(--silver);
  line-height: 1.65;
}

@media (max-width: 700px) {
  .me-planners-box {
    grid-template-columns: 1fr;
    padding: var(--sp-6);
    gap: var(--sp-5);
  }
}
