/* ----------------------------------------------------
   GLOBAL
----------------------------------------------------- */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  color: #222;
  background: #fff;
}

.index-page h1,
.index-page h2,
.index-page h3 {
  text-align: center;
}
html {
  overflow-x: hidden;
}

/* ----------------------------------------------------
   PAGE CONTAINER
----------------------------------------------------- */
.mm-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

/* ----------------------------------------------------
   SECTIONS
----------------------------------------------------- */
.mm-section {
  padding: 0.75rem 0;
}

.mm-section:nth-of-type(even) {
  background: #f7f7f7;
}

/* ----------------------------------------------------
   HERO WRAP — collapses on scroll, pushes content up
----------------------------------------------------- */
.mm-hero-wrap {
  max-height: 600px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mm-hero-wrap.scrolled {
  max-height: 120px;
}

/* ----------------------------------------------------
   HERO IMAGE
----------------------------------------------------- */
.mm-hero {
  height: 380px;
  overflow: hidden;
  transition: height 0.4s ease;
}

.mm-hero-wrap.scrolled .mm-hero {
  height: 120px;
}

.mm-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ----------------------------------------------------
   HERO TEXT — fades out before wrap clips it
----------------------------------------------------- */
.mm-hero-content {
  padding: 1.25rem 20px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.mm-hero-wrap.scrolled .mm-hero-content {
  opacity: 0;
}

/* ----------------------------------------------------
   CTA BUTTON
----------------------------------------------------- */
.mm-cta-btn {
  display: inline-block;
  background: #19627a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

#cta-book {
  display: flex;
  justify-content: center;
  margin: 0.75rem 0;
}

/* ----------------------------------------------------
   LISTS
----------------------------------------------------- */
.mm-list {
  list-style: none;
  padding: 0;
  text-align: center;
}

.mm-list li {
  margin: 6px 0;
}

/* ----------------------------------------------------
   EXPECT BLOCKS
----------------------------------------------------- */
.mm-expect {
  margin: 24px 0;
  text-align: center;
}

/* ----------------------------------------------------
   GOOGLE RATING
----------------------------------------------------- */
.mm-google-rating {
  text-align: center;
  margin: 0.25rem auto;
  display: inline-block;
}

.mm-google-rating-stars {
  font-size: 1.4rem;
  color: #ffb400;
}

.mm-google-rating-score {
  font-size: 1.2rem;
  margin-top: 4px;
}

.mm-google-rating-label {
  font-size: 0.9rem;
  color: #666;
  margin-top: 2px;
}

/* ----------------------------------------------------
   HEADER
----------------------------------------------------- */
#header {
  position: sticky;
  top: 0;
  z-index: 9999;
}

.mm-header {
  width: 100%;
  background: #19627a;
  border-bottom: 1px solid #124f63;
}

.mm-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mm-logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* ----------------------------------------------------
   NAV — DESKTOP
----------------------------------------------------- */
.mm-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 1rem;
}

.mm-nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mm-nav a:hover {
  color: #a8d8e8;
}

.mm-nav-book {
  padding: 0.5rem 1rem;
  background: #ffffff;
  color: #19627a !important;
  border-radius: 6px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.mm-nav-book:hover {
  background: #e6f4f8;
  color: #19627a !important;
}
.mm-blog-grid-section h2 {
  padding-top: 2rem;
  border-top: 3px solid #19627a;
  display: block;
  width: 100%;
}



/* ----------------------------------------------------
   HAMBURGER
----------------------------------------------------- */
.mm-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mm-nav-toggle span {
  width: 24px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  display: block;
}

/* ----------------------------------------------------
   NAV — MOBILE
----------------------------------------------------- */
@media (max-width: 680px) {
  .mm-nav-toggle {
    display: flex;
  }

  .mm-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #19627a;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 0;
    border-top: 1px solid #124f63;
  }

  .mm-nav.open {
    display: flex;
  }

  .mm-nav a {
    padding: 0.75rem 1.25rem;
    width: 100%;
    border-bottom: 1px solid #124f63;
  }

  .mm-nav-book {
    margin: 0.75rem 1.25rem;
    width: auto;
    text-align: center;
    border-bottom: none !important;
  }

  .mm-header-inner {
    position: relative;
  }
}
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}
@media (max-width: 680px) {
  .mm-nav {
    width: 100%;
  }

  .mm-nav a {
    box-sizing: border-box;
    width: 100%;
  }
}
.mm-hero-content p {
  padding: 0 1rem;
}

/* ----------------------------------------------------
   FOOTER
----------------------------------------------------- */
.mm-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 2rem 1rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.mm-footer-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.mm-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.mm-footer-nav a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mm-footer-nav a:hover {
  color: #fff;
}

.mm-footer p {
  margin: 0;
  color: #888;
}
/* ----------------------------------------------------
   BLOG ARTICLE
----------------------------------------------------- */
.mm-article {
  padding: 2.5rem 1rem 3rem;
  background: #fff;
}

.mm-article-inner {
  max-width: 680px;
  margin: 0 auto;
}

.mm-article-inner h1 {
  font-size: 2rem;
  color: #19627a;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.mm-article-inner h2 {
  font-size: 1.2rem;
  color: #19627a;
  margin-top: 2.25rem;
  margin-bottom: 0.5rem;
}

.mm-article-inner p {
  line-height: 1.8;
  color: #333;
  margin: 0.75rem 0;
}

.mm-article-inner ul {
  padding-left: 1.4rem;
  margin: 0.75rem 0 1rem;
}

.mm-article-inner li {
  line-height: 1.75;
  color: #333;
  margin: 0.35rem 0;
}

.mm-article-inner strong {
  color: #222;
}

.mm-article-inner a:not(.mm-cta-btn) {
  color: #19627a;
  text-decoration: underline;
}

.mm-article-intro {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.mm-rule {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 2.5rem 0;
}
/* ----------------------------------------------------
   EXPECT BLOCKS
----------------------------------------------------- */
.mm-expect {
  margin: 12px 0;
  text-align: center;
}

.mm-expect h3 {
  margin-bottom: 4px;
}

.mm-expect p {
  margin-top: 0;
}
/* ----------------------------------------------------
   SERVICES HERO
----------------------------------------------------- */
.mm-services-hero-wrap {
  max-height: 400px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mm-services-hero-wrap.scrolled {
  max-height: 80px;
}

.mm-services-hero {
  display: flex;
  justify-content: center;
  transition: height 0.4s ease;
}

.mm-services-hero img {
  width: 100%;
  max-width: 800px;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: height 0.4s ease;
}

.mm-services-hero-wrap.scrolled .mm-services-hero img {
  height: 80px;
}
/* ----------------------------------------------------
   TESTIMONIALS
----------------------------------------------------- */
.mm-testimonials {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mm-testimonial {
  margin: 0;
  padding: 0.75rem 1.25rem;
  border-left: 3px solid #19627a;
  background: #f7f7f7;
  border-radius: 0 6px 6px 0;
}

.mm-testimonial p {
  margin: 0;
  color: #444;
  font-style: italic;
  line-height: 1.7;
}
@media (max-width: 680px) {
  .mm-janey-hero {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mm-janey-hero-text {
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
    order: -1;
  }

  .mm-janey-hero-text h1 {
    font-size: 1.4rem;
  }

  .mm-janey-hero-img img {
    width: 100%;
    height: auto;
  }

  .mm-janey-profile {
    grid-template-columns: 1fr;
  }

  .mm-janey-profile-text {
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  .mm-janey-profile-img {
    display: flex;
    justify-content: center;
  }
}

