:root {
  --mh-ink: #15243a;
  --mh-deep: #223f7b;
  --mh-accent: #6ea7ff;
  --mh-soft: #f1f4ff;
  --mh-line: #dbe4f7;
  --mh-bg: #f5f7fb;
  --mh-card: #ffffff;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--mh-ink);
  background: linear-gradient(180deg, #f4f7ff 0%, #f8fbff 45%, #ffffff 100%);
  line-height: 1.45;
}

a {
  color: inherit;
}
.mh-page-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px;
}

.mh-consent-strip {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #13233f;
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  margin-bottom: 14px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.mh-consent-strip p {
  margin: 0;
  font-size: 14px;
}
.mh-consent-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mh-btn-plain,
.mh-btn-muted {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  font-size: 14px;
}
.mh-btn-plain {
  background: var(--mh-accent);
  color: #fff;
}
.mh-btn-muted {
  background: #fff;
  color: #13233f;
}

.mh-orchid-entrance {
  background:
    radial-gradient(circle at 95% 0%, #d9e4ff 0%, transparent 52%), #e8eefc;
  border: 1px solid var(--mh-line);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 16px;
}

.mh-brandmark-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.mh-logo-image {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
}
.mh-kicker {
  margin: 0;
  color: #1d4ca9;
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.mh-orchid-entrance h1 {
  font-size: 2rem;
  max-width: 24ch;
  margin: 0 0 10px;
}
.mh-intro-copy {
  max-width: 60ch;
  margin-bottom: 16px;
}

.mh-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.mh-card-trace {
  background: var(--mh-card);
  border: 1px solid var(--mh-line);
  border-radius: 16px;
  padding: 16px;
}

.mh-card-trace ul {
  margin: 0;
  padding-left: 18px;
}
.mh-card-trace li {
  margin-bottom: 6px;
}

.mh-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12px;
  margin-bottom: 16px;
}
.mh-panel {
  background: var(--mh-card);
  border: 1px solid var(--mh-line);
  border-radius: 16px;
  padding: 16px;
}
.mh-slab-grid {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.mh-slab-grid figure {
  margin: 0;
}
.mh-slab-grid img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.mh-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.mh-service-grid p {
  margin: 0;
  background: var(--mh-bg);
  border: 1px solid var(--mh-line);
  padding: 12px;
  border-radius: 10px;
}

#mh-contact-card h2 {
  margin-bottom: 6px;
}
#mh-contact-card p {
  margin-bottom: 8px;
}
#mh-contact-card a {
  color: #193f9a;
  font-weight: 600;
}
.mh-soft-note {
  font-size: 14px;
  color: #475b7f;
}

.mh-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  color: #334d78;
  margin: 16px 0 28px;
}

@media (max-width: 1020px) {
  .mh-trust-grid,
  .mh-gallery {
    grid-template-columns: 1fr;
  }
  .mh-orchid-entrance h1 {
    font-size: 1.8rem;
  }
  .mh-consent-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  body {
    font-size: 15px;
  }
  .mh-orchid-entrance {
    padding: 18px;
  }
  .mh-service-grid,
  .mh-slab-grid {
    grid-template-columns: 1fr;
  }
}
