/* ------ Monica Bey clone (static) ------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
  color: #2b2b2b;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5 { margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }

/* Layout helpers */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-md { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.gap-10 { gap: 40px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }
.py-10 { padding-top: 40px; padding-bottom: 40px; }
.py-14 { padding-top: 56px; padding-bottom: 56px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.py-20 { padding-top: 80px; padding-bottom: 80px; }
.px-6 { padding-left: 24px; padding-right: 24px; }
.text-gray { color: #4a4a4a; }
.text-muted { color: #6b7280; }
.text-magenta { color: #a0228f; }
.bg-soft { background: #fbf6fa; }
.bg-grey { background: #fbfbfb; }
.shadow { box-shadow: 0 6px 20px rgba(0,0,0,.06); }
.shadow-lg { box-shadow: 0 16px 40px rgba(0,0,0,.12); }

/* Typography */
.fancy-heading {
  font-family: 'Yeseva One', Georgia, serif;
  font-weight: 400;
  color: #8a1981;
  letter-spacing: .3px;
  line-height: 1.15;
}
.fancy-heading.white { color: #ffffff; }
.italic-serif { font-family: 'Playfair Display', Georgia, serif; font-style: italic; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff; border-bottom: 1px solid #f1f1f1;
}
.header-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  height: 100px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 80px; width: auto; }
.nav-desktop { display: flex; gap: 36px; align-items: center; }
.nav-link {
  position: relative; font-size: 17px; color: #2b2b2b; padding: 6px 2px;
  transition: color .2s ease; cursor: pointer; background: none; border: 0;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: #a0228f; }
.chev { width: 14px; height: 14px; transition: transform .2s ease; }
.has-dropdown { position: relative; }
.has-dropdown.open .chev { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  min-width: 260px; background: #fff; border: 1px solid #f1f1f1;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  padding: 8px 0; opacity: 0; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 60;
}
.has-dropdown.open .dropdown,
.has-dropdown:hover .dropdown {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block; padding: 12px 20px; color: #2b2b2b; font-size: 15px;
  transition: background .15s ease, color .15s ease;
}
.dropdown a:hover { background: #fbf4f8; color: #a0228f; }
.dropdown.right { left: auto; right: 0; transform: none; }
.has-dropdown.open .dropdown.right,
.has-dropdown:hover .dropdown.right { transform: translateY(0); }
.dropdown .group-label {
  padding: 8px 20px; font-size: 12px; text-transform: uppercase; color: #6b7280;
  letter-spacing: .08em; border-top: 1px solid #f1f1f1; margin-top: 4px;
}
.mobile-trigger { display: none; background: none; border: 0; padding: 8px; color: #2b2b2b; }
.mobile-menu { display: none; border-top: 1px solid #f1f1f1; background: #fff; }
.mobile-menu a, .mobile-menu .m-section-btn {
  display: block; width: 100%; text-align: left; padding: 16px 24px;
  border-bottom: 1px solid #f1f1f1; color: #2b2b2b; font-size: 16px;
  background: none; border-left: 0; border-right: 0; border-top: 0;
}
.mobile-menu .m-sub { background: #faf6f9; display: none; }
.mobile-menu .m-sub.open { display: block; }
.mobile-menu .m-sub a { padding-left: 40px; font-size: 15px; }
.m-section-btn { display: flex !important; justify-content: space-between !important; align-items: center; cursor: pointer; }
.m-section-btn .chev { width: 16px; height: 16px; }
.m-section-btn.open .chev { transform: rotate(180deg); }

/* Buttons */
.btn-magenta {
  background: #a0228f; color: #fff; padding: 14px 28px; font-weight: 600;
  letter-spacing: .4px; display: inline-block; text-align: center;
  transition: background .2s ease, transform .15s ease;
  border: 0;
}
.btn-magenta:hover { background: #8a1981; transform: translateY(-1px); }

/* Purple gradient banner */
.banner-purple {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2b0036 0%, #5a1370 40%, #8b1ea0 70%, #c9711a 100%);
}
.banner-purple::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4) 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.3) 1px, transparent 2px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.25) 1px, transparent 2px),
    radial-gradient(circle at 90% 20%, rgba(255,255,255,0.35) 1px, transparent 2px),
    radial-gradient(circle at 10% 70%, rgba(255,255,255,0.3) 1px, transparent 2px);
  background-size: 200px 200px, 250px 250px, 180px 180px, 220px 220px, 240px 240px;
}
.banner-purple > * { position: relative; z-index: 1; }

/* Divider */
.divider { border: 0; border-top: 1px solid #dadada; margin: 12px 0; }

/* Headline sizes */
.h1-xl { font-size: clamp(30px, 5vw, 52px); }
.h2-lg { font-size: clamp(26px, 3.5vw, 38px); }
.h2 { font-size: clamp(24px, 3vw, 34px); }
.h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 600; }
.h4 { font-size: 18px; font-weight: 600; }
.lead { font-size: 17px; color: #4a4a4a; line-height: 1.7; }
.body-text { font-size: 16px; color: #4a4a4a; line-height: 1.75; }
.body-text strong { color: #2b2b2b; }
.body-text a { color: #a0228f; text-decoration: underline; }
ul.disc { list-style: disc; padding-left: 24px; }
ul.disc li { margin: 6px 0; color: #4a4a4a; }

/* Grids */
.grid { display: grid; gap: 32px; }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid.cols-6 { grid-template-columns: repeat(6, minmax(0,1fr)); }
.col-span-2 { grid-column: span 2; }

/* Service card */
.svc-card {
  background: #fff; border: 1px solid #f1e6ee; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(138,25,129,0.12); }
.svc-card img { width: 100%; height: 210px; object-fit: cover; }
.svc-card .body { padding: 24px; }
.svc-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; color: #2b2b2b; }
.svc-card h4 { font-size: 15px; color: #a0228f; font-style: italic; margin-bottom: 4px; }
.svc-card h5 { font-size: 14px; color: #6b7280; margin-bottom: 12px; font-weight: 400; }
.svc-card p { font-size: 15px; line-height: 1.6; color: #4a4a4a; }

/* Feature row icons */
.feature-row .feature {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
}
.feature-icon { color: #b89968; }
.feature-label {
  font-family: 'Playfair Display', Georgia, serif; font-style: italic;
  font-size: 18px; color: #333;
}

/* Circular cards */
.circle-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.circle-card .ring {
  width: 180px; height: 180px; border-radius: 999px; overflow: hidden;
  border: 4px solid #f1e6ee; box-shadow: 0 6px 16px rgba(0,0,0,.08);
}
.circle-card .ring img { width: 100%; height: 100%; object-fit: cover; }
.circle-card h3 { margin-top: 16px; font-size: 20px; font-weight: 600; }
.circle-card p { margin-top: 6px; color: #4a4a4a; max-width: 300px; }

/* Video card */
.video-card { display: flex; flex-direction: column; align-items: center; }
.video-wrap {
  position: relative; width: 100%; padding-top: 56.25%;
  background: #000; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.video-wrap img, .video-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video-wrap .play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.25); transition: background .2s ease;
  border: 0; cursor: pointer;
}
.video-wrap .play-btn:hover { background: rgba(0,0,0,.4); }
.video-wrap .play-circle {
  width: 64px; height: 64px; border-radius: 999px; background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
}
.video-wrap .play-btn:hover .play-circle { transform: scale(1.08); }
.video-wrap .play-circle svg { color: #a0228f; transform: translateX(2px); }
.video-wrap.yt .play-circle {
  width: 80px; height: 56px; border-radius: 8px; background: #c4302b;
}
.video-wrap.yt .play-circle svg { color: #fff; }
.video-caption {
  margin-top: 16px; font-weight: 600; font-size: 16px;
  text-align: center; max-width: 480px;
}

/* Reviews cards */
.review-card {
  background: #fff; border: 1px solid #f1e6ee; padding: 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(138,25,129,0.12); }
.review-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; color: #2b2b2b; }
.review-card p.body { font-size: 14px; line-height: 1.65; color: #4a4a4a; margin-bottom: 10px; }
.review-card p.author { font-size: 14px; font-weight: 600; color: #a0228f; }

/* Footer */
footer { background: #fff; border-top: 1px solid #f1f1f1; }
.footer-inner { padding: 40px 24px; max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-social { display: flex; justify-content: center; gap: 24px; color: #a0228f; }
.footer-social a { transition: opacity .2s ease; }
.footer-social a:hover { opacity: .75; }
.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px;
  font-size: 14px; color: #4a4a4a;
}
.footer-links a:hover { color: #a0228f; }

/* Terms specific */
.terms-section h2 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.terms-section { margin-bottom: 32px; }
.terms-section p { font-size: 15px; line-height: 1.7; color: #4a4a4a; margin-bottom: 8px; }
.terms-bold { font-weight: 700; margin-top: 12px; margin-bottom: 12px; }

/* Responsive */
@media (max-width: 900px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-6 { grid-template-columns: 1fr; }
  .nav-desktop { display: none; }
  .mobile-trigger { display: inline-flex; }
  .mobile-menu.open { display: block; }
  .header-inner { height: 80px; }
  .logo img { height: 60px; }
}
@media (min-width: 901px) {
  .grid.md-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid.md-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

/* Hover for cards lift */
.svc-card, .review-card, .circle-card { transition: transform .25s ease, box-shadow .25s ease; }

/* Make sure heading on banner stays white */
.banner-purple .fancy-heading { color: #fff; }

/* Image embellishments */
.story-img { width: 100%; max-width: 560px; margin: 0 auto; box-shadow: 0 16px 40px rgba(0,0,0,.12); }

/* Misc tweaks */
.text-italic { font-style: italic; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-700 { max-width: 700px; }
.max-w-800 { max-width: 800px; }
.max-w-900 { max-width: 900px; }
