/* ============================================================
   RELY Snow Removal — site/style.css
   Mobile-first, single stylesheet, semantic HTML.
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --color-primary: #001D3D;            /* deep navy */
  --color-primary-dark: #00132a;
  --color-primary-mid: #112748;        /* mid navy used in hero & services bg */
  --color-fg-on-dark: #ffffff;
  --color-secondary: #ABCCE7;          /* pale ice blue */
  --color-accent: #42A5F5;             /* light snowflake blue (button bg) */
  --color-accent-dark: #176ABC;        /* link blue / inline accent */
  --color-text: #2E2E32;
  --color-text-muted: #6c6f76;
  --color-charcoal: #2E2E32;          /* footer / dark surfaces */
  --color-bg: #ffffff;
  --color-bg-alt: #F3F3F3;
  --color-border: #e1e4ea;
  --color-error: #b00020;
  --color-focus: #176ABC;

  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;

  --shadow-sm: 0 1px 2px rgba(0, 29, 61, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 29, 61, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 29, 61, 0.25);

  --max-w: 1200px;
  --gap: clamp(1rem, 3vw, 2rem);

  --font-sans: "Raleway", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Raleway", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; /* headings now use Raleway */
  --font-watermark: "Raleway", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; /* hero watermark (uppercase + bold via .hero-watermark) */
}

/* ---------- Self-hosted font (Raleway variable, latin subset) ---------- */
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 100 900; /* variable wght axis — covers 400–800 used on the site */
  font-display: swap;
  src: url("/fonts/raleway.woff2") format("woff2");
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
:target,
section[id] { scroll-margin-top: calc(80px + 1rem); }
html, body { overflow-x: clip; } /* safety net against rogue horizontal overflow */
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--color-primary);
}
h1 { font-size: clamp(2.25rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.5rem, 1.25rem + 0.9vw, 1.9rem); text-transform: none; margin-bottom: 0.7em; } /* fluid ~24px→~30px, smooth across phone→desktop; uniform space below */
h3 { font-size: clamp(1.05rem, 2.2vw, 1.25rem); }                      /* 20px desktop, scales down on mobile */
h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-fg-on-dark);
  text-transform: uppercase;
}
p { margin: 0 0 1em; }
a { color: var(--color-accent-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }

/* ---------- A11y ---------- */
:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
  background: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 0; top: 0; width: auto; height: auto; }
.visually-hidden,
.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
main { display: block; }
section { padding: clamp(3rem, 7vw, 5rem) 0; }
.section-dark { background: var(--color-primary); color: var(--color-fg-on-dark); }
.section-dark h2, .section-dark h3 { color: var(--color-fg-on-dark); }
.section-dark p { color: rgba(255,255,255,0.82); }
.section-dark a { color: var(--color-secondary); }
/* keep button text on intent inside dark sections (the rule above would otherwise tint links) */
.section-dark .btn-primary,
.section-dark .btn-primary:hover,
.section-dark .btn-outline-light { color: #fff; }
.section-dark .btn-outline-light:hover { color: var(--color-primary); }

/* Accent inline-text helper: RELY SNOW REMOVAL inside headings */
.accent { color: var(--color-accent-dark); }
.accent-light { color: var(--color-secondary); }

/* Subhead pattern — blue uppercase under H2 (used on h3 elements with this class) */
.subhead {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--color-accent-dark);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem); /* match h3 — sits under the h2 as a kicker */
  margin: 1.25em 0 0.4em;
  letter-spacing: 0.01em;
  font-weight: 400;
  line-height: 1.15;
}
.section-dark .subhead { color: var(--color-secondary); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  min-height: 80px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-primary);
  text-decoration: none;
}
.brand-mark { width: 44px; height: 44px; flex-shrink: 0; }
.brand-logo { height: 56px; width: auto; display: block; }
@media (max-width: 600px) { .brand-logo { height: 44px; } }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}
.brand-text .name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}
.brand-text .tag {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
}
.site-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem 2rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item { position: relative; }
.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1.5rem 0.25rem; /* tall hit area so dropdown stays open while moving cursor */
}
.nav-item > a:hover { color: var(--color-accent-dark); }
.nav-caret { transition: transform .15s ease; flex-shrink: 0; }
.has-dropdown:hover > a .nav-caret,
.has-dropdown:focus-within > a .nav-caret { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 29, 61, 0.18);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .15s ease, visibility .15s ease, transform .15s ease;
  border-top: 3px solid var(--color-accent);
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li { margin: 0; }
.dropdown a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
}
.dropdown a:hover,
.dropdown a:focus-visible { background: var(--color-bg-alt); color: var(--color-link); }
.dropdown-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 380px;
  gap: 0;
}
.nav-cta { margin-left: 0.5rem; }
.menu-toggle { display: none; background: transparent; border: 0; padding: 0; width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; }
.menu-toggle span { display: block; position: relative; width: 22px; height: 2px; background: #fff; transition: background-color .2s ease; }
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform .25s ease, top .25s ease;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after  { top:  6px; }
.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.is-open span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .site-header {
    position: static; /* scroll fully off-screen on mobile */
    background: var(--color-primary);
    border-bottom: 0;
  }
  .brand-text .name, .brand-text .tag { color: #fff; }
  .site-header .container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem 0.75rem;
    padding: 0.75rem 1.25rem;
  }
  .site-nav { display: none; }
  .brand { order: 1; }
  .menu-toggle { order: 2; display: inline-flex; }
  .nav-cta {
    order: 3;
    margin: 0;
    flex: 0 1 auto;
  }
  /* If both can't fit side-by-side, push the phone to its own full-width row below the logo */
  @media (max-width: 460px) {
    .nav-cta { flex: 1 1 100%; text-align: center; }
  }

  /* Mobile drawer: revealed when .is-open is set by nav.js */
  .site-nav.is-open {
    display: block;
    order: 4;
    flex: 1 1 100%;
    margin: 0.75rem -1.25rem -0.75rem; /* extend full bleed to container edges */
    padding: 0.25rem 1.25rem 1rem;
    background: var(--color-primary-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .site-nav.is-open .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav.is-open .nav-item { width: 100%; position: static; }
  .site-nav.is-open .nav-item + .nav-item {
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .site-nav.is-open .nav-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    color: #fff;
    font-size: 1rem;
  }
  /* Caret stays visible in drawer; rotates 180° on expand */
  .site-nav.is-open .nav-caret {
    transition: transform .2s ease;
  }
  .site-nav.is-open .has-dropdown.expanded > a .nav-caret {
    transform: rotate(180deg);
  }
  /* Dropdowns start collapsed in the mobile drawer; show only when .expanded */
  .site-nav.is-open .dropdown {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    border-top: 0;
    min-width: 0;
    padding: 0 0 0.5rem 1rem;
    margin: 0;
  }
  .site-nav.is-open .has-dropdown.expanded > .dropdown {
    display: block;
  }
  .site-nav.is-open .dropdown a {
    white-space: normal; /* allow long items to wrap on mobile drawer */
  }
  .site-nav.is-open .dropdown-2col {
    grid-template-columns: 1fr;
  }
  .site-nav.is-open .dropdown a {
    color: rgba(255,255,255,0.8);
    padding: 0.4rem 0;
    font-size: 0.9rem;
    white-space: normal;
  }
  .site-nav.is-open .dropdown a:hover,
  .site-nav.is-open .dropdown a:focus-visible {
    background: transparent;
    color: var(--color-secondary);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font: inherit;
  font-weight: 700;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .08s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
  min-height: 48px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover { background: var(--color-accent-dark); }
.btn-primary:active { transform: translateY(1px); }
.btn-outline-navy {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline-navy:hover { background: var(--color-primary); color: #fff; }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--color-primary); }
.btn-tel {
  background: var(--color-accent);
  color: #fff;
}
.btn-tel:hover { background: var(--color-accent-dark); }
.btn-block { display: flex; width: 100%; }

/* ---------- Hero ---------- */
.hero {
  --hero-notch: clamp(4rem, 9vw, 7rem); /* depth of the downward triangle */
  position: relative;
  /* Uniform height across pages: the box is governed by min-height and the
     content is vertically centered, so headline/lede/breadcrumb length no
     longer changes how tall the hero is. Padding is just minimum insets. */
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(44rem, 38rem + 14vw, 52rem);
  padding: clamp(5rem, 11vw, 9rem) 0 calc(clamp(8rem, 14vw, 11rem) + var(--hero-notch));
  background:
    linear-gradient(135deg, rgba(46, 46, 50, 0.65) 0%, rgba(46, 46, 50, 0.82) 100%),
    url("/images/snow-removal-service-bg.webp") center / cover no-repeat,
    var(--color-charcoal);
  color: #fff;
  text-align: center;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--hero-notch)), 50% 100%, 0 calc(100% - var(--hero-notch)));
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  margin: 0 0 2rem;
  text-transform: none;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.hero-lede {
  color: var(--color-secondary);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 0 auto 2rem;
  max-width: 56ch;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
}
.hero-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
  text-align: center;
  font-family: var(--font-watermark);
  font-weight: 800; /* Raleway extra-bold (the 800 cut is loaded) */
  font-size: clamp(6rem, 17vw, 14rem);
  line-height: 0.85;
  letter-spacing: -7px;
  color: rgba(255,255,255,0.12);
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
}
.hero-watermark span { display: block; }
.hero-watermark span:nth-child(1) { font-size: clamp(8rem, 22vw, 18rem); }
.hero-watermark span:nth-child(2) { font-size: clamp(4rem, 11vw, 9rem); }

/* ---------- Quote form (sits at the V-peak of the hero) ---------- */
.quote-form-section {
  position: relative;
  margin-top: clamp(-3rem, -5vw, -4rem);
  padding: 0 0 clamp(3rem, 6vw, 5rem);
  z-index: 3;
}
.quote-form-card {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 820px) {
  .quote-form-card { grid-template-columns: 1fr 1.4fr; gap: 2.5rem; padding: 2.5rem 3rem; }
}
.quote-form-pitch {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 0.5rem;
}
@media (min-width: 820px) { .quote-form-pitch { align-items: flex-start; text-align: left; } }
.quote-form-pitch .quote-form-title {
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 800;
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
}
.quote-form-pitch .quote-form-sub {
  color: var(--color-secondary);
  font-weight: 600;
  margin: 0;
}
.quote-form-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  color: var(--color-primary);
}
.quote-form-icon svg {
  display: block;
  transform: rotate(90deg); /* default: point right toward form */
  transition: transform .2s ease;
}
@media (max-width: 819px) {
  .quote-form-icon svg { transform: rotate(180deg); /* stacked: point down toward form */ }
}
.quote-form form { display: grid; gap: 0.75rem; }
.quote-form .row-2 { display: grid; gap: 0.75rem; grid-template-columns: 1fr; }
@media (min-width: 520px) { .quote-form .row-2 { grid-template-columns: 1fr 1fr; } }
.quote-form input,
.quote-form textarea {
  font: inherit;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-text);
  width: 100%;
  min-height: 48px;
}
.quote-form textarea { min-height: 140px; resize: vertical; }
.quote-form input:focus,
.quote-form textarea:focus {
  outline: 3px solid var(--color-accent);
  outline-offset: 1px;
}
.quote-form button[type="submit"] {
  background: var(--color-accent);
  color: #fff;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  min-height: 52px;
}
.quote-form button[type="submit"]:hover { background: var(--color-accent-dark); }

/* --- Turnstile responsiveness ---
   The widget renders at a fixed 300px width (Cloudflare's minimum), which would
   otherwise force the form column to 300px and overflow narrow phones. min-width:0
   lets the form/column shrink; the wrapper (a scroll container) drops the widget's
   300px min-content contribution and clips any spillover; the scale steps keep the
   whole widget visible as the column gets narrower. */
.quote-form,
.quote-form form { min-width: 0; }
.turnstile-wrap {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.turnstile-wrap .cf-turnstile { transform-origin: left top; }
@media (max-width: 400px) {
  .turnstile-wrap .cf-turnstile { transform: scale(0.9); }
  .turnstile-wrap { height: 59px; }
}
@media (max-width: 345px) {
  .turnstile-wrap .cf-turnstile { transform: scale(0.74); }
  .turnstile-wrap { height: 48px; }
}

/* ---------- Flex-media (workhorse content block) ----------
   Text column + media column. The home page's Trust and Why sections are both
   instances of this one block. Variants:
     .flex-media--reverse  → media column on the LEFT (desktop)
   The text column may contain a heading, subheads, paragraphs, an optional
   .snow-list feature list, and a .flex-media-cta-row. */
.flex-media-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: 1fr;
  align-items: start; /* image (and the buttons under it) top-align with the heading */
}
@media (min-width: 880px) { .flex-media-grid { grid-template-columns: 1.1fr 1fr; } }
.flex-media-text > :first-child { margin-top: 0; }
.flex-media-figure img {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 0 15px -3px rgba(46, 46, 50, 0.47);
}
.flex-media .snow-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 1.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 560px) { .flex-media .snow-list { grid-template-columns: 1fr 1fr; } }
/* single-column variant (overrides the 2-col default) */
.flex-media .snow-list--single { grid-template-columns: 1fr; }
.flex-media-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
/* --reverse: put the media column first on desktop, natural order when stacked */
@media (min-width: 880px) {
  .flex-media--reverse .flex-media-figure { order: -1; }
}

/* --long: two-column layout for LONG copy, with the image cornered in one column.
   Default = image at the TOP of the right column; --long-reverse = image at the
   BOTTOM of the left column. Columns are equal height (stretch) so a bottom-pinned
   image sits flush with where the other column ends. Replaces the old --wrap and
   feature-columns blocks; holds ~2x the text of the side-by-side flex-media. */
.flex-media-long-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}
@media (min-width: 768px) {
  .flex-media-long-grid { grid-template-columns: 1fr 1fr; }
}
.flex-media-long-col { display: flex; flex-direction: column; }
.flex-media-long-col > :first-child { margin-top: 0; }
.flex-media-long-col h3 { color: var(--color-accent-dark); margin-top: 1.25em; }
.flex-media-long-figure { margin: 0; }
.flex-media-long-figure img {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 0 15px -3px rgba(46, 46, 50, 0.47);
}
/* image at the top of a column → gap below it; at the bottom → pushed down, gap above */
.flex-media-long-col > .flex-media-long-figure:first-child { margin-bottom: 1.25rem; }
.flex-media-long-col > .flex-media-long-figure:last-child { margin-top: auto; padding-top: 1.25rem; }

/* Snowflake bulleted list */
.snow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}
.snow-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 0.9rem;
  line-height: 1.5;
  color: var(--color-text);
}
.snow-list li strong { color: var(--color-primary); }
.snow-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><g stroke='%2342A5F5' stroke-width='4' stroke-linecap='round' fill='none'><line x1='32' y1='8' x2='32' y2='56'/><line x1='8' y1='32' x2='56' y2='32'/><line x1='14' y1='14' x2='50' y2='50'/><line x1='50' y1='14' x2='14' y2='50'/><line x1='14' y1='32' x2='20' y2='24'/><line x1='14' y1='32' x2='20' y2='40'/><line x1='50' y1='32' x2='44' y2='24'/><line x1='50' y1='32' x2='44' y2='40'/><line x1='32' y1='14' x2='24' y2='20'/><line x1='32' y1='14' x2='40' y2='20'/><line x1='32' y1='50' x2='24' y2='44'/><line x1='32' y1='50' x2='40' y2='44'/></g></svg>");
}
.section-dark .snow-list li { color: rgba(255,255,255,0.85); }
.section-dark .snow-list li strong { color: #fff; }

/* ---------- Services grid (dark) ---------- */
.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid var(--color-accent-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .12s ease, border-color .15s ease, box-shadow .15s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}
.service-card-header {
  background: var(--color-accent-dark);
  color: #fff;
  padding: 0.75rem 1rem;
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}
.service-card-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; gap: 0.75rem; }
.service-card-body img {
  width: calc(100% + 2.5rem);
  max-width: none; /* override global img max-width:100% so the bleed actually applies */
  margin: -1.25rem -1.25rem 0; /* bleed flush to left, top, right of card body */
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
}
.service-card-body p { color: rgba(255,255,255,0.78); margin: 0; font-size: 0.95rem; }
.service-card .service-card-cta {
  display: block;
  margin-top: auto;
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.service-card .service-card-cta:hover { background: var(--color-accent-dark); color: #fff; }
/* Static (non-link) variant — looks like the CTA button but isn't interactive.
   Used on the service cards we deliberately don't link out from the home page. */
.service-card .service-card-cta--static { cursor: default; }
.service-card .service-card-cta--static:hover { background: var(--color-accent); color: #fff; }

/* ---------- Why-choose-us — now uses the shared .flex-media block (see above) ---------- */

/* ---------- Feature-aside (text column + aside links, over image bg) ---------- */
/* Background image behind the (already dark) section. Placed after .section-dark
   in source so it wins the equal-specificity background cascade. Swap the image
   once real content/photography lands. */
.feature-aside {
  position: relative;
  /* solid navy from .section-dark — no background image */
}
.feature-aside-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .feature-aside-grid { grid-template-columns: 1.5fr 1fr; } }
.feature-aside-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.feature-aside-box {
  background: var(--color-primary-mid);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  text-align: center;
}
.feature-aside-box .feature-aside-box-title {
  color: #fff;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.05;
}
.feature-aside-box .btn { width: 100%; background: var(--color-secondary); color: var(--color-primary); }
.feature-aside-box .btn:hover { background: #fff; }

/* ---------- Spotlight ---------- */
/* ---------- Banner (flex block: centered content over image bg) ---------- */
.banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0, 29, 61, 0.78) 0%, rgba(0, 29, 61, 0.88) 100%),
    url("/images/parking-lot-snow-removal-piles-bg.webp") center / cover no-repeat,
    var(--color-primary);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.banner-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.banner h2 { color: #fff; }
.banner p { color: rgba(255, 255, 255, 0.85); }
.banner-kicker {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-secondary) !important;
  margin: 0 0 0.5rem;
}
.banner-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.spotlight {
  position: relative;
  background:
    linear-gradient(135deg, rgba(46, 46, 50, 0.82) 0%, rgba(46, 46, 50, 0.92) 100%),
    url("/images/downtown-grand-rapids-mi-skyline-bg.webp") center / cover no-repeat,
    var(--color-charcoal);
  background-attachment: fixed;
  color: #fff;
}
.spotlight .container { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
@media (min-width: 880px) { .spotlight .container { grid-template-columns: 1fr 1.3fr; } }
/* --reverse: narrative gets the wide column on the left, areas list narrow on the right */
@media (min-width: 880px) { .spotlight--reverse .container { grid-template-columns: 1.3fr 1fr; } }
.spotlight h3 { color: #fff; margin-bottom: 0.75rem; }
.spotlight h2 { color: var(--color-secondary); }
.spotlight-side-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 1rem;
}
.spotlight-areas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1.5rem;
}
@media (min-width: 480px) { .spotlight-areas { grid-template-columns: 1fr 1fr; } }
.spotlight-areas li { color: rgba(255,255,255,0.9); }
.spotlight-areas a { color: rgba(255,255,255,0.9); text-decoration: none; }
.spotlight-areas a:hover { color: #fff; text-decoration: underline; }

/* ---------- (feature-columns retired — long content now uses .flex-media--long) ---------- */

/* ---------- How it works ---------- */
.process-intro { max-width: 70ch; margin: 0 auto 2.5rem; text-align: center; }
.process-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 600px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .process-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); } }
.process-step { text-align: center; }
.process-step img,
.process-step .process-step-icon {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step .process-step-icon {
  background: var(--color-primary-mid);
  color: var(--color-secondary);
}
.process-step .step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.process-step h3 { color: #fff; margin-bottom: 0.5rem; }
.process-step p { color: rgba(255,255,255,0.78); font-size: 0.95rem; }

/* Mini CTA inside dark sections */
.mini-cta {
  margin-top: 3rem;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
}
.mini-cta p {
  color: var(--color-accent);
  font-weight: 700;
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}
.mini-cta p + p { color: rgba(255,255,255,0.78); font-weight: 400; margin-bottom: 1rem; }
.mini-cta .btn-primary { font-size: 0.95rem; color: #fff; }
.mini-cta .btn-primary:hover { color: #fff; }

/* ---------- Areas served chips (used elsewhere) ---------- */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}
.areas-list li {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0;
  padding: 0.35rem 0.9rem;
  font-size: 0.95rem;
  color: var(--color-primary);
}

/* ---------- Testimonials carousel ---------- */
.testimonials { background: var(--color-bg-alt); }
.testi-carousel {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1rem);
  margin-top: 2rem;
}
.testi-viewport {
  overflow: hidden;
  flex: 1 1 auto;
  min-width: 0; /* allow the flex item to shrink instead of forcing overflow */
}
.testi-track {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  will-change: transform;
}
.testi-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0.5rem clamp(0.25rem, 2vw, 1.5rem);
}
.testi-quote {
  margin: 0 auto;
  max-width: 760px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-accent);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.testi-quote > p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
  font-style: italic;
  color: var(--color-text);
  margin: 0 0 1.5rem;
}
.testi-quote > p::before { content: "\201C"; }
.testi-quote > p::after  { content: "\201D"; }
.testi-cite {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.testi-name {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}
.testi-meta { font-size: 0.9rem; color: var(--color-text-muted); }
.testi-arrow {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color .15s ease, transform .08s ease;
}
.testi-arrow:hover { background: var(--color-accent); }
.testi-arrow:active { transform: scale(0.94); }
.testi-arrow svg { width: 24px; height: 24px; }
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  transition: background-color .15s ease;
}
.testi-dot.is-active { background: var(--color-accent); }
@media (prefers-reduced-motion: reduce) {
  .testi-track { transition: none !important; }
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-accent);
  flex-shrink: 0;
}
.faq-item[open] > summary::after { content: "−"; }
.faq-item > .faq-body { padding: 0 1.25rem 1.25rem; color: var(--color-text-muted); }

/* ---------- Get In Touch ---------- */
.cta-split {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 880px) { .cta-split { grid-template-columns: 1fr 1fr; } }
/* .cta-split h2 uses the uniform global h2 margin (no override) */
.cta-split .btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* CTA — single centered column (not full-width) */
.cta-center { max-width: 680px; margin: 0 auto; text-align: center; }
.cta-center .btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-charcoal);
  color: #c9cfd8;
  padding: 3rem 0 1.5rem;
}
.site-footer a { color: #c9cfd8; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; } }
.footer-grid h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.4rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0.75rem 0 0; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-logo {
  height: 80px;
  width: auto;
  display: block;
  max-width: 100%;
}
@media (max-width: 720px) {
  .footer-logo { height: 64px; }
}
.footer-contact .phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.footer-contact address { font-style: normal; line-height: 1.7; margin-top: 0.75rem; }
.legal {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: #8a909a;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
.legal a { margin-right: 1rem; }

/* ============================================================
   Service page — content column + sticky right rail
   (template basis for /services/<slug>/)
   ============================================================ */

/* .hero-service inherits the home-page .hero dimensions as-is (same height);
   it only carries the breadcrumb above the H1 and its own hero photo. */
.hero-service {
  background:
    linear-gradient(135deg, rgba(46, 46, 50, 0.65) 0%, rgba(46, 46, 50, 0.82) 100%),
    url("/images/snow-hauling-relocation-bg.webp") center / cover no-repeat,
    var(--color-charcoal);
}

/* Breadcrumb (sits above the H1 inside the hero) */
.breadcrumb { margin: 0 0 1rem; }
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.75);
}
.breadcrumb li:not(:last-child)::after {
  content: "/";
  color: rgba(255, 255, 255, 0.4);
}
.breadcrumb a { color: var(--color-secondary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: #fff; }

/* Two-column layout: content + rail */
.service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 960px) {
  .service-layout { grid-template-columns: minmax(0, 1fr) 330px; }
}

/* Content column */
.service-content > :first-child { margin-top: 0; }
.service-content h2 {
  margin-top: 1.8em;
  color: var(--color-primary);
}
/* in-page anchor targets clear the sticky header on jump */
.service-content h2[id] { scroll-margin-top: calc(80px + 1rem); }
.service-content h3 {
  margin-top: 1.4em;
  color: var(--color-accent-dark);
  /* size inherits the global h3 (20px desktop) so it matches every other page */
}
.service-intro { color: var(--color-text); }
.service-areas-line {
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}
.service-areas-line strong { color: var(--color-primary); }

/* Numbered process steps */
.process-steps {
  list-style: none;
  counter-reset: step;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}
.process-steps li {
  position: relative;
  padding-left: 3.75rem;
  counter-increment: step;
  min-height: 2.75rem;
}
.process-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
}
.process-steps h3 { margin: 0 0 0.35rem; color: var(--color-primary); }
.process-steps p { margin: 0; }

/* Sticky right rail */
.service-rail {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 960px) {
  .service-rail {
    position: sticky;
    top: calc(80px + 1.5rem); /* header height + breathing room */
  }
}
.rail-card {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 1.5rem 1.5rem 1.75rem;
}
.rail-title {
  margin: 0 0 1rem;
  text-align: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rail-nav { list-style: none; margin: 0; padding: 0; }
.rail-nav li { margin: 0; }
.rail-nav a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 0;
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.3;
}
/* leading navigation arrow from the icon sprite; color follows currentColor */
.rail-nav a svg { flex-shrink: 0; }
.rail-nav a:hover { color: #fff; text-decoration: underline; }
.rail-nav a[aria-current="page"] { color: #fff; font-weight: 700; }
.rail-cta {
  background: var(--color-primary-mid);
  color: #fff;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}
.rail-cta-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}
.rail-cta-sub { margin: 0 0 0.25rem; color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; }

/* Final dark CTA (call / quote split) */
.final-cta .cta-split { margin-top: 2.5rem; align-items: start; }
.final-cta .cta-split h3 { margin-top: 0; color: #fff; }
.final-cta .cta-split .btn { margin-top: 0.5rem; }

/* ---------- Utility pages ---------- */
.page-narrow { max-width: 720px; margin: 0 auto; }
.page-narrow h2 { margin-top: 2em; }
.page-narrow ul { padding-left: 1.25em; }

/* ---------- Forms (contact / utility-page form-card) ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.25rem, 3vw, 2rem);
}
.form-grid {
  display: grid;
  gap: 1rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-weight: 600;
  font-size: 0.95rem;
}
.field .req { color: var(--color-error); margin-left: 0.15rem; }
.field input,
.field textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text);
  min-height: 48px;
  width: 100%;
  transition: border-color .12s ease, box-shadow .12s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field textarea:focus {
  border-color: var(--color-focus);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.18);
  outline: none;
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(176,0,32,0.15);
}
.field .help {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.field .error {
  font-size: 0.9rem;
  color: var(--color-error);
  display: none;
}
.field input[aria-invalid="true"] ~ .error,
.field textarea[aria-invalid="true"] ~ .error { display: block; }

.form-footnote {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}
.form-or {
  text-align: center;
  margin: 1.5rem 0;
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ---------- Heading weight (Raleway) ----------
   Headings use Raleway; give them real weight so they don't read thin.
   Placed last so it wins on cascade order. */
h1, h2, h3,
.subhead, .spotlight-side-title, .feature-aside-box .feature-aside-box-title,
.service-card-header, .rail-title { font-weight: 700; }
.process-step .step-num { font-weight: 800; }

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .mini-cta, .nav-cta { display: none; }
  body { font-size: 12pt; color: #000; background: #fff; }
}
