  :root {
    --sage: #8a9e85;
    --sage-light: #b8cdb3;
    --cream: #f5f0e8;
    --warm-white: #faf8f4;
    --charcoal: #2a2a28;
    --gold: #c9a96e;
    --gold-light: #e8d5b0;
    --muted: #8a8880;
    --card-bg: rgba(255,255,255,0.82);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  .zv-quote {
    font-family: 'Jost', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
  }

  .zv-quote::before {
    content: '';
    position: fixed; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 80% 50% at 10% 10%, rgba(138,158,133,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 90% 80%, rgba(201,169,110,0.07) 0%, transparent 60%),
      var(--warm-white);
    pointer-events: none;
  }

  /* Progress Strip */
  .zv-progress {
    position: fixed; top: 0; left: 0; right: 0; z-index: 99;
    height: 3px;
    background: var(--gold-light);
  }
  .zv-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--sage), var(--gold));
    transition: width 0.6s cubic-bezier(.4,0,.2,1);
  }

  /* Steps */
  .zv-step {
    display: none;
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 100px;
    position: relative; z-index: 1;
    animation: zvFadeUp 0.55s ease forwards;
  }
  .zv-step.active { display: flex; flex-direction: column; }

  @keyframes zvFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Step Header */
  .zv-step-header {
    text-align: center;
    padding: 52px 24px 40px;
  }
  .zv-step-label {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 14px;
  }
  .zv-step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 10px;
  }
  .zv-step-title em { font-style: italic; color: var(--sage); }
  .zv-step-subtitle {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 300;
    letter-spacing: 0.04em;
  }

  /* ─── STEP 1: Event Type ─── */
  .zv-event-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0 52px 40px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
  }
  .zv-event-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 3/4;
    transition: transform 0.4s ease;
  }
  .zv-event-card:hover { transform: scale(1.02); z-index: 2; }
  .zv-event-card:first-child { border-radius: 18px 0 0 18px; }
  .zv-event-card:last-child  { border-radius: 0 18px 18px 0; }
  .zv-event-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(42,42,40,0.08) 0%, rgba(42,42,40,0.62) 100%);
    transition: background 0.4s ease;
  }
  .zv-event-card:hover .zv-event-overlay,
  .zv-event-card.selected .zv-event-overlay {
    background: linear-gradient(160deg, rgba(138,158,133,0.25) 0%, rgba(42,42,40,0.75) 100%);
  }
  .zv-event-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px 28px;
  }
  .zv-event-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem; font-weight: 400; color: #fff;
    letter-spacing: 0.04em; margin-bottom: 6px;
  }
  .zv-event-sub {
    font-size: 0.7rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: rgba(255,255,255,0.65); font-weight: 300;
  }
  .zv-event-check {
    position: absolute; top: 20px; right: 20px;
    width: 32px; height: 32px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
  }
  .zv-event-card.selected .zv-event-check {
    background: var(--gold); border-color: var(--gold);
  }
  .zv-event-check svg { opacity: 0; transition: opacity 0.2s; }
  .zv-event-card.selected .zv-event-check svg { opacity: 1; }
  .bg-wedding  { background: linear-gradient(145deg, #3a2820 0%, #6b3d2e 40%, #9a7060 100%); }
  .bg-function { background: linear-gradient(145deg, #1a2a3a 0%, #2d4a3e 50%, #4a6b5a 100%); }
  .bg-corporate{ background: linear-gradient(145deg, #2c4a2e 0%, #3d6b42 50%, #6b9b70 100%); }
  .bg-photo    { background: linear-gradient(145deg, #5a6a8a 0%, #8a78b0 50%, #b0a8d0 100%); }

  /* ─── STEP 2: Package ─── */
  .zv-package-scroll {
    display: flex; gap: 24px;
    padding: 0 52px 40px;
    max-width: 1300px; margin: 0 auto; width: 100%;
    overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  }
  .zv-package-scroll::-webkit-scrollbar { display: none; }
  .zv-pkg-card {
    flex: 0 0 340px; scroll-snap-align: start;
    background: var(--card-bg);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 18px; overflow: hidden; cursor: pointer;
    transition: all 0.35s ease; backdrop-filter: blur(8px);
    box-shadow: 0 4px 30px rgba(42,42,40,0.06);
  }
  .zv-pkg-card:hover { border-color: var(--gold); box-shadow: 0 8px 50px rgba(201,169,110,0.2); transform: translateY(-4px); }
  .zv-pkg-card.selected { border-color: var(--gold); box-shadow: 0 8px 50px rgba(201,169,110,0.3); }
  .zv-pkg-img {
    width: 100%; height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
    color: rgba(255,255,255,0.6); font-style: italic; position: relative;
  }
  .zv-pkg-badge {
    position: absolute; top: 14px; right: 14px;
    background: var(--gold); color: #fff;
    font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 500; padding: 4px 10px; border-radius: 20px;
  }
  .zv-pkg-body { padding: 24px 26px 20px; }
  .zv-pkg-name { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 400; color: var(--charcoal); margin-bottom: 3px; }
  .zv-pkg-guests { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage); font-weight: 400; margin-bottom: 14px; }
  .zv-pkg-features { list-style: none; margin-bottom: 18px; }
  .zv-pkg-features li { font-size: 0.8rem; color: var(--muted); padding: 5px 0; display: flex; align-items: center; gap: 9px; border-bottom: 1px solid rgba(42,42,40,0.06); font-weight: 300; }
  .zv-pkg-features li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
  .zv-pkg-price-row { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 16px; }
  .zv-pkg-from { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }
  .zv-pkg-price { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 400; color: var(--charcoal); line-height: 1; }
  .zv-pkg-price span { font-size: 0.85rem; font-family: 'Jost', sans-serif; font-weight: 300; }
  .zv-pkg-select-btn { width: 100%; margin-top: 16px; padding: 13px; background: transparent; border: 1.5px solid var(--gold-light); color: var(--charcoal); font-family: 'Jost', sans-serif; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 400; cursor: pointer; border-radius: 8px; transition: all 0.3s ease; }
  .zv-pkg-select-btn:hover, .zv-pkg-card.selected .zv-pkg-select-btn { background: var(--gold); border-color: var(--gold); color: #fff; }

  /* ─── STEP 3: Date ─── */
  .zv-date-section {
    max-width: 700px; margin: 0 auto; padding: 0 24px 40px; width: 100%;
  }
  .zv-date-card {
    background: var(--card-bg); border: 1px solid rgba(201,169,110,0.2);
    border-radius: 20px; padding: 44px; backdrop-filter: blur(8px);
  }
  .zv-date-input {
    width: 100%; padding: 16px 20px; margin-top: 8px;
    background: transparent; border: 1.5px solid var(--gold-light);
    border-radius: 10px; font-family: 'Jost', sans-serif; font-size: 1rem;
    color: var(--charcoal); outline: none; transition: border-color 0.3s;
    font-weight: 300; cursor: pointer;
  }
  .zv-date-input:focus { border-color: var(--gold); }
  .zv-date-label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 300; }
  .zv-date-legend { display: flex; gap: 24px; margin-top: 24px; flex-wrap: wrap; }
  .zv-legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--muted); font-weight: 300; }
  .zv-legend-dot { width: 10px; height: 10px; border-radius: 50%; }
  .zv-rate-display {
    margin-top: 28px; padding: 20px 24px;
    background: rgba(201,169,110,0.08);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 12px;
  }
  .zv-rate-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 300; margin-bottom: 6px; }
  .zv-rate-value { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--charcoal); }

  /* ─── STEP 4: Guests ─── */
  .zv-guest-section { max-width: 580px; margin: 0 auto; padding: 0 24px 40px; width: 100%; }
  .zv-guest-card { background: var(--card-bg); border: 1px solid rgba(201,169,110,0.2); border-radius: 20px; padding: 48px; backdrop-filter: blur(8px); text-align: center; }
  .zv-guest-display { font-family: 'Cormorant Garamond', serif; font-size: 7rem; font-weight: 300; color: var(--charcoal); line-height: 1; margin: 28px 0 12px; letter-spacing: -0.02em; }
  .zv-guest-label { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 300; margin-bottom: 36px; }
  .zv-guest-controls { display: flex; align-items: center; justify-content: center; gap: 24px; }
  .zv-guest-btn { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--gold-light); background: transparent; cursor: pointer; font-size: 1.3rem; color: var(--charcoal); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
  .zv-guest-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
  .zv-slider { -webkit-appearance: none; width: 100%; height: 2px; background: var(--gold-light); outline: none; border-radius: 2px; margin-top: 32px; }
  .zv-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--gold); cursor: pointer; box-shadow: 0 0 0 4px rgba(201,169,110,0.2); }
  .zv-slider-range { display: flex; justify-content: space-between; margin-top: 8px; font-size: 0.7rem; color: var(--muted); font-weight: 300; letter-spacing: 0.08em; }

  /* ─── STEP 5: Food ─── */
  .zv-food-section { max-width: 1200px; margin: 0 auto; padding: 0 52px 40px; width: 100%; }
  .zv-food-group { margin-bottom: 40px; }
  .zv-food-group-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--charcoal); margin-bottom: 6px; padding-bottom: 12px; border-bottom: 1px solid rgba(201,169,110,0.2); letter-spacing: 0.02em; }
  .zv-food-group-sub { font-size: 0.75rem; color: var(--muted); font-weight: 300; margin-bottom: 18px; margin-top: 4px; }
  .zv-food-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
  .zv-food-item {
    background: var(--card-bg); border: 1px solid rgba(42,42,40,0.08);
    border-radius: 14px; padding: 20px 22px; cursor: pointer;
    transition: all 0.3s ease; backdrop-filter: blur(8px); position: relative;
  }
  .zv-food-item:hover { border-color: var(--gold-light); box-shadow: 0 4px 24px rgba(201,169,110,0.15); }
  .zv-food-item.selected { border-color: var(--gold); background: rgba(201,169,110,0.06); }
  .zv-food-item.optional { border-style: dashed; }
  .zv-food-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: var(--charcoal); margin-bottom: 4px; }
  .zv-food-desc { font-size: 0.75rem; color: var(--muted); font-weight: 300; margin-bottom: 10px; line-height: 1.5; }
  .zv-food-price { font-size: 0.88rem; color: var(--charcoal); font-weight: 400; }
  .zv-food-check { position: absolute; top: 14px; right: 14px; width: 22px; height: 22px; border: 1.5px solid var(--gold-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
  .zv-food-item.selected .zv-food-check { background: var(--gold); border-color: var(--gold); }
  .zv-food-item.selected .zv-food-check svg { opacity: 1; }
  .zv-food-check svg { opacity: 0; transition: opacity 0.2s; }
  .zv-food-note { font-size: 0.72rem; color: var(--gold); font-weight: 300; font-style: italic; margin-top: 4px; }

  /* ─── STEP 6: Finer Details ─── */
  .zv-details-section { max-width: 1200px; margin: 0 auto; padding: 0 52px 40px; width: 100%; }
  .zv-details-tabs { display: flex; gap: 0; margin-bottom: 28px; border-bottom: 1px solid rgba(201,169,110,0.2); }
  .zv-details-tab { padding: 12px 28px; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.3s; font-family: 'Jost', sans-serif; background: none; border-top: none; border-left: none; border-right: none; }
  .zv-details-tab.active { color: var(--charcoal); border-bottom-color: var(--gold); }
  .zv-details-panel { display: none; }
  .zv-details-panel.active { display: block; }
  .zv-details-group { margin-bottom: 32px; }
  .zv-details-group-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--charcoal); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(42,42,40,0.06); }
  .zv-detail-item { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; margin-bottom: 8px; background: var(--card-bg); border: 1px solid rgba(42,42,40,0.06); border-radius: 12px; cursor: pointer; transition: all 0.3s; }
  .zv-detail-item:hover { border-color: var(--gold-light); }
  .zv-detail-item.selected { border-color: var(--gold); background: rgba(201,169,110,0.05); }
  .zv-detail-item.mandatory { cursor: default; opacity: 0.8; }
  .zv-detail-left { display: flex; align-items: center; gap: 14px; }
  .zv-detail-checkbox { width: 20px; height: 20px; border: 1.5px solid var(--gold-light); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
  .zv-detail-item.selected .zv-detail-checkbox,
  .zv-detail-item.mandatory .zv-detail-checkbox { background: var(--gold); border-color: var(--gold); }
  .zv-detail-checkbox svg { opacity: 0; transition: opacity 0.2s; }
  .zv-detail-item.selected .zv-detail-checkbox svg,
  .zv-detail-item.mandatory .zv-detail-checkbox svg { opacity: 1; }
  .zv-detail-info {}
  .zv-detail-name { font-size: 0.88rem; font-weight: 400; color: var(--charcoal); }
  .zv-detail-note { font-size: 0.72rem; color: var(--muted); font-weight: 300; margin-top: 2px; }
  .zv-detail-price { font-size: 0.88rem; color: var(--charcoal); font-weight: 400; white-space: nowrap; margin-left: 12px; }
  .zv-incl-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 8px; }
  .zv-incl-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: rgba(138,158,133,0.06); border: 1px solid rgba(138,158,133,0.15); border-radius: 8px; font-size: 0.8rem; color: var(--muted); font-weight: 300; }
  .zv-incl-item::before { content: '✓'; color: var(--sage); font-size: 0.75rem; flex-shrink: 0; }

  /* ─── STEP 7: Accommodation ─── */
  .zv-accom-section { max-width: 1200px; margin: 0 auto; padding: 0 52px 40px; width: 100%; }
  .zv-accom-note { font-size: 0.8rem; color: var(--muted); font-weight: 300; margin-bottom: 24px; padding: 16px 20px; background: rgba(201,169,110,0.06); border: 1px solid rgba(201,169,110,0.15); border-radius: 10px; line-height: 1.6; }
  .zv-accom-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin-bottom: 32px; }
  .zv-accom-item { padding: 18px 20px; background: var(--card-bg); border: 1px solid rgba(42,42,40,0.08); border-radius: 12px; cursor: pointer; transition: all 0.3s; }
  .zv-accom-item:hover { border-color: var(--gold-light); }
  .zv-accom-item.selected { border-color: var(--gold); background: rgba(201,169,110,0.06); }
  .zv-accom-name { font-size: 0.88rem; font-weight: 400; color: var(--charcoal); margin-bottom: 3px; }
  .zv-accom-detail { font-size: 0.72rem; color: var(--muted); font-weight: 300; margin-bottom: 8px; }
  .zv-accom-price { font-size: 0.88rem; color: var(--gold); font-weight: 400; }

  /* ─── STEP 8: Contact ─── */
  .zv-contact-section { max-width: 700px; margin: 0 auto; padding: 0 24px 40px; width: 100%; }
  .zv-contact-card { background: var(--card-bg); border: 1px solid rgba(201,169,110,0.2); border-radius: 20px; padding: 48px; backdrop-filter: blur(8px); }
  .zv-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .zv-form-row.full { grid-template-columns: 1fr; }
  .zv-form-group { display: flex; flex-direction: column; gap: 6px; }
  .zv-form-label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 300; }
  .zv-form-input { padding: 14px 16px; background: transparent; border: 1.5px solid rgba(42,42,40,0.12); border-radius: 10px; font-family: 'Jost', sans-serif; font-size: 0.9rem; color: var(--charcoal); outline: none; transition: border-color 0.3s; font-weight: 300; }
  .zv-form-input:focus { border-color: var(--gold); }

  /* ─── STEP 9: Summary ─── */
  .zv-summary-layout {
    display: grid; grid-template-columns: 1fr 360px; gap: 28px;
    padding: 0 52px 40px; max-width: 1300px; margin: 0 auto; width: 100%;
  }
  .zv-summary-card { background: var(--card-bg); border: 1px solid rgba(201,169,110,0.18); border-radius: 20px; padding: 40px; backdrop-filter: blur(8px); margin-bottom: 20px; }
  .zv-sum-section-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--charcoal); letter-spacing: 0.04em; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(42,42,40,0.08); display: flex; align-items: center; gap: 10px; }
  .zv-sum-section-title::before { content: ''; width: 3px; height: 16px; background: var(--gold); border-radius: 2px; }
  .zv-sum-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(42,42,40,0.05); font-size: 0.85rem; }
  .zv-sum-row:last-child { border-bottom: none; }
  .zv-sum-label { color: var(--muted); font-weight: 300; }
  .zv-sum-value { color: var(--charcoal); font-weight: 400; }
  .zv-total-box { background: linear-gradient(135deg, var(--charcoal) 0%, #3d3d3a 100%); border-radius: 20px; padding: 36px; color: #fff; position: sticky; top: 20px; }
  .zv-total-label { font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 6px; font-weight: 300; }
  .zv-total-event { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold-light); margin-bottom: 28px; font-style: italic; }
  .zv-total-line { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.8rem; color: rgba(255,255,255,0.65); font-weight: 300; }
  .zv-total-line .v { color: rgba(255,255,255,0.9); font-weight: 400; }
  .zv-total-grand { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(201,169,110,0.35); display: flex; justify-content: space-between; align-items: flex-end; }
  .zv-total-grand-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 300; }
  .zv-total-grand-amount { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300; color: #fff; line-height: 1; }
  .zv-total-grand-amount small { font-size: 1rem; font-family: 'Jost', sans-serif; font-weight: 200; color: var(--gold-light); }
  .zv-total-vat { font-size: 0.65rem; color: rgba(255,255,255,0.3); text-align: right; margin-top: 5px; font-weight: 300; }
  .zv-book-btn { width: 100%; margin-top: 24px; padding: 15px; background: var(--gold); border: none; color: #fff; font-family: 'Jost', sans-serif; font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 400; cursor: pointer; border-radius: 10px; transition: all 0.3s ease; }
  .zv-book-btn:hover { background: #b8924a; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(201,169,110,0.4); }
  .zv-sec-btn { width: 100%; margin-top: 10px; padding: 13px; background: transparent; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.65); font-family: 'Jost', sans-serif; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 300; cursor: pointer; border-radius: 10px; transition: all 0.3s ease; }
  .zv-sec-btn:hover { border-color: rgba(255,255,255,0.35); color: #fff; }

  /* Nav Bar */
  .zv-nav {
    position: fixed; bottom: 0; left: 0; right: 0;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 52px;
    background: rgba(250,248,244,0.92);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(201,169,110,0.15);
    z-index: 100;
  }
  .zv-dots { display: flex; gap: 7px; align-items: center; }
  .zv-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); transition: all 0.3s ease; }
  .zv-dot.active { width: 22px; border-radius: 3px; background: var(--gold); }
  .zv-dot.done { background: var(--sage-light); }
  .zv-nav-btn { padding: 12px 32px; border-radius: 10px; font-family: 'Jost', sans-serif; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 400; cursor: pointer; transition: all 0.3s ease; }
  .zv-prev { background: transparent; border: 1.5px solid rgba(42,42,40,0.15); color: var(--muted); }
  .zv-prev:hover { border-color: var(--charcoal); color: var(--charcoal); }
  .zv-next { background: var(--charcoal); border: none; color: #fff; }
  .zv-next:hover { background: #3d3d3a; }
  .zv-next:disabled { background: var(--gold-light); cursor: not-allowed; color: rgba(42,42,40,0.4); }

  .zv-toast { position: fixed; bottom: 88px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--charcoal); color: #fff; padding: 11px 22px; border-radius: 50px; font-size: 0.76rem; letter-spacing: 0.08em; font-weight: 300; opacity: 0; pointer-events: none; transition: all 0.3s ease; z-index: 200; white-space: nowrap; }
  .zv-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

  .zv-success { text-align: center; padding: 80px 40px; display: none; }
  .zv-success.active { display: flex; flex-direction: column; align-items: center; }
  .zv-success-icon { font-size: 4rem; margin-bottom: 24px; }
  .zv-success-title { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--charcoal); margin-bottom: 12px; }
  .zv-success-sub { font-size: 0.9rem; color: var(--muted); font-weight: 300; max-width: 480px; line-height: 1.7; }

  @media (max-width: 900px) {
    .zv-event-grid { grid-template-columns: repeat(2,1fr); padding: 0 20px 40px; }
    .zv-event-card:first-child { border-radius: 18px 18px 0 0; }
    .zv-event-card:nth-child(2) { border-radius: 0; }
    .zv-event-card:nth-child(3) { border-radius: 0; }
    .zv-event-card:last-child { border-radius: 0 0 18px 18px; }
    .zv-package-scroll { padding: 0 20px 40px; }
    .zv-food-section, .zv-details-section, .zv-accom-section { padding: 0 20px 40px; }
    .zv-summary-layout { grid-template-columns: 1fr; padding: 0 20px 40px; }
    .zv-nav { padding: 16px 20px; }
    .zv-form-row { grid-template-columns: 1fr; }
  }
