/* ============================================================
   MLHS 2028 — Material 3 Expressive design system
   ------------------------------------------------------------
   Scoped under body.mlhs2028 so it never touches admin or the
   other pages that still use mlhs-brand.css.
   ============================================================ */

:root {
  /* Palette */
  --m28-canvas:      #F7F5F0;
  --m28-surface:     #FBF9F4;
  --m28-surface-2:   #F1EDE4;
  --m28-ink:         #0E1F1A;
  --m28-ink-soft:    #2A342F;
  --m28-muted:       #565C57;   /* was #6D746E — 4.11 on cream (borderline AA). Darkened to ~6.5:1 so muted labels/inactive-tab text reads solidly. */
  --m28-faint:       #B7B4AB;
  --m28-line:        #E4E0D6;

  --m28-primary:     #0F5132;   /* MLHS forest */
  --m28-primary-2:   #16713E;   /* hover */
  --m28-primary-pop: #1EA25C;   /* Material Expressive high-emphasis */
  --m28-primary-tint:#DDEEE1;
  --m28-primary-tint-2:#EEF6F0;

  --m28-gold:        #FFB800;
  --m28-gold-tint:   #FBEBBA;
  --m28-coral:       #FF6B4A;
  --m28-coral-tint:  #FFDCD1;

  --m28-sage:        #C8DBC6;
  --m28-cream:       #F6E8C5;
  --m28-blush:       #F4D7CB;

  /* Radii — squircle family */
  --m28-r-sm: 14px;
  --m28-r-md: 22px;
  --m28-r-lg: 32px;
  --m28-r-xl: 44px;
  --m28-r-2xl: 64px;
  --m28-pill: 999px;

  /* Shadow — green-tinted, not gray */
  --m28-shadow-sm: 0 2px 6px -1px rgba(15,81,50,.06), 0 1px 2px -1px rgba(15,81,50,.05);
  --m28-shadow-md: 0 8px 24px -6px rgba(15,81,50,.10), 0 3px 8px -3px rgba(15,81,50,.06);
  --m28-shadow-lg: 0 24px 60px -18px rgba(15,81,50,.16), 0 8px 22px -10px rgba(15,81,50,.08);
  --m28-shadow-xl: 0 40px 90px -30px rgba(15,81,50,.22), 0 12px 30px -12px rgba(15,81,50,.10);

  /* Motion */
  --m28-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --m28-ease:   cubic-bezier(0.2, 0.8, 0.2, 1);
  --m28-fast:   180ms;
  --m28-med:    320ms;
  --m28-slow:   520ms;

  /* Type */
  --m28-font-display: "Instrument Serif", "Fraunces", ui-serif, Georgia, serif;
  --m28-font-sans:    "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --m28-font-mono:    "DM Mono", "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

/* Enter the 2028 scope */
body.mlhs2028 {
  margin: 0;
  background: var(--m28-canvas);
  color: var(--m28-ink);
  font-family: var(--m28-font-sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.mlhs2028 *,
body.mlhs2028 *::before,
body.mlhs2028 *::after { box-sizing: border-box; }

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

/* ---------- Typography ---------- */
body.mlhs2028 h1, body.mlhs2028 h2, body.mlhs2028 h3, body.mlhs2028 h4 {
  color: var(--m28-ink);
  letter-spacing: -0.02em;
  margin: 0;
}

body.mlhs2028 h1 {
  font-family: var(--m28-font-sans);
  font-weight: 800;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1;
  letter-spacing: -0.032em;
}

body.mlhs2028 h2 {
  font-family: var(--m28-font-sans);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

body.mlhs2028 h3 {
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

body.mlhs2028 p { margin: 0; color: var(--m28-ink-soft); }
body.mlhs2028 .m28-lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--m28-ink-soft);
  max-width: 56ch;
}

body.mlhs2028 .m28-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--m28-font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--m28-primary);
  font-weight: 500;
}
body.mlhs2028 .m28-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--m28-primary);
}

body.mlhs2028 .m28-num {
  font-family: var(--m28-font-mono);
  font-feature-settings: "tnum", "lnum";
  letter-spacing: 0;
}

/* ---------- Layout ---------- */
body.mlhs2028 .m28-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  body.mlhs2028 .m28-container { padding: 0 40px; }
}

body.mlhs2028 .m28-section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}
body.mlhs2028 .m28-section--pad-sm { padding: clamp(48px, 6vw, 88px) 0; }

/* ---------- Announcement bar ---------- */
body.mlhs2028 .m28-announce {
  background: var(--m28-ink);
  color: var(--m28-canvas);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.01em;
}
body.mlhs2028 .m28-announce strong { color: var(--m28-gold); font-weight: 600; }

/* ---------- Navigation ---------- */
body.mlhs2028 .m28-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 245, 240, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--m28-fast) var(--m28-ease);
}
body.mlhs2028 .m28-nav.is-scrolled { border-bottom-color: var(--m28-line); }
body.mlhs2028 .m28-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  body.mlhs2028 .m28-nav-inner { padding: 18px 40px; }
}

body.mlhs2028 .m28-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--m28-ink);
}
body.mlhs2028 .m28-brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--m28-primary);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--m28-font-sans);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  box-shadow: var(--m28-shadow-sm);
}
body.mlhs2028 .m28-brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
body.mlhs2028 .m28-brand-word strong {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
}
body.mlhs2028 .m28-brand-word span {
  font-size: 10.5px;
  color: var(--m28-muted);
  margin-top: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.mlhs2028 .m28-nav-links {
  display: none;
  margin-left: auto;
  margin-right: 12px;
  gap: 4px;
  align-items: center;
  background: rgba(255,255,255,0.55);
  padding: 6px;
  border-radius: var(--m28-pill);
  border: 1px solid var(--m28-line);
}
body.mlhs2028 .m28-nav-links a {
  color: var(--m28-ink);
  text-decoration: none;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: var(--m28-pill);
  font-size: 14.5px;
  transition: background var(--m28-fast) var(--m28-ease), color var(--m28-fast) var(--m28-ease);
}
body.mlhs2028 .m28-nav-links a:hover {
  background: var(--m28-primary-tint);
  color: var(--m28-primary);
}
body.mlhs2028 .m28-nav-links a[aria-current="page"] {
  background: var(--m28-ink);
  color: var(--m28-canvas);
}
body.mlhs2028 .m28-nav-links a.m28-nav-admin {
  color: var(--m28-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
}
body.mlhs2028 .m28-nav-links a.m28-nav-admin::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--m28-muted);
  transition: background var(--m28-fast) var(--m28-ease);
}
body.mlhs2028 .m28-nav-links a.m28-nav-admin:hover {
  color: var(--m28-primary);
  background: transparent;
}
body.mlhs2028 .m28-nav-links a.m28-nav-admin:hover::before {
  background: var(--m28-primary);
}
@media (min-width: 900px) {
  body.mlhs2028 .m28-nav-links { display: inline-flex; }
}

body.mlhs2028 .m28-nav .m28-nav-cta {
  display: none;
}
@media (min-width: 900px) {
  body.mlhs2028 .m28-nav .m28-nav-cta { display: inline-flex; margin-left: 0; }
}

body.mlhs2028 .m28-nav-toggle {
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: var(--m28-r-md);
  border: 1px solid var(--m28-line);
  background: rgba(255,255,255,0.7);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--m28-ink);
  transition: transform var(--m28-fast) var(--m28-ease), background var(--m28-fast) var(--m28-ease);
}
body.mlhs2028 .m28-nav-toggle:hover { background: var(--m28-primary-tint); }
body.mlhs2028 .m28-nav-toggle:active { transform: scale(0.95); }
@media (min-width: 900px) {
  body.mlhs2028 .m28-nav-toggle { display: none; }
}
body.mlhs2028 .m28-nav-sheet {
  display: none;
  padding: 8px 24px 20px;
  border-bottom: 1px solid var(--m28-line);
  background: rgba(247, 245, 240, 0.95);
  backdrop-filter: blur(14px);
}
body.mlhs2028 .m28-nav-sheet.is-open { display: flex; flex-direction: column; gap: 4px; }
body.mlhs2028 .m28-nav-sheet a {
  padding: 12px 16px;
  color: var(--m28-ink);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--m28-r-md);
  transition: background var(--m28-fast) var(--m28-ease);
}
body.mlhs2028 .m28-nav-sheet a:hover { background: var(--m28-primary-tint); color: var(--m28-primary); }
body.mlhs2028 .m28-nav-sheet .m28-btn { margin-top: 8px; }

/* ---------- Buttons ---------- */
body.mlhs2028 .m28-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--m28-pill);
  border: 0;
  font-family: var(--m28-font-sans);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  background: var(--m28-primary);
  color: #fff;
  box-shadow: var(--m28-shadow-md);
  transition:
    background var(--m28-fast) var(--m28-ease),
    transform var(--m28-med) var(--m28-spring),
    box-shadow var(--m28-fast) var(--m28-ease);
  white-space: nowrap;
}
body.mlhs2028 .m28-btn:hover {
  background: var(--m28-primary-2);
  transform: translateY(-2px);
  box-shadow: var(--m28-shadow-lg);
}
body.mlhs2028 .m28-btn:active { transform: translateY(0) scale(0.98); }

body.mlhs2028 .m28-btn.is-lg { padding: 18px 32px; font-size: 16.5px; }
body.mlhs2028 .m28-btn.is-sm { padding: 10px 18px; font-size: 13.5px; }

body.mlhs2028 .m28-btn--outline {
  background: transparent;
  color: var(--m28-ink);
  border: 1.5px solid var(--m28-ink);
  box-shadow: none;
}
body.mlhs2028 .m28-btn--outline:hover {
  background: var(--m28-ink);
  color: var(--m28-canvas);
  box-shadow: var(--m28-shadow-md);
}

body.mlhs2028 .m28-btn--ghost {
  background: rgba(255,255,255,0.7);
  color: var(--m28-ink);
  border: 1px solid var(--m28-line);
  box-shadow: none;
}
body.mlhs2028 .m28-btn--ghost:hover {
  background: #fff;
  border-color: var(--m28-primary);
  color: var(--m28-primary);
  box-shadow: var(--m28-shadow-sm);
}

body.mlhs2028 .m28-btn--gold {
  background: var(--m28-gold);
  color: var(--m28-ink);
}
body.mlhs2028 .m28-btn--gold:hover { background: #FFC53D; }

body.mlhs2028 .m28-btn .m28-btn-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  transition: transform var(--m28-med) var(--m28-spring), background var(--m28-fast) var(--m28-ease);
}
body.mlhs2028 .m28-btn:hover .m28-btn-icon {
  transform: translateX(4px);
  background: rgba(255,255,255,0.32);
}
body.mlhs2028 .m28-btn--outline .m28-btn-icon,
body.mlhs2028 .m28-btn--ghost .m28-btn-icon { background: var(--m28-primary-tint); color: var(--m28-primary); }

/* ---------- Pills / stats ---------- */
body.mlhs2028 .m28-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--m28-pill);
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--m28-line);
  font-size: 13px;
  color: var(--m28-ink);
  font-weight: 500;
  box-shadow: var(--m28-shadow-sm);
}
body.mlhs2028 .m28-pill--dark { background: var(--m28-ink); color: var(--m28-canvas); border-color: transparent; }
body.mlhs2028 .m28-pill--green { background: var(--m28-primary); color: #fff; border-color: transparent; }
body.mlhs2028 .m28-pill--gold { background: var(--m28-gold-tint); border-color: transparent; color: #6E4A00; }

body.mlhs2028 .m28-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
body.mlhs2028 .m28-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--m28-pill);
  background: #fff;
  border: 1px solid var(--m28-line);
  box-shadow: var(--m28-shadow-sm);
  font-family: var(--m28-font-mono);
  font-feature-settings: "tnum", "lnum";
  font-size: 13.5px;
  color: var(--m28-ink);
  transition: transform var(--m28-med) var(--m28-spring), box-shadow var(--m28-fast) var(--m28-ease);
}
body.mlhs2028 .m28-stat-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--m28-shadow-md);
}
body.mlhs2028 .m28-stat-pill svg {
  width: 16px;
  height: 16px;
  color: var(--m28-primary);
}
body.mlhs2028 .m28-stat-pill strong { font-weight: 600; color: var(--m28-ink); }
body.mlhs2028 .m28-stat-pill small { color: var(--m28-muted); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--m28-font-sans); }

/* ---------- HERO ---------- */
body.mlhs2028 .m28-hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 8vw, 96px);
  overflow: hidden;
}
body.mlhs2028 .m28-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  body.mlhs2028 .m28-hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 60px;
    padding: 0 40px;
  }
}

body.mlhs2028 .m28-hero-copy > * + * { margin-top: 22px; }
body.mlhs2028 .m28-hero-copy h1 {
  color: var(--m28-ink);
}
body.mlhs2028 .m28-hero-copy h1 .accent {
  color: var(--m28-primary);
  font-style: italic;
  font-family: var(--m28-font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
}
body.mlhs2028 .m28-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* Hero image cluster — squircle photo + blob anchors */
body.mlhs2028 .m28-hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  margin: 0 auto;
  isolation: isolate;
  min-height: 420px;
}
@media (min-width: 900px) {
  body.mlhs2028 .m28-hero-visual { aspect-ratio: 4 / 5; max-width: 560px; min-height: 560px; }
}

body.mlhs2028 .m28-squircle-photo {
  position: absolute;
  inset: 0;
  border-radius: 42% 58% 46% 54% / 48% 44% 56% 52%;
  overflow: hidden;
  box-shadow: var(--m28-shadow-xl);
  z-index: 2;
  animation: m28-morph 22s ease-in-out infinite;
}
body.mlhs2028 .m28-squircle-photo img,
body.mlhs2028 .m28-squircle-photo picture,
body.mlhs2028 .m28-squircle-photo picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes m28-morph {
  0%, 100% { border-radius: 42% 58% 46% 54% / 48% 44% 56% 52%; }
  33%      { border-radius: 54% 46% 60% 40% / 42% 58% 42% 58%; }
  66%      { border-radius: 46% 54% 40% 60% / 56% 44% 60% 40%; }
}

body.mlhs2028 .m28-blob {
  position: absolute;
  border-radius: 50% 44% 60% 40% / 46% 56% 44% 54%;
  z-index: 1;
  animation: m28-blob-drift 18s ease-in-out infinite;
}
body.mlhs2028 .m28-blob--gold {
  right: -6%;
  bottom: -4%;
  width: 42%;
  height: 42%;
  background: var(--m28-gold);
}
body.mlhs2028 .m28-blob--coral {
  left: -8%;
  top: 8%;
  width: 14%;
  height: 14%;
  background: var(--m28-coral);
  z-index: 3;
  animation-duration: 12s;
}
body.mlhs2028 .m28-blob--sage {
  right: 20%;
  top: -6%;
  width: 22%;
  height: 22%;
  background: var(--m28-sage);
  z-index: 1;
  animation-duration: 24s;
}
@keyframes m28-blob-drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); border-radius: 50% 44% 60% 40% / 46% 56% 44% 54%; }
  50%      { transform: translate(-8px, 6px) rotate(6deg); border-radius: 46% 60% 40% 54% / 60% 42% 56% 42%; }
}

/* ---------- Trust bar ---------- */
body.mlhs2028 .m28-trust {
  padding: 24px 0;
  border-top: 1px solid var(--m28-line);
  border-bottom: 1px solid var(--m28-line);
  background: var(--m28-canvas);
}
body.mlhs2028 .m28-trust-row {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  align-items: center;
  justify-content: space-between;
}
body.mlhs2028 .m28-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--m28-ink-soft);
  font-weight: 500;
  letter-spacing: 0.005em;
}
body.mlhs2028 .m28-trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--m28-primary);
}

/* ---------- Section head ---------- */
body.mlhs2028 .m28-section-head {
  max-width: 780px;
  margin: 0 0 clamp(40px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
body.mlhs2028 .m28-section-head--center {
  margin: 0 auto clamp(40px, 4vw, 64px);
  text-align: center;
  align-items: center;
}

/* ---------- Services grid (bento) ---------- */
body.mlhs2028 .m28-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  body.mlhs2028 .m28-services { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  body.mlhs2028 .m28-services { grid-template-columns: repeat(3, 1fr); }
}

body.mlhs2028 .m28-service {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--m28-r-xl);
  background: var(--m28-surface);
  border: 1px solid transparent;
  box-shadow: var(--m28-shadow-sm);
  overflow: hidden;
  transition:
    transform var(--m28-med) var(--m28-spring),
    box-shadow var(--m28-fast) var(--m28-ease),
    border-radius var(--m28-med) var(--m28-spring);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  color: var(--m28-ink);
  text-decoration: none;
}
body.mlhs2028 .m28-service:hover {
  transform: translateY(-6px);
  box-shadow: var(--m28-shadow-lg);
  border-radius: var(--m28-r-2xl) var(--m28-r-md) var(--m28-r-xl) var(--m28-r-md);
}
body.mlhs2028 .m28-service--sage   { background: var(--m28-sage); }
body.mlhs2028 .m28-service--cream  { background: var(--m28-cream); }
body.mlhs2028 .m28-service--blush  { background: var(--m28-blush); }
body.mlhs2028 .m28-service--forest {
  background: var(--m28-primary);
  color: var(--m28-canvas);
}
body.mlhs2028 .m28-service--forest .m28-service-price { color: var(--m28-gold); }
body.mlhs2028 .m28-service--forest .m28-service-cta { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.25); }

body.mlhs2028 .m28-service-ico {
  width: 56px;
  height: 56px;
  border-radius: var(--m28-r-md);
  background: rgba(15,81,50,0.10);
  display: grid;
  place-items: center;
  color: var(--m28-primary);
  transition: transform var(--m28-med) var(--m28-spring), border-radius var(--m28-med) var(--m28-spring);
}
body.mlhs2028 .m28-service--forest .m28-service-ico {
  background: rgba(255,255,255,0.14);
  color: var(--m28-gold);
}
body.mlhs2028 .m28-service:hover .m28-service-ico {
  transform: rotate(-8deg) scale(1.05);
  border-radius: 50%;
}
body.mlhs2028 .m28-service-ico svg { width: 30px; height: 30px; stroke-width: 1.75; }

body.mlhs2028 .m28-service h3 { color: inherit; }
body.mlhs2028 .m28-service p { color: inherit; opacity: 0.78; font-size: 14.5px; line-height: 1.5; }
body.mlhs2028 .m28-service-price {
  font-family: var(--m28-font-mono);
  font-feature-settings: "tnum", "lnum";
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--m28-primary);
  text-transform: uppercase;
  font-weight: 600;
}
body.mlhs2028 .m28-service-cta {
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: var(--m28-pill);
  background: rgba(15,81,50,0.12);
  border: 1px solid transparent;
  color: var(--m28-primary);
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  transition: background var(--m28-fast) var(--m28-ease), transform var(--m28-fast) var(--m28-spring);
}
body.mlhs2028 .m28-service-cta:hover { background: var(--m28-primary); color: #fff; }

/* ---------- Process (steps) ---------- */
body.mlhs2028 .m28-process {
  background: var(--m28-primary);
  color: var(--m28-canvas);
  border-radius: var(--m28-r-2xl);
  padding: clamp(48px, 6vw, 88px) clamp(28px, 4vw, 72px);
  position: relative;
  overflow: hidden;
}
body.mlhs2028 .m28-process .m28-eyebrow { color: var(--m28-gold); }
body.mlhs2028 .m28-process .m28-eyebrow::before { background: var(--m28-gold); }
body.mlhs2028 .m28-process h2 { color: #fff; }
body.mlhs2028 .m28-process .m28-lead { color: rgba(255,255,255,0.78); }

body.mlhs2028 .m28-process-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { body.mlhs2028 .m28-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { body.mlhs2028 .m28-process-grid { grid-template-columns: repeat(4, 1fr); } }

body.mlhs2028 .m28-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--m28-r-lg);
  padding: 24px;
  transition: background var(--m28-fast) var(--m28-ease), transform var(--m28-med) var(--m28-spring);
}
body.mlhs2028 .m28-step:hover { background: rgba(255,255,255,0.10); transform: translateY(-4px); }
body.mlhs2028 .m28-step-num {
  font-family: var(--m28-font-mono);
  font-size: 14px;
  color: var(--m28-gold);
  letter-spacing: 0.14em;
}
body.mlhs2028 .m28-step h3 { color: #fff; margin-top: 14px; }
body.mlhs2028 .m28-step p { color: rgba(255,255,255,0.75); font-size: 14.5px; margin-top: 8px; }

/* Blob accents inside process */
body.mlhs2028 .m28-process::before {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50% 44% 60% 40% / 46% 56% 44% 54%;
  background: rgba(255,184,0,0.10);
  top: -80px; right: -80px;
  z-index: 0;
  animation: m28-blob-drift 20s ease-in-out infinite;
}
body.mlhs2028 .m28-process > * { position: relative; z-index: 1; }

/* ---------- Split (image + copy) ---------- */
body.mlhs2028 .m28-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  body.mlhs2028 .m28-split { grid-template-columns: repeat(2, 1fr); gap: 60px; }
}
body.mlhs2028 .m28-split--reverse > :first-child { order: 2; }
@media (max-width: 899px) {
  body.mlhs2028 .m28-split--reverse > :first-child { order: 0; }
}
body.mlhs2028 .m28-split-photo {
  position: relative;
  border-radius: var(--m28-r-2xl);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--m28-shadow-lg);
  isolation: isolate;
}
body.mlhs2028 .m28-split-photo img { width: 100%; height: 100%; object-fit: cover; }
body.mlhs2028 .m28-split-photo-tag {
  position: absolute;
  left: 20px; bottom: 20px;
  z-index: 2;
}

/* ---------- Guarantee cards ---------- */
body.mlhs2028 .m28-guarantee {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 640px) { body.mlhs2028 .m28-guarantee { grid-template-columns: repeat(3, 1fr); } }
body.mlhs2028 .m28-g-item {
  padding: 28px;
  border-radius: var(--m28-r-xl);
  background: #fff;
  border: 1px solid var(--m28-line);
  box-shadow: var(--m28-shadow-sm);
  transition: transform var(--m28-med) var(--m28-spring), box-shadow var(--m28-fast) var(--m28-ease);
}
body.mlhs2028 .m28-g-item:hover { transform: translateY(-4px); box-shadow: var(--m28-shadow-md); }
body.mlhs2028 .m28-g-item .m28-g-ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--m28-primary-tint);
  display: grid; place-items: center;
  color: var(--m28-primary);
  margin-bottom: 18px;
}
body.mlhs2028 .m28-g-item .m28-g-ico svg { width: 22px; height: 22px; stroke-width: 2; }

/* ---------- Service-area chips ---------- */
body.mlhs2028 .m28-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
body.mlhs2028 .m28-chip {
  padding: 10px 18px;
  border-radius: var(--m28-pill);
  background: #fff;
  border: 1px solid var(--m28-line);
  color: var(--m28-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background var(--m28-fast) var(--m28-ease), border-color var(--m28-fast) var(--m28-ease), transform var(--m28-fast) var(--m28-spring);
}
body.mlhs2028 .m28-chip:hover {
  background: var(--m28-primary);
  border-color: var(--m28-primary);
  color: #fff;
  transform: translateY(-2px);
}
body.mlhs2028 .m28-chip.is-static { pointer-events: none; opacity: 0.6; }

/* ---------- Testimonials ---------- */
body.mlhs2028 .m28-testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 800px) { body.mlhs2028 .m28-testimonials { grid-template-columns: repeat(3, 1fr); } }

body.mlhs2028 .m28-t-card {
  background: #fff;
  border: 1px solid var(--m28-line);
  border-radius: var(--m28-r-xl);
  padding: 28px;
  box-shadow: var(--m28-shadow-sm);
  transition: transform var(--m28-med) var(--m28-spring), box-shadow var(--m28-fast) var(--m28-ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.mlhs2028 .m28-t-card:hover { transform: translateY(-4px); box-shadow: var(--m28-shadow-md); }
body.mlhs2028 .m28-t-stars {
  color: var(--m28-gold);
  font-size: 15px;
  letter-spacing: 0.2em;
}
body.mlhs2028 .m28-t-body { color: var(--m28-ink-soft); font-size: 15.5px; line-height: 1.55; }
body.mlhs2028 .m28-t-attr { font-family: var(--m28-font-mono); font-size: 12.5px; color: var(--m28-muted); letter-spacing: 0.02em; }
body.mlhs2028 .m28-t-attr strong { color: var(--m28-ink); font-weight: 600; font-family: var(--m28-font-sans); font-size: 14px; letter-spacing: -0.005em; display: block; margin-bottom: 2px; }

/* ---------- Final CTA ---------- */
body.mlhs2028 .m28-cta-band {
  border-radius: var(--m28-r-2xl);
  background: var(--m28-ink);
  color: var(--m28-canvas);
  padding: clamp(48px, 6vw, 88px) clamp(28px, 4vw, 72px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) { body.mlhs2028 .m28-cta-band { grid-template-columns: 1.4fr 1fr; gap: 60px; } }
body.mlhs2028 .m28-cta-band h2 { color: #fff; }
body.mlhs2028 .m28-cta-band p { color: rgba(255,255,255,0.75); margin-top: 14px; }
body.mlhs2028 .m28-cta-band .m28-btn { background: var(--m28-gold); color: var(--m28-ink); }
body.mlhs2028 .m28-cta-band .m28-btn:hover { background: #FFC53D; }
body.mlhs2028 .m28-cta-band .m28-btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
body.mlhs2028 .m28-cta-band .m28-btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
body.mlhs2028 .m28-cta-actions { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 600px) { body.mlhs2028 .m28-cta-actions { flex-direction: row; flex-wrap: wrap; } }

body.mlhs2028 .m28-cta-band::before {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50% 44% 60% 40% / 46% 56% 44% 54%;
  background: rgba(255,184,0,0.10);
  right: -80px; top: -100px;
  animation: m28-blob-drift 26s ease-in-out infinite;
}
body.mlhs2028 .m28-cta-band > * { position: relative; z-index: 1; }

/* ---------- Footer ---------- */
body.mlhs2028 .m28-footer {
  background: var(--m28-canvas);
  border-top: 1px solid var(--m28-line);
  padding: 56px 0 40px;
}
body.mlhs2028 .m28-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  body.mlhs2028 .m28-footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    padding: 0 40px;
    gap: 40px;
  }
}
body.mlhs2028 .m28-footer h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--m28-muted);
  font-weight: 600;
  margin-bottom: 14px;
}
body.mlhs2028 .m28-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
body.mlhs2028 .m28-footer a { color: var(--m28-ink); text-decoration: none; font-size: 14.5px; transition: color var(--m28-fast) var(--m28-ease); }
body.mlhs2028 .m28-footer a:hover { color: var(--m28-primary); }
body.mlhs2028 .m28-footer-bottom {
  max-width: 1240px;
  margin: 40px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid var(--m28-line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--m28-muted);
}
@media (min-width: 768px) { body.mlhs2028 .m28-footer-bottom { padding: 24px 40px 0; } }

/* ---------- Reveal on scroll ----------
   Only hide reveal elements once JS has confirmed IntersectionObserver is
   ready (html.m28-js-ready). This guarantees the page is fully visible for
   users without JS, printed views, and screenshotters. */
html.m28-js-ready body.mlhs2028 [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 640ms var(--m28-ease), transform 720ms var(--m28-spring);
}
html.m28-js-ready body.mlhs2028 [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Gallery page ---------- */
body.mlhs2028 .m28-page-hero {
  padding: clamp(80px, 9vw, 132px) 0 clamp(48px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
body.mlhs2028 .m28-page-hero::before {
  content: "";
  position: absolute;
  top: -80px; right: -60px;
  width: 340px; height: 340px;
  background: var(--m28-sage);
  border-radius: 62% 38% 55% 45% / 48% 62% 38% 52%;
  opacity: 0.5;
  filter: blur(2px);
  z-index: 0;
  animation: m28-drift 22s ease-in-out infinite alternate;
}
body.mlhs2028 .m28-page-hero::after {
  content: "";
  position: absolute;
  top: 40px; left: -40px;
  width: 180px; height: 180px;
  background: var(--m28-gold);
  border-radius: 55% 45% 40% 60% / 58% 42% 55% 45%;
  opacity: 0.35;
  z-index: 0;
  animation: m28-drift 26s ease-in-out infinite alternate-reverse;
}
body.mlhs2028 .m28-page-hero > .m28-container { position: relative; z-index: 1; }
body.mlhs2028 .m28-page-hero h1 {
  font-family: var(--m28-font-sans);
  font-weight: 800;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.032em;
  max-width: 14ch;
}
body.mlhs2028 .m28-page-hero h1 em {
  font-family: var(--m28-font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--m28-primary);
  letter-spacing: -0.02em;
}
body.mlhs2028 .m28-page-hero .m28-lead {
  margin-top: 20px;
  max-width: 52ch;
}
body.mlhs2028 .m28-page-hero .m28-eyebrow { margin-bottom: 24px; }

@keyframes m28-drift {
  0%   { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(24px, -18px) rotate(8deg); }
}

body.mlhs2028 .m28-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: clamp(32px, 4vw, 48px);
  align-items: center;
}
body.mlhs2028 .m28-filter-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--m28-muted);
  font-weight: 600;
  margin-right: 8px;
}
body.mlhs2028 .m28-chip {
  border: 1px solid var(--m28-line);
  background: var(--m28-surface);
  color: var(--m28-ink);
  padding: 10px 18px;
  border-radius: var(--m28-pill);
  font-family: var(--m28-font-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background var(--m28-fast) var(--m28-ease),
    color var(--m28-fast) var(--m28-ease),
    border-color var(--m28-fast) var(--m28-ease),
    transform var(--m28-fast) var(--m28-spring),
    box-shadow var(--m28-fast) var(--m28-ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
body.mlhs2028 .m28-chip .m28-chip-count {
  color: var(--m28-muted);
  font-size: 12px;
  font-weight: 500;
  background: var(--m28-surface-2);
  padding: 2px 8px;
  border-radius: var(--m28-pill);
  transition: background var(--m28-fast) var(--m28-ease), color var(--m28-fast) var(--m28-ease);
}
body.mlhs2028 .m28-chip:hover {
  border-color: var(--m28-primary);
  color: var(--m28-primary);
  transform: translateY(-1px);
  box-shadow: var(--m28-shadow-sm);
}
body.mlhs2028 .m28-chip[aria-pressed="true"] {
  background: var(--m28-ink);
  color: var(--m28-surface);
  border-color: var(--m28-ink);
  transform: translateY(-1px);
  box-shadow: var(--m28-shadow-md);
}
body.mlhs2028 .m28-chip[aria-pressed="true"] .m28-chip-count {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
}

body.mlhs2028 .m28-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-bottom: clamp(48px, 6vw, 88px);
}
@media (min-width: 600px)  { body.mlhs2028 .m28-mosaic { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 900px)  { body.mlhs2028 .m28-mosaic { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1200px) { body.mlhs2028 .m28-mosaic { grid-template-columns: repeat(4, 1fr); gap: 22px; } }

body.mlhs2028 .m28-tile {
  position: relative;
  border-radius: var(--m28-r-lg);
  overflow: hidden;
  background: var(--m28-surface-2);
  border: none;
  padding: 0;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  transition:
    transform var(--m28-med) var(--m28-spring),
    box-shadow var(--m28-med) var(--m28-ease),
    border-radius var(--m28-med) var(--m28-spring);
  box-shadow: var(--m28-shadow-sm);
  display: block;
}
body.mlhs2028 .m28-tile.is-tall { aspect-ratio: 3 / 4; }
body.mlhs2028 .m28-tile.is-wide { aspect-ratio: 4 / 3; }
@media (min-width: 900px) {
  body.mlhs2028 .m28-tile.is-featured { grid-column: span 2; grid-row: span 2; aspect-ratio: 1 / 1; }
}
body.mlhs2028 .m28-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--m28-shadow-lg);
  border-radius: var(--m28-r-xl);
}
body.mlhs2028 .m28-tile:focus-visible {
  outline: 3px solid var(--m28-primary);
  outline-offset: 3px;
}
body.mlhs2028 .m28-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--m28-slow) var(--m28-ease);
}
body.mlhs2028 .m28-tile:hover img { transform: scale(1.06); }
body.mlhs2028 .m28-tile-veil {
  position: absolute;
  inset: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  background: linear-gradient(180deg, transparent 40%, rgba(14,31,26,0.72) 100%);
  color: #fff;
  opacity: 0;
  transition: opacity var(--m28-med) var(--m28-ease);
  pointer-events: none;
  text-align: left;
}
body.mlhs2028 .m28-tile:hover .m28-tile-veil,
body.mlhs2028 .m28-tile:focus-visible .m28-tile-veil { opacity: 1; }
body.mlhs2028 .m28-tile-veil strong {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
body.mlhs2028 .m28-tile-veil span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}
body.mlhs2028 .m28-tile-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--m28-ink);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--m28-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--m28-shadow-sm);
}

body.mlhs2028 .m28-empty {
  padding: 80px 24px;
  text-align: center;
  color: var(--m28-muted);
  border-radius: var(--m28-r-lg);
  background: var(--m28-surface);
  border: 1px dashed var(--m28-line);
  grid-column: 1 / -1;
}
body.mlhs2028 .m28-empty h3 { color: var(--m28-ink); margin-bottom: 8px; }

/* Squircle lightbox */
body.mlhs2028 .m28-lb {
  position: fixed;
  inset: 0;
  background: rgba(14,31,26,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
  animation: m28-lb-in var(--m28-med) var(--m28-ease);
}
body.mlhs2028 .m28-lb.is-open { display: flex; }
@keyframes m28-lb-in { from { opacity: 0; } to { opacity: 1; } }
body.mlhs2028 .m28-lb-frame {
  position: relative;
  max-width: min(1100px, 100%);
  max-height: 92vh;
  border-radius: var(--m28-r-xl);
  overflow: hidden;
  box-shadow: var(--m28-shadow-xl);
  background: var(--m28-ink);
  animation: m28-lb-pop var(--m28-med) var(--m28-spring);
}
@keyframes m28-lb-pop {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
body.mlhs2028 .m28-lb img {
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  display: block;
}
body.mlhs2028 .m28-lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: var(--m28-pill);
  background: rgba(255,255,255,0.92);
  color: var(--m28-ink);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--m28-shadow-md);
  transition: transform var(--m28-fast) var(--m28-spring), background var(--m28-fast) var(--m28-ease);
  z-index: 1;
}
body.mlhs2028 .m28-lb-close:hover { transform: scale(1.06); background: #fff; }
body.mlhs2028 .m28-lb-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 28px;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(14,31,26,0.85) 60%);
  font-size: 15px;
  font-weight: 500;
  pointer-events: none;
}
body.mlhs2028 .m28-lb-caption strong { display: block; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.75; margin-bottom: 4px; font-weight: 600; }

body.mlhs2028 .m28-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: var(--m28-pill);
  background: rgba(255,255,255,0.92);
  color: var(--m28-ink);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--m28-shadow-md);
  transition: transform var(--m28-fast) var(--m28-spring), background var(--m28-fast) var(--m28-ease);
  z-index: 1;
}
body.mlhs2028 .m28-lb-nav.prev { left: 20px; }
body.mlhs2028 .m28-lb-nav.next { right: 20px; }
body.mlhs2028 .m28-lb-nav:hover { transform: translateY(-50%) scale(1.08); background: #fff; }
@media (max-width: 600px) {
  body.mlhs2028 .m28-lb-nav.prev { left: 12px; }
  body.mlhs2028 .m28-lb-nav.next { right: 12px; }
}

/* ---------- Reviews page ---------- */
body.mlhs2028 .m28-stat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: clamp(24px, 3vw, 40px) 0 clamp(40px, 5vw, 64px);
}
@media (min-width: 600px) { body.mlhs2028 .m28-stat-row { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

body.mlhs2028 .m28-stat-card {
  background: var(--m28-surface);
  border: 1px solid var(--m28-line);
  border-radius: var(--m28-r-lg);
  padding: 28px 24px;
  box-shadow: var(--m28-shadow-sm);
  transition: transform var(--m28-med) var(--m28-spring), box-shadow var(--m28-med) var(--m28-ease);
}
body.mlhs2028 .m28-stat-card:hover { transform: translateY(-2px); box-shadow: var(--m28-shadow-md); }
body.mlhs2028 .m28-stat-num {
  font-family: var(--m28-font-sans);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.032em;
  color: var(--m28-ink);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
body.mlhs2028 .m28-stat-num em {
  font-family: var(--m28-font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--m28-primary);
  font-size: 0.85em;
}
body.mlhs2028 .m28-stat-num sup {
  font-size: 0.42em;
  font-weight: 700;
  color: var(--m28-gold);
  margin-left: 6px;
  align-self: flex-start;
  margin-top: 6px;
}
body.mlhs2028 .m28-stat-label {
  margin-top: 6px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--m28-muted);
  font-weight: 600;
}

body.mlhs2028 .m28-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-bottom: clamp(56px, 7vw, 96px);
}
@media (min-width: 720px)  { body.mlhs2028 .m28-reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (min-width: 1080px) { body.mlhs2028 .m28-reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

body.mlhs2028 .m28-review {
  background: var(--m28-surface);
  border: 1px solid var(--m28-line);
  border-radius: var(--m28-r-lg);
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--m28-shadow-sm);
  transition: transform var(--m28-med) var(--m28-spring), box-shadow var(--m28-med) var(--m28-ease);
  position: relative;
}
body.mlhs2028 .m28-review:hover {
  transform: translateY(-3px);
  box-shadow: var(--m28-shadow-md);
}
body.mlhs2028 .m28-review::before {
  content: "\201C";
  position: absolute;
  top: -14px;
  left: 22px;
  font-family: var(--m28-font-display);
  font-size: 64px;
  color: var(--m28-primary-tint);
  line-height: 1;
  z-index: 0;
}
body.mlhs2028 .m28-review > * { position: relative; z-index: 1; }
body.mlhs2028 .m28-review-stars {
  color: var(--m28-gold);
  font-size: 15px;
  letter-spacing: 3px;
  font-family: Arial, sans-serif;
}
body.mlhs2028 .m28-review-text {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--m28-ink-soft);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.mlhs2028 .m28-review-meta {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--m28-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--m28-muted);
  flex-wrap: wrap;
}
body.mlhs2028 .m28-review-author {
  color: var(--m28-ink);
  font-weight: 700;
  font-size: 14px;
}
body.mlhs2028 .m28-review-service {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: var(--m28-pill);
  background: var(--m28-primary-tint);
  color: var(--m28-primary);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Review form card */
body.mlhs2028 .m28-form-card {
  background: var(--m28-surface);
  border: 1px solid var(--m28-line);
  border-radius: var(--m28-r-xl);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: var(--m28-shadow-md);
  max-width: 780px;
  margin: 0 auto clamp(56px, 7vw, 96px);
}
body.mlhs2028 .m28-form-card h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  margin-bottom: 8px;
}
body.mlhs2028 .m28-form-card h2 em {
  font-family: var(--m28-font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--m28-primary);
}
body.mlhs2028 .m28-form-card .m28-lead { margin-bottom: 28px; }
body.mlhs2028 .m28-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.mlhs2028 .m28-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) { body.mlhs2028 .m28-form-row { grid-template-columns: 1fr 1fr; } }

body.mlhs2028 .m28-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.mlhs2028 .m28-field label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--m28-muted);
}
body.mlhs2028 .m28-input,
body.mlhs2028 .m28-select,
body.mlhs2028 .m28-textarea {
  background: var(--m28-canvas);
  border: 1.5px solid var(--m28-line);
  border-radius: var(--m28-r-md);
  padding: 14px 18px;
  font-family: var(--m28-font-sans);
  font-size: 15.5px;
  color: var(--m28-ink);
  transition: border-color var(--m28-fast) var(--m28-ease), box-shadow var(--m28-fast) var(--m28-ease), background var(--m28-fast) var(--m28-ease);
  width: 100%;
}
body.mlhs2028 .m28-textarea { min-height: 140px; resize: vertical; font-family: var(--m28-font-sans); line-height: 1.55; }
body.mlhs2028 .m28-input:focus,
body.mlhs2028 .m28-select:focus,
body.mlhs2028 .m28-textarea:focus {
  outline: none;
  border-color: var(--m28-primary);
  background: var(--m28-surface);
  box-shadow: 0 0 0 4px var(--m28-primary-tint);
}

/* Star input */
body.mlhs2028 .m28-stars-input {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 4px;
  align-self: flex-start;
}
body.mlhs2028 .m28-stars-input input { position: absolute; opacity: 0; pointer-events: none; }
body.mlhs2028 .m28-stars-input label {
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  color: var(--m28-faint);
  transition: color var(--m28-fast) var(--m28-ease), transform var(--m28-fast) var(--m28-spring);
  padding: 2px;
}
body.mlhs2028 .m28-stars-input label::before { content: "\2605"; }
body.mlhs2028 .m28-stars-input label:hover,
body.mlhs2028 .m28-stars-input label:hover ~ label,
body.mlhs2028 .m28-stars-input input:checked ~ label {
  color: var(--m28-gold);
  transform: scale(1.08);
}

body.mlhs2028 .m28-form-msg { margin-bottom: 8px; }
body.mlhs2028 .m28-form-msg-inner {
  padding: 14px 18px;
  border-radius: var(--m28-r-md);
  font-size: 14.5px;
  font-weight: 500;
}
body.mlhs2028 .m28-form-msg-inner.is-success {
  background: var(--m28-primary-tint);
  color: var(--m28-primary);
  border: 1px solid rgba(15,81,50,0.2);
}
body.mlhs2028 .m28-form-msg-inner.is-error {
  background: var(--m28-blush);
  color: #7a1f1f;
  border: 1px solid rgba(122,31,31,0.2);
}

/* ---------- Promos page ---------- */
body.mlhs2028 .m28-promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-bottom: clamp(56px, 7vw, 96px);
}
@media (min-width: 640px)  { body.mlhs2028 .m28-promo-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (min-width: 1000px) { body.mlhs2028 .m28-promo-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

body.mlhs2028 .m28-promo {
  position: relative;
  background: var(--m28-surface);
  border: 1px solid var(--m28-line);
  border-radius: var(--m28-r-xl);
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  box-shadow: var(--m28-shadow-sm);
  transition: transform var(--m28-med) var(--m28-spring), box-shadow var(--m28-med) var(--m28-ease), border-color var(--m28-med) var(--m28-ease);
}
body.mlhs2028 .m28-promo:hover {
  transform: translateY(-4px);
  box-shadow: var(--m28-shadow-lg);
  border-color: var(--m28-primary);
}
body.mlhs2028 .m28-promo::before {
  content: "";
  position: absolute;
  top: -50px; right: -40px;
  width: 160px; height: 160px;
  background: var(--m28-gold);
  border-radius: 55% 45% 40% 60% / 58% 42% 55% 45%;
  opacity: 0.28;
  transition: transform var(--m28-slow) var(--m28-spring), opacity var(--m28-slow) var(--m28-ease);
}
body.mlhs2028 .m28-promo:hover::before {
  transform: scale(1.15) rotate(15deg);
  opacity: 0.4;
}
body.mlhs2028 .m28-promo > * { position: relative; z-index: 1; }

body.mlhs2028 .m28-promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--m28-pill);
  background: var(--m28-primary);
  color: #fff;
  align-self: flex-start;
}
body.mlhs2028 .m28-promo-tag.is-first { background: var(--m28-coral); }
body.mlhs2028 .m28-promo-tag.is-any   { background: var(--m28-ink); }

body.mlhs2028 .m28-promo-discount {
  font-family: var(--m28-font-sans);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.032em;
  color: var(--m28-primary);
}
body.mlhs2028 .m28-promo-discount span {
  font-family: var(--m28-font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.62em;
  color: var(--m28-ink-soft);
  margin-left: 4px;
}
body.mlhs2028 .m28-promo-label {
  color: var(--m28-ink-soft);
  font-size: 15px;
  line-height: 1.5;
  min-height: 2.6em;
}
body.mlhs2028 .m28-promo-code {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--m28-font-mono);
  font-weight: 500;
  font-size: 15px;
  background: var(--m28-ink);
  color: var(--m28-canvas);
  padding: 12px 18px;
  border-radius: var(--m28-r-md);
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: background var(--m28-fast) var(--m28-ease), transform var(--m28-fast) var(--m28-spring);
  align-self: flex-start;
}
body.mlhs2028 .m28-promo-code:hover { background: var(--m28-primary); transform: translateY(-1px); }
body.mlhs2028 .m28-promo-code::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23F7F5F0' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='9' y='9' width='13' height='13' rx='2' ry='2'/%3E%3Cpath d='M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
body.mlhs2028 .m28-promo-code.is-copied {
  background: var(--m28-primary-pop);
}
body.mlhs2028 .m28-promo-cta {
  margin-top: auto;
  padding-top: 8px;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  body.mlhs2028 * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  body.mlhs2028 [data-reveal] { opacity: 1; transform: none; }
}
