/* ============================================================
   MMD Coaching — Shared Stylesheet
   Fonts: Cormorant Garamond (headings) + Lato (body)
   Colors: Navy #211F60 | Teal #52A5AC | Gold #C9A84C | Cream #FAF9F6
   ============================================================ */

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

/* ── Variables ── */
:root {
  --navy:      #211F60;
  --navy-dark: #1a1847;
  --teal:      #52A5AC;
  --teal-light:rgba(82,165,172,0.12);
  --gold:      #C9A84C;
  --pink:      #E8197D;
  --pink-light: rgba(232,25,125,0.1);
  --cream:     #FAF9F6;
  --white:     #FFFFFF;
  --dark:      #2C2C2C;
  --mid:       #6B6B6B;
  --light:     #ECEAE6;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: 'Lato', sans-serif;
  line-height: 1.75;
  color: var(--dark);
  background: var(--cream);
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--navy); }
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--navy);
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 700; font-family: 'Lato', sans-serif; letter-spacing: 0.03em; }

/* ── Layout ── */
.container        { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container--narrow{ max-width:  760px; margin: 0 auto; padding: 0 2rem; }
section           { padding: 5rem 0; }

/* ── Nav ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--light);
  padding: 1rem 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
}
.nav-logo {
  display: flex; align-items: center;
  line-height: 1;
}
.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .nav-logo img { height: 38px; }
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dark);
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.cta {
  background: var(--teal); color: var(--white);
  padding: 0.5rem 1.2rem; border-radius: 4px;
}
.nav-links a.cta:hover { background: var(--navy); color: var(--white); }
.hamburger {
  display: none; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); margin: 5px 0; transition: 0.3s;
}

/* ── Buttons ── */
.btn {
  display: inline-block; padding: 0.85rem 2rem;
  border-radius: 4px; font-family: 'Lato', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  cursor: pointer; border: 2px solid transparent; transition: all 0.2s;
  text-align: center;
}
.btn--primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn--primary:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.btn--secondary { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn--secondary:hover { background: var(--teal); color: var(--white); }
.btn--gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn--gold:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--navy:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.btn--white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--white:hover { background: transparent; color: var(--white); }
.btn--pink { background: var(--pink); color: var(--white); border-color: var(--pink); }
.btn--pink:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.btn--lg { padding: 1.1rem 2.5rem; font-size: 0.95rem; }
.btn--block { display: block; width: 100%; }

/* ── Section labels & intros ── */
.section-label {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1.25rem; }
.section-title em { color: var(--teal); font-style: normal; }
.section-intro { font-size: 1.05rem; color: var(--mid); line-height: 1.85; }

/* ── Hero ── */
.hero {
  background: var(--navy);
  padding: 7rem 0 6rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -40%; right: -8%;
  width: 650px; height: 650px;
  border-radius: 50%;
  border: 1px solid rgba(82,165,172,0.18);
}
.hero::after {
  content: '';
  position: absolute; bottom: -30%; right: 10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(82,165,172,0.12);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 4rem; align-items: center;
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  position: relative; z-index: 1;
}
.hero-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-style: italic;
  color: var(--gold); letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 em { color: var(--teal); font-style: normal; }
.hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-photo {
  aspect-ratio: 3/4;
  border-radius: 8px;
  background: rgba(82,165,172,0.1);
  border: 1px solid rgba(82,165,172,0.25);
  overflow: hidden; display: flex;
  align-items: center; justify-content: center;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem; text-align: center; padding: 2rem;
}

/* ── Teal strip ── */
.teal-strip { background: var(--teal); padding: 2.5rem 0; }
.teal-strip .container-narrow-flex {
  max-width: 900px; margin: 0 auto; padding: 0 2rem;
  text-align: center;
}
.teal-strip blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-style: italic; color: var(--white);
  line-height: 1.6; font-weight: 300;
}

/* ── Cards grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.75rem; margin-top: 3rem;
}
.card {
  background: var(--white); border-radius: 8px;
  padding: 2rem; border: 1px solid var(--light);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(33,31,96,0.08); }
.card-icon {
  font-size: 1.8rem; margin-bottom: 1.25rem; display: block;
}
.card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.card p { color: var(--mid); font-size: 0.95rem; }

/* ── About ── */
.about-inner {
  display: grid; grid-template-columns: 400px 1fr;
  gap: 5rem; align-items: center;
}
.about-photo {
  aspect-ratio: 3/4;
  border-radius: 8px; overflow: hidden;
  background: var(--teal-light);
  border: 1px solid var(--light);
  display: flex; align-items: center; justify-content: center;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text .section-label { margin-bottom: 0.75rem; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--mid); margin-bottom: 1rem; }
.credentials {
  margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.5rem;
}
.credentials span {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9rem; color: var(--dark);
}
.credentials span::before {
  content: '✦'; color: var(--teal); font-size: 0.65rem; flex-shrink: 0;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px,1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.testimonial {
  background: var(--cream); border-radius: 8px;
  padding: 2.25rem 2rem 1.75rem;
  border-left: 3px solid var(--teal);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; color: var(--teal); opacity: 0.2;
  position: absolute; top: 0.25rem; left: 1.25rem;
  line-height: 1;
}
.testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic;
  line-height: 1.75; color: var(--dark);
  padding-top: 1.25rem; margin-bottom: 1.25rem;
}
.testimonial cite {
  display: block; font-style: normal;
  font-size: 0.82rem; font-weight: 700;
  color: var(--teal); letter-spacing: 0.06em; text-transform: uppercase;
}

/* ── Media strip (Podcast + Book) ── */
.media-strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.media-block { padding: 5rem 4rem; }
.media-block--dark { background: var(--navy); }
.media-block--light { background: var(--white); border-left: 1px solid var(--light); }
.media-block--dark h2 { color: var(--white); }
.media-block--dark p { color: rgba(255,255,255,0.78); margin-bottom: 2rem; }
.media-block--light h2 { color: var(--navy); }
.media-block--light p { color: var(--mid); margin-bottom: 2rem; }
.podcast-platforms {
  display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.25rem;
}
.podcast-platforms a {
  display: inline-block; padding: 0.45rem 1rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px; color: rgba(255,255,255,0.85);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 0.2s;
}
.podcast-platforms a:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

/* ── CTA banner ── */
.cta-banner { background: var(--navy); padding: 5.5rem 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner h2 em { color: var(--teal); font-style: normal; }
.cta-banner p {
  color: rgba(255,255,255,0.8); font-size: 1.1rem;
  max-width: 600px; margin: 0 auto 2.5rem;
}
.cta-banner .divider {
  width: 40px; height: 2px;
  background: var(--gold);
  margin: 1.25rem auto;
}

/* ── Footer ── */
.site-footer { background: #1a1827; color: rgba(255,255,255,0.65); padding: 4rem 0 2rem; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; max-width: 1100px; margin: 0 auto; padding: 0 2rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-brand span { color: var(--teal); }
.footer-tagline {
  font-style: italic; font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  display: inline-flex; width: 36px; height: 36px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
  align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0;
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--teal); color: var(--teal); }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.25rem;
  font-family: 'Lato', sans-serif;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  max-width: 1100px; margin: 2.5rem auto 0;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--teal); }

/* ── Pricing ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3.5rem; align-items: start;
}
.pricing-card {
  background: var(--white); border-radius: 12px;
  padding: 2.5rem 2rem; border: 2px solid var(--light);
  text-align: center; position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover { border-color: var(--teal); }
.pricing-card--featured {
  border-color: var(--teal); transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(33,31,96,0.12);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 1.1rem; border-radius: 20px; white-space: nowrap;
}
.pricing-plan-name {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 0.5rem;
}
.pricing-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 600;
  color: var(--navy); line-height: 1;
  margin: 0.75rem 0 0.25rem;
}
.pricing-amount sup { font-size: 1.4rem; vertical-align: super; }
.pricing-period { font-size: 0.88rem; color: var(--mid); margin-bottom: 0.3rem; }
.pricing-total { font-size: 0.82rem; color: var(--mid); margin-bottom: 1rem; }
.pricing-saving {
  display: inline-block;
  background: var(--teal-light); color: var(--teal);
  font-size: 0.78rem; font-weight: 700;
  padding: 0.25rem 0.85rem; border-radius: 20px;
  margin-bottom: 1.75rem;
}
.pricing-divider {
  width: 30px; height: 1px; background: var(--light);
  margin: 0 auto 1.75rem;
}
.pricing-note { font-size: 0.85rem; color: var(--mid); margin-top: 1.5rem; }

/* ── Programme feature list ── */
.feature-list { list-style: none; margin: 1.5rem 0; }
.feature-list li {
  padding: 0.6rem 0 0.6rem 1.75rem;
  position: relative; border-bottom: 1px solid var(--light);
  font-size: 0.95rem; color: var(--dark);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--teal); font-size: 0.65rem; top: 0.85rem;
}

/* ── 2-col layout ── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.col-photo {
  aspect-ratio: 4/5; border-radius: 8px;
  overflow: hidden; background: var(--teal-light);
  border: 1px solid var(--light);
  display: flex; align-items: center; justify-content: center;
}
.col-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── Step cards ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 2rem; margin-top: 3rem;
}
.step-card {
  text-align: center; padding: 2.5rem 2rem;
  background: var(--white); border-radius: 12px;
  border: 1px solid var(--light);
}
.step-number {
  display: inline-flex; width: 56px; height: 56px;
  border-radius: 50%; background: var(--teal);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600;
  align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.step-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.step-card p { color: var(--mid); font-size: 0.92rem; }

/* ── Thank you page ── */
.thankyou-hero {
  background: var(--navy); padding: 6rem 0;
  text-align: center;
}
.thankyou-hero h1 { color: var(--white); margin-bottom: 1rem; }
.thankyou-hero p {
  color: rgba(255,255,255,0.8); font-size: 1.15rem;
  max-width: 580px; margin: 0 auto;
}
.calendly-wrap {
  min-height: 700px; background: var(--white);
  border-radius: 8px; border: 1px solid var(--light);
  overflow: hidden;
}

/* ── Policy pages ── */
.policy-header { background: var(--navy); padding: 4rem 0; }
.policy-header h1 { color: var(--white); }
.policy-header p { color: rgba(255,255,255,0.65); margin-top: 0.5rem; }
.policy-body { padding: 4rem 0; background: var(--white); }
.policy-body h2 {
  font-size: 1.25rem; margin: 2.5rem 0 0.75rem;
  padding-top: 2rem; border-top: 1px solid var(--light);
}
.policy-body h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.policy-body p, .policy-body li { color: var(--mid); line-height: 1.85; }
.policy-body ul { margin: 0.75rem 0 1rem 1.5rem; }
.policy-body li { margin-bottom: 0.4rem; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-center .section-intro { margin: 0 auto; }
.gold-line {
  width: 40px; height: 2px; background: var(--gold);
  margin: 1.25rem 0;
}
.gold-line--center { margin: 1.25rem auto; }
.navy-bg { background: var(--navy); }
.white-bg { background: var(--white); }
.cream-bg { background: var(--cream); }
.mt-2 { margin-top: 2rem; }

/* ── Stripe placeholder notice (remove when links are live) ── */
.stripe-placeholder {
  background: #fff8e6; border: 1px dashed #c9a84c;
  border-radius: 6px; padding: 0.6rem 1rem;
  font-size: 0.8rem; color: #8a6a00;
  margin-top: 0.75rem; text-align: center;
}

/* ── Mobile ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card--featured { transform: none; }
  .media-strip { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col--reverse { direction: ltr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo { max-width: 360px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 0.75rem; z-index: 99;
  }
  section { padding: 3.5rem 0; }
  .media-block { padding: 3.5rem 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
}
