/* CentiMark Design System — shared tokens & components
   Extracted from centimark.com (real CSS, real photography, real logo), 2026-05-08.
   Type: Roboto (display) + Montserrat (body) — exact stack used on the live site (custom.css line 1-2).
   Theme: Joomla `dryad` template (templates/dryad + Helix Ultimate framework)
   Brand: CentiMark Corporation — second-largest commercial roofing contractor in North America,
   founded 1968, HQ Canonsburg PA, ~3,500 employees, 100+ offices, 650+ commercial roofing crews,
   100% commercial. Audience: facility managers, owners, national accounts. */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
  /* color — extracted from `templates/dryad/css/preset9.css :root` and `custom.css`
     Brand has TWO blues: a friendly light/sky-blue primary (#3a95db = --maincolor) and
     a deep corporate navy (#0054A0) used for button-hover overlays + secondary CTAs.
     The accent is a warm gold (#f5b335) used on page-title H1 and as the button-flip
     hover color in preset9. NOTE the dual-blue is the central CentiMark identity move:
     the soft sky blue says "approachable" and the deep navy says "corporate weight". */
  --brand: #3a95db;             /* --maincolor · primary CentiMark blue (sky/azure) */
  --brand-deep: #0054A0;        /* deep corporate navy · button-hover overlay, secondary CTA */
  --brand-soft: #009add;        /* default link color from template.css */
  --brand-light: #92ceff;       /* tint blue for soft tile fills */
  --brand-pale: #e9f4fc;        /* pale-blue tint derived for footer/intro panel fills */

  /* CentiMark uses ONE accent — warm safety/heritage gold for page titles + btn hover.
     Treat as accent only — never primary. */
  --accent-gold: #f5b335;       /* page-title H1 color + .btn-primary hover bg (preset9.css) */
  --accent-gold-deep: #c98a18;  /* derived deeper for hover-on-gold */
  --accent-gold-pale: #fdf3da;  /* derived gold pale tint */

  /* CentiMark sometimes uses a hi-vis safety yellow on safety pages — kept for future palettes */
  --accent-warning: #f6bc00;

  /* Ink — CentiMark uses TWO grays: heading ink #312e2e (custom.css h1-h6) and body #3d3d3d. */
  --ink: #3d3d3d;               /* body text — `body { color: #3d3d3d }` (custom.css L7) */
  --ink-deep: #312e2e;          /* headline ink — `h1-h6 { color: #312e2e }` (custom.css L62) */
  --ink-soft: rgba(61,61,61,0.85);
  --ink-mid: #4e4e4e;           /* nav default · custom.css megamenu */
  --ink-muted: #726d6d;         /* dropdown text */
  --ink-quiet: rgba(61,61,61,0.55);
  --ink-faint: rgba(61,61,61,0.16);
  --ink-charcoal: #252525;      /* offcanvas-menu bg + footer dark tone */

  --bg: #ffffff;                /* page bg — pure white surface (template) */
  --bg-pure: #ffffff;
  --bg-soft: #f5f5f5;            /* secondary fills · template.css */
  --bg-warm: #faf6ee;            /* warm bone for highlight bands */
  --bg-pale: #f3f3f3;            /* tertiary fills */
  --border: #e6e9ef;             /* hairline borders (article meta separators) */
  --text-on-dark: #ffffff;
  --text-on-dark-muted: rgba(255,255,255,0.85);
  --text-on-dark-quiet: rgba(255,255,255,0.55);

  /* type — Roboto for display, Montserrat for body — verbatim from custom.css */
  --font-display: 'Roboto', system-ui, Arial, sans-serif;
  --font-body: 'Montserrat', system-ui, Arial, sans-serif;
  --font-eyebrow: 'Roboto', system-ui, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* layout — CentiMark's container ladder caps at 1200px (custom.css L1265-1268)
     This is significantly narrower than YMCA Montgomery's 1520px. The narrower
     container is a corporate/conservative B2B move — wide whitespace would feel
     too modern-SaaS for a 57-year-old commercial roofer. */
  --container: 1200px;          /* live `.sppb-section .sppb-row-container { max-width: 1200px }` */
  --container-narrow: 970px;
  --container-wide: 1400px;
  --gutter: 1.5rem;
  --section: 110px;             /* live `#sp-main-body { padding: 110px 0 }` */
  --section-sm: 64px;
  --block-rhythm: 90px;         /* between blocks */

  /* RADIUS — CentiMark's signature is the 20px button + 20px card radius.
     20px is the DOMINANT value (8 occurrences in custom.css), 10px is the
     secondary used on dropdowns + portfolio images (5 occurrences), 50% for
     pagination/circle elements (7 occurrences). NO 4px / 8px tight radii like
     SaaS sites — the 20px feels confidently corporate. */
  --radius-sm: 8px;             /* form inputs, system UI */
  --radius: 10px;               /* dropdown panels, portfolio images, badges */
  --radius-lg: 20px;            /* DOMINANT: buttons + cards + header panel + article cards */
  --radius-xl: 30px;            /* hero callouts, large feature cards (derived) */
  --radius-pill: 1000px;
  --radius-circle: 50%;

  /* SHADOWS — CentiMark uses LARGE soft shadows for depth.
     The signature sticky-header shadow is `0 0 60px 0 rgba(0,0,0,0.07)` —
     ambient soft-glow, NOT a tight directional drop. The signature card
     shadow is `0 0 15px 0 rgba(0,0,0,.1)` (article cards). The dropdown
     uses an even larger `0px 0px 65px 0px rgba(0,0,0,0.1)` glow.
     This is fundamentally different from Montgomery's tight `0px 3px 6px`
     directional drop — CentiMark's shadows are RADIAL HALOS, not spotlights. */
  --shadow-card: 0 0 15px 0 rgba(0,0,0,0.10);    /* THE CentiMark card shadow (article-list) */
  --shadow-soft: 0 0 60px 0 rgba(0,0,0,0.07);    /* sticky header lift */
  --shadow-glow: 0px 0px 65px 0px rgba(0,0,0,0.10); /* dropdown glow (custom.css L380) */
  --shadow-deep: 0 0 35px 0 rgba(0,0,0,0.14);
  --shadow-press: 0 4px 20px rgba(0,0,0,0.18);
  --shadow-stat: 0 12px 40px -12px rgba(0,84,160,0.32); /* navy-tinted shadow for stat cards */

  /* TRANSITION — 500ms is THE CentiMark default duration (custom.css L25 + L40+).
     Notable: Montgomery uses 300ms / YMCA uses 200ms. CentiMark's 500ms is slow
     and corporate — gives elements a "considered, settling" feel. */
  --transition-base: 500ms;
  --ease-base: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 500ms ease;

  /* SIGNATURE GRADIENTS — CentiMark uses sky-to-navy as its core gradient identity.
     Angle 135deg is the most common; we add 90deg + 180deg for content bands. */
  --blue-gradient: linear-gradient(135deg, #3a95db 0%, #0054A0 100%);
  --blue-gradient-90: linear-gradient(90deg, #3a95db 0%, #0054A0 100%);
  --blue-gradient-180: linear-gradient(180deg, #3a95db 0%, #0054A0 100%);
  --blue-gradient-soft: linear-gradient(135deg, #e9f4fc 0%, #f3f3f3 100%);
  --gold-gradient: linear-gradient(135deg, #f5b335 0%, #c98a18 100%);
  --dark-gradient: linear-gradient(135deg, #312e2e 0%, #1a1a1a 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  /* Live: `body { font-size: 16px; line-height: 24px; font-weight: 400 }` (custom.css L4-9) */
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }

a { color: var(--brand); text-decoration: none; transition: color var(--transition-base) ease; }
a:hover { color: var(--brand-deep); }

/* TYPOGRAPHY ----------------------------------------------- */
/* Live values:
   H1-H6: Roboto, color #312e2e (custom.css L62-65)
   H1 page-title: 65px / line-height 71px / weight 700, color #f5b335 (gold!) (L514-518)
   Body: 16px / line-height 24px / weight 400 / Montserrat (L4-9)
   The page-title gold is a CentiMark-distinctive — H1s on internal pages are gold
   on a dark scrim, not blue. */

/* Baseline heading line-height — bare h1–h6 must not inherit body's 24px or
   any heading wrapping past one line will overlap. Element selectors so the
   .h1/.h2/.h3 utility classes still win when used. */
h1, h2, h3, h4, h5, h6 { line-height: 1.2; }

.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink-deep);
  margin: 0;
}
.h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0 0 0.4em;
  color: var(--ink-deep);
}
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 0 0 0.5em;
  color: var(--ink-deep);
}
.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--ink-deep);
  margin: 0 0 12px;
}
.h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.3;
  margin: 0 0 12px;
  color: var(--ink-deep);
}
.h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 10px;
  color: var(--ink-deep);
}

/* Page-title H1 — distinctive CentiMark interior-page H1 in safety gold */
.h1-page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 65px);
  line-height: 1.1;
  color: var(--accent-gold);
  margin: 0;
  text-align: center;
}

.lede {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 60ch;
}
.eyebrow {
  font-family: var(--font-eyebrow);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 16px;
  display: inline-block;
}
.eyebrow.on-dark { color: var(--accent-gold); }
.eyebrow.deep { color: var(--brand-deep); }
.eyebrow.gold { color: var(--accent-gold); }
p { margin: 0 0 1em; max-width: 72ch; }

/* BUTTONS -------------------------------------------------- */
/* CentiMark's signature button (custom.css L131-176):
   - Roboto 16px / weight 700
   - background: --brand (sky blue)
   - padding: 20px 45px
   - border-radius: 20px
   - signature `:before` 85px-wide RIGHT-EDGE SLAB in --brand-deep at 0.1 opacity that
     scales(1) → scales(1.5) and opacity 0.1 → 1 on hover, with border-radius going
     to 0 (so the slab squares off as it expands across the button). The CSS effect
     reads as a "deep navy wave fills the button from right to left on hover."
   This is THE CentiMark button move — preserve faithfully. */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  border: none;
  outline: none !important;
  background-color: var(--brand);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  padding: 20px 45px;
  transition: var(--transition);
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* The signature 85px slab — pinned right, scales+fills on hover */
.btn::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 85px;
  height: 100%;
  background-color: var(--brand-deep);
  opacity: 0.1;
  content: "";
  border-radius: var(--radius-lg);
  transform: scale(1);
  transition: 500ms ease;
  z-index: 0;
}
.btn:hover {
  color: #ffffff;
}
.btn:hover::before {
  width: 100%;
  opacity: 1;
  transform: scale(1.5);
  border-radius: 0;
  background-color: var(--brand-deep);
}
.btn > span,
.btn > * {
  position: relative;
  z-index: 1;
}

/* Outline variant (custom.css L329-360 — `menu-btn` style + `sppb-btn-rounded` ghost) */
.btn-outline {
  background-color: transparent;
  border: 2px solid var(--brand);
  color: var(--brand);
  padding: 18px 43px;     /* 2px less to compensate for border */
}
.btn-outline::before {
  background-color: var(--brand);
  opacity: 0;
  width: 100%;
  border-radius: 0;
  transform: scale(0.5);
}
.btn-outline:hover {
  color: #ffffff;
  background-color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover::before {
  opacity: 0;
  transform: scale(1);
}

/* Deep navy variant — for secondary CTAs in services / sectors hero */
.btn-deep {
  background-color: var(--brand-deep);
}
.btn-deep::before {
  background-color: var(--brand);
}
.btn-deep:hover::before {
  background-color: var(--brand);
}

/* Gold variant — for safety / emergency-response CTAs */
.btn-gold {
  background-color: var(--accent-gold);
  color: var(--ink-deep);
}
.btn-gold::before {
  background-color: var(--accent-gold-deep);
  opacity: 0.1;
}
.btn-gold:hover {
  color: #ffffff;
}
.btn-gold:hover::before {
  background-color: var(--accent-gold-deep);
  opacity: 1;
}

/* White on-dark variant */
.btn-white {
  background-color: #ffffff;
  color: var(--brand-deep);
}
.btn-white::before {
  background-color: var(--brand);
  opacity: 0.1;
}
.btn-white:hover {
  color: #ffffff;
}
.btn-white:hover::before {
  background-color: var(--brand);
  opacity: 1;
}

.btn-outline-light {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 18px 43px;
}
.btn-outline-light::before {
  background-color: #ffffff;
  opacity: 0;
}
.btn-outline-light:hover {
  background-color: #ffffff;
  color: var(--brand-deep);
  border-color: #ffffff;
}
.btn-outline-light:hover::before { opacity: 0; }

.btn .arrow svg { width: 14px; height: auto; fill: currentColor; display: block; margin-left: 10px; transition: transform 200ms ease; }
.btn:hover .arrow svg { transform: translateX(4px); }

.button-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* CHIP / TAG ----------------------------------------------- */
/* Card-overhang category badge — distinctive CentiMark article move (custom.css L901-914):
   `position: absolute; top: -45px; left: 15px;` — overhangs the card top */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--brand);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: var(--radius-lg);
}
.chip.deep { background: var(--brand-deep); }
.chip.gold { background: var(--accent-gold); color: var(--ink-deep); }
.chip.outline {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
}
.chip-overhang {
  position: absolute;
  top: -22px;
  left: 24px;
  z-index: 3;
}

/* LAYOUT --------------------------------------------------- */
.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section) 0; }
.section-sm { padding: var(--section-sm) 0; }
.section-tight { padding: 56px 0; }
.content-blocks > * { margin-bottom: var(--block-rhythm); }
@media (max-width: 768px) {
  .content-blocks > * { margin-bottom: 60px; }
}

/* Responsive container ladder — matches live custom.css */
@media (max-width: 1200px) { :root { --container: 1140px; } }
@media (max-width: 992px)  { :root { --container: 960px; --section: 80px; } }
@media (max-width: 768px)  { :root { --container: 720px; --section: 64px; } }
@media (max-width: 576px)  { :root { --container: 100%; --gutter: 1rem; --section: 48px; } }

/* NAVIGATION ----------------------------------------------- */
/* Live `#sp-header > .container`: white background panel with `border-radius: 20px` (custom.css L233-238).
   Sticky variant uses `box-shadow: 0 0 60px 0 rgba(0,0,0,0.07)` and `menu_sticky` keyframes
   slide-down. Nav items: 18px Roboto 700, color #4e4e4e, padding 35px 22px, line-height 36px,
   letter-spacing 0.02em — and the SIGNATURE 20px circle dot accent at the top center (`:before`
   with `transform: scaleY(0)`) that scales-Y in on hover/active. */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}
.nav-shell {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 8px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.nav-brand img {
  max-width: 200px;
  height: auto;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}
.nav-links li { position: relative; }
.nav-links a {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 35px 22px;
  line-height: 36px;
  letter-spacing: 0.02em;
  transition: color var(--transition-base) ease;
  position: relative;
  overflow: hidden;
  z-index: 3;
}
/* Signature 20px circle dot accent at top — scales-Y in on hover/active */
.nav-links a::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--brand);
  position: absolute;
  top: -10px;
  left: 50%;
  transition: transform 500ms ease;
  transform: scaleY(0) translateX(-50%);
  overflow: hidden;
  z-index: -1;
}
.nav-links a:hover,
.nav-links a.current {
  color: var(--brand);
}
.nav-links a:hover::before,
.nav-links a.current::before {
  transform: scaleY(1) translateX(-50%);
}
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Sticky shrink — matches custom.css L279-281 */
.nav.scrolled .nav-links a { padding: 25px 22px; }

/* Sub-menu — drops white panel with 10px bottom-corner radius (custom.css L375-381) */
.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 240px;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  box-shadow: var(--shadow-glow);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 99;
}
.nav-links li:hover > .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-submenu li a {
  padding: 8px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--ink-muted);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: block;
  text-transform: none;
  letter-spacing: 0;
}
.nav-submenu li a::before { display: none; }
.nav-submenu li:last-child a { border-bottom: 0; }
.nav-submenu li a:hover {
  color: #ffffff;
  background: var(--brand);
}

/* Outline-styled nav button (matches `menu-btn` from custom.css L329-360) */
.nav-buttons .btn-outline {
  padding: 16px 36px;
  font-size: 16px;
  border-width: 2px;
}

@media (max-width: 1200px) {
  .nav-links a { padding: 28px 18px; }
}
@media (max-width: 992px) {
  .nav-shell { grid-template-columns: 1fr auto; padding: 12px 18px; }
  .nav-links { display: none; }
}

/* CARDS ---------------------------------------------------- */
/* CentiMark's default card: 20px radius + signature 0 0 15px 0 rgba(0,0,0,0.10) shadow */
.card {
  background: var(--bg-pure);
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}
.card:hover {
  box-shadow: var(--shadow-deep);
  transform: translateY(-3px);
}
.card .img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: var(--brand-pale);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.card .body { padding: 32px 32px 36px; }
.card .body-meta-overhang { padding-top: 14px; }

/* Article-style card with overhanging chip — distinctive CentiMark blog/case-study move */
.card-overhang {
  position: relative;
  background: var(--bg-pure);
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.card-overhang .img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.card-overhang .img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  transition: transform 700ms ease;
}
.card-overhang:hover .img { transform: scale(1.04); }
.card-overhang .body {
  background: #fff;
  padding: 30px 30px 32px;
  position: relative;
  margin-top: -15px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  z-index: 2;
}
.card-overhang:hover { box-shadow: var(--shadow-deep); }

/* Frame card — gradient border, used on stat cards */
.card-frame {
  position: relative;
  background: var(--blue-gradient);
  border-radius: var(--radius-lg);
  padding: 4px;
  box-shadow: var(--shadow-card);
}
.card-frame .inner {
  background: #fff;
  border-radius: 17px;
  padding: 32px 32px 36px;
  height: 100%;
}

/* DARK SECTION -------------------------------------------- */
.dark {
  background: var(--ink-deep);
  color: #ffffff;
}
.dark .h1, .dark .h2, .dark .h3, .dark .h4, .dark .display { color: #ffffff; }
.dark .lede { color: var(--text-on-dark-muted); }
.dark p { color: var(--text-on-dark-muted); }
.dark a { color: var(--brand); }
.dark a:hover { color: #ffffff; }

.deep-section {
  background: var(--brand-deep);
  color: #ffffff;
}
.deep-section .h1, .deep-section .h2, .deep-section .h3, .deep-section .h4, .deep-section .display { color: #ffffff; }
.deep-section .lede { color: var(--text-on-dark-muted); }
.deep-section .eyebrow { color: var(--accent-gold); }

/* HERO ----------------------------------------------------- */
/* CentiMark hero: full-bleed photo + dark scrim + 42pt white display headline +
   uppercase signature CTA. Live homepage hero is two-column 6/6 with text + photo
   collage right; landing page hero is full-bleed with centered text. */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  color: #ffffff;
  overflow: hidden;
  background: var(--ink-deep);
}
.hero .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.hero .scrim-blue {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58,149,219,0.55) 0%, rgba(0,84,160,0.85) 100%);
  z-index: 1;
  mix-blend-mode: multiply;
}
.hero .container { position: relative; z-index: 2; }
.hero .display, .hero .h1 { color: #ffffff; }
.hero .lede { color: rgba(255,255,255,0.92); max-width: 56ch; }
.hero .eyebrow { color: var(--accent-gold); }

/* Page-title — interior-page top band with gold heading on warm-dark scrim
   (custom.css L489-555). The signature CentiMark interior-page move. */
.page-title {
  position: relative;
  padding: 170px 0 120px;
  text-align: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-color: var(--ink-deep);
}
.page-title::before {
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 100%;
  content: "";
  background: rgba(30, 30, 34, 0.30);
  z-index: 1;
}
.page-title > .container { position: relative; z-index: 2; }
.page-title .h1-page-title { margin-bottom: 16px; }
.page-title .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.10em;
  color: #ffffff;
  margin-top: 8px;
}
.page-title .breadcrumb a { color: #ffffff; transition: color var(--transition-base) ease; }
.page-title .breadcrumb a:hover { color: var(--brand); }
.page-title .breadcrumb .sep { padding: 0 0.8rem; opacity: 0.6; }

/* ICON HELPER --------------------------------------------- */
.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  fill: currentColor;
  vertical-align: middle;
  flex-shrink: 0;
}
.icon.sm { width: 16px; height: 16px; }
.icon.lg { width: 48px; height: 48px; }
.icon.xs { width: 14px; height: 14px; }

/* ICON CIRCLE — standard CentiMark service-tile lead element */
.icon-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--brand-pale);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.icon-circle.deep {
  background: var(--brand-deep);
  color: #ffffff;
}
.icon-circle.gold {
  background: var(--accent-gold-pale);
  color: var(--accent-gold-deep);
}

/* FOOTER --------------------------------------------------- */
/* CentiMark footer: dark charcoal #252525 surface (offcanvas-menu used same color),
   centered logo, 4-column nav grid, social icons, copyright bar. NOT rounded
   like Montgomery — corporate full-bleed. */
.footer {
  background: var(--ink-charcoal);
  color: rgba(255,255,255,0.85);
  padding: 72px 0 0;
}
.footer .footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer .footer-brand img {
  max-width: 200px;
  margin-bottom: 24px;
}
.footer .footer-brand .blurb {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.70);
  max-width: 36ch;
  font-weight: 400;
  margin: 0 0 24px;
}
.footer .footer-brand .phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  display: block;
  margin-bottom: 4px;
}
.footer .footer-brand .phone-label {
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}
.footer h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 20px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; font-size: 14px; }
.footer ul li a {
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  transition: color var(--transition-base) ease;
}
.footer ul li a:hover { color: var(--brand); }
.footer .socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer .socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer .socials a:hover {
  background: var(--brand);
  transform: translateY(-2px);
}
.footer .socials a svg { width: 18px; height: 18px; fill: currentColor; }
.footer .footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer .footer-bottom .legal a {
  color: rgba(255,255,255,0.70);
  margin-left: 18px;
  transition: color var(--transition-base) ease;
}
.footer .footer-bottom .legal a:hover { color: var(--brand); }

@media (max-width: 992px) {
  .footer .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 576px) {
  .footer .footer-top { grid-template-columns: 1fr; }
}

/* ANNOUNCEMENT BAR — emergency 24/7 tagline ---------------- */
.announcement-bar {
  background: var(--brand-deep);
  color: #ffffff;
  padding: 12px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: center;
}
.announcement-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.announcement-bar a {
  color: var(--accent-gold);
  text-decoration: underline;
}
.announcement-bar a:hover { color: #ffffff; }

/* RESPONSIVE ---------------------------------------------- */
@media (max-width: 880px) {
  .section { padding: 64px 0; }
}

/* ======================================================
   SIGNATURE PATTERNS — CentiMark commercial-roofing extensions
   to the canonical section catalog.
   ====================================================== */

/* SERVICES-GRID — replaces canonical `ministries-grid` (custom.css `sppb-addon-overlay-image`
   pattern from homepage). Photo tile with caption-overlay-on-hover + arrow CTA below.
   This pattern is THE CentiMark services grid signature. */
.sig-services-grid {
  padding: 88px 0;
  background: var(--bg-pure);
}
.sig-services-grid .head {
  text-align: center;
  margin-bottom: 56px;
}
.sig-services-grid .head .h2 { margin-bottom: 12px; }
.sig-services-grid .head .lede { margin-left: auto; margin-right: auto; }
.sig-services-grid .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sig-service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  background: var(--bg-pure);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.sig-service-card .img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 700ms ease;
}
.sig-service-card:hover .img { transform: scale(1.04); }
.sig-service-card .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,84,160,0) 50%, rgba(0,84,160,0.65) 100%);
  transition: var(--transition);
}
.sig-service-card:hover .img::after {
  background: linear-gradient(180deg, rgba(0,84,160,0.20) 0%, rgba(0,84,160,0.85) 100%);
}
.sig-service-card .caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}
.sig-service-card .caption .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 8px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.sig-service-card .caption .desc {
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 500ms ease, opacity 500ms ease, margin 500ms ease;
}
.sig-service-card:hover .caption .desc {
  max-height: 80px;
  opacity: 1;
  margin-bottom: 12px;
}
.sig-service-card .caption .arrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent-gold);
}
.sig-service-card .caption .arrow svg { width: 14px; margin-left: 8px; }

/* SECTORS-GRID — vertical industry tiles (Retail / Industrial / Healthcare / Education /
   Government / Cold Storage). DISTINCTIVE TO CENTIMARK — they organize by sector. */
.sig-sectors-grid {
  padding: 88px 0;
  background: var(--bg-soft);
}
.sig-sectors-grid .head {
  text-align: center;
  margin-bottom: 56px;
}
.sig-sectors-grid .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sig-sector-tile {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.sig-sector-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}
.sig-sector-tile .icon-wrap {
  background: var(--brand-pale);
  padding: 32px 24px 0;
  text-align: center;
  transition: var(--transition);
}
.sig-sector-tile:hover .icon-wrap {
  background: var(--brand);
}
.sig-sector-tile .icon-wrap img {
  height: 88px;
  width: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,84,160,0.2));
  transition: var(--transition);
}
.sig-sector-tile:hover .icon-wrap img {
  filter: brightness(0) invert(1);
}
.sig-sector-tile .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-deep);
  text-align: center;
  padding: 24px 16px 28px;
  letter-spacing: 0.01em;
  line-height: 1.3;
  transition: color var(--transition-base) ease;
}
.sig-sector-tile:hover .name { color: var(--brand); }

/* IMPACT-STATS — numerical stat bar (57 years / 100 offices / 650 crews / 100% commercial)
   Distinctive CentiMark "Why Partner" infographic move. */
.sig-impact-stats {
  padding: 96px 0;
  background: var(--blue-gradient);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.sig-impact-stats::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.sig-impact-stats .head {
  text-align: center;
  margin-bottom: 64px;
}
.sig-impact-stats .head .h2 { color: #ffffff; }
.sig-impact-stats .head .lede { color: rgba(255,255,255,0.85); margin-left: auto; margin-right: auto; }
.sig-impact-stats .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.sig-impact-stats .stat {
  position: relative;
  padding: 24px 16px;
}
.sig-impact-stats .stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(255,255,255,0.20);
}
.sig-impact-stats .stat .figure {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 1;
  color: var(--accent-gold);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.sig-impact-stats .stat .figure .unit {
  font-size: 0.55em;
  vertical-align: top;
  margin-left: 2px;
}
.sig-impact-stats .stat .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 4px;
}
.sig-impact-stats .stat .source {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  letter-spacing: 0.02em;
}
@media (max-width: 880px) {
  .sig-impact-stats .grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .sig-impact-stats .stat:nth-child(2)::after { display: none; }
}

/* REGIONAL OFFICES — replaces canonical service-area for commercial roofers
   3-up gradient-frame card with white inner card centered & shadowed */
.sig-regional-offices {
  padding: 88px 0;
}
.sig-regional-offices .head {
  text-align: center;
  margin-bottom: 56px;
}
.sig-regional-offices .map-wrap {
  text-align: center;
  margin-bottom: 56px;
}
.sig-regional-offices .map-wrap img {
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.sig-regional-offices .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sig-office-card {
  background: var(--bg-pure);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  border-top: 4px solid var(--brand);
  transition: var(--transition);
}
.sig-office-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-deep);
  border-top-color: var(--accent-gold);
}
.sig-office-card .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink-deep);
  margin: 0 0 6px;
  letter-spacing: 0;
}
.sig-office-card .region {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 18px;
}
.sig-office-card .address {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 12px;
  font-weight: 400;
}
.sig-office-card .phone {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-deep);
  font-size: 18px;
  margin: 0;
}

/* CASE-STUDY CARD — project showcase with sector tag + sq ft + roof type */
.sig-case-studies {
  padding: 88px 0;
  background: var(--bg-pure);
}
.sig-case-studies .head {
  text-align: center;
  margin-bottom: 56px;
}
.sig-case-studies .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sig-case-card {
  background: var(--bg-pure);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}
.sig-case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-deep);
}
.sig-case-card .img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.sig-case-card .sector-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brand);
  color: #ffffff;
  padding: 8px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
}
.sig-case-card .body {
  padding: 28px 28px 32px;
}
.sig-case-card .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink-deep);
  margin: 0 0 10px;
  line-height: 1.3;
}
.sig-case-card .meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--ink-faint);
  font-size: 13px;
}
.sig-case-card .meta dt {
  color: var(--brand);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
}
.sig-case-card .meta dd {
  color: var(--ink-deep);
  font-weight: 600;
  margin: 0;
}

/* SAFETY-RECORD-STRIP — LTIR / EMR / OSHA compliance bar
   Distinctive B2B commercial-trades pattern — sales asset for facility managers */
.sig-safety-record {
  padding: 64px 0;
  background: var(--ink-deep);
  color: #ffffff;
  position: relative;
}
.sig-safety-record::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: var(--accent-gold);
}
.sig-safety-record .head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.sig-safety-record .head .h3 { color: #ffffff; margin: 0; }
.sig-safety-record .head .eyebrow { color: var(--accent-gold); }
.sig-safety-record .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.sig-safety-record .metric {
  text-align: left;
}
.sig-safety-record .metric .figure {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  color: var(--accent-gold);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.sig-safety-record .metric .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 4px;
}
.sig-safety-record .metric .desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin: 0;
}

/* CERTIFICATIONS-ROW — OSHA / ANSI / GAF / Carlisle / Sika logos band
   Critical trust-signal pattern for B2B commercial roofers */
.sig-certifications {
  padding: 64px 0;
  background: var(--bg-soft);
}
.sig-certifications .head {
  text-align: center;
  margin-bottom: 40px;
}
.sig-certifications .grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}
.sig-certifications .cert {
  aspect-ratio: 16/10;
  background: #ffffff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.sig-certifications .cert:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-deep);
}
.sig-certifications .cert .label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--brand-deep);
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 880px) {
  .sig-certifications .grid { grid-template-columns: repeat(3, 1fr); }
}

/* 24/7 EMERGENCY RESPONSE — replaces canonical service-times for commercial roofers
   The B2B-equivalent is "24/7/365 emergency leak response" */
.sig-emergency {
  padding: 88px 0;
  background: var(--brand-deep);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.sig-emergency::before {
  content: "24/7";
  position: absolute;
  right: -20px;
  bottom: -50px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(280px, 35vw, 480px);
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  letter-spacing: -0.05em;
}
.sig-emergency .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.sig-emergency .h2 { color: var(--accent-gold); margin: 0 0 18px; }
.sig-emergency .lede { color: rgba(255,255,255,0.92); }
.sig-emergency .promise-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 36px;
}
.sig-emergency .promise-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 16px;
  color: rgba(255,255,255,0.92);
}
.sig-emergency .promise-list li::before {
  content: "✓";
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.sig-emergency .phone-card {
  background: var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: var(--ink-deep);
  box-shadow: 0 20px 60px -20px rgba(245,179,53,0.5);
}
.sig-emergency .phone-card .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 12px;
}
.sig-emergency .phone-card .number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 44px);
  color: var(--ink-deep);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.sig-emergency .phone-card .sub {
  font-size: 14px;
  color: var(--ink-deep);
  font-weight: 600;
}
@media (max-width: 880px) {
  .sig-emergency .container { grid-template-columns: 1fr; }
}

/* SAFETY DIRECTOR PROFILE — replaces canonical staff-profile
   Commercial roofers profile their Safety Director — it's a sales asset */
.sig-safety-director {
  padding: 96px 0;
  background: var(--bg-soft);
}
.sig-safety-director .container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.sig-safety-director .photo-wrap {
  position: relative;
  max-width: 420px;
  width: 100%;
  justify-self: end;
}
.sig-safety-director .photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  background-color: var(--brand-pale);
  box-shadow: var(--shadow-card);
}
.sig-safety-director .photo-wrap::after {
  content: "";
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 90px;
  height: 90px;
  background: var(--accent-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.sig-safety-director .info .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  margin: 0 0 6px;
  color: var(--ink-deep);
}
.sig-safety-director .info .role {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 24px;
}
.sig-safety-director .info .bio {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 28px;
  font-weight: 400;
}
.sig-safety-director .info .credentials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.sig-safety-director .info .credentials .chip {
  background: #ffffff;
  color: var(--brand-deep);
  border: 1px solid var(--ink-faint);
}
@media (max-width: 880px) {
  .sig-safety-director .container { grid-template-columns: 1fr; gap: 32px; }
  .sig-safety-director .photo-wrap { justify-self: center; }
}

/* CUSTOMER TESTIMONIAL — replaces canonical member-quote
   Commercial-flavored: company logo + sector tag + project size */
.sig-customer-testimonial {
  background: var(--bg-pure);
  padding: 96px 0;
}
.sig-customer-testimonial .container {
  max-width: 980px;
  margin: 0 auto;
}
.sig-customer-testimonial .quote-block {
  background: var(--brand-pale);
  border-radius: var(--radius-lg);
  padding: 64px 64px 56px;
  position: relative;
  border-left: 6px solid var(--brand);
}
.sig-customer-testimonial .quote-mark {
  position: absolute;
  top: 24px;
  left: 56px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 120px;
  line-height: 1;
  color: var(--brand);
  opacity: 0.18;
  pointer-events: none;
}
.sig-customer-testimonial .quote {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.5;
  color: var(--ink-deep);
  margin: 0 0 32px;
  position: relative;
  z-index: 1;
}
.sig-customer-testimonial .attribution {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}
.sig-customer-testimonial .attribution .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: var(--shadow-card);
}
.sig-customer-testimonial .attribution .who .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-deep);
  margin: 0;
}
.sig-customer-testimonial .attribution .who .role {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-soft);
  margin: 4px 0 0;
}
.sig-customer-testimonial .attribution .badge {
  text-align: right;
  font-family: var(--font-display);
}
.sig-customer-testimonial .attribution .badge .sector {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0;
}
.sig-customer-testimonial .attribution .badge .size {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-deep);
  margin: 4px 0 0;
}

/* ROOF SYSTEMS — TPO, EPDM, SPF, Metal, BUR. Distinctive trades-vertical pattern */
.sig-roof-systems {
  padding: 88px 0;
  background: var(--bg-pure);
}
.sig-roof-systems .head {
  text-align: center;
  margin-bottom: 56px;
}
.sig-roof-systems .grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.sig-system-card {
  text-align: center;
  padding: 36px 24px 32px;
  background: var(--bg-pure);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
  border-top: 4px solid var(--brand);
}
.sig-system-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
  border-top-color: var(--accent-gold);
}
.sig-system-card .icon-circle {
  margin: 0 auto 16px;
}
.sig-system-card .name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink-deep);
  margin: 0 0 4px;
  letter-spacing: 0.02em;
}
.sig-system-card .full-name {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  text-transform: uppercase;
  font-weight: 600;
}
.sig-system-card .desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  font-weight: 400;
}
@media (max-width: 992px) {
  .sig-roof-systems .grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 576px) {
  .sig-roof-systems .grid { grid-template-columns: repeat(2, 1fr); }
}

/* CTA-BAND — distinctive blue gradient band with right-edge gold accent panel */
.sig-cta-band {
  position: relative;
  background: var(--blue-gradient);
  border-radius: var(--radius-lg);
  padding: 72px 80px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.sig-cta-band::before {
  content: "";
  position: absolute;
  right: -30%;
  top: -50%;
  width: 80%;
  height: 200%;
  background: rgba(245,179,53,0.10);
  transform: rotate(8deg);
  pointer-events: none;
}
.sig-cta-band .text { position: relative; z-index: 1; }
.sig-cta-band .text .h2 { color: #ffffff; margin: 0 0 12px; }
.sig-cta-band .text p { color: rgba(255,255,255,0.92); font-size: 17px; margin: 0; max-width: 50ch; }
.sig-cta-band .actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
@media (max-width: 880px) {
  .sig-cta-band {
    grid-template-columns: 1fr;
    padding: 56px 40px;
    text-align: center;
  }
  .sig-cta-band .actions { align-items: center; }
}

/* QUOTE-FORM — request-a-quote / facility-audit form card
   Critical commercial-roofing conversion pattern */
.sig-quote-form {
  padding: 88px 0;
  background: var(--bg-soft);
}
.sig-quote-form .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.sig-quote-form .pitch .h2 { color: var(--brand-deep); margin: 0 0 16px; }
.sig-quote-form .pitch .lede { margin: 0 0 32px; }
.sig-quote-form .pitch .checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.sig-quote-form .pitch .checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.sig-quote-form .pitch .checklist li::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'><path d='M9 16.2l-3.5-3.6L4 14l5 5 11-11-1.4-1.4z'/></svg>") center/16px no-repeat;
  flex-shrink: 0;
}
.sig-quote-form .form-card {
  background: var(--bg-pure);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--brand);
}
.sig-quote-form .form-card .form-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
}
.sig-quote-form .form-card .form-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--ink-deep);
  margin: 0 0 24px;
  line-height: 1.2;
}
.sig-quote-form .form-card .field { margin-bottom: 18px; }
.sig-quote-form .form-card .field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-deep);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.sig-quote-form .form-card .field input,
.sig-quote-form .form-card .field textarea,
.sig-quote-form .form-card .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-deep);
  background: #ffffff;
  transition: border-color var(--transition-base) ease, box-shadow var(--transition-base) ease;
}
.sig-quote-form .form-card .field input:focus,
.sig-quote-form .form-card .field textarea:focus,
.sig-quote-form .form-card .field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(58,149,219,0.15);
}
.sig-quote-form .form-card .field textarea { min-height: 110px; resize: vertical; }
.sig-quote-form .form-card .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sig-quote-form .form-card .submit { width: 100%; justify-content: center; margin-top: 8px; }
@media (max-width: 880px) {
  .sig-quote-form .container { grid-template-columns: 1fr; }
  .sig-quote-form .form-card .row { grid-template-columns: 1fr; }
}

/* PARTNERSHIP / WARRANTY BLOCK — Single-Source Warranty pitch */
.sig-warranty {
  padding: 88px 0;
  background: var(--bg-pure);
}
.sig-warranty .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}
.sig-warranty .seal {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--blue-gradient);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  box-shadow: var(--shadow-stat);
  margin: 0 auto;
  font-family: var(--font-display);
  position: relative;
}
.sig-warranty .seal::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.4);
}
.sig-warranty .seal .top {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 8px;
}
.sig-warranty .seal .big {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.sig-warranty .seal .label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

/* INDUSTRIES NAVIGATION — sectors quick-jump bar */
.sig-industries-nav {
  padding: 32px 0;
  background: var(--brand-deep);
  color: #ffffff;
  position: relative;
}
.sig-industries-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.sig-industries-nav .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent-gold);
}
.sig-industries-nav .links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.sig-industries-nav .links a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition-base) ease;
}
.sig-industries-nav .links a:hover { color: var(--accent-gold); }

/* PROCESS STEPS — Inspect / Quote / Schedule / Install / Warranty (5-step strip) */
.sig-process {
  padding: 88px 0;
  background: var(--bg-soft);
}
.sig-process .head {
  text-align: center;
  margin-bottom: 64px;
}
.sig-process .grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.sig-process .grid::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--brand);
  opacity: 0.15;
  z-index: 0;
}
.sig-process .step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.sig-process .step .num-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--brand);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.sig-process .step:hover .num-circle {
  background: var(--brand);
  color: #ffffff;
  transform: scale(1.05);
}
.sig-process .step .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-deep);
  margin: 0 0 8px;
}
.sig-process .step .desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 992px) {
  .sig-process .grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .sig-process .grid::before { display: none; }
}

/* INFO BAR / CALL-OUT — emergency-leak inline strip */
.sig-info-bar {
  background: var(--accent-gold);
  color: var(--ink-deep);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-card);
}
.sig-info-bar .text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-deep);
}
.sig-info-bar .text strong { color: var(--brand-deep); }

/* ============ DS NAV (3-tab sticky) ============ */
.ds-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  font-family: 'Inter', system-ui, sans-serif;
}
.ds-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ds-nav-brand {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-deep);
  text-decoration: none;
  letter-spacing: -0.005em;
}
.ds-nav-tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
}
.ds-nav-tabs a {
  display: block;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 6px;
  transition: background 160ms, color 160ms;
}
.ds-nav-tabs a:hover {
  background: rgba(0,0,0,0.04);
  color: var(--ink-deep);
}
.ds-nav-tabs a.active {
  background: var(--brand);
  color: #fff;
}
