:root {
  --color-bg: #ffffff;
  --color-text: #0f172a;
  --color-muted: #64748b;
  --color-border: #e2e8f0;
  --color-accent: #2563eb;
  --max-width: 1100px;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --radius: 8px;
}
* { box-sizing: border-box; }
body {
  margin: 0; font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px; line-height: 1.6; color: var(--color-text); background: var(--color-bg);
}
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-md); }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { position: static; padding: 0.5rem; background: var(--color-accent); color: white; }
.site-header { border-bottom: 1px solid var(--color-border); padding: var(--space-md) 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); flex-wrap: wrap; }
.logo { font-weight: 700; font-size: 1.25rem; color: var(--color-text); text-decoration: none; }
.nav { list-style: none; margin: 0; padding: 0; display: flex; gap: var(--space-md); }
.nav a { color: var(--color-muted); text-decoration: none; font-weight: 500; }
.nav a:hover { color: var(--color-accent); }
.hero { text-align: center; padding: var(--space-xl) 0; background: #f8fafc; }
.hero-headline { font-size: clamp(2rem, 5vw, 3.25rem); margin: 0 0 var(--space-md); }
.hero-subhead { color: var(--color-muted); max-width: 640px; margin: 0 auto; }
.body { padding: 0; }
.body h2 { font-size: 1.75rem; }
.site-footer { border-top: 1px solid var(--color-border); padding: var(--space-lg) 0; text-align: center; color: var(--color-muted); }

/* Neat lumps shared styles */

.site-footer p { margin: 0; }
.block { width: 100%; padding: var(--space-xl) 0; }
.block + .block { border-top: 1px solid var(--color-border); }
.block-inner {
  width: min(100%, var(--content-width, var(--max-width)));
  max-width: var(--content-width, var(--max-width));
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Neat typography shared styles */
:root {
  --sb-active-text-color: initial;
}
body {
  font-family: var(--font-p);
  font-weight: var(--weight-p);
  font-size: var(--size-p, 1rem);
  line-height: var(--lineheight-p, 1.6);
  color: var(--sb-active-text-color, var(--text-color-p, var(--color-text)));
}
:where(p, li, blockquote p, figcaption, td, dd) {
  font-family: var(--font-p);
  font-weight: var(--weight-p);
  font-size: var(--size-p, 1rem);
  line-height: var(--lineheight-p, 1.6);
  color: var(--sb-active-text-color, var(--text-color-p, inherit));
  text-transform: var(--text-transform-p, none);
  text-align: var(--text-align-p, start);
  text-indent: var(--text-indent-p, 0);
}
h1 {
  font-family: var(--font-h1);
  font-weight: var(--weight-h1);
  font-size: var(--size-h1, 2.25rem);
  line-height: var(--lineheight-h1, 1.2);
  color: var(--sb-active-text-color, var(--text-color-h1, inherit));
  text-transform: var(--text-transform-h1, none);
  text-align: var(--text-align-h1, start);
  text-indent: var(--text-indent-h1, 0);
}
h2 {
  font-family: var(--font-h2);
  font-weight: var(--weight-h2);
  font-size: var(--size-h2, 1.875rem);
  line-height: var(--lineheight-h2, 1.25);
  color: var(--sb-active-text-color, var(--text-color-h2, inherit));
  text-transform: var(--text-transform-h2, none);
  text-align: var(--text-align-h2, start);
  text-indent: var(--text-indent-h2, 0);
}
h3 {
  font-family: var(--font-h3);
  font-weight: var(--weight-h3);
  font-size: var(--size-h3, 1.5rem);
  line-height: var(--lineheight-h3, 1.3);
  color: var(--sb-active-text-color, var(--text-color-h3, inherit));
  text-transform: var(--text-transform-h3, none);
  text-align: var(--text-align-h3, start);
  text-indent: var(--text-indent-h3, 0);
}
h4 {
  font-family: var(--font-h4);
  font-weight: var(--weight-h4);
  font-size: var(--size-h4, 1.25rem);
  line-height: var(--lineheight-h4, 1.35);
  color: var(--sb-active-text-color, var(--text-color-h4, inherit));
  text-transform: var(--text-transform-h4, none);
  text-align: var(--text-align-h4, start);
  text-indent: var(--text-indent-h4, 0);
}
h5 {
  font-family: var(--font-h5);
  font-weight: var(--weight-h5);
  font-size: var(--size-h5, 1.125rem);
  line-height: var(--lineheight-h5, 1.4);
  color: var(--sb-active-text-color, var(--text-color-h5, inherit));
  text-transform: var(--text-transform-h5, none);
  text-align: var(--text-align-h5, start);
  text-indent: var(--text-indent-h5, 0);
}
h6 {
  font-family: var(--font-h6);
  font-weight: var(--weight-h6);
  font-size: var(--size-h6, 1rem);
  line-height: var(--lineheight-h6, 1.4);
  color: var(--sb-active-text-color, var(--text-color-h6, inherit));
  text-transform: var(--text-transform-h6, none);
  text-align: var(--text-align-h6, start);
  text-indent: var(--text-indent-h6, 0);
}
:where(.ux-text, .ux, [data-sb-text-style="ux"], small, .eyebrow, .overline) {
  font-family: var(--font-ux);
  font-weight: var(--weight-ux);
  font-size: var(--size-ux, 0.875rem);
  line-height: var(--lineheight-ux, 1.4);
  color: var(--sb-active-text-color, var(--text-color-ux, var(--color-muted)));
  text-transform: var(--text-transform-ux, none);
  text-align: var(--text-align-ux, start);
  text-indent: var(--text-indent-ux, 0);
}

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-1)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-1)"] { --sb-active-text-color: var(--text-on-color-1, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-2)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-2)"] { --sb-active-text-color: var(--text-on-color-2, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-3)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-3)"] { --sb-active-text-color: var(--text-on-color-3, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-4)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-4)"] { --sb-active-text-color: var(--text-on-color-4, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-5)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-5)"] { --sb-active-text-color: var(--text-on-color-5, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-6)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-6)"] { --sb-active-text-color: var(--text-on-color-6, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--light-1)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--light-1)"] { --sb-active-text-color: var(--text-on-light-1, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--light-2)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--light-2)"] { --sb-active-text-color: var(--text-on-light-2, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--light-3)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--light-3)"] { --sb-active-text-color: var(--text-on-light-3, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--light-4)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--light-4)"] { --sb-active-text-color: var(--text-on-light-4, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--light-5)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--light-5)"] { --sb-active-text-color: var(--text-on-light-5, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--light-6)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--light-6)"] { --sb-active-text-color: var(--text-on-light-6, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--dark-1)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--dark-1)"] { --sb-active-text-color: var(--text-on-dark-1, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--dark-2)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--dark-2)"] { --sb-active-text-color: var(--text-on-dark-2, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--dark-3)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--dark-3)"] { --sb-active-text-color: var(--text-on-dark-3, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--dark-4)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--dark-4)"] { --sb-active-text-color: var(--text-on-dark-4, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--dark-5)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--dark-5)"] { --sb-active-text-color: var(--text-on-dark-5, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--dark-6)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--dark-6)"] { --sb-active-text-color: var(--text-on-dark-6, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-1-light-1)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-1-light-1)"] { --sb-active-text-color: var(--text-on-color-1-light-1, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-1-light-2)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-1-light-2)"] { --sb-active-text-color: var(--text-on-color-1-light-2, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-1-light-3)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-1-light-3)"] { --sb-active-text-color: var(--text-on-color-1-light-3, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-1-light-4)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-1-light-4)"] { --sb-active-text-color: var(--text-on-color-1-light-4, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-1-light-5)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-1-light-5)"] { --sb-active-text-color: var(--text-on-color-1-light-5, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-1-light-6)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-1-light-6)"] { --sb-active-text-color: var(--text-on-color-1-light-6, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-1-dark-1)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-1-dark-1)"] { --sb-active-text-color: var(--text-on-color-1-dark-1, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-1-dark-2)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-1-dark-2)"] { --sb-active-text-color: var(--text-on-color-1-dark-2, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-1-dark-3)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-1-dark-3)"] { --sb-active-text-color: var(--text-on-color-1-dark-3, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-1-dark-4)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-1-dark-4)"] { --sb-active-text-color: var(--text-on-color-1-dark-4, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-1-dark-5)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-1-dark-5)"] { --sb-active-text-color: var(--text-on-color-1-dark-5, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-1-dark-6)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-1-dark-6)"] { --sb-active-text-color: var(--text-on-color-1-dark-6, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-2-light-1)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-2-light-1)"] { --sb-active-text-color: var(--text-on-color-2-light-1, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-2-light-2)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-2-light-2)"] { --sb-active-text-color: var(--text-on-color-2-light-2, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-2-light-3)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-2-light-3)"] { --sb-active-text-color: var(--text-on-color-2-light-3, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-2-light-4)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-2-light-4)"] { --sb-active-text-color: var(--text-on-color-2-light-4, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-2-light-5)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-2-light-5)"] { --sb-active-text-color: var(--text-on-color-2-light-5, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-2-light-6)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-2-light-6)"] { --sb-active-text-color: var(--text-on-color-2-light-6, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-2-dark-1)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-2-dark-1)"] { --sb-active-text-color: var(--text-on-color-2-dark-1, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-2-dark-2)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-2-dark-2)"] { --sb-active-text-color: var(--text-on-color-2-dark-2, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-2-dark-3)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-2-dark-3)"] { --sb-active-text-color: var(--text-on-color-2-dark-3, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-2-dark-4)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-2-dark-4)"] { --sb-active-text-color: var(--text-on-color-2-dark-4, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-2-dark-5)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-2-dark-5)"] { --sb-active-text-color: var(--text-on-color-2-dark-5, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-2-dark-6)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-2-dark-6)"] { --sb-active-text-color: var(--text-on-color-2-dark-6, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-3-light-1)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-3-light-1)"] { --sb-active-text-color: var(--text-on-color-3-light-1, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-3-light-2)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-3-light-2)"] { --sb-active-text-color: var(--text-on-color-3-light-2, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-3-light-3)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-3-light-3)"] { --sb-active-text-color: var(--text-on-color-3-light-3, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-3-light-4)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-3-light-4)"] { --sb-active-text-color: var(--text-on-color-3-light-4, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-3-light-5)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-3-light-5)"] { --sb-active-text-color: var(--text-on-color-3-light-5, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-3-light-6)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-3-light-6)"] { --sb-active-text-color: var(--text-on-color-3-light-6, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-3-dark-1)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-3-dark-1)"] { --sb-active-text-color: var(--text-on-color-3-dark-1, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-3-dark-2)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-3-dark-2)"] { --sb-active-text-color: var(--text-on-color-3-dark-2, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-3-dark-3)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-3-dark-3)"] { --sb-active-text-color: var(--text-on-color-3-dark-3, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-3-dark-4)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-3-dark-4)"] { --sb-active-text-color: var(--text-on-color-3-dark-4, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-3-dark-5)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-3-dark-5)"] { --sb-active-text-color: var(--text-on-color-3-dark-5, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-3-dark-6)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-3-dark-6)"] { --sb-active-text-color: var(--text-on-color-3-dark-6, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-4-light-1)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-4-light-1)"] { --sb-active-text-color: var(--text-on-color-4-light-1, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-4-light-2)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-4-light-2)"] { --sb-active-text-color: var(--text-on-color-4-light-2, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-4-light-3)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-4-light-3)"] { --sb-active-text-color: var(--text-on-color-4-light-3, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-4-light-4)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-4-light-4)"] { --sb-active-text-color: var(--text-on-color-4-light-4, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-4-light-5)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-4-light-5)"] { --sb-active-text-color: var(--text-on-color-4-light-5, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-4-light-6)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-4-light-6)"] { --sb-active-text-color: var(--text-on-color-4-light-6, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-4-dark-1)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-4-dark-1)"] { --sb-active-text-color: var(--text-on-color-4-dark-1, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-4-dark-2)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-4-dark-2)"] { --sb-active-text-color: var(--text-on-color-4-dark-2, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-4-dark-3)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-4-dark-3)"] { --sb-active-text-color: var(--text-on-color-4-dark-3, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-4-dark-4)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-4-dark-4)"] { --sb-active-text-color: var(--text-on-color-4-dark-4, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-4-dark-5)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-4-dark-5)"] { --sb-active-text-color: var(--text-on-color-4-dark-5, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-4-dark-6)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-4-dark-6)"] { --sb-active-text-color: var(--text-on-color-4-dark-6, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-5-light-1)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-5-light-1)"] { --sb-active-text-color: var(--text-on-color-5-light-1, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-5-light-2)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-5-light-2)"] { --sb-active-text-color: var(--text-on-color-5-light-2, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-5-light-3)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-5-light-3)"] { --sb-active-text-color: var(--text-on-color-5-light-3, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-5-light-4)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-5-light-4)"] { --sb-active-text-color: var(--text-on-color-5-light-4, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-5-light-5)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-5-light-5)"] { --sb-active-text-color: var(--text-on-color-5-light-5, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-5-light-6)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-5-light-6)"] { --sb-active-text-color: var(--text-on-color-5-light-6, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-5-dark-1)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-5-dark-1)"] { --sb-active-text-color: var(--text-on-color-5-dark-1, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-5-dark-2)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-5-dark-2)"] { --sb-active-text-color: var(--text-on-color-5-dark-2, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-5-dark-3)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-5-dark-3)"] { --sb-active-text-color: var(--text-on-color-5-dark-3, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-5-dark-4)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-5-dark-4)"] { --sb-active-text-color: var(--text-on-color-5-dark-4, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-5-dark-5)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-5-dark-5)"] { --sb-active-text-color: var(--text-on-color-5-dark-5, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-5-dark-6)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-5-dark-6)"] { --sb-active-text-color: var(--text-on-color-5-dark-6, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-6-light-1)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-6-light-1)"] { --sb-active-text-color: var(--text-on-color-6-light-1, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-6-light-2)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-6-light-2)"] { --sb-active-text-color: var(--text-on-color-6-light-2, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-6-light-3)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-6-light-3)"] { --sb-active-text-color: var(--text-on-color-6-light-3, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-6-light-4)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-6-light-4)"] { --sb-active-text-color: var(--text-on-color-6-light-4, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-6-light-5)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-6-light-5)"] { --sb-active-text-color: var(--text-on-color-6-light-5, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-6-light-6)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-6-light-6)"] { --sb-active-text-color: var(--text-on-color-6-light-6, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-6-dark-1)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-6-dark-1)"] { --sb-active-text-color: var(--text-on-color-6-dark-1, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-6-dark-2)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-6-dark-2)"] { --sb-active-text-color: var(--text-on-color-6-dark-2, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-6-dark-3)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-6-dark-3)"] { --sb-active-text-color: var(--text-on-color-6-dark-3, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-6-dark-4)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-6-dark-4)"] { --sb-active-text-color: var(--text-on-color-6-dark-4, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-6-dark-5)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-6-dark-5)"] { --sb-active-text-color: var(--text-on-color-6-dark-5, inherit); }

:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color: var(--color-6-dark-6)"],
:where(section, header, footer, nav, article, aside, main, [data-sb-container]):not([data-sb-element]):not([data-sb-image])[style*="background-color:var(--color-6-dark-6)"] { --sb-active-text-color: var(--text-on-color-6-dark-6, inherit); }
.body > p:first-of-type::first-letter,
.body > article > p:first-of-type::first-letter,
article > p:first-of-type::first-letter {
  float: var(--dropcap-float-p, none);
  font-size: var(--dropcap-size-p, inherit);
  line-height: var(--dropcap-line-height-p, inherit);
  padding-right: var(--dropcap-padding-p, 0);
}
:where(.ux-text, .ux, [data-sb-text-style="ux"]):first-of-type::first-letter {
  float: var(--dropcap-float-ux, none);
  font-size: var(--dropcap-size-ux, inherit);
  line-height: var(--dropcap-line-height-ux, inherit);
  padding-right: var(--dropcap-padding-ux, 0);
}
/* Neat panels shared styles */
.block { width: 100%; padding: var(--space-xl) 0; }
.block + .block { border-top: 1px solid var(--color-border); }
.block-inner {
  width: min(100%, var(--content-width, var(--max-width)));
  max-width: var(--content-width, var(--max-width));
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* === RUD site overrides — pulled from Styling_Info.md === */

/* Base */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-base);
  color: var(--color-text);
  background: var(--color-bg);
}

/* All panel image-bearing divs cover their slot with a single centered fill,
   never tile. Without this, small images repeat and large images overflow.
   Panel-shipped <style> blocks use `background:` shorthand which resets these
   longhands — bump specificity via attribute selector (any element with
   data-sb-image OR an inline background-image style) and !important so the
   inline panel css can't strip these. */
[data-sb-image],
[style*="background-image"],
.nl-card-visual,
.nl-logo,
.nl-split-image,
.nl-split-visual,
.nl-product-tile-visual,
.nl-feature-icon,
.nl-testimonials-grid .nl-testimonial-avatar {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Headings */
h1, h2, h3, h4 { font-family: var(--font-h1); color: var(--color-heading); }
h1 { font-size: 60px; font-weight: 700; line-height: 1.1; text-align: center; }
h2 { font-size: 54px; font-weight: 600; line-height: 1.2; text-align: center; }
h3 { font-size: 25px; font-weight: 700; text-align: left; color: #3A3A4A; }

/* H4 default: dark-navy Playfair (body context). Footer scope overrides to white. */
body h4 {
  font-family: var(--font-h4, "Playfair Display", Georgia, serif);
  font-size: 22px;
  font-weight: 700;
  color: #3A3A4A;
  text-align: left;
}

/* Eyebrow (H5) */
h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

/* Buttons */
.btn-pill,
.cta-btn-call-cta {
  background: var(--color-accent);
  color: var(--color-heading);
  border-radius: 9999px;
  padding: 14px 26px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
.btn-square,
.cta-btn-contact-sms,
.cta-btn-contact-us,
.cta-btn-learn-more,
.cta-btn-submit-message {
  background: var(--color-accent);
  color: #ffffff;
  border-radius: 0;
  padding: 18px 24px;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
}

/* Form inputs */
input[type=text], input[type=email], input[type=tel], textarea {
  background: rgba(120,120,120,0.34);
  border: none;
  border-radius: 3px;
  padding: 8px 9px;
  color: #ffffff;
  font-size: 14px;
}

/* Block container */
.block-inner { max-width: 1140px; margin: 0 auto; }

/* Hero */
.nl-hero { background: #000; padding: 215px 0 100px; }
.nl-hero h1 { color: #fff; }

/* Cards — borderless flat (image bleeds to edges, white bg, no card padding) */
.nl-cards { padding: 35px 0 80px; }
.nl-cards h2 { text-align: center; }
.nl-cards-eyebrow {
  color: #FAB300;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0 0 10px;
  text-align: center;
}
.nl-cards-intro {
  text-align: center;
  color: #787878;
  font-size: 15px;
  max-width: 38rem;
  margin: 12px auto 0;
}
.nl-cards .nl-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 36px;
}
/* Bump specificity (.nl-cards .nl-card) so panel-shipped inline <style>
   (.nl-card { ... }) can't override the borderless flat look. */
.nl-cards .nl-card {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nl-cards .nl-card-visual {
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: 0;
  background-color: #f2f2f2; /* fallback before image loads */
}
.nl-cards .nl-card h3,
.nl-cards .nl-card h4 {
  font-size: 25px;
  font-weight: 700;
  color: #3A3A4A;
  text-align: left;
  margin: 0 0 4px;
  font-family: var(--font-h1, "Playfair Display", Georgia, serif);
}
.nl-cards .nl-card-kicker {
  font-size: 14px;
  color: #FAB300;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: 0.4px;
}
.nl-cards .nl-card-copy {
  font-size: 15px;
  line-height: 1.7;
  color: #787878;
  margin: 0;
}
@media (max-width: 900px) {
  .nl-cards .nl-cards-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Logo strip */
.nl-logo-strip { padding: 30px 0 30px; text-align: center; }
.nl-logo-strip-eyebrow {
  color: #FAB300;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.nl-logo-strip h2 { text-align: center; margin: 0 0 10px; }
.nl-logo-strip-body {
  text-align: center;
  color: #787878;
  font-size: 15px;
  max-width: 42rem;
  margin: 0 auto 24px;
}
.nl-logo-strip-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.nl-logo {
  width: 140px;
  height: 80px;
  /* Hide the slot text — the image is the logo. */
  font-size: 0;
  color: transparent;
}

/* Side-by-side — dark variant (bg image) */
.nl-side-by-side--dark { padding: 120px 0 150px; background-size: cover; background-position: center; }
.nl-side-by-side--dark h2, .nl-side-by-side--dark p { color: #fff; }

/* Side-by-side — light variant */
.nl-side-by-side { padding: 40px 0 100px; }
.nl-split { padding: 40px 0 100px; }
.nl-split .block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.nl-split-visual { width: 100%; }
.nl-split-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #f2f2f2;
  border-radius: 2px;
}
.nl-split-visual-title {
  margin: 12px 0 2px;
  font-size: 14px;
  color: #3A3A4A;
  font-weight: 700;
}
.nl-split-visual-caption {
  margin: 0;
  font-size: 13px;
  color: #787878;
}
.nl-split-content { text-align: left; }
.nl-split-eyebrow {
  color: #FAB300;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.nl-split-content h2 {
  text-align: left;
  margin: 0 0 18px;
}
.nl-split-copy {
  font-size: 15px;
  line-height: 1.7;
  color: #787878;
  margin: 0 0 14px;
}
.nl-split-support {
  font-size: 14px;
  color: #787878;
  margin: 0 0 18px;
}
.nl-split-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
@media (max-width: 900px) {
  .nl-split .block-inner { grid-template-columns: 1fr; }
}

/* Features (3-column) */
.nl-features { padding: 40px 0 100px; }
.nl-features-head { text-align: center; max-width: 46rem; margin: 0 auto 36px; }
.nl-features-eyebrow {
  color: #FAB300;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.nl-features-head h2 { text-align: center; margin: 0 0 12px; }
.nl-features-body {
  font-size: 15px;
  line-height: 1.7;
  color: #787878;
  margin: 0;
}
.nl-features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.nl-feature-item { text-align: left; }
.nl-feature-item h3,
.nl-feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #3A3A4A;
  margin: 0 0 6px;
  text-align: left;
  font-family: var(--font-h1, "Playfair Display", Georgia, serif);
}
.nl-feature-item p,
.nl-feature-body {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #787878;
}
.nl-feature-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}
@media (max-width: 900px) {
  .nl-features-list { grid-template-columns: 1fr; }
}

/* FAQ */
.nl-faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}
.nl-faq-item {
  background: #ffffff;
  border-radius: 4px;
  padding: 22px 26px;
  border: 1px solid #eaeaea;
}
.nl-faq-question {
  font-size: 17px;
  font-weight: 700;
  color: #3A3A4A;
  margin: 0 0 8px;
  font-family: var(--font-h1, "Playfair Display", Georgia, serif);
}
.nl-faq-answer {
  font-size: 15px;
  line-height: 1.7;
  color: #787878;
  margin: 0;
}

/* Testimonials */
.nl-testimonials { padding: 35px 0 5px; }

/* === end RUD site overrides === */

/* === RUD per-page nuances === */

/* Product Tiles (used on roll-up-doors and openers nav pages).
   The panel ships an inline <style> block, but RUD pages reference the markup
   without re-pulling those styles when an external editor saves changes, so we
   mirror the essentials here for stable cross-page rendering. */
.nl-product-tiles { padding: clamp(4rem, 8vw, 6rem) 0; }
.nl-product-tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.75rem);
}
.nl-product-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  background: #f2f2f2;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.nl-product-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}
.nl-product-tile-visual {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
}
.nl-product-tile h3 {
  margin: 1rem 1.1rem 0.35rem;
  font-size: 22px;
  font-weight: 700;
  color: #3A3A4A;
  text-align: left;
}
.nl-product-tile a {
  display: inline-block;
  margin: 0 1.1rem 1.1rem;
  color: #FAB300;
  font-weight: 600;
  text-decoration: none;
}
.nl-product-tile a:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .nl-product-tiles-grid { grid-template-columns: 1fr; }
  .nl-product-tile-visual { aspect-ratio: 16 / 10; }
}

/* Commercial-doors page — long page (8+ panels). Add gentle bg alternation
   so the wall of `features` blocks doesn't read as one beige slab.
   Scoped: only applies when these specific data-sb-block panels follow each
   other; uses :nth-of-type within the body wrapper. */
.body > .nl-features:nth-of-type(even) { background: #f2f2f2; }
.body > .nl-features:nth-of-type(odd)  { background: #ffffff; }

/* The faq panel that closes the commercial-doors page should feel airy. */
.nl-faq { padding: 60px 0 100px; background: #f2f2f2; }
.nl-faq h2 { text-align: center; margin-bottom: 30px; }

/* Contact page — the body slot contains a single text block carrying the
   shop address + hours. Style it like a location card so it doesn't look
   like raw prose. */
.nl-text h2 { text-align: left; }
.nl-text h3 { margin-top: 24px; }
.nl-text p a[href^="tel:"] { color: #FAB300; font-weight: 700; }
.nl-text p a[href^="https://maps."] {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 26px;
  background: #FAB300;
  color: #3A3A4A;
  font-weight: 700;
  text-decoration: none;
  border-radius: 9999px;
}

/* Roll-up-doors product nav hero — the product-tiles lump at the top of the
   page reads as a hero-like selector. Tighten its top padding and lift the
   header text. */
.body > .nl-product-tiles:first-of-type { padding-top: 80px; }
.body > .nl-product-tiles:first-of-type .nl-product-tiles-head h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
}

/* Home page — testimonials sits right above a side-by-side service-area
   panel. The MD calls for a soft gray bg behind the service-area split so it
   reads as a "where we roll" section, not another testimonial. */
.nl-split-areas { background: #f2f2f2; padding: 80px 0 100px; }

/* === end RUD per-page nuances === */

/* === RUD header + footer === */

/* --- Top utility bar (above site-header) ---
   Near-black band with address, phone, Google rating, centered horizontally.
   Mirrors the live rollupdoorsutah.com header strip.
   Mobile (<=720px): hidden — saves vertical space; address/phone live in
   the footer Shop Location block. */
.site-utility-bar {
  background: #0d0d0d;
  color: #d8d8d8;
  font-size: 13px;
  line-height: 1.4;
}
.site-utility-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.site-utility-bar a {
  color: #d8d8d8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s ease;
}
.site-utility-bar a:hover,
.site-utility-bar a:focus {
  color: #FAB300;
}
.site-utility-icon {
  color: #FAB300;
  flex-shrink: 0;
}
.site-utility-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.site-utility-stars {
  color: #FAB300;
  letter-spacing: 1px;
  font-size: 14px;
}
@media (max-width: 720px) {
  .site-utility-bar { display: none; }
}

/* --- Site header --- */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  padding: 0;
}
.site-header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img {
  height: 60px;
  width: auto;
  display: block;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.site-nav > a {
  color: #3A3A4A;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.15s ease;
}
.site-nav > a:hover,
.site-nav > a:focus {
  color: #FAB300;
}

/* --- More dropdown (pure CSS hover / focus-within) --- */
.site-nav-more {
  position: relative;
  display: inline-block;
}
.site-nav-more-toggle {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: #3A3A4A;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s ease;
}
.site-nav-more-toggle:hover,
.site-nav-more-toggle:focus {
  color: #FAB300;
}
.site-nav-more-chevron {
  transition: transform 0.18s ease;
}
.site-nav-more:hover .site-nav-more-chevron,
.site-nav-more:focus-within .site-nav-more-chevron {
  transform: rotate(180deg);
}
.site-nav-more-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 160px;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 50;
}
.site-nav-more:hover .site-nav-more-list,
.site-nav-more:focus-within .site-nav-more-list {
  display: block;
}
.site-nav-more-list li {
  margin: 0;
}
.site-nav-more-list a {
  display: block;
  padding: 8px 14px;
  color: #3A3A4A;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.15s ease, background 0.15s ease;
}
.site-nav-more-list a:hover,
.site-nav-more-list a:focus {
  color: #FAB300;
  background: #f7f7f7;
}

.site-header-cta {
  background: #FAB300;
  color: #3A3A4A;
  border-radius: 9999px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  flex-shrink: 0;
  transition: filter 0.15s ease;
}
.site-header-cta:hover,
.site-header-cta:focus {
  filter: brightness(1.05);
}

@media (max-width: 900px) {
  .site-header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 16px 18px;
  }
  .site-logo img { height: 48px; }
  .site-nav {
    justify-content: center;
    gap: 14px 18px;
  }
  .site-nav > a,
  .site-nav-more-toggle { font-size: 14px; }
  .site-nav-more-list {
    /* Anchor under the trigger but allow it to flow on small screens */
    left: 50%;
    transform: translateX(-50%);
    min-width: 140px;
  }
}

/* --- Site footer --- */
.site-footer {
  background: #3A3A4A;
  color: #F2F2F2;
  border-top: none;
  padding: 0;
  text-align: left;
}
.site-footer-top {
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 24px 30px;
  text-align: center;
  /* Thin amber divider line below the logo+tagline, matches live site. */
  border-bottom: 1px solid rgba(250, 179, 0, 0.35);
}
.site-footer-logo {
  display: inline-block;
  margin-bottom: 18px;
}
.site-footer-logo img {
  height: 80px;
  width: auto;
  max-width: 240px;
  display: block;
  margin: 0 auto;
}
.site-footer-tagline {
  margin: 0 auto;
  max-width: 420px;
  font-size: 15px;
  line-height: 1.6;
  color: #F2F2F2;
}
.site-footer-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.site-footer-col {
  text-align: left;
}
/* Column headers: white Playfair serif, NOT amber eyebrows. */
.site-footer h4 {
  font-family: "Playfair Display", Georgia, serif;
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 18px;
  text-align: left;
}
/* Visit Us column: just the GET DIRECTIONS pill, header + pill centered. */
.site-footer-visit { text-align: center; }
.site-footer-visit h4 { text-align: center; }
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer-quick li {
  margin-bottom: 8px;
}
.site-footer a {
  color: #F2F2F2;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.15s ease;
}
.site-footer a:hover,
.site-footer a:focus {
  color: #FAB300;
}

/* Amber pill: GET DIRECTIONS (mirrors Style A pill from buttons.json). */
.site-footer-directions {
  display: inline-block;
  background: #FAB300;
  color: #3A3A4A !important;
  border-radius: 9999px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-decoration: none;
  transition: filter 0.15s ease;
}
.site-footer-directions:hover,
.site-footer-directions:focus {
  filter: brightness(1.05);
  color: #3A3A4A !important;
}

/* Shop Location block icon-rows. */
.site-footer-shop p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #F2F2F2;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.site-footer-icon {
  color: #FAB300;
  flex-shrink: 0;
  margin-top: 4px;
}

.site-footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 24px;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.site-footer-copyright {
  margin: 0;
  font-size: 13px;
  color: rgba(242, 242, 242, 0.7);
  text-align: left;
}
.site-footer-social {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.site-footer-social a {
  color: #FAB300;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  transition: opacity 0.15s ease;
}
.site-footer-social a:hover,
.site-footer-social a:focus {
  opacity: 0.75;
}

@media (max-width: 900px) {
  .site-footer-top { padding: 44px 18px 24px; }
  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px 18px 32px;
  }
  .site-footer-meta {
    justify-content: center;
    text-align: center;
    padding: 18px;
  }
  .site-footer-copyright { text-align: center; }
}

/* === end RUD header + footer === */

/* === RUD hero (video + form layout) === */

/* Marketing-base template uses .hero (the .nl-hero class in this file
   targets a different lump). Mirror the live homepage: centered
   headline + subhead on a dark background, then a 2-column block
   (video left, quote form right), with an amber pill CTA below.

   TODO: live site uses a dark wood-grain / shop-interior bg image.
   None of the existing /assets/images/Backgrounds/ subfolders match
   (they're a building, a colonnade, and silhouettes). Falling back
   to solid #1a1a1a until a proper hero bg image is added; then:
     background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
                 url('assets/images/Backgrounds/<NEW>/1920.webp') center/cover; */
.hero {
  background: #1a1a1a;
  padding: 90px 0 60px;
  text-align: center;
}
.hero .hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero .hero-headline {
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 14px;
}
.hero .hero-subhead {
  color: #ffffff;
  font-size: clamp(1rem, 1.6vw, 18px);
  max-width: 760px;
  margin: 0 auto 48px;
}
.site-hero-layout {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
  text-align: left;
}
.site-hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 4px;
  overflow: hidden;
}
.site-hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.site-hero-form {
  background: rgba(0, 0, 0, 0.55);
  border: none;
  border-radius: 4px;
  padding: 28px 26px 26px;
  color: #ffffff;
}
.site-hero-form h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-family: var(--font-h1, "Playfair Display", serif);
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}
.site-hero-form label {
  display: block;
  font-size: 13px;
  color: #ffffff;
  margin: 0 0 4px;
}
.site-hero-form input[type=text],
.site-hero-form input[type=email],
.site-hero-form input[type=tel],
.site-hero-form textarea {
  width: 100%;
  margin-bottom: 12px;
  background: rgba(120, 120, 120, 0.34);
  border: none;
  border-radius: 3px;
  padding: 10px 12px;
  color: #ffffff;
  font-size: 14px;
}
.site-hero-form textarea { min-height: 90px; resize: vertical; }
.site-hero-form input::placeholder,
.site-hero-form textarea::placeholder { color: rgba(255, 255, 255, 0.55); }
.site-hero-form button,
.site-hero-form .cta-btn,
.site-hero-form .btn-square {
  width: 100%;
  background: #FAB300;
  color: #ffffff;
  border: none;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  cursor: pointer;
}

/* Centered amber pill CTA below the 2-col block; the compiler injects
   the call-cta Bit from the page marker. */
.site-hero-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 860px) {
  .hero { padding: 60px 0 40px; }
  .site-hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* === end RUD hero === */

/* === RUD home-page testimonials (white card with shadow) === */

/* Override the testimonials panel for the homepage look: white cards,
   amber stars, ghost quote glyph top-right, colored avatar circles
   with single-letter initials. */
.nl-testimonials { padding: 70px 0 90px; background: #ffffff; }
.nl-testimonials-head { text-align: center; margin-bottom: 40px; }
.nl-testimonials-eyebrow {
  color: #FAB300;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.nl-testimonials h2 {
  text-align: center;
  font-family: var(--font-h1, "Playfair Display", serif);
  font-size: clamp(2rem, 4.5vw, 48px);
  font-weight: 600;
  color: #3A3A4A;
  margin: 0;
}
.nl-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.nl-testimonial {
  position: relative;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  padding: 48px 30px 32px;
  text-align: center;
  overflow: hidden;
}
.nl-testimonial::before {
  /* Ghost decorative quote glyph in the top-right corner. */
  content: "\201D";
  position: absolute;
  top: 8px;
  right: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  line-height: 1;
  color: #e5e5e5;
}
.nl-testimonial::after {
  /* Amber 5-star row above the avatar. */
  content: "\2605\2605\2605\2605\2605";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  letter-spacing: 4px;
  color: #FAB300;
  font-size: 14px;
}
/* Avatar circle: keep the CMS-editable name in the slot, but let the
   transferred review images render from each inline background-image. */
.nl-testimonial-avatar {
  width: 64px;
  height: 64px;
  margin: 24px auto 22px;
  border-radius: 50%;
  background-color: transparent;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-h1, "Playfair Display", serif);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-indent: 0;
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: clip;
  position: relative;
}
/* Hide any slot/DOM children inside the avatar; the photo is the visual. */
.nl-testimonial-avatar > * { display: none !important; }

.nl-testimonial blockquote {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  text-align: center;
  font-style: normal;
}
.nl-testimonial blockquote::before,
.nl-testimonial blockquote::after { content: none; }
.nl-testimonial strong {
  display: block;
  font-weight: 700;
  color: #3A3A4A;
  font-size: 15px;
  margin-bottom: 4px;
  text-align: center;
}
.nl-testimonial-meta {
  display: block;
  font-size: 12px;
  color: #999;
  text-align: center;
}

@media (max-width: 860px) {
  .nl-testimonials-grid { grid-template-columns: 1fr; }
}

/* === end RUD testimonials === */

/* === RUD home-page "Where We Roll" + features layout === */

/* The home page sets a soft-gray background on the last .nl-split
   (Where We Roll) and renders the trailing features panel as a column
   beside its image. Live screenshot shows the heading + body on top
   (left half), an amber "LEARN MORE" pill on the right at the top,
   image below filling the left half, and 3 stacked features filling
   the right half. */
.nl-split-areas {
  background: #f2f2f2;
  padding: 80px 0 60px;
}
.nl-split-areas .block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 28px;
  align-items: start;
}
.nl-split-areas .nl-split-content {
  grid-column: 1 / 2;
  grid-row: 1;
}
.nl-split-areas .nl-split-visual {
  grid-column: 1 / 2;
  grid-row: 2;
}
.nl-split-areas .nl-split-actions {
  /* If a LEARN MORE CTA is added, it sits in the top-right cell. */
  grid-column: 2 / 3;
  grid-row: 1;
  align-self: start;
  display: flex;
  justify-content: flex-end;
  margin: 0;
}
.nl-split-areas .nl-split-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}
.nl-split-areas .nl-split-eyebrow {
  color: #FAB300;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.nl-split-areas h2 {
  text-align: left;
  font-size: clamp(2.2rem, 4.5vw, 54px);
  margin: 0 0 18px;
}
.nl-split-areas .nl-split-copy {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* Pull the trailing features panel UP into the right column beside the
   image, on this home page only. Selector: .nl-features that comes
   right after the last .nl-split inside the home page body. */
.nl-split-areas + .nl-features {
  background: #f2f2f2;
  margin-top: -460px;
  padding: 0 0 80px;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.nl-split-areas + .nl-features .block-inner {
  display: flex;
  justify-content: flex-end;
  pointer-events: auto;
}
.nl-split-areas + .nl-features .nl-features-head { display: none; }
.nl-split-areas + .nl-features .nl-features-list {
  width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.nl-split-areas + .nl-features .nl-feature-item {
  text-align: left;
}
.nl-split-areas + .nl-features .nl-feature-item::before {
  /* Amber outlined building icon (lightweight CSS so we don't need an
     SVG asset). Replace with proper inline SVG when icons land. */
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  background: transparent;
  border: 2px solid #FAB300;
  border-radius: 3px;
  position: relative;
}
.nl-split-areas + .nl-features .nl-feature-item h3 {
  font-family: var(--font-h1, "Playfair Display", serif);
  font-size: 20px;
  color: #3A3A4A;
  margin: 0 0 6px;
  text-align: left;
}
.nl-split-areas + .nl-features .nl-feature-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #555;
}

@media (max-width: 860px) {
  .nl-split-areas .block-inner {
    grid-template-columns: 1fr;
  }
  .nl-split-areas .nl-split-content,
  .nl-split-areas .nl-split-visual,
  .nl-split-areas .nl-split-actions {
    grid-column: 1;
  }
  .nl-split-areas .nl-split-actions {
    grid-row: auto;
    justify-content: flex-start;
  }
  .nl-split-areas + .nl-features {
    margin-top: 0;
    padding: 40px 0 60px;
    pointer-events: auto;
  }
  .nl-split-areas + .nl-features .block-inner {
    justify-content: flex-start;
  }
  .nl-split-areas + .nl-features .nl-features-list {
    width: 100%;
  }
}

/* === end RUD home-page "Where We Roll" === */

/* === RUD live homepage match pass === */

body {
  color: #787878;
}

p,
li {
  color: #787878;
}

.block-inner,
.container,
.site-header-inner,
.site-utility-inner,
.site-footer-top,
.site-footer-grid,
.site-footer-meta {
  max-width: 1140px;
}

.site-utility-bar {
  background: #141416;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.site-utility-inner {
  padding: 10px 24px;
  justify-content: space-between;
}

.site-utility-bar a,
.site-utility-reviews {
  color: #ffffff;
  font-weight: 600;
}

.site-header {
  position: relative;
  z-index: 10;
  margin-bottom: -85px;
  background: transparent;
  border-bottom: 0;
}

.site-header-inner {
  min-height: 85px;
  padding: 7px 24px;
  justify-content: center;
  background: transparent;
}

.site-logo {
  position: absolute;
  inset: 7px auto 7px 24px;
  width: 250px;
}

.site-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  justify-content: center;
  gap: 28px;
}

.site-nav > a,
.site-nav-more-toggle {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.site-nav-more-list a {
  font-size: 18px;
  font-weight: 600;
}

.hero {
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.37)),
    url("images/Backgrounds/cover-main-2.webp") center center / cover no-repeat,
    #000000;
  padding: 215px 0 100px;
}

.hero .hero-headline {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero .hero-subhead {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 70px;
}

.site-hero-layout {
  grid-template-columns: 67.3fr 32.7fr;
  gap: 0;
  align-items: stretch;
}

.site-hero-video {
  height: 580px;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: 0 5px 30px rgba(16, 16, 16, 0.1);
}

.site-hero-form {
  margin: 0 30px 0 20px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.54);
  border-radius: 0;
  box-shadow: 0 5px 30px rgba(16, 16, 10, 0.1);
}

.site-hero-form h3 {
  margin: 0 0 30px;
  color: #F2F2F2;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.site-hero-form .cta-form {
  max-width: none;
  padding: 0;
  background: transparent !important;
  border-radius: 0;
  gap: 0;
}

.site-hero-form label {
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 14px;
  line-height: 17px;
}

.site-hero-form input[type=text],
.site-hero-form input[type=email],
.site-hero-form input[type=tel],
.site-hero-form textarea {
  min-height: 31px;
  margin-bottom: 25px;
  padding: 0 9px;
  background: rgba(120, 120, 120, 0.34) !important;
  border: 0 !important;
  border-radius: 3px;
  color: #ffffff !important;
  font-size: 14px;
  line-height: 17px;
}

.site-hero-form textarea {
  min-height: 100px;
  padding-top: 8px;
}

.site-hero-form .btn-square,
.site-hero-form .cta-btn,
.site-hero-form button {
  height: 41px;
  padding: 0 15px;
  background: #FAB300;
  color: #ffffff !important;
  border-radius: 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-hero-cta {
  justify-content: flex-end;
  max-width: 1140px;
  margin: -40px auto 0;
  padding-right: 15px;
  position: relative;
  z-index: 2;
}

.site-hero-cta .btn-pill,
.site-hero-cta .cta-btn-call-cta {
  color: #3A3A4A;
  font-size: 18px;
}

.nl-cards {
  padding: 35px 0 80px;
}

.nl-cards h2,
.nl-logo-strip h2,
.nl-testimonials h2 {
  font-size: 54px;
  line-height: 1.2;
}

.nl-cards .nl-cards-grid {
  gap: 0;
}

.nl-cards .nl-card {
  padding: 0 12px;
  gap: 0;
}

.nl-cards .nl-card-visual {
  height: 238px;
  aspect-ratio: auto;
  margin-bottom: 15px;
}

.nl-cards .nl-card h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.2;
}

.nl-cards .nl-card-kicker {
  margin-bottom: 10px;
  color: #FAB300;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.nl-cards .nl-card-copy {
  color: #787878;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.nl-logo-strip {
  padding: 0 0 10px;
}

.nl-logo-strip-body {
  max-width: 520px;
  padding: 0;
  font-size: 16px;
  font-weight: 300;
}

.nl-logo {
  width: 170px;
  height: 110px;
  background-size: contain !important;
  opacity: 0.4;
  transition: opacity 0.18s ease;
}

.nl-logo:hover,
.nl-logo:focus-within {
  opacity: 1;
}

.nl-split-openers {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/Products/R-Steel/rolling-steel-background.webp") center center / cover no-repeat;
  padding: 120px 0 150px;
}

.nl-split-openers .block-inner {
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.nl-split-openers .nl-split-visual-title,
.nl-split-openers .nl-split-visual-caption,
.nl-split-openers .nl-split-eyebrow,
.nl-split-openers .nl-split-support {
  display: none;
}

.nl-split-openers .nl-split-image {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.nl-split-openers .nl-split-content,
.nl-split-openers .nl-split-content h2,
.nl-split-openers .nl-split-copy {
  text-align: right;
  color: #ffffff;
}

.nl-split-openers .nl-split-content h2 {
  margin-bottom: 30px;
  font-size: 54px;
}

.nl-split-openers .nl-split-copy {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.nl-split-openers .nl-split-actions {
  justify-content: flex-end;
}

.nl-split-openers .btn-square,
.nl-split-openers .btn-pill,
.nl-split-openers .cta-btn {
  width: 44%;
  min-width: 180px;
  height: 60px;
  padding: 18px 24px;
  border-radius: 0;
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.nl-testimonials {
  padding: 35px 0 5px;
}

.nl-testimonials-head {
  margin-bottom: 34px;
}

.nl-testimonials h2 {
  margin-bottom: 5px;
  color: #3A3A4A;
}

.nl-testimonials-eyebrow {
  margin: 0;
  color: #141416;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.nl-testimonials-grid {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0 0 10px;
  -webkit-overflow-scrolling: touch;
}

.nl-testimonials-grid::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.nl-testimonials-grid:focus-visible {
  outline: 2px solid #FAB300;
  outline-offset: 5px;
}

.nl-testimonials-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 24px;
  margin-top: 12px;
}

.nl-testimonials-dots button {
  width: 9px;
  height: 9px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c8c8c8;
  cursor: pointer;
  transition: background-color 140ms ease, transform 140ms ease;
}

.nl-testimonials-dots button:hover,
.nl-testimonials-dots button:focus-visible {
  background: #8c8994;
}

.nl-testimonials-dots button:focus-visible {
  outline: 2px solid #3A3A4A;
  outline-offset: 3px;
}

.nl-testimonials-dots button.is-active {
  background: #FAB300;
  transform: scale(1.3);
}

.nl-testimonial {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
  scroll-snap-align: start;
  padding: 44px 28px 32px;
  border-radius: 0;
  box-shadow: 0 5px 30px rgba(16, 16, 16, 0.08);
}

.nl-testimonial::before {
  content: "\201C";
  top: 18px;
  right: 22px;
  color: #e6e6e6;
  font-family: "Font Awesome 6 Free", Georgia, serif;
  font-size: 46px;
}

.nl-testimonial::after {
  top: 24px;
  letter-spacing: 3px;
}

.nl-testimonial-avatar {
  width: 72px;
  height: 72px;
  margin: 30px auto 24px;
  border-radius: 50%;
  background-color: transparent;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  font-size: 0;
}

.nl-testimonial-avatar::before {
  content: none !important;
}

.nl-testimonial-avatar > * {
  display: none !important;
}

.nl-testimonial blockquote {
  color: #141416;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.5;
}

.nl-testimonial strong {
  color: #3A3A4A;
  font-size: 15px;
}

.nl-split-areas {
  background: #ffffff;
  padding: 40px 0 0;
}

.nl-split-areas .block-inner {
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
}

.nl-split-areas .nl-split-eyebrow,
.nl-split-areas h2,
.nl-split-areas .nl-split-copy {
  text-align: left;
}

.nl-split-areas .nl-split-copy {
  color: #787878;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.nl-split-areas .nl-split-actions .btn-square,
.nl-split-areas .nl-split-actions .btn-pill,
.nl-split-areas .nl-split-actions .cta-btn {
  width: 50%;
  height: 62px;
  padding: 18px 24px;
  border-radius: 0;
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.nl-split-areas .nl-split-image {
  height: 640px;
  aspect-ratio: auto;
}

.nl-split-areas + .nl-features {
  background: transparent !important;
  margin-top: -640px;
  padding: 0 0 200px;
}

.nl-split-areas + .nl-features .nl-features-list {
  width: calc(50% - 20px);
  gap: 28px;
}

.nl-split-areas + .nl-features .nl-feature-item::before {
  width: 44px;
  height: 44px;
  border: 0;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 0;
}

.nl-split-areas + .nl-features .nl-feature-item:nth-child(1)::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjRkFCMzAwIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48cmVjdCB4PSIzIiB5PSIzIiB3aWR0aD0iMTEiIGhlaWdodD0iMTgiLz48cmVjdCB4PSIxNCIgeT0iMTAiIHdpZHRoPSI3IiBoZWlnaHQ9IjExIi8+PHJlY3QgeD0iNiIgeT0iNiIgd2lkdGg9IjIiIGhlaWdodD0iMiIvPjxyZWN0IHg9IjEwIiB5PSI2IiB3aWR0aD0iMiIgaGVpZ2h0PSIyIi8+PHJlY3QgeD0iNiIgeT0iMTEiIHdpZHRoPSIyIiBoZWlnaHQ9IjIiLz48cmVjdCB4PSIxMCIgeT0iMTEiIHdpZHRoPSIyIiBoZWlnaHQ9IjIiLz48cmVjdCB4PSI2IiB5PSIxNiIgd2lkdGg9IjIiIGhlaWdodD0iMiIvPjxyZWN0IHg9IjEwIiB5PSIxNiIgd2lkdGg9IjIiIGhlaWdodD0iMiIvPjxyZWN0IHg9IjE2LjUiIHk9IjEzIiB3aWR0aD0iMiIgaGVpZ2h0PSIyIi8+PHJlY3QgeD0iMTYuNSIgeT0iMTciIHdpZHRoPSIyIiBoZWlnaHQ9IjIiLz48L3N2Zz4=");
}

.nl-split-areas + .nl-features .nl-feature-item:nth-child(2)::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjRkFCMzAwIiBzdHJva2Utd2lkdGg9IjEuNiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSI5Ii8+PGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iNiIvPjxwYXRoIGQ9Ik0xMiA4djhNOS41IDEwLjJjMC0xIC45LTEuNyAyLjUtMS43czIuNS43IDIuNSAxLjZjMCAyLjItNSAxLTUgMy4yIDAgLjkgMSAxLjcgMi41IDEuN3MyLjUtLjcgMi41LTEuNyIvPjwvc3ZnPg==");
}

.nl-split-areas + .nl-features .nl-feature-item:nth-child(3)::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjRkFCMzAwIiBzdHJva2Utd2lkdGg9IjEuNiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48cGF0aCBkPSJNMTIgMy41bDIuNDcgNS4yNCA1Ljc4LjY3LTQuMjggMy45OCAxLjE1IDUuNzFMMTIgMTYuOWwtNS4xMiAzLjIgMS4xNS01LjcxLTQuMjgtMy45OCA1Ljc4LS42N0wxMiAzLjV6Ii8+PC9zdmc+");
}

.nl-split-areas + .nl-features .nl-feature-item h3 {
  font-size: 25px;
  line-height: 1.2;
}

.nl-split-areas + .nl-features .nl-feature-item p {
  color: #787878;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.site-footer {
  background: #141416;
}

.site-footer-top {
  padding: 70px 24px 30px;
  border-bottom: 1px solid #3A3A4A;
}

.site-footer-logo img {
  width: 260px;
  height: auto;
  max-width: 260px;
}

.site-footer-tagline {
  max-width: 500px;
  color: #ffffff;
}

.site-footer h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
}

.site-footer-meta {
  border-top-color: #3A3A4A;
}

@media (max-width: 1024px) {
  .site-header {
    margin-bottom: -80px;
  }

  .site-logo {
    width: 220px;
  }

  .hero {
    padding: 250px 20px 200px 40px;
  }

  .hero .hero-headline {
    font-size: 72px;
  }

  .site-hero-layout {
    grid-template-columns: 1fr;
  }

  .site-hero-form {
    margin: 0 10px;
    padding: 60px;
  }

  .nl-cards .nl-card-visual {
    height: 195px;
  }
}

@media (max-width: 860px) {
  .site-header {
    margin-bottom: 0;
    background: #141416;
  }

  .site-logo {
    position: static;
    width: 190px;
  }

  .site-nav > a,
  .site-nav-more-toggle {
    font-size: 14px;
  }

  .hero {
    padding: 80px 0 40px;
  }

  .hero .hero-headline {
    font-size: 35px;
  }

  .site-hero-video {
    height: 220px;
  }

  .site-hero-form {
    margin: 0;
    padding: 30px;
  }

  .site-hero-cta {
    justify-content: center;
    margin-top: 28px;
  }

  .nl-cards .nl-cards-grid,
  .nl-split-openers .block-inner,
  .nl-split-areas .block-inner {
    grid-template-columns: 1fr;
  }

  .nl-cards .nl-card-visual {
    height: 238px;
  }

  .nl-split-openers .nl-split-content,
  .nl-split-openers .nl-split-content h2,
  .nl-split-openers .nl-split-copy {
    text-align: left;
  }

  .nl-split-openers .nl-split-actions {
    justify-content: flex-start;
  }

  .nl-testimonials-eyebrow {
    font-size: 32px;
  }

  .nl-testimonial {
    flex-basis: 100%;
  }

  .nl-split-areas .nl-split-image {
    height: 257px;
  }

  .nl-split-areas + .nl-features {
    margin-top: 0;
    padding: 40px 0 60px;
  }

  .nl-split-areas + .nl-features .nl-features-list {
    width: 100%;
  }
}

/* === end RUD live homepage match pass === */

/* RUD header/footer alignment pass.
   The source WP header used absolute positioning; the transferred site
   treats logo + menu as one centered row. */
@media (min-width: 861px) {
  .site-header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-height: 85px;
    padding: 7px 24px;
    flex-wrap: nowrap;
  }

  .site-logo {
    position: static;
    inset: auto;
    width: 250px;
    height: 71px;
    flex: 0 0 250px;
  }

  .site-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .site-nav {
    flex: 0 1 auto;
    flex-wrap: nowrap;
  }
}

.site-footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.site-footer-logo {
  display: inline-flex;
  justify-content: center;
}

.site-footer,
.site-footer p,
.site-footer li,
.site-footer a,
.site-footer-tagline,
.site-footer-address,
.site-footer-phone,
.site-footer-hours,
.site-footer-copyright {
  font-weight: 300;
}

.site-footer-tagline {
  text-align: center;
}

.site-footer h4,
.site-footer-directions {
  font-weight: 400;
}

/* RUD CTA form protection.
   Body text controls should not turn form controls into prose. */
.cta-form {
  display: grid;
  gap: 0.75rem;
  text-align: left;
}

.cta-form-field {
  display: grid;
  gap: 0.25rem;
  text-align: left;
}

.cta-form-label,
.cta-form input,
.cta-form textarea,
.cta-form select {
  text-align: left;
  text-indent: 0;
  text-transform: none;
}

.cta-form input,
.cta-form textarea,
.cta-form select,
.cta-form button,
.cta-form .cta-btn {
  box-sizing: border-box;
  width: 100%;
}

.nl-video-form-hero-form .cta-form {
  display: grid;
  gap: 0;
}

.nl-video-form-hero-form .cta-form-field {
  display: grid;
  gap: 0.25rem;
}

.nl-video-form-hero-form .cta-form-label {
  display: block;
  margin: 0;
  color: #fff;
}

/* === RUD subpage template styling pass === */

.rud-template {
  background: #ffffff;
}

.rud-template main p,
.rud-template main li,
.rud-template main dd {
  color: #787878;
  font-weight: 300;
  text-align: left;
}

.rud-template .body > .block + .block {
  border-top: 0;
}

.rud-template .block-inner {
  padding-left: 24px;
  padding-right: 24px;
}

.rud-page-hero {
  --rud-page-hero-bg: url("images/Backgrounds/cover-main-2.webp");
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 185px 24px 88px;
  isolation: isolate;
  overflow: hidden;
  background-color: #141416;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.62)),
    var(--rud-page-hero-bg);
  background-position: center;
  background-size: cover;
  color: #ffffff;
  text-align: center;
}

.rud-page-hero--contact {
  --rud-page-hero-bg: url("images/Backgrounds/Stock/garage-door-service-repairman.webp");
}

.rud-page-hero--commercial {
  --rud-page-hero-bg: url("images/Products/Commercial/commercial-garage.webp");
}

.rud-page-hero--service {
  --rud-page-hero-bg: url("images/Products/Commercial/commercial-garage.webp");
}

.rud-page-hero--product-nav {
  --rud-page-hero-bg: url("images/Products/Motors/sectional-door-motor.webp");
}

.rud-page-hero--blog {
  --rud-page-hero-bg: url("images/Products/Roll-Ups/side-view-of-steel-self-storage-units.webp");
}

.rud-page-hero--opener-details {
  --rud-page-hero-bg: url("images/Products/Motors/RUD-Jackshaft-Motor-2.webp");
}

.rud-page-hero--faq {
  --rud-page-hero-bg: url("images/Backgrounds/Stock/two-car-garage-door-in-utah.webp");
}

.rud-page-hero-inner {
  width: min(100%, 1140px);
  margin: 0 auto;
}

.rud-page-hero h1 {
  max-width: 980px;
  margin: 0 auto;
  color: #FAB300;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(15px, 1.45vw, 19px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}

.rud-template .rud-page-hero-ux {
  max-width: 980px;
  margin: 28px auto 0;
  color: #ffffff;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.rud-template .rud-page-hero-promise,
.rud-template .rud-page-hero-display {
  max-width: 760px;
  margin: 18px auto 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  text-align: center;
}

.rud-template .rud-page-hero-display {
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.05;
}

.rud-page-hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.rud-page-hero-actions .cta-btn-call-cta,
.rud-page-hero-actions .btn-pill {
  min-height: 50px;
  padding: 14px 28px;
  color: #3A3A4A !important;
  font-size: 18px;
}

.rud-template .nl-split {
  padding: 72px 0 96px;
}

.rud-template .nl-split .block-inner {
  gap: clamp(34px, 4.5vw, 64px);
  align-items: start;
}

.rud-template .nl-split-image {
  min-height: 360px;
  border-radius: 0;
}

.rud-template .nl-split-visual-title:empty,
.rud-template .nl-split-visual-caption:empty,
.rud-template .nl-split-support:empty {
  display: none;
}

.rud-template .nl-split-content h2,
.rud-template .rud-form-split-copy h2,
.rud-template .nl-features-head h2,
.rud-contact-copy h2,
.rud-template-door-details .nl-faq h2 {
  color: #FAB300;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rud-template .nl-split-content h2,
.rud-template .rud-form-split-copy h2,
.rud-contact-copy h2 {
  text-align: left;
}

.rud-template .nl-features-head h2,
.rud-template-door-details .nl-faq h2 {
  text-align: center;
}

.rud-template .nl-split-eyebrow,
.rud-template .nl-features-eyebrow,
.rud-template .nl-faq-ux,
.rud-contact-copy h4[data-sb-text-style="ux"] {
  margin: 0 0 20px;
  color: #3A3A4A;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
}

.rud-template .nl-features-eyebrow,
.rud-template .nl-faq-ux {
  text-align: center;
}

.rud-template .nl-faq-kicker {
  margin: 0 0 16px;
  color: #FAB300;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.rud-template .nl-split-copy,
.rud-template .nl-features-body,
.rud-template .nl-feature-item p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.rud-template .nl-split-actions .cta-btn,
.rud-template .nl-split-actions .btn-square {
  min-height: 56px;
  padding: 18px 26px;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rud-template .rud-form-split {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(38px, 5vw, 70px);
  align-items: start;
}

.rud-template .rud-form-split-copy h2 {
  margin: 0 0 18px;
}

.rud-template .rud-form-split-copy .nl-split-image {
  margin: 8px 0 24px;
  min-height: 330px;
}

.rud-template .rud-form-split-form {
  margin-top: 0;
}

.rud-inline-form {
  margin-top: 30px;
}

.rud-inline-form .cta-form,
.rud-contact-form .cta-form {
  width: 100%;
  max-width: none !important;
  padding: 34px !important;
  background: rgba(20, 20, 22, 0.92) !important;
  border-radius: 0 !important;
  color: #ffffff !important;
  box-shadow: 0 5px 30px rgba(16, 16, 16, 0.12);
  gap: 0 !important;
}

.rud-inline-form .cta-form-label,
.rud-contact-form .cta-form-label {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
}

.rud-inline-form .cta-form input,
.rud-inline-form .cta-form textarea,
.rud-contact-form .cta-form input,
.rud-contact-form .cta-form textarea {
  min-height: 34px;
  margin-bottom: 18px;
  padding: 8px 10px !important;
  background: rgba(120, 120, 120, 0.34) !important;
  border: 0 !important;
  border-radius: 3px !important;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 300;
}

.rud-inline-form .cta-form textarea,
.rud-contact-form .cta-form textarea {
  min-height: 116px;
}

.rud-inline-form .cta-btn-submit-message,
.rud-contact-form .cta-btn-submit-message {
  min-height: 48px;
  margin-top: 4px;
  padding: 14px 20px !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rud-contact-panel {
  padding: 84px 0 100px;
  background: #ffffff;
}

.rud-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: clamp(36px, 5vw, 68px);
  align-items: start;
}

.rud-contact-copy {
  max-width: 560px;
}

.rud-contact-copy h2 {
  margin: 0 0 18px;
}

.rud-contact-copy h3 {
  margin: 32px 0 10px;
}

.rud-contact-copy h4[data-sb-text-style="ux"] {
  margin-bottom: 24px;
}

.rud-contact-copy p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
}

.rud-contact-copy p a[href^="https://maps."] {
  border-radius: 0;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rud-template-product-nav .rud-page-hero,
.rud-rollup-hero {
  display: block;
  min-height: 170px;
  padding: 0;
}

.rud-product-selector {
  margin-top: 0;
  padding: 48px 0 74px;
  background: #ffffff;
}

.rud-product-selector .nl-product-tiles-head {
  max-width: 900px;
  margin: 0 auto 38px;
  text-align: center;
}

.rud-product-selector .nl-product-tiles-head h1 {
  margin: 0 0 18px;
  color: #FAB300;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.rud-product-selector .nl-product-tiles-ux {
  margin: 0;
  color: #3A3A4A;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(40px, 4.7vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
}

.rud-product-selector .nl-product-tiles-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.rud-product-selector .nl-product-tile {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  min-width: 0;
}

.rud-product-selector .nl-product-tile:hover {
  box-shadow: none;
}

.rud-product-selector .nl-product-tile-visual {
  aspect-ratio: 1 / 1;
}

.rud-product-selector .nl-product-tile h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5em;
  margin: 16px 0 12px;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.rud-product-selector .nl-product-tile a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 50px;
  margin: 0;
  padding: 13px 25px;
  border-radius: 999px;
  background: #FAB300;
  box-shadow: 0 10px 20px rgba(20, 20, 22, 0.18);
  color: #3A3A4A;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.rud-product-selector .nl-product-tile a:hover {
  background: #ffc126;
  box-shadow: 0 13px 24px rgba(20, 20, 22, 0.22);
  text-decoration: none;
  transform: translateY(-2px);
}

.rud-product-service {
  padding: 70px 0 84px;
  background: #f6f6f6;
}

.rud-product-service .block-inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(38px, 4.8vw, 62px);
  align-items: start;
}

.rud-product-service-copy h2 {
  margin: 8px 0 10px;
  color: #FAB300;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-align: left;
  text-transform: uppercase;
}

.rud-product-service .nl-split-eyebrow {
  margin: 0 0 20px;
  color: #3A3A4A;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
}

.rud-product-service .nl-split-image {
  min-height: 0;
  margin-bottom: 24px;
  aspect-ratio: 4 / 3;
  background-position: center;
}

.rud-product-service .nl-split-copy {
  margin: 0 0 16px;
}

.rud-product-service .nl-split-support {
  margin: 0 0 22px;
  color: #3A3A4A;
  font-size: 15px;
  line-height: 1.6;
}

.rud-product-service .nl-split-actions .cta-btn {
  min-height: 50px;
  padding: 14px 24px;
  color: #3A3A4A !important;
  box-shadow: 0 8px 18px rgba(20, 20, 22, 0.14);
}

.rud-product-service-form {
  padding: 36px;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(20, 20, 22, 0.1);
}

.rud-product-service-form h3 {
  margin: 0 0 26px;
  color: #3A3A4A;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  text-align: left;
}

.rud-product-service-form .rud-inline-form {
  margin-top: 0;
}

.rud-product-service-form .cta-form {
  grid-template-areas:
    "name email"
    "phone phone"
    "message message"
    "submit submit";
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #3A3A4A !important;
}

.rud-product-service-form .cta-form-field:has([name="f-name"]) {
  grid-area: name;
}

.rud-product-service-form .cta-form-field:has([name="f-phone"]) {
  grid-area: phone;
}

.rud-product-service-form .cta-form-field:has([name="f-email"]) {
  grid-area: email;
}

.rud-product-service-form .cta-form-field:has([name="f-message"]) {
  grid-area: message;
}

.rud-product-service-form .cta-form-label {
  margin-bottom: 7px;
  color: #3A3A4A;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rud-product-service-form .cta-form input,
.rud-product-service-form .cta-form textarea {
  margin-bottom: 0;
  padding: 12px 13px !important;
  background: #ffffff !important;
  border: 1px solid #bdbdc2 !important;
  border-radius: 0 !important;
  color: #3A3A4A !important;
  font-size: 15px;
}

.rud-product-service-form .cta-form input {
  min-height: 50px;
}

.rud-product-service-form .cta-form textarea {
  min-height: 150px;
}

.rud-product-service-form .cta-btn-submit-message {
  grid-area: submit;
  min-height: 52px;
  margin-top: 2px;
  color: #3A3A4A !important;
}

.rud-product-service p {
  color: #787878;
  font-weight: 300;
  text-align: left;
}

.rud-template .nl-product-tiles-grid {
  gap: clamp(20px, 2.6vw, 32px);
}

.rud-template .nl-product-tile {
  border-radius: 0;
  box-shadow: 0 5px 30px rgba(16, 16, 16, 0.08);
}

.rud-template .nl-features {
  padding: 78px 0 96px;
}

.rud-template .nl-features-head {
  max-width: 820px;
  margin-bottom: 42px;
}

.rud-template .nl-features-list {
  gap: clamp(24px, 3.2vw, 42px);
}

.rud-template .nl-feature-item h3,
.rud-template .nl-feature-title {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.2;
}

.rud-template .body > .nl-features:nth-of-type(even) {
  background: #f2f2f2;
}

.rud-template .nl-faq {
  padding: 78px 0 104px;
  background: #f2f2f2;
}

.rud-template .nl-faq h2 {
  margin: 0 0 18px;
  text-align: center;
}

.rud-template-faq .nl-faq h2 {
  margin-bottom: 34px;
  color: #8c8994;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 4.6vw, 54px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}

.rud-template .nl-faq-list {
  display: grid;
  gap: 0;
  max-width: 900px;
}

.rud-template .nl-faq-list dt {
  margin: 0;
  padding: 22px 28px 8px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-bottom: 0;
  color: #3A3A4A;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.rud-template .nl-faq-list dd {
  margin: 0 0 18px;
  padding: 0 28px 24px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-top: 0;
  font-size: 16px;
  line-height: 1.7;
}

.rud-template-blog-index .nl-text {
  padding: 78px 0 44px;
}

.rud-template-blog-index .nl-text ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rud-template-blog-index .nl-text li {
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 5px 30px rgba(16, 16, 16, 0.08);
  font-size: 16px;
  line-height: 1.7;
}

.rud-template-blog-index .nl-text li strong {
  display: block;
  margin-bottom: 10px;
  color: #3A3A4A;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  line-height: 1.2;
}

.rud-template-blog-index .nl-text a {
  color: #FAB300;
  text-decoration: none;
}

@media (max-width: 900px) {
  .rud-page-hero {
    min-height: 0;
    padding: 72px 20px 56px;
  }

  .rud-page-hero h1 {
    font-size: 16px;
  }

  .rud-page-hero-ux,
  .rud-page-hero-display {
    font-size: clamp(34px, 10vw, 46px);
  }

  .rud-contact-grid,
  .rud-template-blog-index .nl-text ul {
    grid-template-columns: 1fr;
  }

  .rud-template .rud-form-split,
  .rud-product-service .block-inner {
    grid-template-columns: 1fr;
  }

  .rud-product-selector .block-inner,
  .rud-product-service .block-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .rud-template .nl-split,
  .rud-template .nl-features,
  .rud-contact-panel,
  .rud-template .nl-faq {
    padding: 56px 0 68px;
  }

  .rud-template .nl-split-image {
    min-height: 260px;
  }

  .rud-inline-form .cta-form,
  .rud-contact-form .cta-form {
    padding: 28px !important;
  }
}

@media (min-width: 561px) and (max-width: 780px) {
  .rud-product-selector .nl-product-tiles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .rud-template-product-nav .rud-page-hero,
  .rud-rollup-hero {
    min-height: 145px;
  }

  .rud-product-selector {
    padding: 42px 0 60px;
  }

  .rud-product-selector .nl-product-tiles-grid {
    grid-template-columns: 1fr;
  }

  .rud-product-service-form {
    padding: 28px 22px;
  }

  .rud-product-service-form .cta-form {
    grid-template-areas:
      "name"
      "phone"
      "email"
      "message"
      "submit";
    grid-template-columns: 1fr;
  }
}

/* === end RUD subpage template styling pass === */
