:root {
  --mm-bg: #0b0b0b;
  --mm-bg-2: #121212;
  --mm-panel: #161616;
  --mm-text: #f5f5f5;
  --mm-muted: #b9b9b9;
  --mm-line: rgba(255,255,255,.1);
  --mm-orange: #ff9000;
  --mm-orange-2: #ffb347;
  --mm-radius: 10px;
}
html[data-theme="light"] {
  --mm-bg: #f4f1ea;
  --mm-bg-2: #ece7de;
  --mm-panel: #ffffff;
  --mm-text: #121212;
  --mm-muted: #5c534c;
  --mm-line: rgba(0,0,0,.12);
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--mm-bg); color: var(--mm-text); font-family: Inter, "Plus Jakarta Sans", system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.mm-wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.mm-nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; padding: 0 1rem;
  background: color-mix(in srgb, var(--mm-bg) 86%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--mm-line);
}
.mm-logo { display: flex; align-items: center; gap: .65rem; font-weight: 800; letter-spacing: .02em; }
.mm-mark {
  width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(135deg, #ff9000, #c45c00);
  color: #111; display: grid; place-items: center; font-size: .78rem; font-weight: 900;
}
.mm-nav-actions { display: flex; align-items: center; gap: .45rem; }
.mm-icon-btn, .mm-menu-btn {
  border: 1px solid var(--mm-line); background: var(--mm-panel); color: var(--mm-text);
  width: 40px; height: 40px; border-radius: 8px; cursor: pointer;
}
.mm-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--mm-orange); color: #111; font-weight: 800;
  border: 0; border-radius: 8px; padding: .7rem 1rem; cursor: pointer;
}
.mm-cta:hover { background: var(--mm-orange-2); }
.mm-cta:disabled { opacity: .5; cursor: not-allowed; }
.mm-ghost { border: 1px solid var(--mm-line); background: transparent; color: var(--mm-text); border-radius: 8px; padding: .7rem 1rem; cursor: pointer; }
.mm-menu {
  position: absolute; right: 1rem; top: 60px; min-width: 220px;
  background: var(--mm-panel); border: 1px solid var(--mm-line); border-radius: 10px;
  display: none; flex-direction: column; padding: .4rem; z-index: 50;
}
.mm-menu.open { display: flex; }
.mm-menu a, .mm-menu button {
  text-align: left; background: none; border: 0; color: var(--mm-text);
  padding: .7rem .8rem; border-radius: 8px; cursor: pointer; font: inherit;
}
.mm-menu a:hover, .mm-menu button:hover { background: rgba(255,144,0,.12); color: var(--mm-orange); }
.mm-hero {
  position: relative; min-height: min(78vh, 720px);
  display: grid; align-items: end;
  background: #000 url("/assets/hero.jpg") center/cover no-repeat;
}
.mm-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.78) 70%);
}
.mm-hero-inner { position: relative; z-index: 1; padding: 5rem 0 3rem; }
.mm-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: .95; margin: 0 0 .8rem; max-width: 14ch; }
.mm-hero p { max-width: 40rem; color: #ececec; }
.mm-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.2rem; }
.mm-section { padding: 3.2rem 0; }
.mm-section h2 { font-size: 1.7rem; margin: 0 0 .8rem; }
.mm-kicker { color: var(--mm-orange); font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 800; }
.mm-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.mm-card { background: var(--mm-panel); border: 1px solid var(--mm-line); border-radius: 12px; overflow: hidden; }
.mm-card img { height: 260px; width: 100%; object-fit: cover; }
.mm-card .pad { padding: .85rem; }
.mm-empty { border: 1px dashed var(--mm-line); border-radius: 12px; padding: 2rem; color: var(--mm-muted); text-align: center; }
.mm-footer { border-top: 1px solid var(--mm-line); padding: 2rem 0; background: #090909; color: #ddd; }
html[data-theme="light"] .mm-footer { background: #1a1a1a; color: #eee; }
.mm-foot-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1.2rem; }
@media (max-width: 720px) { .mm-foot-grid { grid-template-columns: 1fr; } .mm-cta.desktop-only { display: none; } }
.mm-gate, .mm-modal {
  position: fixed; inset: 0; z-index: 80; background: rgba(0,0,0,.82);
  display: none; place-items: center; padding: 1rem;
}
.mm-gate.open, .mm-modal.open { display: grid; }
.mm-sheet { width: min(560px, 100%); background: #121212; color: #f5f5f5; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 1.2rem; max-height: 92vh; overflow: auto; }
.mm-sheet label { display: flex; gap: .55rem; align-items: flex-start; font-size: .9rem; margin: .55rem 0; color: #ddd; }
.mm-sheet input[type="text"], .mm-sheet input[type="email"], .mm-sheet select {
  width: 100%; background: #1b1b1b; border: 1px solid rgba(255,255,255,.12); color: #fff;
  border-radius: 8px; padding: .75rem; margin-top: .2rem;
}
.mm-help { font-size: .75rem; color: #b0b0b0; margin: .25rem 0 .6rem; }
.ok { color: #86efac; } .bad { color: #fbbf24; }
.trust { display: flex; flex-wrap: wrap; gap: .8rem 1.2rem; color: var(--mm-muted); font-size: .85rem; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
