/* ============================================================
   Mission Roofing & Restoration — WordPress-ready static build
   Single stylesheet. All design tokens, component styles and
   page layout. No build step, no framework. Fonts are local
   (see ../fonts). Authored from the original design system.
   ============================================================ */

@import url("../fonts/_fontface.css");

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* brand black / ink */
  --black-pure: #0b0c0e;
  --ink:        #121419;
  --ink-soft:   #1b1e25;

  /* steel / brushed-metal neutral scale */
  --steel-50:  #f5f7f9;  --steel-100: #e9edf1;  --steel-200: #d6dce2;
  --steel-300: #bcc5cd;  --steel-400: #97a3ad;  --steel-500: #717d88;
  --steel-600: #545f6a;  --steel-700: #3d454f;  --steel-800: #282d34;
  --steel-900: #161a1f;

  /* chrome highlights */
  --chrome-hi:  #f3f5f7;  --chrome-mid: #aab2bb;  --chrome-lo:  #6d7680;

  /* warm parchment */
  --sand-50:  #faf7f1;  --sand-100: #f2ece1;  --sand-200: #e7dcc8;  --sand-300: #d8c8aa;

  /* Mission Red */
  --red-50:  #fbeae7;  --red-100: #f6d2cc;  --red-200: #eda69b;
  --red-400: #d6483a;  --red-500: #c5362b;  --red-600: #a82c22;  --red-700: #8a241c;

  /* supporting hues */
  --green-500: #2e7d52;  --green-50: #e7f1ec;
  --amber-500: #c9851a;  --amber-50: #f9efdb;
  --blue-500:  #2e6ca8;  --blue-50:  #e6eef6;
  --white: #ffffff;

  /* surfaces */
  --surface-page: var(--steel-50);   --surface-card: var(--white);
  --surface-sunken: var(--steel-100);--surface-warm: var(--sand-50);
  --surface-warm-deep: var(--sand-100);--surface-dark: var(--ink);
  --surface-darkest: var(--black-pure);--surface-raised: var(--ink-soft);

  /* text */
  --text-strong: var(--steel-900);  --text-body: var(--steel-700);
  --text-muted: var(--steel-500);   --text-faint: var(--steel-400);
  --text-on-dark: #f4f6f8;          --text-on-dark-muted: #aab3bd;
  --text-inverse: var(--white);

  /* brand / accent */
  --accent: var(--red-500);  --accent-hover: var(--red-600);  --accent-press: var(--red-700);
  --accent-tint: var(--red-50);  --accent-text: var(--red-600);

  /* lines & borders */
  --border-hairline: #e2e7eb;  --border-default: var(--steel-200);
  --border-strong: var(--steel-300);  --border-dark: #2a2f37;

  --focus-ring: color-mix(in srgb, var(--red-500) 45%, transparent);

  /* semantic state */
  --success: var(--green-500);  --success-bg: var(--green-50);
  --warning: var(--amber-500);  --warning-bg: var(--amber-50);
  --info: var(--blue-500);      --info-bg: var(--blue-50);
  --danger: var(--red-600);     --danger-bg: var(--red-50);

  /* gradients */
  --grad-chrome: linear-gradient(180deg, var(--chrome-hi) 0%, var(--chrome-mid) 48%, var(--chrome-lo) 100%);
  --grad-chrome-h: linear-gradient(90deg, var(--chrome-lo) 0%, var(--chrome-hi) 50%, var(--chrome-lo) 100%);
  --grad-scrim: linear-gradient(180deg, rgba(11,12,14,0) 0%, rgba(11,12,14,0.82) 78%, rgba(11,12,14,0.94) 100%);
  --grad-scrim-up: linear-gradient(0deg, rgba(11,12,14,0) 0%, rgba(11,12,14,0.85) 100%);

  /* families */
  --font-display: 'Cinzel', 'Times New Roman', serif;
  --font-head:    'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    ui-monospace, monospace;

  /* type scale */
  --text-2xs: 11px; --text-xs: 12px; --text-sm: 14px; --text-base: 16px;
  --text-md: 18px; --text-lg: 20px; --text-xl: 24px; --text-2xl: 30px;
  --text-3xl: 38px; --text-4xl: 48px; --text-5xl: 62px; --text-6xl: 80px; --text-7xl: 104px;

  /* weights */
  --weight-light: 300; --weight-regular: 400; --weight-medium: 500;
  --weight-semibold: 600; --weight-bold: 700; --weight-black: 800;

  /* line heights */
  --leading-tight: 1.04; --leading-snug: 1.18; --leading-normal: 1.5; --leading-relaxed: 1.65;

  /* letter spacing */
  --tracking-tighter: -0.02em; --tracking-tight: -0.01em; --tracking-normal: 0;
  --tracking-wide: 0.04em; --tracking-wider: 0.12em; --tracking-widest: 0.26em;

  --role-eyebrow-size: var(--text-sm);

  /* spacing */
  --space-0: 0; --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px; --space-7: 32px; --space-8: 40px; --space-9: 48px;
  --space-10: 64px; --space-11: 80px; --space-12: 96px; --space-13: 128px; --space-14: 160px;

  --pad-card: var(--space-6);

  /* radii */
  --radius-xs: 3px; --radius-sm: 5px; --radius-md: 8px; --radius-lg: 12px;
  --radius-xl: 18px; --radius-2xl: 24px; --radius-pill: 999px;
  --radius-button: var(--radius-sm); --radius-input: var(--radius-sm);
  --radius-card: var(--radius-lg); --radius-tag: var(--radius-xs);

  --border-width: 1px; --border-width-strong: 2px;

  /* layout */
  --container-max: 1240px; --gutter: var(--space-6);

  /* control sizing */
  --control-h-sm: 34px; --control-h-md: 44px; --control-h-lg: 54px;

  /* shadows */
  --shadow-xs: 0 1px 2px rgba(22,26,31,0.08);
  --shadow-sm: 0 1px 2px rgba(22,26,31,0.06), 0 2px 6px rgba(22,26,31,0.08);
  --shadow-md: 0 2px 4px rgba(22,26,31,0.06), 0 8px 18px rgba(22,26,31,0.10);
  --shadow-lg: 0 4px 8px rgba(22,26,31,0.07), 0 18px 38px rgba(22,26,31,0.14);
  --shadow-xl: 0 8px 16px rgba(22,26,31,0.10), 0 30px 60px rgba(22,26,31,0.20);
  --shadow-accent: 0 8px 24px rgba(138,36,28,0.38);
  --shadow-inset: inset 0 1px 2px rgba(22,26,31,0.12);
  --ring-hairline: 0 0 0 1px var(--border-hairline);

  /* motion */
  --dur-instant: 80ms; --dur-fast: 140ms; --dur-base: 220ms; --dur-slow: 360ms; --dur-slower: 560ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-in: cubic-bezier(0.55, 0, 1, 0.45);
  --ease-emphatic: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-control: background-color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}


.mr-header__logo img {
  max-height: 65px !important;
  width: auto !important;
  object-fit: contain !important;
}

/* ============================================================
   2. BASE / ELEMENT DEFAULTS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font-body); font-size: var(--text-base);
  line-height: var(--leading-relaxed); color: var(--text-body);
  background: var(--surface-page); -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0; font-family: var(--font-head); font-weight: var(--weight-semibold);
  color: var(--text-strong); line-height: var(--leading-snug); letter-spacing: var(--tracking-tight);
}
p { margin: 0; text-wrap: pretty; }
a { color: var(--accent-text); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
a:hover { color: var(--accent-hover); }
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
section[id] { scroll-margin-top: 84px; }

/* shared brand helpers */
.ms-eyebrow {
  font-family: var(--font-display); font-size: var(--role-eyebrow-size);
  font-weight: var(--weight-semibold); letter-spacing: var(--tracking-wider);
  text-transform: uppercase; color: var(--accent-text);
  display: inline-flex; align-items: center; gap: var(--space-3);
}
.ms-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); }
.ms-eyebrow--on-dark { color: var(--text-on-dark); }
.ms-chrome-text {
  background: var(--grad-chrome); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ms-rule { height: 1px; border: 0; background: var(--grad-chrome-h); opacity: 0.6; }

/* shared layout container (full-bleed with responsive gutters) */
.mr-container { width: 100%; max-width: none; margin-inline: auto; padding-inline: clamp(24px, 4vw, 72px); }
.mr-container--narrow { max-width: 900px; }
.mr-container--svcfaq { max-width: 880px; }

.u-visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============================================================
   3. DESIGN-SYSTEM COMPONENTS
   ============================================================ */

/* --- Button --- */
.mr-btn {
  --_h: var(--control-h-md); font-family: var(--font-body); font-weight: var(--weight-bold);
  font-size: var(--text-sm); letter-spacing: var(--tracking-wide); line-height: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  height: var(--_h); padding: 0 var(--space-6); border-radius: var(--radius-button);
  border: var(--border-width-strong) solid transparent; cursor: pointer; text-decoration: none;
  white-space: nowrap; transition: var(--transition-control); user-select: none;
}
.mr-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.mr-btn:disabled, .mr-btn[aria-disabled="true"] { opacity: .5; cursor: not-allowed; pointer-events: none; }
.mr-btn--sm { --_h: var(--control-h-sm); font-size: var(--text-xs); padding: 0 var(--space-4); }
.mr-btn--lg { --_h: var(--control-h-lg); font-size: var(--text-base); padding: 0 var(--space-8); }
.mr-btn--block { display: flex; width: 100%; }
.mr-btn__icon { display: inline-flex; }
.mr-btn__icon svg { width: 1.15em; height: 1.15em; display: block; }
.mr-btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.mr-btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.mr-btn--primary:active { background: var(--accent-press); border-color: var(--accent-press); box-shadow: var(--shadow-inset); transform: translateY(1px); }
.mr-btn--secondary { background: var(--surface-card); color: var(--text-strong); border-color: var(--border-strong); }
.mr-btn--secondary:hover { background: var(--steel-50); border-color: var(--steel-400); }
.mr-btn--secondary:active { background: var(--steel-100); box-shadow: var(--shadow-inset); transform: translateY(1px); }
.mr-btn--dark { background: var(--ink); color: var(--text-on-dark); border-color: var(--ink); }
.mr-btn--dark:hover { background: var(--steel-800); border-color: var(--steel-800); }
.mr-btn--dark:active { background: var(--black-pure); box-shadow: var(--shadow-inset); transform: translateY(1px); }
.mr-btn--ghost { background: transparent; color: var(--text-strong); border-color: transparent; }
.mr-btn--ghost:hover { background: var(--steel-100); }
.mr-btn--ghost:active { background: var(--steel-200); transform: translateY(1px); }
.mr-btn--onDark { background: rgba(255,255,255,.08); color: var(--text-on-dark); border-color: rgba(255,255,255,.28); }
.mr-btn--onDark:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); }
.mr-btn--onDark:active { background: rgba(255,255,255,.10); transform: translateY(1px); }

/* --- IconButton --- */
.mr-iconbtn {
  --_s: 44px; display: inline-flex; align-items: center; justify-content: center;
  width: var(--_s); height: var(--_s); border-radius: var(--radius-button);
  border: var(--border-width) solid transparent; background: transparent; color: var(--text-body);
  cursor: pointer; transition: var(--transition-control); padding: 0;
}
.mr-iconbtn svg { width: 20px; height: 20px; display: block; }
.mr-iconbtn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.mr-iconbtn--onDark { color: var(--text-on-dark); }
.mr-iconbtn--onDark:hover { background: rgba(255,255,255,.14); }

/* --- Badge --- */
.mr-badge {
  display: inline-flex; align-items: center; gap: var(--space-1); font-family: var(--font-body);
  font-weight: var(--weight-bold); font-size: var(--text-2xs); letter-spacing: var(--tracking-wide);
  text-transform: uppercase; line-height: 1; padding: 4px var(--space-3); border-radius: var(--radius-pill);
  border: var(--border-width) solid transparent; white-space: nowrap;
}
.mr-badge svg { width: 12px; height: 12px; }
.mr-badge--dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.mr-badge--neutral { background: var(--steel-100); color: var(--steel-700); }
.mr-badge--accent { background: var(--accent); color: #fff; }
.mr-badge--accentSoft { background: var(--accent-tint); color: var(--accent-text); }
.mr-badge--success { background: var(--success-bg); color: var(--success); }
.mr-badge--warning { background: var(--warning-bg); color: #9a6310; }
.mr-badge--info { background: var(--info-bg); color: var(--info); }
.mr-badge--outline { background: transparent; color: var(--text-body); border-color: var(--border-strong); }
.mr-badge--onDark { background: rgba(255,255,255,.12); color: var(--text-on-dark); }

/* --- Tag --- */
.mr-tag {
  display: inline-flex; align-items: center; gap: var(--space-2); font-family: var(--font-body);
  font-weight: var(--weight-semibold); font-size: var(--text-sm); line-height: 1;
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-tag);
  border: var(--border-width) solid var(--border-default); background: var(--surface-card);
  color: var(--text-body); cursor: default; transition: var(--transition-control);
}
.mr-tag--clickable { cursor: pointer; }
.mr-tag--clickable:hover { border-color: var(--steel-400); background: var(--steel-50); }
.mr-tag--selected { background: var(--ink); color: var(--text-on-dark); border-color: var(--ink); }
.mr-tag--selected:hover { background: var(--steel-800); border-color: var(--steel-800); }

/* --- Card --- */
.mr-card {
  display: flex; flex-direction: column; background: var(--surface-card);
  border-radius: var(--radius-card); box-shadow: var(--ring-hairline), var(--shadow-sm);
  overflow: hidden; transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  font-family: var(--font-body); color: var(--text-body);
}
.mr-card--hover { cursor: pointer; }
.mr-card--hover:hover { box-shadow: var(--ring-hairline), var(--shadow-lg); transform: translateY(-2px); }
.mr-card--flat { box-shadow: var(--ring-hairline); }
.mr-card__body { padding: var(--pad-card); display: flex; flex-direction: column; gap: var(--space-3); }

/* --- Avatar --- */
.mr-avatar {
  --_s: 44px; width: var(--_s); height: var(--_s); border-radius: var(--radius-pill);
  flex: none; display: inline-flex; align-items: center; justify-content: center; overflow: hidden;
  font-family: var(--font-head); font-weight: var(--weight-bold); background: var(--steel-200);
  color: var(--steel-700); user-select: none; box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}
.mr-avatar--lg { --_s: 56px; font-size: 20px; }
.mr-avatar--accent { background: var(--accent-tint); color: var(--accent-text); }
.mr-avatar--ink { background: var(--ink); color: var(--text-on-dark); }

/* --- Rating --- */
.mr-rating { display: inline-flex; align-items: center; gap: var(--space-2); font-family: var(--font-body); }
.mr-rating__stars { display: inline-flex; gap: 1px; color: var(--amber-500); }
.mr-rating__stars svg { width: var(--_sz, 18px); height: var(--_sz, 18px); display: block; }
.mr-rating__empty { color: var(--steel-300); }
.mr-rating--lg .mr-rating__stars svg { width: 22px; height: 22px; }
.mr-rating--sm .mr-rating__stars svg { width: 17px; height: 17px; }

/* --- StatBlock --- */
.mr-stat { display: flex; flex-direction: column; gap: var(--space-1); font-family: var(--font-body); }
.mr-stat__value { font-family: var(--font-head); font-weight: var(--weight-black);
  font-size: var(--text-5xl); line-height: 1; letter-spacing: var(--tracking-tight); color: var(--text-strong); }
.mr-stat--onDark .mr-stat__value { color: var(--text-on-dark); }
.mr-stat--chrome .mr-stat__value { background: var(--grad-chrome); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mr-stat--accent .mr-stat__value { color: var(--accent); }
.mr-stat--sm .mr-stat__value { font-size: var(--text-4xl); }
.mr-stat__label { font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--text-muted);
  text-transform: uppercase; letter-spacing: var(--tracking-wide); }
.mr-stat--onDark .mr-stat__label { color: var(--text-on-dark-muted); }

/* --- Accordion (chevron, used on home FAQ) --- */
.mr-acc { font-family: var(--font-body); border-top: 1px solid var(--border-default); }
.mr-acc__item { border-bottom: 1px solid var(--border-default); }
.mr-acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  background: transparent; border: 0; cursor: pointer; text-align: left;
  padding: var(--space-5) var(--space-1); font-family: var(--font-head);
  font-size: var(--text-lg); font-weight: var(--weight-semibold); color: var(--text-strong);
}
.mr-acc__btn:hover { color: var(--accent); }
.mr-acc__btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.mr-acc__chev { flex: none; width: 22px; height: 22px; color: var(--text-muted);
  transition: transform var(--dur-base) var(--ease-out); }
.mr-acc__item--open .mr-acc__chev { transform: rotate(180deg); color: var(--accent); }
.mr-acc__panel { overflow: hidden; height: 0; transition: height var(--dur-base) var(--ease-out); }
.mr-acc__inner { padding: 0 var(--space-1) var(--space-5); font-size: var(--text-base);
  line-height: var(--leading-relaxed); color: var(--text-body); max-width: 60ch; }

/* --- Form fields --- */
.mr-field, .mr-sel-field, .mr-ta-field { display: flex; flex-direction: column; gap: var(--space-2); font-family: var(--font-body); }
.mr-field__label, .mr-sel-field__label, .mr-ta-field__label { font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--text-strong); }
.mr-field__req, .mr-sel-field__req, .mr-ta-field__req { color: var(--accent); margin-left: 2px; }
.mr-field__wrap { position: relative; display: flex; align-items: center; }
.mr-field__icon { position: absolute; display: inline-flex; color: var(--text-muted); pointer-events: none; }
.mr-field__icon svg { width: 18px; height: 18px; }
.mr-field__icon--lead { left: var(--space-3); }
.mr-input {
  width: 100%; height: var(--control-h-md); font-family: var(--font-body); font-size: var(--text-base);
  color: var(--text-strong); background: var(--surface-card);
  border: var(--border-width) solid var(--border-strong); border-radius: var(--radius-input);
  padding: 0 var(--space-4); transition: var(--transition-control);
}
.mr-input::placeholder { color: var(--text-faint); }
.mr-input:hover { border-color: var(--steel-400); }
.mr-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--focus-ring); }
.mr-input--lead { padding-left: 40px; }
.mr-sel-wrap { position: relative; display: flex; align-items: center; }
.mr-sel-wrap::after {
  content: ""; position: absolute; right: var(--space-4); width: 10px; height: 10px;
  border-right: 2px solid var(--text-muted); border-bottom: 2px solid var(--text-muted);
  transform: translateY(-2px) rotate(45deg); pointer-events: none;
}
.mr-select {
  appearance: none; -webkit-appearance: none; width: 100%; height: var(--control-h-md);
  font-family: var(--font-body); font-size: var(--text-base); color: var(--text-strong);
  background: var(--surface-card); border: var(--border-width) solid var(--border-strong);
  border-radius: var(--radius-input); padding: 0 40px 0 var(--space-4); cursor: pointer;
  transition: var(--transition-control);
}
.mr-select:hover { border-color: var(--steel-400); }
.mr-select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--focus-ring); }
.mr-select[data-placeholder="true"] { color: var(--text-faint); }
.mr-textarea {
  width: 100%; min-height: 104px; resize: vertical; font-family: var(--font-body);
  font-size: var(--text-base); line-height: var(--leading-normal); color: var(--text-strong);
  background: var(--surface-card); border: var(--border-width) solid var(--border-strong);
  border-radius: var(--radius-input); padding: var(--space-3) var(--space-4); transition: var(--transition-control);
}
.mr-textarea::placeholder { color: var(--text-faint); }
.mr-textarea:hover { border-color: var(--steel-400); }
.mr-textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--focus-ring); }
/* radio */
.mr-radio { display: flex; align-items: flex-start; gap: var(--space-3); font-family: var(--font-body); cursor: pointer; }
.mr-radio input { position: absolute; opacity: 0; width: 0; height: 0; }
.mr-radio__dot {
  flex: none; width: 20px; height: 20px; margin-top: 1px;
  border: var(--border-width-strong) solid var(--border-strong); border-radius: var(--radius-pill);
  background: var(--surface-card); display: inline-flex; align-items: center; justify-content: center;
  transition: var(--transition-control);
}
.mr-radio__dot::after { content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); transform: scale(0); transition: var(--transition-control); }
.mr-radio:hover .mr-radio__dot { border-color: var(--steel-400); }
.mr-radio input:checked + .mr-radio__dot { border-color: var(--accent); }
.mr-radio input:checked + .mr-radio__dot::after { transform: scale(1); }
.mr-radio input:focus-visible + .mr-radio__dot { outline: 2px solid var(--accent); outline-offset: 2px; }
.mr-radio__text { font-size: var(--text-base); color: var(--text-body); line-height: 1.35; }
/* checkbox */
.mr-check { display: flex; align-items: flex-start; gap: var(--space-3); font-family: var(--font-body); cursor: pointer; }
.mr-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.mr-check__box {
  flex: none; width: 20px; height: 20px; margin-top: 1px;
  border: var(--border-width-strong) solid var(--border-strong); border-radius: var(--radius-xs);
  background: var(--surface-card); display: inline-flex; align-items: center; justify-content: center;
  transition: var(--transition-control); color: #fff;
}
.mr-check__box svg { width: 13px; height: 13px; opacity: 0; transform: scale(.6); transition: var(--transition-control); }
.mr-check:hover .mr-check__box { border-color: var(--steel-400); }
.mr-check input:checked + .mr-check__box { background: var(--accent); border-color: var(--accent); }
.mr-check input:checked + .mr-check__box svg { opacity: 1; transform: scale(1); }
.mr-check input:focus-visible + .mr-check__box { outline: 2px solid var(--accent); outline-offset: 2px; }
.mr-check__text { font-size: var(--text-base); color: var(--text-body); line-height: 1.35; }

/* --- SectionHead --- */
.mr-head { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.mr-head__title { font-family: var(--font-head); font-weight: 700; font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04; letter-spacing: -0.01em; color: var(--text-strong); margin: 0; }
.mr-head__lead { font-size: 18px; line-height: 1.6; max-width: 620px; color: var(--text-body); margin: 0; }
.mr-head--center { align-items: center; text-align: center; max-width: 620px; margin-inline: auto; }
.mr-head--on-dark .mr-head__title { color: var(--text-on-dark); }
.mr-head--on-dark .mr-head__lead { color: var(--text-on-dark-muted); }

/* ============================================================
   4. SITE LAYOUT
   ============================================================ */

/* --- Header / nav --- */
.mr-header { position: sticky; top: 0; z-index: 50; background: transparent;
  border-bottom: 1px solid transparent; transition: background .25s, border-color .25s, backdrop-filter .25s; }
.mr-header.is-scrolled { background: rgba(11,12,14,0.86); backdrop-filter: blur(10px); border-bottom-color: var(--border-dark); }
.mr-header__bar { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.mr-header__logo { display: flex; align-items: center; gap: 10px; }
.mr-header__logo img { height: 52px; width: auto; }
.mr-nav-desktop { display: flex; align-items: center; gap: 4px; }
.mr-navlink { font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--text-on-dark);
  padding: 8px 14px; border-radius: 6px; }
.mr-navlink:hover { color: var(--text-on-dark); opacity: .82; }
.mr-svcdrop { position: relative; }
.mr-svcdrop__trigger { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; background: none; border: 0;
  font-family: var(--font-body); }
.mr-svcdrop__caret { display: inline-flex; opacity: .8; transition: transform .2s; }
.mr-svcdrop__caret svg { width: 16px; height: 16px; }
.mr-svcdrop:hover .mr-svcdrop__caret, .mr-svcdrop:focus-within .mr-svcdrop__caret { transform: rotate(180deg); }
.mr-svcdrop__menu { position: absolute; top: calc(100% + 6px); left: 0; min-width: 290px; background: var(--ink);
  border: 1px solid var(--border-dark); border-radius: var(--radius-card); box-shadow: var(--shadow-xl);
  padding: 8px; display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden;
  transform: translateY(-6px); transition: opacity .18s var(--ease-out), transform .18s var(--ease-out), visibility .18s; }
.mr-svcdrop:hover .mr-svcdrop__menu, .mr-svcdrop:focus-within .mr-svcdrop__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mr-svcdrop__item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 8px; color: var(--text-on-dark); }
.mr-svcdrop__item:hover { background: rgba(255,255,255,.06); color: var(--text-on-dark); }
.mr-svcdrop__ico { flex: none; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.06);
  border: 1px solid var(--border-dark); color: var(--chrome-mid); display: flex; align-items: center; justify-content: center; }
.mr-svcdrop__ico svg { width: 18px; height: 18px; }
.mr-svcdrop__label { font-weight: 600; font-size: 15px; }
.mr-header__actions { display: flex; align-items: center; gap: 12px; }
.mr-header__phone { display: inline-flex; align-items: center; gap: 8px; color: var(--text-on-dark);
  font-weight: 700; font-size: 15px; white-space: nowrap; }
.mr-header__phone:hover { color: var(--text-on-dark); }
.mr-header__phone-ico { color: var(--accent); display: inline-flex; }
.mr-header__phone-ico svg { width: 18px; height: 18px; }
.mr-nav-mobile { display: none; }
.mr-mobilenav { display: none; background: var(--ink); border-top: 1px solid var(--border-dark); padding: 12px 24px 20px; }
.mr-mobilenav.is-open { display: block; }
.mr-mobilenav__svctoggle { width: 100%; border: 0; background: none; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; padding: 12px 0; color: var(--text-on-dark); font-weight: 600; font-size: 17px;
  border-bottom: 1px solid var(--border-dark); font-family: var(--font-body); }
.mr-mobilenav__svctoggle svg { width: 16px; height: 16px; transition: transform .2s; }
.mr-mobilenav__svctoggle.is-open svg { transform: rotate(180deg); }
.mr-mobilenav__svcmenu { display: none; padding: 6px 0 10px 6px; flex-direction: column; }
.mr-mobilenav__svcmenu.is-open { display: flex; }
.mr-mobilenav__svclink { padding: 11px 0; color: var(--text-on-dark-muted); font-weight: 600; font-size: 15.5px; }
.mr-mobilenav__link { display: block; padding: 12px 0; color: var(--text-on-dark); font-weight: 600; font-size: 17px;
  border-bottom: 1px solid var(--border-dark); }
.mr-mobilenav__cta { margin-top: 16px; }

/* --- Hero --- */
.mr-hero { position: relative; background: var(--black-pure); overflow: hidden; margin-top: -78px; }
.mr-hero__glow { position: absolute; top: 12%; right: -6%; width: 620px; height: 620px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(120,132,145,.16), transparent 70%); pointer-events: none; }
.mr-hero__grid { position: relative; padding-top: 128px; padding-bottom: 96px; display: grid;
  grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center; }
.mr-hero__copy { display: flex; flex-direction: column; gap: 22px; }
.mr-badgerow { display: flex; gap: 10px; flex-wrap: wrap; }
.mr-hero__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(38px, 5vw, 74px);
  line-height: 0.98; letter-spacing: -0.015em; color: var(--text-on-dark); margin: 0; text-wrap: balance; }
.mr-hero__lead { font-size: 20px; line-height: 1.55; color: var(--text-on-dark-muted); margin: 0; max-width: 540px; }
.mr-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
.mr-hero__trust { display: flex; align-items: center; gap: 16px; margin-top: 8px; color: var(--text-on-dark); flex-wrap: wrap; }
.mr-hero__trust-item { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.mr-hero__trust-item svg { width: 20px; height: 20px; color: var(--chrome-mid); }
.mr-hero__trust-sep { color: var(--border-dark); }
.mr-hero__trust-muted { color: var(--text-on-dark-muted); }
.mr-hero__photo { position: relative; border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-xl); aspect-ratio: 3 / 2; }
.mr-hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* --- TrustBar --- */
.mr-trust { background: var(--ink); border-bottom: 1px solid var(--border-dark); }
.mr-trust__inner { padding-top: 40px; padding-bottom: 40px; display: flex; flex-direction: column; gap: 28px; }
.mr-stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mr-creds { display: flex; gap: 32px; flex-wrap: wrap; }
.mr-cred { display: flex; align-items: center; gap: 10px; color: var(--text-on-dark-muted); }
.mr-cred svg { width: 20px; height: 20px; color: var(--chrome-mid); }
.mr-cred span { font-weight: 600; font-size: 15px; }

/* --- Services --- */
.mr-services { background: var(--surface-page); padding: 96px 0; }
.mr-services__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
  flex-wrap: wrap; margin-bottom: 44px; }
.mr-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mr-svc-card__media { position: relative; }
.mr-svc-card__media img { display: block; width: 100%; height: 150px; object-fit: cover; object-position: center; }
.mr-svc-card__ico { position: absolute; top: 14px; left: 14px; width: 46px; height: 46px; border-radius: 10px;
  background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); }
.mr-svc-card__ico svg { width: 24px; height: 24px; }
.mr-svc-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.mr-svc-card__title { font-family: var(--font-head); font-weight: 700; font-size: 23px; color: var(--text-strong); margin: 0; }
.mr-svc-card__copy { font-size: 14.5px; line-height: 1.55; color: var(--text-body); margin: 0; }
.mr-learnmore { display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; font-weight: 700; font-size: 14px; color: var(--accent-text); }
.mr-learnmore svg { width: 16px; height: 16px; }
.mr-services-grid .mr-card { display: flex; flex-direction: column; }
.mr-services-grid .mr-svc-card__body { flex: 1; }
.mr-services-grid .mr-learnmore { margin-top: auto; padding-top: 4px; }

/* --- Complete services list --- */
.mr-svc-list-wrap { margin-top: 28px; background: var(--surface-card); border: 1px solid var(--border-hairline);
  border-radius: var(--radius-card); box-shadow: var(--shadow-sm); padding: 32px 34px; }
.mr-svc-list-wrap__head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.mr-svc-list-wrap__title { font-family: var(--font-head); font-weight: 700; font-size: 26px; letter-spacing: .01em;
  color: var(--text-strong); margin: 0; }
.mr-svc-list-wrap__sub { font-size: 14.5px; color: var(--text-muted); margin: 0; }
.mr-svc-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr);
  column-gap: 36px; row-gap: 2px; }
.mr-svc-list__item { display: flex; align-items: center; gap: 13px; padding: 13px 4px;
  border-bottom: 1px solid var(--border-hairline); font-size: 16px; font-weight: 600; color: var(--text-strong); }
.mr-svc-list__chk { flex: none; width: 24px; height: 24px; border-radius: 7px; background: var(--accent-tint);
  color: var(--accent-text); display: flex; align-items: center; justify-content: center; }
.mr-svc-list__chk svg { width: 15px; height: 15px; }
@media (max-width: 700px) { .mr-svc-list { grid-template-columns: 1fr; } }

/* --- Drone inspection --- */
.mr-drone { background: var(--ink); padding: 96px 0; }
.mr-drone__grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 56px; align-items: center; }
.mr-drone__copy { display: flex; flex-direction: column; gap: 26px; }
.mr-benefits { display: flex; flex-direction: column; gap: 18px; }
.mr-benefit { display: flex; gap: 14px; align-items: flex-start; }
.mr-benefit__ico { flex: none; width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.06);
  border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; color: var(--chrome-mid); }
.mr-benefit__ico svg { width: 22px; height: 22px; }
.mr-benefit__t { font-weight: 700; color: var(--text-on-dark); font-size: 16.5px; }
.mr-benefit__s { color: var(--text-on-dark-muted); font-size: 14.5px; line-height: 1.5; }
.mr-drone__media { display: flex; flex-direction: column; gap: 20px; }
.mr-drone__feed { position: relative; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-xl); }
.mr-drone__feed img { display: block; width: 100%; height: 320px; object-fit: cover; object-position: center; }
.mr-livechip { position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px; background: rgba(11,12,14,.6); backdrop-filter: blur(4px); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.mr-livechip__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.mr-captures { background: var(--surface-raised); border: 1px solid var(--border-dark); border-radius: var(--radius-card); padding: 22px 24px; }
.mr-captures__title { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--chrome-mid); margin-bottom: 16px; }
.mr-drone-captures { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
.mr-capture { display: flex; align-items: center; gap: 10px; }
.mr-capture__chk { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; }
.mr-capture__chk svg { width: 14px; height: 14px; }
.mr-capture span:last-child { font-size: 14.5px; font-weight: 600; color: var(--text-on-dark); }

/* --- Gallery --- */
.mr-gallery { background: var(--surface-darkest); padding: 96px 0; }
.mr-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; margin-top: 36px; }
.mr-gallery-item { position: relative; border: 0; padding: 0; cursor: pointer; border-radius: var(--radius-card);
  overflow: hidden; background: none; }
.mr-gallery-item--wide { grid-column: span 2; }
.mr-gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.mr-gallery-item__scrim { position: absolute; inset: 0; background: var(--grad-scrim); }
.mr-gallery-item__title { position: absolute; left: 16px; bottom: 14px; text-align: left; font-family: var(--font-head);
  font-weight: 700; font-size: 19px; color: #fff; }

/* --- Lightbox --- */
.mr-lightbox { position: fixed; inset: 0; z-index: 80; background: rgba(7,8,9,.86); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 24px; }
.mr-lightbox.is-open { display: flex; }
.mr-lightbox__panel { width: min(880px, 94vw); background: var(--ink); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-xl); }
.mr-lightbox__panel img { display: block; width: 100%; max-height: 70vh; object-fit: contain; background: #0b0c0e; }
.mr-lightbox__foot { padding: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.mr-lightbox__title { font-family: var(--font-head); font-weight: 700; font-size: 26px; color: var(--text-on-dark); margin: 0; }

/* --- Before / After --- */
.mr-ba { background: var(--surface-page); padding: 96px 0; }
.mr-ba__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center; }
.mr-ba__copy { display: flex; flex-direction: column; gap: 22px; }
.mr-ba-meta { display: flex; flex-direction: column; gap: 12px; margin-top: 2px; }
.mr-ba-meta__item { display: flex; align-items: center; gap: 12px; }
.mr-ba-meta__ico { flex: none; width: 38px; height: 38px; border-radius: 9px; background: var(--accent-tint);
  color: var(--accent-text); display: flex; align-items: center; justify-content: center; }
.mr-ba-meta__ico svg { width: 19px; height: 19px; }
.mr-ba-meta__item span:last-child { font-weight: 600; font-size: 15.5px; color: var(--text-strong); }
.mr-compare { position: relative; width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-xl); cursor: ew-resize; touch-action: none; background: var(--ink); user-select: none; }
.mr-compare__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; user-select: none; pointer-events: none; }
.mr-compare__before { position: absolute; inset: 0; clip-path: inset(0 48% 0 0); }
.mr-compare__chip { position: absolute; bottom: 16px; padding: 6px 12px; border-radius: 999px; font-family: var(--font-body);
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; backdrop-filter: blur(4px); }
.mr-compare__chip--before { left: 16px; background: rgba(11,12,14,.6); color: #fff; }
.mr-compare__chip--after { right: 16px; background: var(--accent); color: #fff; }
/* chimney before/after side-by-side */
.mr-ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mr-ba-pane { position: relative; margin: 0; border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-xl); background: var(--ink); aspect-ratio: 3 / 4; }
.mr-ba-pane img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.mr-compare__handle { position: absolute; top: 0; bottom: 0; left: 52%; width: 2px; background: rgba(255,255,255,.9);
  box-shadow: 0 0 0 1px rgba(11,12,14,.25); transform: translateX(-1px); }
.mr-compare__knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px;
  border-radius: 50%; background: #fff; color: var(--ink); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); }
.mr-compare__knob svg { width: 22px; height: 22px; }
.mr-timelapse { margin-top: 72px; background: var(--ink); border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-xl); display: grid; grid-template-columns: 1.25fr 1fr; }
.mr-timelapse__media { position: relative; background: var(--black-pure); }
.mr-timelapse__media img { display: block; width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.mr-timelapse-copy { padding: 44px; display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.mr-timelapse-copy h3 { font-family: var(--font-head); font-weight: 700; font-size: 30px; line-height: 1.08;
  color: var(--text-on-dark); margin: 0; }
.mr-timelapse-copy p { font-size: 16.5px; line-height: 1.6; color: var(--text-on-dark-muted); margin: 0; }
.mr-timelapse__stats { display: flex; gap: 28px; margin-top: 6px; }
.mr-timelapse__stat-v { font-family: var(--font-head); font-weight: 800; font-size: 28px; color: var(--text-on-dark); }
.mr-timelapse__stat-l { font-size: 13px; color: var(--text-on-dark-muted); font-weight: 600; }
.mr-timelapse__divider { width: 1px; background: var(--border-dark); }

/* --- Reviews --- */
.mr-reviews { background: var(--surface-warm); padding: 96px 0; }
.mr-reviews__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.mr-reviews__rating { display: flex; flex-direction: column; gap: 4px; }

/* --- Service areas --- */
.mr-areas { background: var(--surface-page); padding: 96px 0; }
.mr-areas__hubwrap { display: flex; justify-content: center; margin-top: 34px; }
.mr-areas__hub { display: inline-flex; align-items: center; gap: 16px; padding: 16px 26px 16px 18px;
  background: var(--surface-card); border: 1px solid var(--border-hairline); border-left: 3px solid var(--accent);
  border-radius: var(--radius-card); box-shadow: var(--shadow-sm); }
.mr-areas__pin { display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 46px; height: 46px; border-radius: var(--radius-pill); background: var(--accent-tint); color: var(--accent-text); }
.mr-areas__pin svg { width: 23px; height: 23px; }
.mr-areas__hub-t { font-family: var(--font-head); font-weight: 700; font-size: 23px; line-height: 1.08; color: var(--text-strong); }
.mr-areas__hub-s { font-size: 14px; color: var(--text-muted); margin-top: 2px; }
.mr-areas__grid { list-style: none; margin: 32px 0 0; padding: 0; display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px; }
.mr-area { display: flex; align-items: center; gap: 10px; padding: 13px 16px; background: var(--surface-card);
  border: 1px solid var(--border-hairline); border-radius: var(--radius-md); box-shadow: var(--shadow-xs);
  font-weight: 600; font-size: 15.5px; color: var(--text-body); }
.mr-area svg { width: 16px; height: 16px; flex: none; color: var(--accent); stroke-width: 2; }
.mr-areas__note { margin: 28px 0 0; text-align: center; font-size: 15px; color: var(--text-muted); }
.mr-areas__note a { color: var(--accent-text); font-weight: 700; }
@media (max-width: 560px) { .mr-areas__grid { grid-template-columns: repeat(2, 1fr); } }

/* --- Credentials & affiliations band --- */
.mr-creds-band { background: var(--surface-card); padding: 88px 0;
  border-top: 1px solid var(--border-hairline); border-bottom: 1px solid var(--border-hairline); }
.mr-credgrid { margin-top: 42px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.mr-credlogo { display: flex; align-items: center; justify-content: center; padding: 24px;
  background: var(--white); border: 1px solid var(--border-hairline); border-radius: var(--radius-card); box-shadow: var(--shadow-xs); }
.mr-credlogo img { display: block; width: 100%; max-width: 168px; height: 120px; object-fit: contain; }
.mr-credtext { margin-top: 22px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.mr-credbadge { display: inline-flex; align-items: center; gap: 9px; padding: 10px 18px;
  background: var(--surface-sunken); border: 1px solid var(--border-hairline); border-radius: var(--radius-pill);
  font-weight: 600; font-size: 14.5px; color: var(--text-body); }
.mr-credbadge svg { width: 17px; height: 17px; flex: none; color: var(--accent); stroke-width: 2; }
@media (max-width: 980px) { .mr-credgrid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .mr-credgrid { grid-template-columns: repeat(2, 1fr); } }
.mr-reviews__rating span { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.mr-reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.mr-review-card { gap: 14px; }
.mr-review-card__top { display: flex; justify-content: space-between; align-items: flex-start; }
.mr-review-card__who { display: flex; align-items: center; gap: 12px; }
.mr-review-card__name { font-weight: 700; color: var(--text-strong); font-size: 16px; }
.mr-review-card__meta { font-size: 13px; color: var(--text-muted); }
.mr-review-card__quote { color: var(--steel-300); }
.mr-review-card__quote svg { width: 30px; height: 30px; }
.mr-review-card__text { font-size: 15.5px; line-height: 1.6; color: var(--text-body); margin: 0; }

/* --- Tagline --- */
.mr-tagline { position: relative; background: var(--black-pure); border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark); overflow: hidden; }
.mr-tagline__glow { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 720px; height: 220px;
  background: radial-gradient(60% 60% at 50% 50%, rgba(170,178,187,.12), transparent 70%); pointer-events: none; }
.mr-tagline__inner { position: relative; max-width: 900px; margin: 0 auto; padding: 76px 24px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 22px; }
.mr-tagline__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3.8vw, 46px);
  line-height: 1.12; letter-spacing: 0.02em; margin: 0; text-wrap: balance; }
.mr-tagline__divider { display: block; width: 180px; height: 1px; background: var(--grad-chrome-h); }
.mr-tagline__sub { font-family: var(--font-body); font-style: italic; font-weight: 400; font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 0.02em; color: var(--chrome-mid); margin: 0; }

/* --- Estimate form --- */
.mr-estimate { background: var(--ink); padding: 90px 0; }
.mr-estimate-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.mr-estimate__left { display: flex; flex-direction: column; gap: 26px; }
.mr-estimate__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.02; letter-spacing: -0.01em; color: var(--text-on-dark); margin: 0; }
.mr-estimate__lead { font-size: 18px; line-height: 1.6; color: var(--text-on-dark-muted); margin: 0; max-width: 440px; }
.mr-reassure { display: flex; flex-direction: column; gap: 18px; margin-top: 4px; }
.mr-reassure__item { display: flex; gap: 14px; align-items: flex-start; }
.mr-reassure__ico { flex: none; width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.06);
  border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; color: var(--chrome-mid); }
.mr-reassure__ico svg { width: 22px; height: 22px; }
.mr-reassure__t { font-weight: 700; color: var(--text-on-dark); font-size: 16px; }
.mr-reassure__s { color: var(--text-on-dark-muted); font-size: 14px; }
.mr-formcard { background: var(--surface-card); border-radius: var(--radius-card); box-shadow: var(--shadow-xl); padding: 32px; }
.mr-form__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.mr-form__head h3 { font-family: var(--font-head); font-weight: 700; font-size: 24px; color: var(--text-strong); margin: 0; }
.mr-progress { height: 4px; background: var(--steel-100); border-radius: 99px; margin-bottom: 24px; }
.mr-progress__fill { height: 100%; width: 50%; background: var(--accent); border-radius: 99px; transition: width .3s var(--ease-out); }
.mr-step { display: flex; flex-direction: column; gap: 18px; }
.mr-step--two { gap: 16px; }
.mr-radio-group { display: flex; flex-direction: column; gap: 10px; }
.mr-radio-group__label { font-size: 14px; font-weight: 600; color: var(--text-strong); margin-bottom: 10px; }
.mr-form__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mr-form__actions { display: flex; gap: 12px; margin-top: 26px; }
.mr-form__note { font-size: 12px; color: var(--text-muted); margin: 14px 0 0; text-align: center; }
.mr-form__success { text-align: center; padding: 24px 8px; }
.mr-form__success-ico { display: inline-flex; width: 72px; height: 72px; border-radius: 50%; background: var(--success-bg);
  color: var(--success); align-items: center; justify-content: center; margin-bottom: 18px; }
.mr-form__success-ico svg { width: 40px; height: 40px; }
.mr-form__success h3 { font-family: var(--font-head); font-weight: 700; font-size: 28px; color: var(--text-strong); margin: 0 0 8px; }
.mr-form__success p { color: var(--text-body); margin: 0 auto 22px; max-width: 360px; font-size: 16px; }
.mr-form__success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
[hidden] { display: none !important; }

/* --- FAQ --- */
.mr-faq { background: var(--surface-page); padding: 96px 0; }
.mr-faq__headwrap { text-align: center; margin-bottom: 40px; }
.mr-faq__foot { text-align: center; margin-top: 36px; }
.mr-faq__foot p { color: var(--text-muted); margin-bottom: 14px; }

/* --- FAQ page (faq.html) --- */
.mr-faqhero { background: var(--black-pure); margin-top: -78px; }
.mr-faqhero__inner { max-width: 780px; margin: 0 auto; padding-top: 138px; padding-bottom: 64px;
  display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.mr-faqhero .mr-crumb { justify-content: center; }
.mr-faqhero__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.0; letter-spacing: -0.015em; color: var(--text-on-dark); margin: 0; text-wrap: balance; }
.mr-faqhero__lead { font-size: 19px; line-height: 1.55; color: var(--text-on-dark-muted); margin: 0; max-width: 580px; }
.mr-faqhero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }

.mr-faqpage { background: var(--surface-page); padding: 84px 0; }
.mr-faqgroups { display: flex; flex-direction: column; gap: 60px; }
.mr-faqgroup__head { display: flex; align-items: baseline; gap: 16px; padding-bottom: 16px; margin-bottom: 6px;
  border-bottom: 2px solid var(--accent); }
.mr-faqgroup__n { flex: none; font-family: var(--font-head); font-weight: 800; font-size: 15px; letter-spacing: .06em;
  color: var(--accent); }
.mr-faqgroup__t { font-family: var(--font-head); font-weight: 800; font-size: clamp(23px, 2.6vw, 32px);
  line-height: 1.05; color: var(--text-strong); margin: 0; text-wrap: balance; }
@media (max-width: 560px) { .mr-faqgroups { gap: 44px; } }

/* --- Approach pillars (Inspect / Restore / Protect) --- */
.mr-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 44px 0 4px; }
.mr-pillar { background: var(--surface-card); border: 1px solid var(--border-hairline); border-top: 3px solid var(--accent);
  border-radius: var(--radius-card); box-shadow: var(--shadow-sm); padding: 30px 28px; display: flex; flex-direction: column; gap: 12px; }
.mr-pillar__step { font-family: var(--font-head); font-weight: 800; font-size: 14px; letter-spacing: .14em; color: var(--accent); }
.mr-pillar__t { font-family: var(--font-head); font-weight: 800; font-size: 27px; color: var(--text-strong); margin: 0;
  letter-spacing: .02em; text-transform: uppercase; line-height: 1; }
.mr-pillar__p { font-size: 15.5px; line-height: 1.62; color: var(--text-body); margin: 0; }
@media (max-width: 880px) { .mr-pillars { grid-template-columns: 1fr; } }

/* --- About band (Protecting what matters most) --- */
.mr-about { background: var(--surface-warm); padding: 96px 0; }
.mr-about__inner { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 22px; }
.mr-about__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(30px, 4vw, 50px); line-height: 1.04;
  letter-spacing: -0.015em; color: var(--text-strong); margin: 0; text-wrap: balance; }
.mr-about__body { display: flex; flex-direction: column; gap: 18px; }
.mr-about__body p { font-size: 18px; line-height: 1.7; color: var(--text-body); margin: 0; text-wrap: pretty; }
.mr-about__badges { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* --- Why Mission page --- */
.mr-why-sec { background: var(--surface-page); padding: 88px 0; }
.mr-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.mr-why-card { background: var(--surface-card); border: 1px solid var(--border-hairline); border-top: 3px solid var(--accent);
  border-radius: var(--radius-card); box-shadow: var(--shadow-sm); padding: 30px 30px; display: flex; flex-direction: column; gap: 14px; }
.mr-why-card__ico { width: 46px; height: 46px; border-radius: 12px; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; }
.mr-why-card__ico svg { width: 24px; height: 24px; }
.mr-why-card__t { font-family: var(--font-head); font-weight: 800; font-size: 23px; color: var(--text-strong); margin: 0; line-height: 1.1; }
.mr-why-card__p { font-size: 15.5px; line-height: 1.65; color: var(--text-body); margin: 0; }

.mr-diff-sec { background: var(--surface-sunken); padding: 88px 0; }
.mr-diff-list { display: flex; flex-direction: column; gap: 28px; margin-top: 44px; }
.mr-diff { background: var(--surface-card); border: 1px solid var(--border-hairline); border-radius: var(--radius-card);
  box-shadow: var(--shadow-md); overflow: hidden; display: grid; grid-template-columns: 1.12fr 0.88fr; }
.mr-diff__copy { padding: 36px 38px; display: flex; flex-direction: column; gap: 12px; }
.mr-diff__kicker { font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); }
.mr-diff__t { font-family: var(--font-head); font-weight: 800; font-size: clamp(24px, 2.6vw, 33px); color: var(--text-strong);
  margin: 0; line-height: 1.05; text-wrap: balance; }
.mr-diff__p { font-size: 16px; line-height: 1.66; color: var(--text-body); margin: 0; text-wrap: pretty; }
.mr-diff__side { background: var(--ink); padding: 36px 38px; display: flex; flex-direction: column; gap: 16px; }
.mr-diff__side-t { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--text-on-dark); letter-spacing: .02em; }
.mr-checklist { display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0; list-style: none; }
.mr-checklist li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; color: var(--text-on-dark-muted); }
.mr-checklist li svg { flex: none; width: 18px; height: 18px; color: var(--accent); margin-top: 1px; }
@media (max-width: 860px) {
  .mr-why-grid { grid-template-columns: 1fr; }
  .mr-diff { grid-template-columns: 1fr; }
}

/* --- Footer --- */
.mr-footer { background: var(--black-pure); color: var(--text-on-dark); }
.mr-footer__storm { border-bottom: 1px solid var(--border-dark); }
.mr-footer__storm-inner { padding-top: 40px; padding-bottom: 40px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.mr-footer__storm-left { display: flex; align-items: center; gap: 18px; }
.mr-footer__storm-ico { flex: none; width: 52px; height: 52px; border-radius: 12px; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; }
.mr-footer__storm-ico svg { width: 26px; height: 26px; }
.mr-footer__storm-t { font-family: var(--font-head); font-weight: 700; font-size: 26px; }
.mr-footer__storm-s { color: var(--text-on-dark-muted); }
.mr-footer__storm-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.mr-footer-grid { padding-top: 56px; padding-bottom: 32px; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.mr-footer__brand { display: flex; flex-direction: column; gap: 16px; max-width: 300px; }
.mr-footer__brand img { height: 78px; width: auto; align-self: flex-start; }
.mr-footer__brand p { color: var(--text-on-dark-muted); font-size: 14px; line-height: 1.6; margin: 0; }
.mr-footer__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.mr-footcol__h { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--chrome-mid); margin-bottom: 16px; }
.mr-footcol ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.mr-footcol a { color: var(--text-on-dark-muted); font-size: 14px; }
.mr-footcol a:hover { color: var(--text-on-dark); }
.mr-footer__bottom { border-top: 1px solid var(--border-dark); }
.mr-footer__bottom-inner { padding-top: 20px; padding-bottom: 20px; display: flex; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; color: var(--text-on-dark-muted); font-size: 13px; }
.mr-footer__legal { display: flex; gap: 20px; }
.mr-footer__legal a { color: inherit; }
.mr-footer__legal a:hover { color: var(--text-on-dark); }

/* ============================================================
   5. SERVICE PAGE LAYOUT
   ============================================================ */
.mr-svc-hero { background: var(--black-pure); overflow: hidden; margin-top: -78px; }
.mr-svc-hero__grid { padding-top: 128px; padding-bottom: 88px; display: grid; grid-template-columns: 1.04fr 0.96fr;
  gap: 56px; align-items: center; }
.mr-svc-hero__copy { display: flex; flex-direction: column; gap: 20px; }
.mr-crumb { display: flex; align-items: center; gap: 8px; color: var(--text-on-dark-muted); }
.mr-crumb a { color: var(--text-on-dark-muted); font-size: 13px; font-weight: 600; }
.mr-crumb a:hover { color: var(--text-on-dark); }
.mr-crumb__sep { opacity: .5; }
.mr-svc-hero__label { display: inline-flex; align-items: center; gap: 10px; }
.mr-svc-hero__label-ico { width: 42px; height: 42px; border-radius: 10px; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; }
.mr-svc-hero__label-ico svg { width: 22px; height: 22px; }
.mr-svc-hero__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.0; letter-spacing: -0.015em; color: var(--text-on-dark); margin: 0; text-wrap: balance; }
.mr-svc-hero__lead { font-size: 19px; line-height: 1.55; color: var(--text-on-dark-muted); margin: 0; max-width: 540px; }
.mr-svc-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
.mr-svc-hero__photo { position: relative; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-xl); aspect-ratio: 4 / 3; }
.mr-svc-hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.mr-svc-overview-sec { background: var(--surface-page); padding: 88px 0; }
.mr-svc-overview { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: start; }
.mr-svc-overview__copy { display: flex; flex-direction: column; gap: 20px; }
.mr-svc-overview__copy p { font-size: 17px; line-height: 1.65; color: var(--text-body); margin: 0; }
.mr-svc-facts { background: var(--surface-card); border: 1px solid var(--border-hairline); border-radius: var(--radius-card);
  box-shadow: var(--shadow-md); padding: 26px; display: flex; flex-direction: column; gap: 16px; }
.mr-svc-facts__title { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: var(--text-strong); }
.mr-svc-facts__row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid var(--border-hairline); }
.mr-svc-facts__row:first-of-type { border-top: 0; }
.mr-svc-facts__k { font-size: 14.5px; color: var(--text-muted); font-weight: 600; }
.mr-svc-facts__v { font-size: 14.5px; color: var(--text-strong); font-weight: 700; text-align: right; }

.mr-svc-features-sec { background: var(--surface-sunken); padding: 88px 0; }
.mr-svc-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.mr-svc-feature { background: var(--surface-card); border: 1px solid var(--border-hairline); border-radius: var(--radius-card);
  padding: 20px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-sm); }
.mr-svc-feature__chk { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; }
.mr-svc-feature__chk svg { width: 15px; height: 15px; }
.mr-svc-feature span:last-child { font-size: 14.5px; font-weight: 600; color: var(--text-strong); }

/* --- Inspection deep-dive content --- */
.mr-svc-content-sec { background: var(--surface-page); padding: 88px 0; }
.mr-svc-content { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.mr-svc-content__main { display: flex; flex-direction: column; gap: 18px; }
.mr-svc-content__main p { font-size: 17px; line-height: 1.65; color: var(--text-body); margin: 0; }
.mr-svc-content__sub { font-family: var(--font-head); font-weight: 700; font-size: 24px; letter-spacing: .01em;
  color: var(--text-strong); margin: 14px 0 2px; }
.mr-svc-checklist { list-style: none; margin: 4px 0 6px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.mr-svc-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; line-height: 1.5;
  font-weight: 600; color: var(--text-strong); }
.mr-svc-checklist__chk { flex: none; width: 24px; height: 24px; margin-top: 1px; border-radius: 7px;
  background: var(--accent-tint); color: var(--accent-text); display: flex; align-items: center; justify-content: center; }
.mr-svc-checklist__chk svg { width: 14px; height: 14px; }
.mr-svc-helps { list-style: none; margin: 4px 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.mr-svc-helps li { position: relative; padding-left: 22px; font-size: 16px; line-height: 1.55; color: var(--text-body); }
.mr-svc-helps li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--accent); }
.mr-svc-content__aside { position: sticky; top: 96px; background: var(--ink); border-radius: var(--radius-card);
  box-shadow: var(--shadow-md); padding: 32px 30px; display: flex; flex-direction: column; gap: 16px; }
.mr-svc-content__aside-h { font-family: var(--font-head); font-weight: 700; font-size: 22px; line-height: 1.25;
  color: var(--text-on-dark); margin: 0; }
.mr-svc-content__aside-p { font-size: 15px; line-height: 1.6; color: var(--text-on-dark-muted); margin: 0; }
.mr-svc-content__aside .mr-svc-facts__title { color: var(--chrome-hi); }
@media (max-width: 880px) { .mr-svc-content { grid-template-columns: 1fr; } .mr-svc-content__aside { position: static; } }

.mr-svc-process-sec { background: var(--ink); padding: 88px 0; }
.mr-svc-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.mr-svc-step { display: flex; flex-direction: column; gap: 12px; }
.mr-svc-step__num { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,.06);
  border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--chrome-hi); }
.mr-svc-step__t { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--text-on-dark); }
.mr-svc-step p { font-size: 14.5px; line-height: 1.55; color: var(--text-on-dark-muted); margin: 0; }

.mr-svc-faq-sec { background: var(--surface-page); padding: 88px 0; }
.mr-svcfaq { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.mr-svcfaq__item { background: var(--surface-card); border: 1px solid var(--border-hairline); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-sm); }
.mr-svcfaq__btn { width: 100%; border: 0; background: none; cursor: pointer; padding: 20px 22px; display: flex;
  align-items: center; justify-content: space-between; gap: 16px; text-align: left; font-family: var(--font-body); }
.mr-svcfaq__q { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--text-strong); }
.mr-svcfaq__sign { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--surface-sunken);
  color: var(--text-body); display: flex; align-items: center; justify-content: center; transition: background .15s;
  font-size: 20px; font-weight: 400; line-height: 1; }
.mr-svcfaq__item.is-open .mr-svcfaq__sign { background: var(--accent); color: #fff; }
.mr-svcfaq__a { margin: 0; padding: 0 22px 22px; font-size: 15.5px; line-height: 1.6; color: var(--text-body); }

.mr-svc-cta { background: var(--accent); }
.mr-svc-cta__inner { padding-top: 52px; padding-bottom: 52px; display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; }
.mr-svc-cta__h { font-family: var(--font-head); font-weight: 800; font-size: clamp(26px, 3vw, 38px); color: #fff; margin: 0 0 6px; line-height: 1.05; }
.mr-svc-cta__p { color: rgba(255,255,255,.9); font-size: 17px; margin: 0; }
.mr-svc-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.mr-svc-cta__btn { display: inline-flex; align-items: center; gap: 9px; border: 0; cursor: pointer; background: #fff;
  color: var(--accent-text); font-family: var(--font-body); font-weight: 700; font-size: 17px; padding: 14px 24px;
  border-radius: var(--radius-button); box-shadow: var(--shadow-md); text-decoration: none; }
.mr-svc-cta__btn svg { width: 20px; height: 20px; }
.mr-svc-cta__phone { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.5); font-family: var(--font-body); font-weight: 700; font-size: 17px;
  padding: 13px 22px; border-radius: var(--radius-button); }
.mr-svc-cta__phone:hover { color: #fff; }
.mr-svc-cta__phone svg { width: 18px; height: 18px; }

/* ============================================================
   6. RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .mr-services-grid { grid-template-columns: repeat(2, 1fr); }
  .mr-estimate-grid { grid-template-columns: 1fr; gap: 36px; }
  .mr-gallery-item { grid-column: span 2; }
  .mr-ba__grid { grid-template-columns: 1fr; gap: 36px; }
  .mr-timelapse { grid-template-columns: 1fr; }
  .mr-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .mr-drone__grid { grid-template-columns: 1fr; gap: 36px; }
  .mr-svc-features { grid-template-columns: repeat(2, 1fr); }
  .mr-svc-process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .mr-svc-hero__grid, .mr-svc-overview { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 820px) {
  .mr-nav-desktop { display: none; }
  .mr-nav-mobile { display: block; }
  .mr-stat-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .mr-reviews-grid, .mr-footer-grid { grid-template-columns: 1fr; }
  .mr-footer-grid { gap: 28px; }
  .mr-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .mr-gallery-item { grid-column: span 1; }
  .mr-timelapse-copy { padding: 32px 24px; }
  .mr-svc-features { grid-template-columns: repeat(2, 1fr); }
  .mr-svc-process { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .mr-form__pair { grid-template-columns: 1fr; }
  .mr-svc-features { grid-template-columns: 1fr; }
}


/* ============================================================
   WP EXPORT — externalized inline styles
   These rules replace former inline `style="..."` attributes so
   that NO HTML file carries an inline style. (See README §3.)
   ============================================================ */
.mr-svc-card__lead { display: block; color: var(--text-strong); font-family: var(--font-head); font-size: 16px; margin-bottom: 6px; }
.mr-svc-facts__title--spaced { margin-top: 4px; }
.mr-svc-content__aside .mr-svc-helps { margin-top: 2px; }
.mr-svc-content__aside .mr-svc-helps li { color: var(--text-on-dark-muted); }
/* gallery before/after split tile (replaces former inline styles on the chimney project) */
.mr-gallery-split { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; }
.mr-gallery-split__half { position: relative; overflow: hidden; display: block; }
.mr-compare__chip--top { top: 14px; bottom: auto; }
/* footer legal disclaimer band */
.mr-footer__disclaimer { border-top: 1px solid var(--border-dark); padding: 22px 0; }
.mr-footer__disclaimer p { max-width: none; margin: 0; font-size: 12px; line-height: 1.6; color: rgba(255, 255, 255, 0.55); }
