/* MarketHer — shared luxe refinements (load after page styles) */

:root {
  --mh-nav-logo: 58px;
  --mh-type-hero: clamp(52px, 7.4vw, 108px);
  --mh-type-section: clamp(38px, 5vw, 68px);
  --mh-type-display: clamp(44px, 5.5vw, 72px);
  --mh-type-body: 17px;
  --mh-type-label: 10px;
  --mh-weight-label: 600;
  --mh-weight-cta: 600;
}

body {
  font-size: var(--mh-type-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ——— Navigation (consistent across pages) ——— */
.nav {
  padding: 12px 0;
}

.nav-inner {
  position: relative;
}

.logo img {
  height: var(--mh-nav-logo);
}

.nav-links {
  gap: 24px;
}

.nav-links > li > a,
.nav-links a:not(.freebie-link):not(.nav-cta) {
  font-size: var(--mh-type-label);
  letter-spacing: 0.14em;
  font-weight: var(--mh-weight-label);
  color: #3a3a3a;
}

.dropdown-menu a {
  font-size: var(--mh-type-label);
  letter-spacing: 0.13em;
  font-weight: var(--mh-weight-label);
}

.nav-cta {
  padding: 10px 16px;
  font-size: var(--mh-type-label);
  letter-spacing: 0.13em;
  font-weight: var(--mh-weight-cta);
}

.freebie-link {
  font-weight: var(--mh-weight-cta) !important;
  padding: 9px 13px !important;
}

.mobile-toggle {
  display: none;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  border-radius: 999px;
  font-size: 18px;
  padding: 9px 13px;
  line-height: 1;
  cursor: pointer;
  z-index: 10001;
}

@media (max-width: 900px) {
  .nav-inner {
    flex-wrap: wrap;
  }

  .mobile-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    display: none !important;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    list-style: none;
    z-index: 99999;
    border-radius: 4px;
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
  }

  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 6px 0 0 12px !important;
    background: transparent !important;
  }

  .dropdown-menu a {
    padding: 8px 0;
  }
}

/* ——— Typography — softer scale, same motion ——— */
.kicker,
.section-label {
  font-size: var(--mh-type-label);
  letter-spacing: 0.15em;
  font-weight: var(--mh-weight-label);
}

.hero h1 {
  font-size: var(--mh-type-hero);
  font-weight: 300;
  letter-spacing: -0.055em;
}

.editorial-subline {
  font-size: 21px;
  padding: 9px 15px;
}

.hero-copy,
.section-intro,
.tara-copy p {
  font-size: var(--mh-type-body);
  line-height: 1.72;
}

.section-title,
.tara-copy h2 {
  font-size: var(--mh-type-section);
  font-weight: 300;
}

.step h3,
.service-row h3 {
  font-size: clamp(30px, 3.5vw, 36px);
  font-weight: 400;
}

.service-price {
  font-size: 28px;
}

.btn,
.nav-cta {
  font-weight: var(--mh-weight-cta);
  letter-spacing: 0.12em;
  padding: 13px 21px;
  font-size: 11px;
}

.quote-card p {
  font-size: clamp(30px, 4vw, 34px);
}

.testimonial p {
  font-size: 24px;
}

.final h2 {
  font-size: clamp(48px, 7vw, 96px);
}

.ticker span {
  font-size: 28px;
}

/* Service badges must not block row clicks */
.service-row.sold-out-row:after {
  pointer-events: none;
}

/* Page hero variants */
.page-hero h1,
.offer-hero h1,
.work-hero h1 {
  font-size: var(--mh-type-display);
  font-weight: 300;
  letter-spacing: -0.05em;
}
