/* =========================================================
   MONEY, JUST FOR HER — WEBSITE STYLESHEET
   Brand colours, typography, layout & components
   ========================================================= */

/* ----- 1. Brand tokens ---------------------------------- */
:root {
  /* Canonical MJFH palette */
  --berry:        #6D2E46;
  --berry-dark:   #4A1E2F;
  --plum:         #2E1F2A;
  --gold:         #C9953A;
  --gold-soft:    #C9A96E;
  --blush:        #F2D9D9;
  --blush-soft:   #FCE8EE;
  --cream:        #FAF6F1;
  --cream-warm:   #FDF8F5;
  --rose:         #C4607A;
  --sage:         #5A9E80;
  --ink:          #2E1F2A;
  --ink-soft:     #5A4A54;
  --line:         rgba(109, 46, 70, 0.18);

  /* Typography */
  --display: 'Cormorant Garamond', 'Georgia', serif;
  --body:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing & rhythm */
  --max:   1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* ----- 2. Reset & base ---------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--berry);
  text-decoration: none;
  transition: color .25s ease, border-color .25s ease;
}
a:hover { color: var(--gold); }

/* ----- 3. Typography ------------------------------------ */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--berry);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); margin-bottom: .75rem; }
h4 { font-size: 1.2rem; margin-bottom: .5rem; }

p { margin-bottom: 1rem; max-width: 65ch; }
p.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

.eyebrow {
  font-family: var(--body);
  font-size: .78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.accent-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
  border: 0;
}

/* ----- 4. Layout helpers -------------------------------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: clamp(4rem, 9vw, 7rem) 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }

@media (max-width: 820px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ----- 5. Navigation ------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 246, 241, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top, 0);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  gap: 1rem;
  min-height: 62px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__mark {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav__logo {
  height: 30px;
  width: auto;
  display: block;
}
@media (max-width: 560px) {
  .nav__mark { height: 40px; }
  .nav__logo { display: none; }
}
.nav__links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  align-items: center;
}
.nav__links a {
  font-size: .92rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: .5rem;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--berry);
  margin: 5px 0;
  transition: transform .3s ease, opacity .3s ease;
  border-radius: 2px;
  transform-origin: center;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--cream);
  }
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: var(--cream);
    padding: 6rem 2rem 3rem;
    gap: 1.75rem;
    transform: translateY(-105%);
    transition: transform .35s ease;
    z-index: 999;
    overflow-y: auto;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a {
    font-size: 1.4rem;
    font-family: var(--display);
    color: var(--berry);
  }
  .nav__links .btn {
    font-size: .9rem !important;
    padding: .95rem 2.25rem !important;
    margin-top: 1rem;
  }
}

/* ----- 6. Buttons --------------------------------------- */
.btn {
  display: inline-block;
  padding: .95rem 2rem;
  font-family: var(--body);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--berry);
  background: var(--berry);
  color: var(--cream);
  cursor: pointer;
  transition: all .3s ease;
}
.btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--berry);
}
.btn--ghost:hover {
  background: var(--berry);
  color: var(--cream);
  border-color: var(--berry);
}
.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cream);
}
.btn--gold:hover {
  background: var(--berry);
  border-color: var(--berry);
  color: var(--cream);
}

/* ----- 7. Hero ------------------------------------------ */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 7vw, 6rem);
  background:
    radial-gradient(ellipse at top right, rgba(201, 149, 58, 0.08), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(242, 217, 217, 0.35), transparent 55%),
    var(--cream);
  overflow: hidden;
}
.hero__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 { margin-bottom: 1.25rem; font-size: clamp(2.25rem, 5vw, 4rem); }
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero__services {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero__services li {
  padding: 1rem 0;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}
.hero__services li:last-child { border-bottom: 0; }
.hero__services strong {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--berry);
  font-weight: 500;
  min-width: 10rem;
  flex-shrink: 0;
}
.hero__services span {
  font-size: .92rem;
  color: var(--ink-soft);
}
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 30px 60px -30px rgba(46, 31, 42, 0.4);
}
.hero__visual::before {
  content: '';
  position: absolute;
  top: 1.5rem; left: 1.5rem; right: -1.5rem; bottom: -1.5rem;
  border: 2px solid var(--gold);
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
}
.hero__caption {
  margin-top: 1rem;
  font-size: .82rem;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
}

.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 420px; margin: 0 auto; }
  .hero__services li { flex-direction: column; gap: 0.2rem; }
  .hero__services strong { min-width: 0; }
}

/* ----- 8. Page header (for inner pages) ----------------- */
.page-header {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201, 149, 58, 0.1), transparent 50%),
    var(--cream-warm);
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}
.page-header h1 { margin-bottom: 1rem; }
.page-header p.lead { max-width: 38rem; }

/* ----- 9. Feature cards --------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 820px) { .cards { grid-template-columns: 1fr; } }

.card {
  background: var(--cream-warm);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  position: relative;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(46, 31, 42, 0.18);
  border-color: var(--gold);
}
.card h3 { color: var(--berry); }
.card__price {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--ink-soft);
  font-style: italic;
  margin: 1rem 0;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--berry);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}
.card__link:hover { color: var(--gold); }

/* ----- 10. Panels (alternating sections) ---------------- */
.panel-blush  { background: var(--blush-soft); }
.panel-cream  { background: var(--cream-warm); }
.panel-berry  {
  background: var(--berry);
  color: var(--cream);
}
.panel-berry h2, .panel-berry h3 { color: var(--cream); }
.panel-berry .eyebrow { color: var(--gold-soft); }
.panel-berry p { color: rgba(250, 246, 241, 0.88); }
.panel-berry .accent-line { background: var(--gold-soft); }

/* ----- 11. Feature list (checkmarks) -------------------- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: .85rem;
  line-height: 1.5;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .6em;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

/* ----- 12. Pull-quote ----------------------------------- */
.pullquote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: var(--berry);
  line-height: 1.3;
  padding: 2rem 0 2rem 2rem;
  border-left: 2px solid var(--gold);
  max-width: 45rem;
  margin: 2rem 0;
}
.pullquote footer {
  font-family: var(--body);
  font-style: normal;
  font-size: .9rem;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1rem;
}

/* ----- 13. Stats strip ---------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 820px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat__num {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  display: block;
  margin-bottom: .5rem;
}
.stat__label {
  font-size: .85rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ----- 14. Forms (booking / contact) -------------------- */
.form {
  display: grid;
  gap: 1.25rem;
  max-width: 38rem;
}
.form__row {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

.form label {
  display: block;
  font-size: .82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .45rem;
  font-weight: 500;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: .85rem 1rem;
  font-family: var(--body);
  font-size: 1rem;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: border-color .25s ease, background .25s ease;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 0;
  border-color: var(--gold);
  background: #fff;
}
.form textarea { resize: vertical; min-height: 120px; }
.form__note {
  font-size: .82rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ----- 15. Footer --------------------------------------- */
.footer {
  background: var(--plum);
  color: rgba(250, 246, 241, 0.82);
  padding: 4rem 0 2rem;
  font-size: .92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer h4 {
  color: var(--cream);
  font-family: var(--body);
  font-size: .8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: .6rem; }
.footer a {
  color: rgba(250, 246, 241, 0.75);
  font-size: .9rem;
}
.footer a:hover { color: var(--gold); }
.footer__brand {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: .75rem;
}
.footer__brand em { color: var(--gold); font-style: italic; }
.footer__logo {
  max-width: 240px;
  height: auto;
  margin-bottom: 1rem;
  display: block;
}
.footer__tagline { font-size: .92rem; max-width: 20rem; line-height: 1.55; }

.footer__legal {
  border-top: 1px solid rgba(250, 246, 241, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(250, 246, 241, 0.55);
}
.footer__disclaimer {
  max-width: 100%;
  background: rgba(250, 246, 241, 0.04);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  border-left: 2px solid var(--gold);
  font-size: .82rem;
  line-height: 1.6;
  color: rgba(250, 246, 241, 0.75);
}

/* ----- 16. Fade-in reveal (progressive enhancement) ----- */
/* Default: fully visible. JS adds .js-ready to <html>, which then
   hides .reveal elements until they scroll into view. If JS fails,
   content is still visible. */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s ease, transform .8s ease;
}
.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ----- 17. Utility -------------------------------------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.center-col { max-width: 48rem; margin: 0 auto; }

/* ----- 18. FAQ (native details/summary) ----------------- */
.faq {
  max-width: 52rem;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq details:first-of-type {
  border-top: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 2.5rem 1.5rem 0;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--berry);
  position: relative;
  line-height: 1.3;
  transition: color .25s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--gold);
  font-family: var(--body);
  font-weight: 300;
  transition: transform .3s ease;
}
.faq details[open] summary::after {
  content: '−';
}
.faq summary:hover { color: var(--gold); }
.faq details > div {
  padding: 0 2.5rem 1.75rem 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 1rem;
}

/* Reassurance strip above Calendly */
.reassurance {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 0 auto 2rem;
  max-width: 760px;
  flex-wrap: wrap;
  font-family: var(--body);
  font-size: .88rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.reassurance span {
  display: inline-flex;
  align-items: center;
}
.reassurance span strong {
  color: var(--berry);
  font-weight: 500;
  margin-right: .4rem;
}
.reassurance .sep {
  color: var(--gold);
  font-weight: 300;
}
@media (max-width: 640px) {
  .reassurance { flex-direction: column; gap: .75rem; }
  .reassurance .sep { display: none; }
}

/* Pricing note block */
.pricing-note {
  background: var(--cream-warm);
  border-left: 3px solid var(--gold);
  padding: 2rem 2.25rem;
  max-width: 48rem;
  margin: 0 auto;
}
.pricing-note h3 {
  font-size: 1.4rem;
  margin-bottom: .5rem;
}
.pricing-note p:last-child { margin-bottom: 0; }

/* Instagram block */
.insta-block {
  text-align: center;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin: 2rem auto;
}
.insta-grid a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--cream-warm);
}
.insta-grid a img,
.insta-grid a .placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, opacity .3s ease;
  display: block;
}
.insta-grid .placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-soft) 100%);
  color: var(--berry);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  padding: 1rem;
  text-align: center;
}
.insta-grid a:hover img,
.insta-grid a:hover .placeholder { transform: scale(1.04); opacity: .92; }
@media (max-width: 560px) {
  .insta-grid { gap: .5rem; }
}
