:root {
  --color-background: #ffffff;
  --color-foreground: #111111;
  --color-primary: #2563eb;
  --color-primary-foreground: #ffffff;
  --color-muted: #6b7280;
  --color-border: #e5e7eb;
  --font-heading: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --section-padding-y: 5rem;
  --content-max-width: 1100px;
}
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-body);
  line-height: 1.6;
}
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.2; margin: 0 0 0.5em; }
img { max-width: 100%; display: block; }
.mg-section { padding: var(--section-padding-y) 1.5rem; }
.mg-container { max-width: var(--content-max-width); margin: 0 auto; }
.mg-cta {
  display: inline-block; padding: 0.85rem 1.75rem; border-radius: 999px;
  background: var(--color-primary); color: var(--color-primary-foreground);
  text-decoration: none; font-weight: 600;
}

.mg-hero { text-align: center; }
.mg-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.mg-hero p { color: var(--color-muted); font-size: 1.15rem; max-width: 40rem; margin: 0 auto 2rem; }
.mg-hero img { margin: 2.5rem auto 0; border-radius: 12px; }


.mg-richtext p { margin: 0 0 1.15em; }
.mg-richtext { font-size: 1.05rem; }


.mg-features .mg-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.mg-features article { border: 1px solid var(--color-border); border-radius: 12px; padding: 1.75rem; }
.mg-features h3 { margin-bottom: 0.4em; }
.mg-features p { color: var(--color-muted); margin: 0; }


.mg-gallery .mg-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.mg-gallery img { border-radius: 10px; width: 100%; height: 100%; object-fit: cover; }


.mg-ctaband { background: var(--color-primary); color: var(--color-primary-foreground); text-align: center; }
.mg-ctaband h2 { margin-bottom: 1.25em; }
.mg-ctaband .mg-cta { background: var(--color-primary-foreground); color: var(--color-primary); }


.mg-contact dl { display: grid; gap: 0.75rem; margin: 0; }
.mg-contact dt { font-weight: 600; }
.mg-contact dd { margin: 0; color: var(--color-muted); }


.mg-footer { border-top: 1px solid var(--color-border); padding: 2.5rem 1.5rem; }
.mg-footer .mg-container { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; }
.mg-footer nav { display: flex; gap: 1.25rem; }
.mg-footer a { color: var(--color-muted); text-decoration: none; }
.mg-footer small { color: var(--color-muted); }

