:root {
    --mm-green: #cfe0dd;
    --mm-green-deep: #0d9a72;
    --mm-forest: #014f3f;
    --mm-cream: #f4eee8;
    --mm-gold: #f2a621;
    --mm-text: #121212;
    --mm-muted: #4f575d;
    --mm-white: #ffffff;
    --mm-border: rgba(0,0,0,.08);
    --mm-shadow: 0 14px 36px rgba(0,0,0,.08);
    --mm-shadow-hover: 0 20px 40px rgba(0,0,0,.12);
    --mm-radius: 24px;
    --mm-radius-sm: 16px;
    --mm-container: 1180px;
    --mm-transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, Helvetica, sans-serif;
    color: var(--mm-text);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--mm-transition);
}

p {
    margin: 0 0 18px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 18px;
    line-height: 1.2;
    font-weight: 800;
}

h1 { font-size: 58px; }
h2 { font-size: 48px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }

/* Container */
.mm-container {
    width: min(var(--mm-container), calc(100% - 40px));
    margin: 0 auto;
}

.mm-site-main {
    overflow: hidden;
}

/* Topbar */
.mm-topbar {
    background: var(--mm-forest);
    color: white;
    text-align: center;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* Header */
.mm-site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--mm-green);
    border-bottom: 1px solid var(--mm-border);
    backdrop-filter: blur(0px);
}

.mm-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 18px 0;
}

.mm-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 260px;
}

.mm-brand img,
.custom-logo-link img {
    width: 78px;
    height: auto;
}

.mm-brand__text {
    display: flex;
    flex-direction: column;
}

.mm-brand__name {
    font-size: 20px;
    font-weight: 800;
    color: var(--mm-forest);
}

.mm-brand__tag {
    font-size: 12px;
    color: var(--mm-muted);
}

/* Navigation */
.mm-main-nav {
    margin-left: auto;
}

.mm-nav-list {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.mm-nav-list a {
    font-weight: 700;
    font-size: 14px;
    position: relative;
    padding-bottom: 4px;
    color: var(--mm-forest);
}

.mm-nav-list a:hover::after,
.mm-nav-list .current-menu-item a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    background: var(--mm-gold);
}

.mm-menu-toggle {
    display: none;
    border: 1px solid var(--mm-border);
    background: white;
    padding: 10px 16px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
}

/* Hero Section */
.mm-hero {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--mm-cream) 0%, #fff 100%);
}

.mm-hero__grid,
.mm-two-col,
.mm-split-feature {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.mm-eyebrow,
.mm-section-tag {
    display: inline-block;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--mm-green-deep);
}

.mm-hero h1 {
    font-size: 58px;
    max-width: 720px;
}

.mm-hero p {
    font-size: 20px;
    color: var(--mm-muted);
    max-width: 680px;
}

.mm-hero__media img,
.mm-two-col img,
.mm-split-feature img {
    border-radius: var(--mm-radius);
    box-shadow: var(--mm-shadow);
    width: 100%;
    transition: var(--mm-transition);
}

.mm-hero__media img:hover {
    transform: scale(1.02);
    box-shadow: var(--mm-shadow-hover);
}

/* Buttons */
.mm-btn-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.mm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 700;
    transition: var(--mm-transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.mm-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--mm-shadow);
}

.mm-btn--gold {
    background: var(--mm-gold);
    color: #111;
}

.mm-btn--gold:hover {
    background: #e09510;
}

.mm-btn--outline {
    border: 2px solid var(--mm-forest);
    color: var(--mm-forest);
    background: transparent;
}

.mm-btn--outline:hover {
    background: var(--mm-forest);
    color: white;
}

.mm-btn--dark {
    background: #111;
    color: white;
}

/* Highlight Band */
.mm-highlight-band {
    padding: 0 0 30px;
    background: #fff;
}

.mm-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mm-highlight-card {
    background: white;
    border: 1px solid var(--mm-border);
    border-radius: var(--mm-radius);
    box-shadow: var(--mm-shadow);
    padding: 32px;
    transition: var(--mm-transition);
}

.mm-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--mm-shadow-hover);
}

.mm-highlight-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.mm-highlight-card p {
    color: var(--mm-muted);
    margin: 0;
}

/* Sections */
.mm-section {
    padding: 90px 0;
}

.mm-section--soft {
    background: var(--mm-green);
}

.mm-section--mission {
    background: var(--mm-cream);
}

.mm-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.mm-section-head h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.mm-section-head p {
    color: var(--mm-muted);
    font-size: 18px;
}

/* Cards Grid */
.mm-card-grid {
    display: grid;
    gap: 28px;
}

.mm-card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.mm-card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.mm-feature-card,
.mm-value-card {
    background: white;
    border-radius: var(--mm-radius);
    padding: 32px;
    box-shadow: var(--mm-shadow);
    transition: var(--mm-transition);
}

.mm-feature-card:hover,
.mm-value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--mm-shadow-hover);
}

.mm-feature-card h3,
.mm-value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.mm-feature-card p,
.mm-value-card p {
    color: var(--mm-muted);
    margin: 0;
}

/* Check List */
.mm-check-list {
    margin: 24px 0 0;
    padding-left: 0;
    list-style: none;
}

.mm-check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-weight: 500;
}

.mm-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    font-weight: 900;
    font-size: 20px;
    color: var(--mm-green-deep);
}

.mm-text-link {
    display: inline-block;
    margin-top: 20px;
    font-weight: 800;
    color: var(--mm-green-deep);
    border-bottom: 2px solid transparent;
}

.mm-text-link:hover {
    border-bottom-color: var(--mm-gold);
}

/* Mini Grid */
.mm-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 28px 0;
}

.mm-mini-grid div {
    background: white;
    border: 1px solid var(--mm-border);
    padding: 18px;
    border-radius: var(--mm-radius-sm);
    transition: var(--mm-transition);
}

.mm-mini-grid div:hover {
    transform: translateY(-3px);
    box-shadow: var(--mm-shadow);
}

.mm-mini-grid strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}

.mm-mini-grid span {
    display: block;
    color: var(--mm-muted);
    font-size: 13px;
}

/* Staff Grid */
.mm-staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mm-staff-card {
    background: white;
    border-radius: var(--mm-radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--mm-shadow);
    transition: var(--mm-transition);
}

.mm-staff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--mm-shadow-hover);
}

.mm-staff-card img {
    border-radius: 50%;
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--mm-gold);
}

.mm-staff-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.mm-staff-card p {
    font-size: 14px;
    color: var(--mm-muted);
    margin: 0;
}

.mm-center {
    text-align: center;
    margin-top: 40px;
}

/* Page Hero */
.mm-page-hero {
    padding: 70px 0 50px;
    background: linear-gradient(135deg, var(--mm-cream) 0%, #fff 100%);
}

.mm-page-hero--green {
    background: linear-gradient(135deg, #0d9a72 0%, #60bda4 100%);
    color: white;
}

.mm-page-hero--gold {
    background: linear-gradient(135deg, var(--mm-gold) 0%, #f7c55b 100%);
}

.mm-page-hero h1 {
    font-size: 56px;
    max-width: 860px;
}

.mm-page-hero p {
    font-size: 20px;
    max-width: 760px;
}

.mm-page-hero--green p {
    color: rgba(255,255,255,.92);
}

/* Timeline */
.mm-timeline {
    display: grid;
    gap: 20px;
}

.mm-timeline__item {
    background: white;
    border: 1px solid var(--mm-border);
    border-radius: var(--mm-radius);
    padding: 28px 32px;
    transition: var(--mm-transition);
}

.mm-timeline__item:hover {
    transform: translateX(8px);
    box-shadow: var(--mm-shadow);
}

/* CTA Band */
.mm-cta-band {
    background: var(--mm-forest);
    color: white;
    padding: 50px 0;
}

.mm-cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.mm-cta-band h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.mm-cta-band p {
    color: rgba(255,255,255,.85);
    margin: 0;
}

/* Final CTA */
.mm-cta-final {
    background: linear-gradient(135deg, var(--mm-forest) 0%, #0a382a 100%);
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.mm-cta-final h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.mm-cta-final p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Footer - Professional */
.mm-footer-cta {
    background: var(--mm-forest);
    color: white;
    padding: 40px 0;
}

.mm-footer-main {
    background: #0a2e26;
    color: #e0e0e0;
    padding: 60px 0 40px;
}

.mm-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.mm-footer-col h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 24px;
    border-left: 3px solid var(--mm-gold);
    padding-left: 14px;
}

.mm-footer-logo-img {
    max-width: 80px;
    margin-bottom: 20px;
}

.mm-footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 15px 0;
}

.mm-social-icons {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.mm-social-icons a {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 50%;
    display: inline-flex;
    transition: var(--mm-transition);
    font-size: 20px;
}

.mm-social-icons a:hover {
    background: var(--mm-gold);
    transform: translateY(-3px);
}

.mm-footer-links,
.mm-footer-contact {
    list-style: none;
    padding-left: 0;
}

.mm-footer-links li,
.mm-footer-contact li {
    margin-bottom: 12px;
}

.mm-footer-links a {
    color: #ccc;
    transition: var(--mm-transition);
}

.mm-footer-links a:hover {
    color: var(--mm-gold);
    padding-left: 5px;
}

.mm-support-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mm-support-btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 40px;
    text-align: center;
    font-weight: 700;
    transition: var(--mm-transition);
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.mm-support-btn--chat {
    background: #25D366;
    color: #000;
}

.mm-support-btn--emergency {
    background: #dc3545;
    color: white;
}

.mm-support-btn--contact {
    background: var(--mm-gold);
    color: #000;
}

.mm-support-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.mm-footer-note {
    font-size: 12px;
    margin-top: 16px;
    opacity: 0.7;
}

.mm-footer-bottom {
    background: #041f19;
    padding: 18px 0;
    text-align: center;
    font-size: 13px;
}

.mm-footer-bottom a {
    color: var(--mm-gold);
}

/* Chat Modal */
.mm-chat-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    width: 320px;
    display: none;
    align-items: center;
    justify-content: center;
}

.mm-chat-modal__content {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.mm-chat-modal__header {
    background: var(--mm-forest);
    color: white;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mm-chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.mm-chat-modal__body {
    padding: 20px;
}

/* Utility Classes */
.mm-text-center {
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
