/* ============================================
   MELBOURNE WELLNESS — SHARED STYLES
   Brand tokens: Dusty Rose #c36c63, Petal #ffeee7,
   White #fff, Charcoal #5d5552, Stone #9a8a86,
   Linen #e8d8d3, Rose Dark #3d1f1a (footer)
   Fonts: Cormorant Garamond (display), Jost (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --rose:       #c36c63;
  --rose-light: #d68f88;
  --rose-pale:  #e8b4ae;
  --petal:      #ffeee7;
  --white:      #ffffff;
  --charcoal:   #5d5552;
  --stone:      #9a8a86;
  --linen:      #e8d8d3;
  --footer-dark:#3a2e28;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVIGATION ── */
.mw-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
}
.mw-nav__accent {
  height: 4px;
  background: var(--rose);
  width: 100%;
}
.mw-nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 64px;
  border-bottom: 0.5px solid var(--linen);
}
.mw-nav__logo img {
  height: 44px;
  display: block;
  filter: invert(1);
}
.mw-nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.mw-nav__links a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}
.mw-nav__links a:hover { color: var(--rose); }
.mw-nav__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.mw-btn {
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 22px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  border: none;
}
.mw-btn--outline {
  border: 0.5px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}
.mw-btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
}
.mw-btn--fill {
  background: var(--rose);
  color: var(--white);
}
.mw-btn--fill:hover {
  background: #b05e56;
}
.mw-btn--outline-rose {
  border: 0.5px solid var(--rose);
  color: var(--rose);
  background: transparent;
}

/* ── EYEBROW ── */
.mw-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: 12px;
}
.mw-eyebrow--light {
  color: rgba(195,108,99,0.7);
}

/* ── SECTION HEADINGS ── */
.mw-heading {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
}
.mw-heading em { font-style: italic; color: var(--rose); }
.mw-heading--xl  { font-size: clamp(40px, 5vw, 64px); }
.mw-heading--lg  { font-size: clamp(32px, 4vw, 50px); }
.mw-heading--md  { font-size: clamp(26px, 3vw, 38px); }
.mw-heading--sm  { font-size: clamp(20px, 2.5vw, 28px); }

/* ── BODY TEXT ── */
.mw-body {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.85;
  font-weight: 300;
}

/* ── DIVIDER ── */
.mw-rule {
  height: 0.5px;
  background: var(--linen);
  border: none;
  display: block;
  width: 100%;
}
.mw-rule--rose {
  background: var(--rose);
  width: 40px;
  height: 0.5px;
  border: none;
  display: block;
}

/* ── FOOTER ── */
.mw-footer {
  background: var(--footer-dark);
  padding: 3.5rem 5% 0;
}
.mw-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.mw-footer__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.mw-footer__logo em { font-style: italic; color: var(--rose); }
.mw-footer__tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.75;
  font-weight: 300;
  max-width: 220px;
}
.mw-footer__col h5 {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}
.mw-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.mw-footer__col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.mw-footer__col ul li a:hover { color: var(--rose); }
.mw-footer__bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mw-footer__copy { font-size: 11px; color: rgba(255,255,255,0.2); font-weight: 300; }

/* ── TICKER ── */
.mw-ticker {
  background: var(--footer-dark);
  padding: 12px 0;
  overflow: hidden;
}
.mw-ticker__inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  gap: 0;
}
.mw-ticker__item {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0 1.5rem;
  flex-shrink: 0;
}
.mw-ticker__sep { color: var(--rose); opacity: 0.6; flex-shrink: 0; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── UTILITY ── */
.mw-container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* ── HAMBURGER (hidden on desktop) ── */
.mw-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.mw-nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.25s;
}
.mw-nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mw-nav__hamburger.open span:nth-child(2) { opacity: 0; }
.mw-nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ── */
.mw-nav__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 68px;
  background: var(--white);
  z-index: 150;
  flex-direction: column;
  padding: 2rem 6%;
  gap: 0;
  border-top: 0.5px solid var(--linen);
  overflow-y: auto;
}
.mw-nav__mobile-menu.open { display: flex; }
.mw-nav__mobile-menu li { list-style: none; border-bottom: 0.5px solid var(--linen); }
.mw-nav__mobile-menu li a {
  display: block;
  padding: 1rem 0;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
}
.mw-nav__mobile-menu .mw-nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}
.mw-nav__mobile-menu .mw-btn { text-align: center; padding: 14px; font-size: 11px; }

/* ============================================
   MOBILE RESPONSIVE — max-width: 768px
   ============================================ */
@media (max-width: 768px) {

  /* NAV */
  .mw-nav__links,
  .mw-nav__actions { display: none; }
  .mw-nav__hamburger { display: flex; }
  .mw-nav__bar { height: 56px; }

  /* HERO */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__left {
    padding: 3rem 6% 2.5rem;
    order: 1;
  }
  .hero__right {
    order: 2;
    height: 65vw;
    min-height: 260px;
    max-height: 420px;
  }
  .hero__body { max-width: 100%; }
  .hero__btns { flex-direction: column; }
  .hero__btns .mw-btn { text-align: center; }
  .hero__badge { bottom: 1.2rem; left: 1.2rem; }
  .hero__pill { top: 1rem; right: 1rem; }

  /* PILLARS */
  .pillars { grid-template-columns: 1fr; min-height: auto; }
  .pillar { min-height: 260px; }
  .pillar:first-child { border-right: none; border-bottom: 1.5px solid rgba(255,255,255,0.08); }

  /* ABOUT / WHO WE ARE */
  .about-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3.5rem 6%;
  }
  .stats { flex-wrap: wrap; gap: 1.5rem; }

  /* SERVICES */
  .services { padding: 3.5rem 6%; }
  .services__header { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .services__grid { grid-template-columns: 1fr; }
  .services__discovery { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* CONDITIONS */
  .conditions { padding: 3.5rem 6%; }
  .conditions__grid { grid-template-columns: 1fr 1fr; gap: 0.875rem; }

  /* PROCESS */
  .process { grid-template-columns: 1fr; }
  .process__img { height: 55vw; min-height: 220px; max-height: 360px; }
  .process__content { padding: 3rem 6%; }

  /* REVIEWS */
  .reviews { padding: 3.5rem 6%; }
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews > div:first-child { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* NEWSLETTER */
  .newsletter {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3.5rem 6%;
  }

  /* FOOTER */
  .mw-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .mw-footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  /* HEADINGS */
  .mw-heading--xl { font-size: clamp(34px, 9vw, 50px); }
  .mw-heading--lg { font-size: clamp(28px, 7vw, 40px); }
}

@media (max-width: 480px) {
  .conditions__grid { grid-template-columns: 1fr; }
  .mw-footer__grid { grid-template-columns: 1fr; }
  .hero__right { height: 75vw; }
}
