:root {
  --bg: #120817;
  --bg-soft: #1b0f24;
  --card: rgba(255,255,255,0.08);
  --card-strong: rgba(255,255,255,0.12);
  --text: #f7eefc;
  --muted: #dbcbe8;
  --gold: #e9c876;
  --gold-strong: #ffd98d;
  --purple: #b88cf8;
  --purple-strong: #8b5cf6;
  --border: rgba(255,255,255,0.16);
  --shadow: 0 18px 60px rgba(0,0,0,0.35);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(184,140,248,0.22), transparent 30%),
    linear-gradient(180deg, #14091c 0%, #0f0715 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(13, 8, 18, 0.68);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 20px;
}
.brand {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.brand span { color: var(--gold); }
nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
nav a { color: var(--muted); font-size: 0.96rem; }
nav a:hover { color: var(--gold-strong); }
.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  color: #1b1022;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 46px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(233,200,118,0.16), transparent 28%), radial-gradient(circle at 80% 20%, rgba(184,140,248,0.12), transparent 26%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  font-size: 0.76rem;
  margin-bottom: 14px;
}
.hero h1, .section-heading h2, .about-copy h2, .cta-banner h2, .love-copy h2, .faq h2, .contact h2 {
  margin: 0;
  font-family: 'Cinzel', serif;
  line-height: 1.14;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 4.5rem);
  max-width: 11ch;
}
.hero h1 span { color: var(--gold); }
.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 60ch;
  margin: 18px 0 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--purple-strong), var(--gold));
  color: #1b1022;
  box-shadow: 0 12px 30px rgba(139,92,246,0.28);
}
.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero-points li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
}
.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  padding: 16px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}
.hero-card img {
  border-radius: 24px;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  left: -14px;
  bottom: 26px;
  background: linear-gradient(135deg, rgba(22,12,28,0.95), rgba(51,24,71,0.95));
  border: 1px solid rgba(233,200,118,0.35);
  color: var(--text);
  padding: 14px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.trust-strip {
  padding: 0 0 26px;
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust-items div {
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px;
  border-radius: 18px;
  color: var(--muted);
}

section { padding: 72px 0; }
.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading.center { text-align: center; margin-inline: auto; margin-bottom: 38px; }
.section-heading p { color: var(--muted); margin-top: 14px; }
.section-heading h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}
.service-card h3 { margin-top: 0; margin-bottom: 12px; font-size: 1.2rem; color: var(--gold); }
.service-card p { margin: 0; color: var(--muted); }
.service-card.featured { outline: 1px solid rgba(233,200,118,0.45); }

.about-grid, .love-grid, .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-images {
  position: relative;
  min-height: 530px;
}
.img-main {
  width: 78%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  min-height: 500px;
  object-fit: cover;
}
.img-float {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 48%;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}
.about-copy h2, .cta-banner h2, .love-copy h2, .faq h2, .contact h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
.about-copy p { color: var(--muted); }
.about-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.about-list div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.about-list strong { display: block; color: var(--gold); margin-bottom: 5px; }
.about-list span { color: var(--muted); }

.cta-banner {
  padding-top: 0;
}
.cta-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(233,200,118,0.15));
  border: 1px solid rgba(233,200,118,0.18);
}
.cta-grid p { color: var(--muted); }

.love-image-wrap img {
  border-radius: 30px;
  min-height: 430px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
}
.testimonial-card p { color: var(--muted); margin-top: 0; }
.testimonial-card strong { color: var(--gold); }

.faq-items {
  display: grid;
  gap: 14px;
}
.faq-items details {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px 20px;
  border-radius: 20px;
}
.faq-items summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-items summary::-webkit-details-marker { display: none; }
.faq-items p { color: var(--muted); margin: 12px 0 0; }

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.1);
}
.contact-box p { color: var(--muted); }
.contact-box a[href*='wa.me'] { color: var(--gold-strong); }

.site-footer {
  padding: 28px 0 44px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
}
.footer-content a { color: var(--gold); }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #8af7a9);
  color: #062712;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.35);
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .love-grid,
  .faq-grid,
  .cards-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cards-grid article:last-child,
  .cards-grid article:nth-last-child(2) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  nav { display: none; }
  .hero { padding-top: 54px; }
  .hero-grid,
  .about-grid,
  .love-grid,
  .faq-grid,
  .cards-grid,
  .testimonial-grid,
  .trust-items {
    grid-template-columns: 1fr;
  }
  .hero h1 { max-width: none; }
  .hero-badge {
    position: static;
    margin-top: 14px;
  }
  .about-images { min-height: auto; }
  .img-main { width: 100%; min-height: 320px; }
  .img-float {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
  .cta-grid,
  .contact-box,
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .whatsapp-float { right: 14px; bottom: 14px; }
}
