/* ============================================================
   METOMPKIN INVESTMENTS — GLOBAL STYLESHEET
   Webflow Custom Code → Site Settings → Head Code
   Or link as external stylesheet via Webflow Embed
   ============================================================ */

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

/* ===== TOKENS ===== */
:root {
  --navy:        #0a1628;
  --navy-mid:    #0f2145;
  --navy-light:  #1a3560;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-pale:   #f5e9c8;
  --white:       #ffffff;
  --off-white:   #f8f6f0;
  --gray-100:    #f0ede6;
  --gray-300:    #c8c2b6;
  --gray-500:    #8a8276;
  --text-dark:   #0a1628;
  --text-mid:    #2e3f5c;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 4px 32px rgba(201,168,76,0.2);
  --shadow-card: 0 8px 48px rgba(10,22,40,0.12);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Barlow', sans-serif; color: var(--navy); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== WEBFLOW BODY RESET ===== */
.w-body, body { font-family: 'Barlow', sans-serif !important; }

/* ===== LAYOUT ===== */
.mi-container  { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.mi-container--wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* ===== TYPE ===== */
.mi-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); display: block;
}
.mi-rule {
  display: block; width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 16px 0;
}
.mi-rule--center { margin: 16px auto; }

.mi-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 700; line-height: 1.0; color: var(--white);
}
.mi-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; line-height: 1.1; color: var(--navy);
}
.mi-h2--white { color: var(--white); }
.mi-h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700; line-height: 1.2; color: var(--navy);
}
.mi-body { font-size: 16px; line-height: 1.75; color: var(--gray-500); }
.mi-body--white { color: rgba(255,255,255,0.62); }
.mi-body--sm { font-size: 14px; }

/* ===== BUTTONS ===== */
.mi-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 16px 36px; border: none; cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
  text-decoration: none;
}
.mi-btn--gold { background: var(--gold); color: var(--navy); }
.mi-btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); color: var(--navy); }
.mi-btn--navy { background: var(--navy); color: var(--white); }
.mi-btn--navy:hover { background: var(--navy-light); transform: translateY(-2px); color: var(--white); }
.mi-btn--outline-white { background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.35); }
.mi-btn--outline-white:hover { border-color: var(--gold); color: var(--gold); }
.mi-btn--outline-navy { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.mi-btn--outline-navy:hover { background: var(--navy); color: var(--white); }
.mi-btn--full { width: 100%; justify-content: center; }

/* ===== NAVIGATION ===== */
.mi-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all 0.3s var(--ease);
}
.mi-nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.3); }
.mi-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.mi-nav__logo { cursor: pointer; text-decoration: none; display: flex; align-items: center; gap: 12px; min-width: 178px; }
.mi-nav__logo-mark { width: 42px; height: 42px; object-fit: contain; flex-shrink: 0; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.24)); }
.mi-nav__logo-text { display: flex; flex-direction: column; gap: 1px; }
.mi-nav__logo-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: 0.03em; line-height: 1; }
.mi-nav__logo-sub { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.mi-nav__links { display: flex; align-items: center; gap: 36px; }
.mi-nav__link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); transition: color 0.3s ease;
  position: relative; text-decoration: none;
}
.mi-nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.mi-nav__link:hover, .mi-nav__link.active { color: var(--white); }
.mi-nav__link:hover::after, .mi-nav__link.active::after { transform: scaleX(1); }
.mi-nav__cta { padding: 10px 24px; font-size: 11px; }
.mi-nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.mi-nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s ease; }

/* Mobile nav overlay */
.mi-mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--navy); flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.mi-mobile-nav.open { display: flex; }
.mi-mobile-nav__close { position: absolute; top: 24px; right: 28px; font-size: 32px; color: var(--white); cursor: pointer; background: none; border: none; line-height: 1; }
.mi-mobile-nav .mi-nav__link { font-size: 20px; color: rgba(255,255,255,0.8); }

/* ===== HERO ===== */
.mi-hero {
  min-height: 100vh; background: var(--navy);
  position: relative; display: flex; align-items: center;
  overflow: hidden; padding-top: 78px;
}
.mi-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 85% at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(15,33,69,0.9) 0%, transparent 60%),
    linear-gradient(135deg, #0a1628 0%, #0f2145 55%, #0a1628 100%);
}
.mi-hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.mi-hero__accent { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(180deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent); opacity: 0.55; }
.mi-hero__content { position: relative; z-index: 1; max-width: 820px; padding: 80px 0; }
.mi-hero__eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.mi-hero__eyebrow-line { width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }
.mi-hero__headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(56px, 8vw, 100px); font-weight: 700; line-height: 0.95; color: var(--white); margin-bottom: 28px; }
.mi-hero__headline em { font-style: italic; color: var(--gold); }
.mi-hero__sub { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.6); max-width: 540px; line-height: 1.75; margin-bottom: 44px; }
.mi-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; }
.mi-hero__stats { display: flex; gap: 52px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; }
.mi-stat__value { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 700; color: var(--gold); line-height: 1; }
.mi-stat__label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-top: 4px; }

/* ===== TRUST BAR ===== */
.mi-trust { background: var(--off-white); border-bottom: 1px solid var(--gray-100); padding: 22px 0; }
.mi-trust__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.mi-trust__item { display: flex; align-items: center; gap: 9px; padding: 6px 24px; }
.mi-trust__icon { font-size: 15px; }
.mi-trust__text { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); white-space: nowrap; }
.mi-trust__div { width: 1px; height: 18px; background: var(--gray-300); }

/* ===== SECTION HEADERS ===== */
.mi-section-header { text-align: center; margin-bottom: 64px; }
.mi-section-header--left { text-align: left; }

/* ===== PILLARS ===== */
.mi-pillars { padding: 104px 0; background: var(--white); }
.mi-pillars__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--gray-100); border: 1px solid var(--gray-100); margin-top: 64px; }
.mi-pillar { background: var(--white); padding: 52px 40px; position: relative; overflow: hidden; transition: all 0.3s var(--ease); }
.mi-pillar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.mi-pillar:hover::before { transform: scaleX(1); }
.mi-pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); z-index: 1; }
.mi-pillar__num { font-family: 'Cormorant Garamond', serif; font-size: 76px; font-weight: 700; color: var(--gray-100); line-height: 1; margin-bottom: 16px; transition: color 0.3s ease; }
.mi-pillar:hover .mi-pillar__num { color: var(--gold-pale); }
.mi-pillar__icon { font-size: 30px; margin-bottom: 18px; }
.mi-pillar__title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.2; }
.mi-pillar__text { font-size: 15px; line-height: 1.72; color: var(--gray-500); }
.mi-pillar__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); transition: gap 0.3s ease; text-decoration: none; }
.mi-pillar__link:hover { gap: 14px; color: var(--gold-light); }

/* ===== PHILOSOPHY ===== */
.mi-philosophy { padding: 120px 0; background: var(--navy); position: relative; overflow: hidden; }
.mi-philosophy::before { content: '"'; position: absolute; top: -60px; left: 24px; font-family: 'Cormorant Garamond', serif; font-size: 450px; font-weight: 700; color: rgba(201,168,76,0.04); line-height: 1; pointer-events: none; }
.mi-philosophy__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; position: relative; }
.mi-philosophy__quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 3.5vw, 42px); font-style: italic; font-weight: 600; color: var(--white); line-height: 1.35; }
.mi-philosophy__quote strong { color: var(--gold); font-style: normal; }
.mi-philosophy__attribution { margin-top: 20px; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.mi-philosophy__body { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.6); }
.mi-philosophy__body p + p { margin-top: 16px; }
.mi-philosophy__body strong { color: var(--white); font-weight: 500; }

/* ===== BLOG CARDS ===== */
.mi-blog { padding: 100px 0; background: var(--off-white); }
.mi-blog__row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.mi-blog-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2px; background: var(--gray-100); }
.mi-blog-card { background: var(--white); overflow: hidden; transition: all 0.3s var(--ease); cursor: pointer; }
.mi-blog-card:hover { box-shadow: var(--shadow-card); z-index: 1; }
.mi-blog-card__img { height: 280px; background: linear-gradient(135deg, var(--navy-mid), var(--navy-light)); display: flex; align-items: flex-end; padding: 28px; position: relative; overflow: hidden; }
.mi-blog-card__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.75) 0%, transparent 55%); }
.mi-blog-card__img-letter { font-family: 'Cormorant Garamond', serif; font-size: 120px; font-weight: 700; color: rgba(201,168,76,0.1); position: absolute; right: 16px; bottom: -20px; line-height: 1; }
.mi-blog-card__body { padding: 32px; }
.mi-blog-card__tag { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.mi-blog-card__title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.mi-blog-card--featured .mi-blog-card__title { font-size: 30px; }
.mi-blog-card__excerpt { font-size: 14px; line-height: 1.72; color: var(--gray-500); margin-bottom: 16px; }
.mi-blog-card__meta { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 0.1em; color: var(--gray-300); text-transform: uppercase; }
.mi-blog-sidebar { display: flex; flex-direction: column; gap: 2px; }
.mi-blog-card--small .mi-blog-card__body { padding: 24px; }
.mi-blog-card--small .mi-blog-card__title { font-size: 17px; }

/* ===== EMAIL CTA ===== */
.mi-email-cta { padding: 104px 0; background: var(--navy); position: relative; overflow: hidden; }
.mi-email-cta__glow { position: absolute; right: -240px; top: -240px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%); pointer-events: none; }
.mi-email-cta__inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; }
.mi-email-cta__headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 58px); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.mi-email-cta__headline em { font-style: italic; color: var(--gold); }
.mi-email-cta__sub { font-size: 16px; color: rgba(255,255,255,0.55); margin-bottom: 40px; line-height: 1.75; }
.mi-email-form { display: flex; gap: 0; background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.32); padding: 6px; }
.mi-email-form input { flex: 1; background: none; border: none; outline: none; font-family: 'Barlow', sans-serif; font-size: 15px; color: var(--white); padding: 14px 20px; }
.mi-email-form input::placeholder { color: rgba(255,255,255,0.28); }
.mi-email-form .mi-btn { flex-shrink: 0; }
.mi-email-disclaimer { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.25); }

/* ===== TESTIMONIALS ===== */
.mi-testimonials { padding: 104px 0; background: var(--white); }
.mi-testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.mi-testimonial { padding: 36px; border: 1px solid var(--gray-100); position: relative; overflow: hidden; transition: all 0.3s var(--ease); }
.mi-testimonial::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--gold); transition: height 0.4s ease; }
.mi-testimonial:hover::before { height: 100%; }
.mi-testimonial:hover { border-color: var(--gold-pale); box-shadow: var(--shadow-card); }
.mi-testimonial__stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.mi-testimonial__quote { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; line-height: 1.55; color: var(--text-mid); margin-bottom: 20px; }
.mi-testimonial__author { display: flex; align-items: center; gap: 12px; }
.mi-testimonial__avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-mid), var(--navy-light)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.mi-testimonial__name { font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 2px; }
.mi-testimonial__role { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500); }

/* ===== RESOURCES GRID ===== */
.mi-resources { padding: 100px 0; background: var(--off-white); }
.mi-resource-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 52px; }
.mi-resource-card { background: var(--white); padding: 36px 28px; text-align: center; border: 1px solid transparent; transition: all 0.3s var(--ease); cursor: pointer; }
.mi-resource-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: var(--shadow-card); }
.mi-resource-card__icon { font-size: 38px; margin-bottom: 16px; }
.mi-resource-card__title { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.mi-resource-card__text { font-size: 13px; color: var(--gray-500); line-height: 1.65; }
.mi-resource-card__badge { display: inline-block; margin-top: 14px; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 5px 14px; }
.mi-badge--free { background: rgba(201,168,76,0.12); color: var(--gold); }
.mi-badge--premium { background: var(--navy); color: var(--white); }

/* ===== PRICING ===== */
.mi-pricing { padding: 104px 0; background: var(--navy); }
.mi-pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; align-items: start; }
.mi-plan { border: 1px solid rgba(201,168,76,0.2); padding: 44px 32px; position: relative; transition: all 0.3s var(--ease); }
.mi-plan:hover { transform: translateY(-5px); border-color: rgba(201,168,76,0.5); }
.mi-plan--featured { border-color: var(--gold); background: rgba(201,168,76,0.05); padding-top: 60px; }
.mi-plan__badge { position: absolute; top: 0; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; padding: 5px 18px; white-space: nowrap; }
.mi-plan__name { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.mi-plan__price { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 700; color: var(--white); line-height: 1; }
.mi-plan__price sup { font-size: 26px; vertical-align: super; }
.mi-plan__period { font-size: 13px; color: rgba(255,255,255,0.36); margin-bottom: 32px; }
.mi-plan__features { margin-bottom: 32px; }
.mi-plan__feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.68); padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.05); line-height: 1.4; }
.mi-plan__feature::before { content: '✓'; color: var(--gold); font-size: 13px; flex-shrink: 0; margin-top: 1px; }

/* ===== ABOUT ===== */
.mi-about-hero { padding: 160px 0 104px; background: var(--navy); }
.mi-about-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.mi-about-img { height: 520px; background: radial-gradient(circle at 50% 42%, rgba(201,168,76,0.12), transparent 58%), linear-gradient(135deg, var(--navy-mid), var(--navy-light)); border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.mi-about-img__logo { width: min(74%, 360px); height: auto; object-fit: contain; filter: drop-shadow(0 24px 38px rgba(0,0,0,0.28)); opacity: 0.95; }
.mi-about-img__badge { position: absolute; bottom: 28px; left: 28px; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); padding: 14px 20px; }
.mi-about-img__badge-text { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; color: var(--gold); }

.mi-values { padding: 104px 0; background: var(--white); }
.mi-values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: var(--gray-100); margin-top: 56px; }
.mi-value { background: var(--white); padding: 44px 40px; display: flex; gap: 24px; align-items: flex-start; transition: all 0.3s var(--ease); }
.mi-value:hover { box-shadow: var(--shadow-card); z-index: 1; }
.mi-value__num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 700; color: var(--gold-pale); line-height: 1; flex-shrink: 0; }
.mi-value__title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.mi-value__text { font-size: 14px; line-height: 1.72; color: var(--gray-500); }

.mi-mission { padding: 100px 0; background: var(--navy); text-align: center; }
.mi-mission__quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 4vw, 48px); font-style: italic; font-weight: 600; color: var(--white); line-height: 1.32; max-width: 820px; margin: 0 auto; }
.mi-mission__quote strong { color: var(--gold); font-style: normal; }

/* ===== BLOG PAGE ===== */
.mi-blog-hero { padding: 160px 0 80px; background: var(--navy); text-align: center; }
.mi-blog-hero__headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(44px, 6vw, 80px); font-weight: 700; color: var(--white); }
.mi-blog-hero__sub { font-size: 17px; color: rgba(255,255,255,0.45); margin-top: 16px; }
.mi-blog-filters { background: var(--white); border-bottom: 1px solid var(--gray-100); }
.mi-blog-filters__inner { display: flex; overflow-x: auto; }
.mi-blog-filter { padding: 20px 28px; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-500); border-bottom: 2px solid transparent; cursor: pointer; white-space: nowrap; transition: all 0.3s ease; }
.mi-blog-filter.active, .mi-blog-filter:hover { color: var(--navy); border-bottom-color: var(--gold); }
.mi-blog-main { padding: 64px 0 104px; background: var(--off-white); }
.mi-blog-main__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.mi-blog-post-card { background: var(--white); overflow: hidden; transition: all 0.3s var(--ease); cursor: pointer; }
.mi-blog-post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.mi-blog-post-card__img { height: 200px; background: linear-gradient(135deg, var(--navy-mid), var(--navy-light)); display: flex; align-items: center; justify-content: center; font-size: 52px; }
.mi-blog-post-card__body { padding: 28px; }
.mi-blog-post-card__tag { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.mi-blog-post-card__title { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.mi-blog-post-card__excerpt { font-size: 13px; line-height: 1.7; color: var(--gray-500); margin-bottom: 16px; }
.mi-blog-post-card__meta { display: flex; justify-content: space-between; align-items: center; }
.mi-blog-post-card__date { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-300); }
.mi-blog-post-card__read { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }

/* ===== RESOURCES PAGE ===== */
.mi-resources-hero { padding: 160px 0 80px; background: var(--navy); text-align: center; }
.mi-resources-hero__headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(44px, 6vw, 80px); font-weight: 700; color: var(--white); }
.mi-resources-hero__sub { font-size: 17px; color: rgba(255,255,255,0.45); margin-top: 16px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.mi-resources-main { padding: 80px 0 104px; background: var(--off-white); }
.mi-resources-section { margin-bottom: 80px; }
.mi-resources-section__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 2px solid var(--gray-100); }
.mi-resources-section__title { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 700; color: var(--navy); }
.mi-resource-list { display: flex; flex-direction: column; gap: 10px; }
.mi-resource-item { background: var(--white); padding: 24px 28px; display: flex; align-items: center; gap: 20px; border: 1px solid transparent; transition: all 0.3s var(--ease); cursor: pointer; }
.mi-resource-item:hover { border-color: var(--gold); transform: translateX(5px); }
.mi-resource-item__icon { font-size: 26px; flex-shrink: 0; }
.mi-resource-item__content { flex: 1; }
.mi-resource-item__title { font-weight: 600; font-size: 16px; color: var(--navy); margin-bottom: 3px; }
.mi-resource-item__desc { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

/* ===== NEWSLETTER PAGE ===== */
.mi-nl-hero { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
.mi-nl-hero__glow { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(201,168,76,0.07) 0%, transparent 70%); pointer-events: none; }
.mi-nl-hero__inner { position: relative; max-width: 760px; margin: 0 auto; text-align: center; padding-top: 78px; }
.mi-nl-hero__headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(42px, 6vw, 80px); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.mi-nl-hero__headline em { font-style: italic; color: var(--gold); }
.mi-nl-hero__sub { font-size: 17px; color: rgba(255,255,255,0.52); max-width: 560px; margin: 0 auto 44px; line-height: 1.75; }
.mi-nl-form { max-width: 560px; margin: 0 auto; }
.mi-form-group { margin-bottom: 14px; }
.mi-form-group label { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.44); margin-bottom: 7px; }
.mi-form-group input { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.24); padding: 16px 20px; font-family: 'Barlow', sans-serif; font-size: 15px; color: var(--white); outline: none; transition: border-color 0.3s ease; }
.mi-form-group input:focus { border-color: var(--gold); background: rgba(255,255,255,0.09); }
.mi-form-group input::placeholder { color: rgba(255,255,255,0.22); }
.mi-nl-benefits { padding: 80px 0; background: var(--off-white); }
.mi-benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 52px; }
.mi-benefit { text-align: center; padding: 36px 28px; }
.mi-benefit__icon { font-size: 40px; margin-bottom: 16px; }
.mi-benefit__title { font-family: 'Cormorant Garamond', serif; font-size: 23px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.mi-benefit__text { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.mi-contact-hero { padding: 160px 0 80px; background: var(--navy); text-align: center; }
.mi-contact-hero__headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(44px, 6vw, 80px); font-weight: 700; color: var(--white); }
.mi-contact-hero__sub { font-size: 17px; color: rgba(255,255,255,0.45); margin-top: 16px; }
.mi-contact-main { padding: 80px 0 104px; background: var(--off-white); }
.mi-contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; }
.mi-contact-info__title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.mi-contact-info__text { font-size: 15px; line-height: 1.75; color: var(--gray-500); margin-bottom: 36px; }
.mi-contact-method { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-top: 1px solid var(--gray-100); }
.mi-contact-method__icon { font-size: 20px; flex-shrink: 0; margin-top: 3px; }
.mi-contact-method__label { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.mi-contact-method__value { font-size: 15px; color: var(--navy); font-weight: 500; }
.mi-contact-form { background: var(--white); padding: 52px; border: 1px solid var(--gray-100); }
.mi-contact-form .mi-form-group label { color: var(--gray-500); }
.mi-contact-form .mi-form-group input,
.mi-contact-form .mi-form-group textarea { background: var(--off-white); border: 1px solid var(--gray-100); color: var(--navy); font-family: 'Barlow', sans-serif; font-size: 15px; padding: 14px 18px; width: 100%; outline: none; transition: border-color 0.3s ease; }
.mi-contact-form .mi-form-group input:focus,
.mi-contact-form .mi-form-group textarea:focus { border-color: var(--gold); }
.mi-contact-form .mi-form-group textarea { height: 140px; resize: vertical; display: block; }

/* ===== FOOTER ===== */
.mi-footer { background: #060e1a; padding: 80px 0 40px; border-top: 1px solid rgba(201,168,76,0.1); }
.mi-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mi-footer__brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.mi-footer__brand-mark { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; opacity: 0.95; }
.mi-footer__brand-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.mi-footer__brand-sub { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.mi-footer__tagline { font-size: 14px; color: rgba(255,255,255,0.32); line-height: 1.72; max-width: 260px; }
.mi-footer__col-title { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.mi-footer__links { display: flex; flex-direction: column; gap: 10px; }
.mi-footer__link { font-size: 14px; color: rgba(255,255,255,0.38); transition: color 0.3s ease; text-decoration: none; cursor: pointer; }
.mi-footer__link:hover { color: var(--white); }
.mi-footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; flex-wrap: wrap; gap: 16px; }
.mi-footer__copy { font-size: 12px; color: rgba(255,255,255,0.18); }
.mi-footer__legal { display: flex; gap: 24px; }
.mi-footer__legal-link { font-size: 12px; color: rgba(255,255,255,0.18); cursor: pointer; transition: color 0.3s ease; }
.mi-footer__legal-link:hover { color: rgba(255,255,255,0.5); }
.mi-footer__disclaimer { padding-top: 20px; font-size: 11px; color: rgba(255,255,255,0.14); line-height: 1.65; border-top: 1px solid rgba(255,255,255,0.04); margin-top: 20px; }

/* ===== SCROLL REVEAL ===== */
.mi-reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.mi-reveal.mi-visible { opacity: 1; transform: translateY(0); }

/* ===== TOAST ===== */
.mi-toast { position: fixed; bottom: 32px; right: 32px; z-index: 9999; background: var(--navy); border: 1px solid var(--gold); padding: 16px 24px; display: flex; align-items: center; gap: 12px; transform: translateX(120%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); max-width: 320px; }
.mi-toast.show { transform: translateX(0); }
.mi-toast__text { font-size: 14px; color: var(--white); }
.mi-toast__text strong { color: var(--gold); }

/* ===== ANIMATIONS ===== */
@keyframes miFadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes miBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .mi-pillars__grid { grid-template-columns: 1fr; }
  .mi-philosophy__inner { grid-template-columns: 1fr; gap: 48px; }
  .mi-blog-grid { grid-template-columns: 1fr; }
  .mi-testimonial-grid { grid-template-columns: 1fr; }
  .mi-resource-grid { grid-template-columns: repeat(2,1fr); }
  .mi-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .mi-about-hero__inner { grid-template-columns: 1fr; }
  .mi-values-grid { grid-template-columns: 1fr; }
  .mi-contact-grid { grid-template-columns: 1fr; }
  .mi-blog-main__grid { grid-template-columns: repeat(2,1fr); }
  .mi-benefits-grid { grid-template-columns: 1fr; }
  .mi-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .mi-nav__links, .mi-nav__cta { display: none; }
  .mi-nav__hamburger { display: flex; }
  .mi-hero__stats { gap: 28px; }
  .mi-email-form { flex-direction: column; }
  .mi-resource-grid { grid-template-columns: 1fr; }
  .mi-blog-main__grid { grid-template-columns: 1fr; }
  .mi-footer__grid { grid-template-columns: 1fr; }
  .mi-about-img { height: 300px; }
  .mi-contact-form { padding: 28px; }
  .mi-hero__actions { flex-direction: column; }
  .mi-blog-post-card__img { height: 160px; font-size: 36px; }
}
