/* ============================================
   THIS MOM-ISH — GLOBAL STYLES v4
   Not for perfect moms. For the real one.
   ============================================ */

:root {
  --plum: #3D1A5C;
  --plum-deep: #2A0F42;
  --plum-mid: #5B2D8E;
  --plum-light: #EDE7F6;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --charcoal: #1A1A1A;
  --gray: #5A5A5A;
  --light-gray: #F0EDF5;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: all 0.22s ease;
  cursor: pointer;
  border: none;
}
.btn-gold { background: var(--gold); color: var(--plum-deep); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-plum { background: var(--plum); color: var(--white); }
.btn-plum:hover { background: var(--plum-mid); transform: translateY(-2px); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.6); color: var(--white); background: transparent; }
.btn-outline-white:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); }
.btn-outline-plum { border: 1.5px solid var(--plum); color: var(--plum); background: transparent; }
.btn-outline-plum:hover { background: var(--plum); color: var(--white); }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 98px;
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.35s ease;
}
nav.scrolled {
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(61,26,92,0.1);
  box-shadow: 0 2px 24px rgba(42,15,66,0.06);
}
.nav-logo img {
  height: 82px;
  width: auto;
  object-fit: contain;
}
.nav-logo .logo-dark { display: none; }
.nav-logo .logo-light { display: block; }
nav.scrolled .nav-logo .logo-dark { display: block; }
nav.scrolled .nav-logo .logo-light { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.88); }
nav.scrolled .nav-links a { color: var(--plum); }
.nav-links a:hover { color: var(--gold) !important; }
.nav-cta-link { background: var(--gold); color: var(--plum-deep) !important; padding: 10px 20px; border-radius: 1px; }
.nav-cta-link:hover { background: var(--gold-light) !important; }

/* dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-top: 2px solid var(--gold);
  box-shadow: 0 20px 60px rgba(42,15,66,0.15);
  min-width: 220px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  border-radius: 0 0 2px 2px;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 12px !important;
  color: var(--plum) !important;
  transition: background 0.15s !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav-dropdown-menu a:hover { background: var(--plum-light); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: background 0.2s; }
nav.scrolled .hamburger span { background: var(--plum); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--plum-deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  overflow-y: auto;
  padding: 100px 24px 60px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 24px; font-family: var(--font-display); color: var(--white); font-weight: 600; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu details.mobile-dropdown { width: 100%; text-align: center; }
.mobile-menu details.mobile-dropdown summary {
  font-size: 24px; font-family: var(--font-display); color: var(--white); font-weight: 600;
  cursor: pointer; list-style: none; user-select: none;
}
.mobile-menu details.mobile-dropdown summary::-webkit-details-marker { display: none; }
.mobile-menu details.mobile-dropdown summary::after { content: '▾'; font-size: 16px; color: var(--gold); margin-left: 8px; }
.mobile-menu details.mobile-dropdown[open] summary::after { content: '▴'; }
.mobile-menu details.mobile-dropdown[open] summary { color: var(--gold); }
.mobile-menu details.mobile-dropdown .mobile-sub-links { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.mobile-menu details.mobile-dropdown .mobile-sub-links a { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.75); }
.mobile-close { position: absolute; top: 28px; right: 28px; font-size: 32px; color: var(--white); cursor: pointer; background: none; border: none; }

/* ─── LAYOUT ─── */
.section { padding: 108px 56px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 820px; margin: 0 auto; }

/* ─── TYPOGRAPHY ─── */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 600;
  color: var(--plum-deep);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-desc { font-size: 17px; font-weight: 300; line-height: 1.8; color: var(--gray); max-width: 600px; }
.section-desc.light { color: rgba(255,255,255,0.7); }
.gold-line { width: 60px; height: 2px; background: var(--gold); margin: 28px 0; }
.gold-line.center { margin: 28px auto; }

/* ─── COMING SOON BADGE ─── */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 7px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 20px;
}
.coming-soon-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ─── CARD TAG ─── */
.card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.card-title { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--plum-deep); margin-bottom: 14px; line-height: 1.2; }
.card-text { font-size: 14px; line-height: 1.8; color: var(--gray); }

/* ─── FORMS ─── */
.form-row { display: flex; gap: 12px; flex-wrap: wrap; }
.form-input {
  flex: 1; min-width: 160px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1.5px solid rgba(61,26,92,0.18);
  border-radius: 1px;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--plum-mid); }
.form-input::placeholder { color: #aaa; }
.form-input.light { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); color: var(--white); }
.form-input.light::placeholder { color: rgba(255,255,255,0.45); }
.form-input.light:focus { border-color: var(--gold); }

/* ─── PAGE HERO ─── */
.page-hero {
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  background: var(--plum-deep);
  padding: 130px 56px 88px;
  position: relative;
  overflow: hidden;
}
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(150deg, rgba(42,15,66,0.95) 0%, rgba(91,45,142,0.55) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(48px, 6vw, 88px); font-weight: 600; color: var(--white); line-height: 1.04; margin-top: 16px; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── CALLOUT STRIP ─── */
.callout-strip { background: var(--charcoal); padding: 36px 56px; text-align: center; }
.callout-strip p { font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 30px); font-style: italic; font-weight: 300; color: rgba(255,255,255,0.88); }
.callout-strip span { color: var(--gold-light); font-weight: 600; font-style: normal; }

/* ─── FOOTER ─── */
footer { background: var(--plum-deep); padding: 88px 56px 44px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 64px; max-width: 1200px; margin: 0 auto 64px; }
.footer-brand-img { height: 52px; width: auto; margin-bottom: 22px; filter: brightness(0) invert(1); }
.footer-desc { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.footer-contact { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 700; transition: all 0.2s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col li a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col li a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p, .footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ─── MOBILE ─── */
@media (max-width: 960px) {
  nav { padding: 0 24px; height: 76px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 80px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .page-hero { padding: 110px 24px 64px; }
  .callout-strip { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
}
