:root {
  --mjm-bg: #111111;
  --mjm-surface: #1a1a1a;
  --mjm-surface-2: #232323;
  --mjm-text: #f5f5f5;
  --mjm-muted: #cfcfcf;
  --mjm-yellow: #f3c400;
  --mjm-red: #b71c1c;
  --mjm-border: rgba(255,255,255,.12);
  --mjm-max: 1200px;
  --mjm-radius: 18px;
  --mjm-shadow: 0 18px 50px rgba(0,0,0,.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.mjm-theme {
  margin: 0;
  background: linear-gradient(180deg, #101010 0%, #171717 100%);
  color: var(--mjm-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a { color: var(--mjm-yellow); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
.container { width: min(calc(100% - 2rem), var(--mjm-max)); margin: 0 auto; }
.site-main { min-height: 60vh; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(13,13,13,.92);
  border-bottom: 1px solid var(--mjm-border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 0;
}
.site-branding { display: flex; flex-direction: column; gap: .25rem; }
.site-title { font-size: 1.8rem; font-weight: 800; color: #fff; }
.site-tagline { margin: 0; color: var(--mjm-yellow); text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; }
.site-logo img { max-height: 88px; width: auto; }
.mjm-menu, .mjm-footer-menu {
  list-style: none; margin: 0; padding: 0; display: flex; gap: 1rem; flex-wrap: wrap;
}
.mjm-menu a, .mjm-footer-menu a { color: #fff; font-weight: 700; }
.mjm-menu a:hover, .mjm-footer-menu a:hover { color: var(--mjm-yellow); text-decoration: none; }

.hero {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(243,196,0,.18), transparent 32%),
    radial-gradient(circle at top left, rgba(183,28,28,.22), transparent 28%);
}
.hero__content {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: stretch;
}
.eyebrow {
  display: inline-block; margin: 0 0 .8rem; color: var(--mjm-yellow); font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em; font-size: .8rem;
}
.hero h1, .content-card h1 { margin: 0 0 1rem; font-size: clamp(2.2rem, 6vw, 4.4rem); line-height: 1.04; }
.hero__lead { font-size: 1.15rem; color: var(--mjm-muted); max-width: 60ch; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
  padding: .8rem 1.2rem; border-radius: 999px; border: 2px solid transparent;
  font-weight: 800; text-decoration: none;
}
.button:hover { text-decoration: none; }
.button--primary { background: var(--mjm-yellow); color: #111; }
.button--primary:hover { filter: brightness(1.02); }
.button--secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.22); }
.button--secondary:hover { border-color: var(--mjm-yellow); color: var(--mjm-yellow); }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--mjm-border);
  border-radius: var(--mjm-radius);
  box-shadow: var(--mjm-shadow);
  padding: 1.5rem;
}
.hero__panel { align-self: end; }
.hero__phone { font-size: 1.15rem; font-weight: 800; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 1.5rem; margin-bottom: .8rem; }
.check-list li::before {
  content: '•'; position: absolute; left: 0; top: 0; color: var(--mjm-yellow); font-size: 1.2rem; font-weight: 900;
}
.section { padding: 4rem 0; }
.section--alt { background: rgba(255,255,255,.02); }
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: start; }
.content-area { max-width: 900px; }
.content-card .entry-content { color: var(--mjm-muted); }
.content-card h2 { margin-top: 0; }
.entry-content p:first-child { margin-top: 0; }
.entry-content p:last-child { margin-bottom: 0; }

.site-footer {
  padding-top: 2rem;
  border-top: 1px solid var(--mjm-border);
  background: #0d0d0d;
}
.site-footer__grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 2rem; padding-bottom: 2rem; }
.site-footer__title { margin-top: 0; }
.site-footer__phone a { color: var(--mjm-yellow); font-size: 1.1rem; font-weight: 800; }
.site-footer__bottom { padding: 1rem 0 2rem; border-top: 1px solid rgba(255,255,255,.08); color: #bdbdbd; }

@media (max-width: 900px) {
  .site-header__inner, .hero__content, .grid--3, .split, .site-footer__grid {
    grid-template-columns: 1fr;
    display: grid;
  }
  .site-header__inner { gap: 1rem; }
  .site-nav { justify-self: start; }
  .hero { padding-top: 3rem; }
  .hero h1, .content-card h1 { font-size: clamp(2rem, 7vw, 3rem); }
}

/* Footer Layout */
.mjm-footer {
    background: #000;
    color: #fff;
    padding: 40px 20px 20px;
}

.mjm-footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mjm-footer-col h3,
.mjm-footer-col h4 {
    margin-bottom: 15px;
}

.mjm-footer-col ul {
    list-style: none;
    padding: 0;
}

.mjm-footer-col ul li {
    margin-bottom: 8px;
}

.mjm-footer-col a {
    color: #f5c518; /* yellow accent */
    text-decoration: none;
}

.mjm-footer-col a:hover {
    text-decoration: underline;
}

.mjm-phone {
    color: #f5c518;
    font-weight: bold;
    margin-top: 10px;
}

.mjm-footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
    .mjm-footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
