:root {
  --purple-950: #1a0e2e;
  --purple-900: #2b1150;
  --purple-800: #3a1968;
  --purple-700: #4e2288;
  --purple-100: #efe6fb;
  --gold: #d4af37;
  --gold-light: #f0d888;
  --pink: #d46a9e;
  --cream: #faf5ec;
  --cream-2: #f3ead9;
  --ink: #2a1f3d;
  --ink-soft: #5c5270;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(43, 17, 80, 0.18);
  --radius: 18px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Poppins', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 10px;
}
.eyebrow.center { text-align: center; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--purple-900);
  margin: 0 0 16px;
  line-height: 1.15;
  font-weight: 700;
}
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h2.center { text-align: center; }
.section-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 0 44px;
  line-height: 1.6;
}
.section-lead.center { margin-left: auto; margin-right: auto; text-align: center; }

p { line-height: 1.7; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  text-align: center;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--purple-950);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(212, 175, 55, 0.45); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-small {
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: 100px;
  background: var(--purple-900);
  color: var(--white);
  border: none;
  cursor: pointer;
}
.btn-small:hover { background: var(--purple-800); }
.btn-full { width: 100%; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43,17,80,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { font-size: 1.6rem; color: var(--gold); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title { font-family: var(--serif); font-weight: 700; font-size: 1.3rem; color: var(--purple-900); }
.logo-sub { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }

.main-nav { display: flex; gap: 30px; margin-left: auto; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.main-nav a:hover { color: var(--purple-800); }

.nav-cta { margin-left: 26px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--purple-900); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: radial-gradient(circle at 20% 20%, var(--purple-700), var(--purple-950) 70%);
  color: var(--white);
  padding: 100px 0 90px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(212,175,55,0.25), transparent 45%),
              radial-gradient(circle at 10% 90%, rgba(212,106,158,0.2), transparent 40%);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; max-width: 780px; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 22px;
}
.hero h1 span { color: var(--gold-light); font-style: italic; }
.hero-lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 34px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}
.hero-badges {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.hero-badges li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
}

/* ===== ABOUT ===== */
.about { padding: 90px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}
.feature-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature-card p { font-size: 0.85rem; margin: 0; }

/* ===== DESIGNS ===== */
.designs { padding: 90px 0; background: var(--cream-2); }
.designs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.design-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}
.design-card:hover { transform: translateY(-6px); }
.design-card .card-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  cursor: pointer;
}
.card-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.card-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 6px;
}
.card-body h3 { font-size: 1.35rem; margin-bottom: 8px; cursor: pointer; }
.card-body p.card-desc {
  font-size: 0.88rem;
  margin-bottom: 14px;
  flex: 1;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.chip {
  background: var(--purple-100);
  color: var(--purple-800);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}
.card-actions { display: flex; gap: 10px; }
.card-actions .btn-small { flex: 1; background: transparent; color: var(--purple-900); border: 1.5px solid var(--purple-900); }
.card-actions .btn-small:hover { background: var(--purple-900); color: var(--white); }
.card-actions .btn-gold { flex: 1; padding: 10px 14px; font-size: 0.82rem; text-align: center; }

/* ===== BLESSING BANNER ===== */
.blessing-banner {
  background: linear-gradient(135deg, var(--purple-900), var(--purple-950));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.blessing-mark { font-size: 2rem; display: block; margin-bottom: 18px; }
.blessing-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  max-width: 780px;
  margin: 0 auto 18px;
  color: var(--gold-light);
  line-height: 1.5;
}
.blessing-sign { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ===== PRICING ===== */
.pricing { padding: 90px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured { border-color: var(--gold); }
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--purple-950);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.plan-icon { font-size: 2rem; margin-bottom: 10px; }
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.plan-sub { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 18px; }
.plan-mrp { text-decoration: line-through; color: #a89bb8; font-size: 0.95rem; }
.plan-price { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--purple-900); margin: 4px 0; }
.plan-save { color: var(--pink); font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; }
.plan-per { font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 22px; }
.pricing-note {
  text-align: center;
  margin-top: 34px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--purple-900);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 30px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--purple-950); color: rgba(255,255,255,0.75); padding: 50px 0 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-title { color: var(--gold-light); font-size: 1.2rem; }
.footer-brand .logo-mark { color: var(--gold-light); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 4px; }
.footer-contact p { margin: 6px 0; font-size: 0.9rem; }
.footer-contact a { color: var(--gold-light); }
.footer-contact em { color: rgba(255,255,255,0.4); font-size: 0.78rem; font-style: italic; }
.footer-bottom { text-align: center; padding: 20px 0; font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 14, 46, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--cream);
  border-radius: 22px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--purple-900);
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; }
.modal-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px 0 0 22px; }
.modal-content { padding: 40px 36px; }
.modal-content h3 { font-size: 1.7rem; }
.benefit-list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.benefit-list li {
  background: var(--purple-100);
  color: var(--purple-800);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}
.modal-content blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--purple-800);
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin: 0 0 24px;
}

.qr-modal-inner { max-width: 460px; text-align: center; padding: 44px 32px 36px; }
.qr-modal-inner h3 { font-size: 1.4rem; margin-bottom: 6px; }
.qr-amount { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--purple-900); margin: 0 0 20px; }
.qr-image { width: 220px; margin: 0 auto 20px; border-radius: 14px; box-shadow: var(--shadow); }
.qr-instructions { font-size: 0.85rem; margin-bottom: 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .designs-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .modal-grid { grid-template-columns: 1fr; }
  .modal-image img { border-radius: 22px 22px 0 0; max-height: 320px; }
}

@media (max-width: 720px) {
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow);
  }
  .designs-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; }
}
