:root {
  --mkt-primary: #6b4ba1;
  --mkt-primary-dark: #533a80;
  --mkt-secondary: #f6c9d1;
  --mkt-accent: #d4af37;
  --mkt-ink: #241b35;
  --mkt-muted: #8a8296;
  --mkt-bg: #faf8fd;
}

.mkt-body {
  font-family: 'Lato', -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--mkt-ink);
  background: var(--mkt-bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.mkt-promo-bar {
  background: var(--mkt-ink);
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  letter-spacing: 0.01em;
}
.mkt-promo-bar .bi { color: var(--mkt-accent); margin: 0 0.35rem; }

.mkt-nav {
  background: linear-gradient(135deg, var(--mkt-primary-dark), var(--mkt-primary));
  padding: 0.9rem 0;
}
.mkt-nav .nav-link { color: rgba(255, 255, 255, 0.85); font-weight: 700; }
.mkt-nav .nav-link:hover { color: #fff; }
.mkt-brand { color: #fff !important; font-family: 'Playfair Display', serif; font-size: 1.35rem; }
.mkt-brand .bi { color: var(--mkt-accent); }
.mkt-brand-logo { height: 150px; width: auto; display: block; }
.mkt-cta-sm { font-weight: 700; color: var(--mkt-primary); }

.mkt-hero {
  background: linear-gradient(135deg, var(--mkt-primary-dark) 0%, var(--mkt-primary) 55%, #8d6cc0 100%);
  color: #fff;
  padding: 5.5rem 0 6rem;
  text-align: center;
}
.mkt-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
.mkt-hero p.lead { color: rgba(255, 255, 255, 0.9); max-width: 620px; margin: 0 auto 2rem; }
.mkt-trust-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 40px; padding: 0.45rem 1.1rem; font-size: 0.85rem;
  color: rgba(255,255,255,0.9); margin-bottom: 1.5rem;
}
.mkt-trust-badge .bi { color: var(--mkt-accent); }
.btn-mkt {
  background: var(--mkt-accent);
  color: var(--mkt-ink);
  font-weight: 700;
  padding: 0.8rem 2.2rem;
  border-radius: 40px;
  border: 0;
}
.btn-mkt:hover { background: #c19d2e; color: var(--mkt-ink); }

.mkt-section { padding: 4.5rem 0; }
.mkt-section-alt { background: #fff; }
.mkt-section h2 {
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 2.75rem;
}

.mkt-feature { text-align: center; padding: 1.5rem; }
.mkt-feature .bi {
  font-size: 2.2rem;
  color: var(--mkt-primary);
  background: var(--mkt-secondary);
  width: 72px;
  height: 72px;
  line-height: 72px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 1rem;
}
.mkt-feature h5 { font-weight: 700; }
.mkt-feature p { color: var(--mkt-muted); }

.mkt-testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.mkt-testimonial .bi-quote { font-size: 1.8rem; color: var(--mkt-accent); }
.mkt-testimonial-quote { font-style: italic; color: var(--mkt-muted); margin: .75rem 0 1.25rem; }
.mkt-testimonial-author { font-weight: 700; margin-bottom: 0; }
.mkt-testimonial-author span { display: block; font-weight: 400; font-size: .85rem; color: var(--mkt-muted); }

.mkt-step-num {
  width: 44px; height: 44px; line-height: 44px;
  border-radius: 50%;
  background: var(--mkt-primary);
  color: #fff;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.9rem;
}

/* "See it in action" mockups — illustrative CSS-drawn representations, not
   real screenshots or photos (no customer data exists to show yet). Photo
   tiles are abstract gradient blocks, deliberately not fake photos of
   people, so nothing here could be mistaken for a real guest's content. */
.mkt-mock-caption { color: var(--mkt-muted); }

.mkt-mock-browser {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(36, 27, 53, 0.12); border: 1px solid #eee6f5;
}
.mkt-mock-browser-bar {
  display: flex; align-items: center; gap: 0.4rem;
  background: #f3f0f8; padding: 0.6rem 0.9rem; border-bottom: 1px solid #eee6f5;
}
.mkt-mock-dot { width: 9px; height: 9px; border-radius: 50%; background: #ddd6ea; }
.mkt-mock-url {
  margin-left: 0.5rem; background: #fff; border-radius: 6px; padding: 0.15rem 0.7rem;
  font-size: 0.72rem; color: var(--mkt-muted); flex: 1;
}
.mkt-mock-gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 10px; background: #fff;
}
.mkt-mock-tile { aspect-ratio: 1; border-radius: 8px; }
.mkt-mock-tile:nth-child(9n+1) { background: linear-gradient(135deg, var(--mkt-primary), #8d6cc0); }
.mkt-mock-tile:nth-child(9n+2) { background: linear-gradient(135deg, var(--mkt-secondary), #f3d9de); }
.mkt-mock-tile:nth-child(9n+3) { background: linear-gradient(135deg, var(--mkt-accent), #e8cd7a); }
.mkt-mock-tile:nth-child(9n+4) { background: linear-gradient(135deg, #8d6cc0, var(--mkt-primary-dark)); }
.mkt-mock-tile:nth-child(9n+5) { background: linear-gradient(135deg, var(--mkt-accent), var(--mkt-primary)); }
.mkt-mock-tile:nth-child(9n+6) { background: linear-gradient(135deg, var(--mkt-secondary), var(--mkt-primary)); }
.mkt-mock-tile:nth-child(9n+7) { background: linear-gradient(135deg, var(--mkt-primary-dark), var(--mkt-accent)); }
.mkt-mock-tile:nth-child(9n+8) { background: linear-gradient(135deg, #f3d9de, var(--mkt-primary)); }
.mkt-mock-tile:nth-child(9n+9) { background: linear-gradient(135deg, var(--mkt-primary), var(--mkt-accent)); }

.mkt-mock-phone {
  width: 220px; margin: 0 auto; background: var(--mkt-ink); border-radius: 32px;
  padding: 10px; box-shadow: 0 10px 30px rgba(36, 27, 53, 0.18);
}
.mkt-mock-phone-notch {
  width: 60px; height: 6px; background: rgba(255,255,255,0.25); border-radius: 4px;
  margin: 0 auto 8px;
}
.mkt-mock-phone-screen {
  background: #fff; border-radius: 20px; overflow: hidden; min-height: 300px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.mkt-mock-invite {
  background: linear-gradient(160deg, var(--mkt-primary-dark), var(--mkt-primary) 60%, #8d6cc0);
  color: #fff; padding: 2.5rem 1.25rem; justify-content: center; gap: 0.6rem;
}
.mkt-mock-invite-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; }
.mkt-mock-invite-names { font-family: 'Playfair Display', serif; font-size: 1.35rem; }
.mkt-mock-invite-date { font-size: 0.8rem; opacity: 0.85; margin-bottom: 0.5rem; }
.mkt-mock-invite-btn {
  background: var(--mkt-accent); color: var(--mkt-ink); font-weight: 700; font-size: 0.78rem;
  padding: 0.5rem 1.4rem; border-radius: 30px;
}
.mkt-mock-seating { padding: 2.5rem 1.25rem; justify-content: center; gap: 0.7rem; }
.mkt-mock-seating-label { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--mkt-ink); }
.mkt-mock-seating-search {
  width: 100%; border: 1px solid #e5ddf0; border-radius: 20px; padding: 0.5rem 1rem;
  font-size: 0.8rem; color: var(--mkt-ink); text-align: left;
}
.mkt-mock-seating-result {
  background: var(--mkt-secondary); color: var(--mkt-primary-dark); font-weight: 700;
  border-radius: 10px; padding: 0.7rem 1.4rem; font-family: 'Playfair Display', serif; font-size: 1.1rem;
}

.mkt-price-card {
  background: #fff;
  border: 1px solid #eee6f5;
  border-radius: 18px;
  padding: 2rem 1.75rem;
  height: 100%;
  box-shadow: 0 3px 14px rgba(36, 27, 53, 0.06);
  text-align: center;
}
.mkt-price-card.featured { border: 2px solid var(--mkt-primary); position: relative; }
.mkt-price-card.booth-only { border: 2px dashed var(--mkt-accent); }
.mkt-price-card .featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--mkt-primary); color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 0.3rem 1rem; border-radius: 20px; white-space: nowrap;
}
.mkt-price-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--mkt-primary);
  line-height: 1.1;
}
.mkt-price-card .price-note { color: var(--mkt-muted); font-size: 0.8rem; }
.mkt-price-card ul { list-style: none; padding: 0; margin: 1.25rem 0; text-align: left; }
.mkt-price-card ul li { padding: 0.3rem 0; color: var(--mkt-muted); }
.mkt-price-card ul li .bi-check-circle-fill { color: var(--mkt-primary); margin-right: 0.5rem; }
.mkt-price-card ul li .bi-x-circle { color: #ccc; margin-right: 0.5rem; }
.mkt-price-card ul li.addon-row { border-top: 1px dashed #e5ddf0; margin-top: 0.4rem; padding-top: 0.6rem; }
.mkt-price-card ul li .bi-camera-fill { color: var(--mkt-accent); margin-right: 0.5rem; }

.mkt-pkg-picker { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.mkt-pkg-card {
  border: 2px solid #eee6f5; border-radius: 14px; padding: 1.1rem 1.25rem; cursor: pointer;
  transition: border-color .15s, background .15s; position: relative;
}
.mkt-pkg-card:hover { border-color: var(--mkt-primary); }
.mkt-pkg-card input[type="radio"] { position: absolute; top: 1rem; right: 1rem; }
.mkt-pkg-card.selected { border-color: var(--mkt-primary); background: #faf7ff; }
.mkt-pkg-card .pkg-name { font-weight: 700; }
.mkt-pkg-card .pkg-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--mkt-primary); margin: 0.25rem 0; }
.mkt-pkg-card .pkg-desc { font-size: 0.8rem; color: var(--mkt-muted); }

.mkt-addon-box {
  border: 1px dashed var(--mkt-accent); border-radius: 12px; padding: 1rem 1.25rem;
  background: #fffdf5; display: none;
}
.mkt-addon-box.visible { display: block; }
.mkt-addon-box .bi-camera-fill { color: var(--mkt-accent); font-size: 1.3rem; margin-right: 0.6rem; }

.mkt-total-box {
  background: var(--mkt-ink); color: #fff; border-radius: 14px; padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.mkt-total-box .total-amount { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--mkt-accent); }

.mkt-form-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px rgba(36, 27, 53, 0.08);
  padding: 2.25rem;
}

.mkt-footer {
  background: var(--mkt-ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 1.5rem 0;
  margin-top: auto;
  font-size: 0.9rem;
}
.mkt-footer .bi { color: var(--mkt-accent); }
