/* ============================================
   Wedding Vision Planner — Interactive Experience
   Matches Isabella Weddings design system
   ============================================ */

/* ── Floating sticky CTA ── */
.vp-float {
  position: fixed;
  bottom: 1.75rem;
  left: 50%;
  z-index: 900;
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.7s var(--ease-out-expo),
    opacity 0.5s ease;
}

.vp-float.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.vp-float.is-hidden-by-planner {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.vp-float-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.35rem 0.85rem 0.95rem;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 100px;
  box-shadow:
    0 12px 40px rgba(44, 44, 44, 0.28),
    0 0 0 1px rgba(201, 169, 98, 0.25);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: transform 0.4s var(--ease-out-expo), background 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.vp-float-btn:hover {
  background: var(--sage-deep);
  transform: translateY(-2px);
  box-shadow:
    0 16px 48px rgba(44, 44, 44, 0.32),
    0 0 0 1px rgba(201, 169, 98, 0.4);
}

.vp-float-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  flex-shrink: 0;
}

.vp-float-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: vp-pulse-ring 2s ease-out infinite;
}

@keyframes vp-pulse-ring {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}

.vp-float-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--charcoal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}

.vp-float-close:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* Mobile: same bottom edge as chat bubble, then 5px lower (left side) */
@media (max-width: 768px) {
  .vp-float {
    bottom: max(15px, calc(env(safe-area-inset-bottom) - 0px));
    left: 1rem;
    right: auto;
    transform: translateX(0) translateY(120%);
    width: auto;
    max-width: calc(100vw - 5.5rem); /* leave room for chat bubble */
  }
  .vp-float.is-visible {
    transform: translateX(0) translateY(0);
  }
  .vp-float.is-hidden-by-planner,
  .vp-float.is-hidden-by-chat {
    transform: translateX(0) translateY(120%);
    opacity: 0;
    pointer-events: none;
  }
  .vp-float-btn {
    width: auto;
    justify-content: center;
    font-size: 0.72rem;
    padding: 0.9rem 1rem;
  }
}

/* Hide float while chat bubble is expanded (any viewport) */
.vp-float.is-hidden-by-chat {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden;
}

/* ── Section shell ── */
.vision-planner {
  position: relative;
  padding: var(--section-padding) 0;
  background: var(--cream);
  overflow: hidden;
}

.vision-planner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(232, 196, 196, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(201, 169, 98, 0.12), transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 0%, rgba(139, 154, 125, 0.08), transparent 60%);
  pointer-events: none;
}

.vp-container {
  position: relative;
  width: var(--container);
  margin-inline: auto;
}

.vp-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.vp-header .section-eyebrow {
  color: var(--sage-deep);
}

.vp-header .section-title {
  margin-bottom: 0.75rem;
}

.vp-header-sub {
  font-size: 1.05rem;
  color: var(--charcoal-soft);
  font-weight: 300;
  line-height: 1.65;
}

/* ── Main stage card ── */
.vp-stage {
  position: relative;
  background: var(--white);
  border-radius: 28px;
  box-shadow:
    0 4px 24px rgba(44, 44, 44, 0.04),
    0 24px 80px rgba(44, 44, 44, 0.08),
    0 0 0 1px rgba(44, 44, 44, 0.04);
  overflow: hidden;
  min-height: 560px;
  /* Allow results to grow taller than the default stage */
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.vp-stage::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blush), var(--gold), var(--sage));
  opacity: 0.85;
  z-index: 2;
}

/* Ambient orbs inside stage */
.vp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

.vp-orb--1 {
  width: 280px;
  height: 280px;
  background: var(--blush);
  top: -80px;
  right: -60px;
  animation: vp-orb-drift 12s ease-in-out infinite alternate;
}

.vp-orb--2 {
  width: 220px;
  height: 220px;
  background: var(--gold-light);
  bottom: -60px;
  left: -40px;
  animation: vp-orb-drift 14s ease-in-out infinite alternate-reverse;
}

.vp-orb--3 {
  width: 160px;
  height: 160px;
  background: rgba(139, 154, 125, 0.35);
  top: 40%;
  left: 50%;
  animation: vp-orb-drift 10s ease-in-out infinite alternate;
}

@keyframes vp-orb-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.15); }
}

/* ── Screens ── */
.vp-screen {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 3.5rem);
  display: none;
  flex-direction: column;
  min-height: 560px;
  grid-area: 1 / 1;
  width: 100%;
}

.vp-screen.is-active {
  display: flex;
  animation: vp-screen-in 0.65s var(--ease-out-expo) both;
  z-index: 2;
}

.vp-screen.is-leaving {
  display: flex;
  animation: vp-screen-out 0.35s ease both;
  pointer-events: none;
  z-index: 3;
  position: absolute;
  inset: 0;
}

@keyframes vp-screen-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes vp-screen-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-16px);
  }
}

/* ── Intro screen ── */
.vp-intro {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}

.vp-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  background: var(--ivory);
  border: 1px solid rgba(201, 169, 98, 0.35);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

.vp-intro-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: vp-badge-glow 2s ease-in-out infinite;
}

@keyframes vp-badge-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(201, 169, 98, 0); }
}

.vp-intro-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  max-width: 18ch;
}

.vp-intro-title em {
  font-style: italic;
  color: var(--blush-deep);
}

.vp-intro-text {
  max-width: 42ch;
  color: var(--charcoal-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.vp-intro-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  margin-top: 0.25rem;
}

.vp-intro-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

.vp-intro-meta-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.vp-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.vp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 1.85rem;
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  transition:
    transform 0.4s var(--ease-out-expo),
    background 0.35s,
    color 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
  position: relative;
  overflow: hidden;
}

.vp-btn-primary {
  background: var(--charcoal);
  color: var(--cream);
  box-shadow: 0 8px 28px rgba(44, 44, 44, 0.18);
}

.vp-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out-expo);
}

.vp-btn-primary:hover {
  background: var(--sage-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(107, 122, 94, 0.3);
}

.vp-btn-primary:hover::before {
  transform: translateX(100%);
}

.vp-btn-primary span,
.vp-btn-primary svg {
  position: relative;
  z-index: 1;
}

.vp-btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid rgba(44, 44, 44, 0.15);
}

.vp-btn-ghost:hover {
  border-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.vp-btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}

.vp-btn-sm {
  padding: 0.75rem 1.35rem;
  font-size: 0.72rem;
}

/* Sparkle decoration */
.vp-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.vp-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: vp-sparkle 4s ease-in-out infinite;
}

@keyframes vp-sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 0.7; transform: scale(1); }
}

/* ── Wizard ── */
.vp-wizard {
  gap: 1.75rem;
}

.vp-progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.vp-progress-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.vp-step-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 500;
}

.vp-step-count {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}

.vp-step-count strong {
  color: var(--charcoal);
  font-weight: 500;
}

.vp-progress-bar {
  height: 3px;
  background: var(--ivory);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.vp-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blush-deep), var(--gold), var(--sage));
  border-radius: 100px;
  transition: width 0.7s var(--ease-out-expo);
  position: relative;
}

.vp-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6));
  animation: vp-shimmer 1.8s ease-in-out infinite;
}

@keyframes vp-shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.vp-progress-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.vp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid rgba(44, 44, 44, 0.1);
  transition: all 0.4s var(--ease-out-expo);
}

.vp-dot.is-done {
  background: var(--sage);
  border-color: var(--sage);
}

.vp-dot.is-current {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.25);
  transform: scale(1.15);
}

/* Step content */
.vp-step-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vp-question {
  text-align: center;
}

.vp-question h3 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

.vp-question h3 em {
  font-style: italic;
  color: var(--blush-deep);
}

.vp-question p {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}

/* Option grids */
.vp-options {
  display: grid;
  gap: 0.85rem;
}

.vp-options--vibe {
  grid-template-columns: repeat(3, 1fr);
}

.vp-options--scale,
.vp-options--setting,
.vp-options--season,
.vp-options--budget {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 720px) {
  .vp-options--vibe {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .vp-options--vibe,
  .vp-options--scale,
  .vp-options--setting,
  .vp-options--season,
  .vp-options--budget {
    grid-template-columns: 1fr;
  }
}

.vp-option {
  position: relative;
  text-align: left;
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
  background: var(--cream);
  border: 1.5px solid transparent;
  transition:
    border-color 0.35s,
    background 0.35s,
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.35s;
  overflow: hidden;
  cursor: none;
}

@media (max-width: 768px) {
  .vp-option { cursor: pointer; }
}

.vp-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 196, 196, 0.25), rgba(201, 169, 98, 0.12));
  opacity: 0;
  transition: opacity 0.35s;
}

.vp-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(44, 44, 44, 0.08);
  border-color: rgba(201, 169, 98, 0.35);
}

.vp-option.is-selected {
  border-color: var(--gold);
  background: var(--white);
  box-shadow:
    0 12px 36px rgba(201, 169, 98, 0.18),
    0 0 0 1px rgba(201, 169, 98, 0.2);
  transform: translateY(-2px);
}

.vp-option.is-selected::before {
  opacity: 1;
}

.vp-option-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.vp-option-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
  background: var(--white);
  color: var(--charcoal);
  transition: background 0.3s, color 0.3s, transform 0.4s var(--ease-out-expo);
}

.vp-option.is-selected .vp-option-icon {
  background: var(--charcoal);
  color: var(--gold-light);
  transform: scale(1.05);
}

.vp-option-icon svg {
  width: 22px;
  height: 22px;
}

.vp-option-swatch {
  width: 100%;
  height: 52px;
  border-radius: 12px;
  margin-bottom: 0.55rem;
  position: relative;
  overflow: hidden;
}

.vp-option-swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.15));
}

.vp-option-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
}

.vp-option-desc {
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  line-height: 1.45;
}

.vp-option-check {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(44, 44, 44, 0.15);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.35s var(--ease-out-expo);
  z-index: 2;
}

.vp-option.is-selected .vp-option-check {
  opacity: 1;
  transform: scale(1);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.vp-option-check svg {
  width: 12px;
  height: 12px;
}

/* Live preview strip while answering */
.vp-live {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  min-height: 32px;
}

.vp-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  background: var(--ivory);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--charcoal-soft);
  animation: vp-chip-in 0.45s var(--ease-out-expo) both;
}

@keyframes vp-chip-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.vp-chip strong {
  color: var(--charcoal);
  font-weight: 500;
}

/* Wizard footer nav */
.vp-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(44, 44, 44, 0.06);
  margin-top: auto;
}

.vp-nav-hint {
  font-size: 0.78rem;
  color: var(--charcoal-soft);
  opacity: 0;
  transition: opacity 0.3s;
}

.vp-nav-hint.is-visible {
  opacity: 1;
}

/* ── Building / loading screen ── */
.vp-building {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.75rem;
}

.vp-build-ring {
  width: 120px;
  height: 120px;
  position: relative;
}

.vp-build-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.vp-build-ring-bg {
  fill: none;
  stroke: var(--ivory);
  stroke-width: 3;
}

.vp-build-ring-fg {
  fill: none;
  stroke: url(#vp-ring-grad);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 0.15s linear;
}

.vp-build-monogram {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--charcoal);
  font-style: italic;
}

.vp-build-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 400;
}

.vp-build-status {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  min-height: 1.4em;
  transition: opacity 0.3s;
}

.vp-build-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 420px;
}

/* ── Results ── */
.vp-results {
  gap: 2rem;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.vp-results-hero {
  text-align: center;
  position: relative;
}

.vp-match-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(139, 154, 125, 0.15), rgba(201, 169, 98, 0.2));
  border: 1px solid rgba(201, 169, 98, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1rem;
  animation: vp-chip-in 0.6s var(--ease-out-expo) both;
}

.vp-match-score {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--blush-deep) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.vp-match-score span {
  font-size: 0.45em;
  vertical-align: super;
  margin-left: 2px;
}

.vp-results-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 400;
  margin: 0.5rem 0 0.35rem;
  line-height: 1.2;
}

.vp-results-title em {
  font-style: italic;
  color: var(--blush-deep);
}

.vp-results-sub {
  color: var(--charcoal-soft);
  max-width: 46ch;
  margin: 0 auto;
  margin-bottom: 1.75rem;
  padding-bottom: 0.5rem;
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Stack results blocks with the same gap as the card grid */
[data-vp-results-mount] {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

/* Results grid */
.vp-results-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .vp-results-grid {
    grid-template-columns: 1fr;
  }
}

.vp-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(44, 44, 44, 0.05);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  box-sizing: border-box;
}

/* Full-width frames below the grid — same inner padding as grid cards */
.vp-card--snapshot {
  padding: 1.5rem 1.5rem 1.5rem;
  padding-top: 1.65rem;
  margin-top: 0;
}

.vp-card--snapshot .vp-card-label {
  margin-top: 0;
  margin-bottom: 0.85rem;
}

.vp-card.is-revealed {
  animation: vp-card-reveal 0.7s var(--ease-out-expo) both;
}

@keyframes vp-card-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vp-card--destination {
  grid-row: span 2;
  background: var(--charcoal);
  color: var(--cream);
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.vp-card--destination .vp-card-label {
  color: var(--gold-light);
}

.vp-card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.45;
  pointer-events: none;
  top: -40px;
  right: -40px;
}

.vp-card-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.vp-card-label svg {
  width: 14px;
  height: 14px;
}

.vp-dest-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.vp-dest-region {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 1rem;
}

.vp-dest-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0.85;
  flex: 1;
}

.vp-dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.vp-dest-tags span {
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  border: 1px solid rgba(250, 247, 242, 0.2);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vp-alt-dest {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  font-size: 0.85rem;
  opacity: 0.7;
}

.vp-alt-dest strong {
  color: var(--gold-light);
  font-weight: 400;
  opacity: 1;
}

/* Service + price */
.vp-service-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.vp-service-desc {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.vp-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.vp-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1;
}

.vp-price-note {
  font-size: 0.78rem;
  color: var(--charcoal-soft);
}

.vp-service-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.vp-service-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--charcoal-soft);
}

.vp-service-includes li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

/* Testimonial card */
.vp-quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.vp-quote::before {
  content: '"';
  font-size: 2.5rem;
  line-height: 0;
  color: var(--blush-deep);
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.vp-quote-footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.vp-quote-footer cite {
  font-style: normal;
  font-weight: 500;
  font-size: 0.9rem;
}

.vp-quote-footer span {
  font-size: 0.8rem;
  color: var(--charcoal-soft);
}

/* Snapshot / summary chips */
.vp-snapshot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vp-snap-item {
  flex: 1 1 auto;
  min-width: 120px;
  padding: 0.85rem 1rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(44, 44, 44, 0.05);
}

.vp-snap-item span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 0.25rem;
}

.vp-snap-item strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}

/* Results CTA bar — match card padding (incl. top) */
.vp-results-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.65rem 1.5rem 1.5rem;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
  border-radius: 20px;
  border: 1px solid rgba(201, 169, 98, 0.25);
  box-sizing: border-box;
}

.vp-results-cta-copy h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.vp-results-cta-copy p {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
}

.vp-results-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Confetti canvas overlay */
.vp-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .vp-orb,
  .vp-sparkle,
  .vp-float-pulse::after,
  .vp-intro-badge-dot,
  .vp-progress-fill::after {
    animation: none !important;
  }
  .vp-screen.is-active,
  .vp-card.is-revealed,
  .vp-chip {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* Hero planner hint under CTAs */
.hero-planner-hint {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: rgba(250, 247, 242, 0.72);
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 36ch;
}

.hero-planner-hint a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.3s;
}

.hero-planner-hint a:hover {
  color: var(--white);
}

/* Nav highlight for Vision */
.nav-links a[href="#vision"] {
  color: var(--sage-deep);
}

/* Mobile stage */
@media (max-width: 600px) {
  .vp-stage {
    border-radius: 20px;
    min-height: auto;
  }
  .vp-screen {
    padding: 1.5rem 1.15rem 1.75rem;
    min-height: auto;
  }
  .vp-results-cta {
    flex-direction: column;
    text-align: center;
  }
  .vp-results-cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .vp-results-cta-actions .vp-btn {
    width: 100%;
  }
}
