/**
 * Foundations demo — Jackson-spec design system, GDM edition (2026-08-19).
 *
 * DEMONSTRATION SCAFFOLDING (loaded only by parts/demo-chrome-header.php).
 * Same design system as the PVM demo (Jackson visual language: Montserrat
 * 400/500/700, uppercase 700 display scale, blacks #000/#282828, silver strip,
 * diagonal band cuts, B&W photo overlays). GDM adjustments:
 *   - accent role rides the fictitious Iron Ridge steel blue (#2e6da4 via ACF
 *     --primary-color) with WHITE on-accent text (blue needs light text where
 *     Jackson's yellow needed dark)
 *   - crimson #a30019 keeps the submit/call role (mirrors the GDM mother's red
 *     FREE QUOTE buttons) and powers the 24/7 emergency chip
 *   - persistent "Demonstration site" tag (fictitious labeled business)
 * Brand colors still flow from ACF via includes/brand-colors.php :root vars —
 * this sheet only maps them into the design roles.
 */

/* ---------- 1. Tokens + base ---------- */
.fdemo {
  --fd-accent: var(--primary-color, #2e6da4);
  --fd-accent-bright: var(--accent-color, #79a8d0); /* light steel for text/icons on black */
  --fd-accent-dark: #235379; /* no-color-mix fallback (original steel shade) */
  --fd-accent-dark: color-mix(in srgb, var(--fd-accent) 76%, #000); /* per-skin hover shade */
  --fd-on-accent: #fff;
  --fd-crimson: #a30019;
  --fd-crimson-dark: #82000f;
  --fd-black: #000;
  --fd-ink: #202020;
  --fd-charcoal: #282828;
  --fd-silver: #b2b2b2;
  --fd-gray: #f2f2f2;
  --fd-light: #fafafa;
  --fd-body-c: #3c3c3c;
  --fd-cut: 3vw;

  font-family: 'Montserrat', system-ui, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fd-body-c);
  background: #fff;
  overflow-x: clip; /* contains the 100vw full-bleed bands */
}
.fdemo h1, .fdemo h2, .fdemo h3, .fdemo h4 { font-family: 'Montserrat', system-ui, Arial, sans-serif; color: var(--fd-ink); }
.fdemo header p, .fdemo footer p { margin-bottom: 0; }
.fdemo img { max-width: 100%; height: auto; }

/* Display type scale (Jackson: ~70px band headlines, 44px hero H1, 30px H2, 25px cards) */
.fd-display   { font-size: clamp(32px, 4.8vw, 70px); font-weight: 700; text-transform: uppercase; line-height: 1.08; letter-spacing: .5px; margin: 0; }
.fd-display-2 { font-size: clamp(24px, 2.2vw, 30px); font-weight: 700; line-height: 1.2; margin: 0; }
.fd-kicker    { font-size: 13px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; }

/* ---------- 2. Utilities ---------- */
/* Diagonal band cut: apply to the band BELOW the seam; it rides up over the
   previous band and clips its own top edge on a slant (UABB row-separator port). */
.fd-cut-top      { clip-path: polygon(0 0, 100% var(--fd-cut), 100% 100%, 0 100%); margin-top: calc(var(--fd-cut) * -1); position: relative; z-index: 2; }
.fd-cut-top-rev  { clip-path: polygon(0 var(--fd-cut), 100% 0, 100% 100%, 0 100%); margin-top: calc(var(--fd-cut) * -1); position: relative; z-index: 2; }

/* Buttons: rectangular solid fills only (Jackson). Accent = primary action,
   crimson = phone/submit, white = secondary on photo/dark. */
.fd-btn { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; line-height: 1; padding: 17px 30px; border: 0; border-radius: 2px; cursor: pointer; text-decoration: none !important; transition: background .18s, color .18s; }
.fd-btn--accent  { background: var(--fd-accent);  color: var(--fd-on-accent) !important; }
.fd-btn--accent:hover { background: var(--fd-accent-dark); color: #fff !important; }
.fd-btn--white   { background: #fff; color: #161616 !important; }
.fd-btn--white:hover { background: var(--fd-accent); color: var(--fd-on-accent) !important; }
.fd-btn--crimson { background: var(--fd-crimson); color: #fff !important; }
.fd-btn--crimson:hover { background: var(--fd-crimson-dark); color: #fff !important; }
.fd-btn--arrow::after { content: "\00a0\00a0\2192"; }
.fd-btn--tel::before  { content: ""; display: inline-block; width: 13px; height: 13px; margin-right: 9px; background: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z'/%3E%3C/svg%3E") center/contain no-repeat; }

/* Centered logo badge + display H2 + italic subline (Jackson section header) */
.fd-shead { text-align: center; margin: 0 auto 40px; max-width: 900px; }
.fd-shead .fd-badge { display: inline-block; margin-bottom: 18px; }
.fd-shead .fd-badge img { height: 56px; width: auto; }
.fd-shead h2 { font-size: clamp(26px, 2.4vw, 34px); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin: 0; color: var(--fd-ink); }
.fd-shead .fd-sub { font-style: italic; font-size: 18px; margin: 10px 0 0; color: inherit; opacity: .85; }
.fd-shead--light h2 { color: #fff; }
.fd-shead--light { color: #e9e9e9; }
.fd-shead--display h2 { font-size: clamp(32px, 4.8vw, 70px); line-height: 1.08; }
.fd-badge--dark img { filter: invert(1) grayscale(1) brightness(1.6); }

/* Oversized accent phone (recurring Jackson motif) */
.fd-phone-xl a, a.fd-phone-xl { font-size: clamp(26px, 2.4vw, 34px); font-weight: 700; color: var(--fd-accent-bright) !important; text-decoration: none; letter-spacing: .5px; }

/* ---------- 3. Header: 3-tier Jackson ---------- */
.fd-t1 { background: var(--fd-black); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 8px 3vw; font-size: 13px; line-height: 1.35; }
.fd-t1-loc { max-width: 34ch; }
.fd-t1-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.fd-t1-phone svg { width: 14px; height: 14px; fill: var(--fd-accent-bright); }
.fd-t1-phone a { color: var(--fd-accent-bright) !important; text-decoration: none; font-size: 15px; letter-spacing: .3px; }
.fd-gpill { display: inline-flex; align-items: center; gap: 7px; background: #fff; color: #444; border-radius: 999px; padding: 5px 14px; font-size: 12.5px; font-weight: 500; white-space: nowrap; }
.fd-gpill .fd-gword { font-weight: 700; font-size: 13.5px; letter-spacing: -.2px; }
.fd-gword span:nth-child(1) { color: #4285f4; } .fd-gword span:nth-child(2) { color: #ea4335; }
.fd-gword span:nth-child(3) { color: #fbbc05; } .fd-gword span:nth-child(4) { color: #4285f4; }
.fd-gword span:nth-child(5) { color: #34a853; } .fd-gword span:nth-child(6) { color: #ea4335; }
.fd-stars { color: #f6a306; letter-spacing: 1px; font-size: 13px; }

/* Persistent demonstration-site label (fictitious labeled business) */
.fd-demo-tag { flex: 0 0 auto; border: 1px solid #4a4a4a; border-radius: 3px; padding: 3px 10px; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: #c9c9c9; white-space: nowrap; }
.fd-demo-legal { color: #8a8a8a; }

.fd-t2 { background: var(--fd-black); display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 3vw; min-height: 90px; position: relative; z-index: 60; }
.fd-t2-logo { display: flex; align-items: center; }
.fd-t2-logo img { max-height: 62px; width: auto; filter: invert(1) grayscale(1) brightness(1.7); }
.fd-t2-logo .brandtext { font-weight: 700; font-size: 20px; color: #fff; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; }
.fd-mainnav { display: flex; align-items: center; }
.fd-mainnav ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.fd-mainnav li { margin: 0; }
.fd-mainnav a { display: block; padding: 12px 13px; color: #fff; text-decoration: none; font-size: 12.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; white-space: nowrap; }
.fd-mainnav a:hover, .fd-mainnav li.current-menu-item > a { color: var(--fd-accent-bright); }
.fd-mainnav .sub-menu, .fd-mainnav .ast-header-navigation-arrow { display: none; }
.fd-t2 > .fd-btn { flex: 0 0 auto; }

.fd-t3 { background: var(--fd-silver); display: flex; justify-content: center; flex-wrap: wrap; gap: 0 6px; padding: 0 2vw; position: relative; z-index: 55; }
.fd-t3 a { display: block; padding: 12px 14px; color: #1d1d1d; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; }
.fd-t3 a:hover { background: #a3a3a3; }

/* Mobile header toggle (CSS checkbox, no JS) */
.fd-mtoggle, .fd-burger { display: none; }
.fd-mnav { display: none; }

/* ---------- 4. Hero + lead-form card ---------- */
.fd-hero { position: relative; color: #fff; padding: clamp(48px, 6vw, 84px) 5vw clamp(72px, 8vw, 110px); overflow: hidden; background: var(--fd-charcoal); }
.fd-hero-bg { position: absolute; inset: 0; background: var(--herobg) center/cover no-repeat; filter: grayscale(1) brightness(.9); }
.fd-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.62)); }
.fd-hero-in { position: relative; z-index: 2; display: flex; gap: 5%; align-items: flex-start; justify-content: space-between; max-width: 1280px; margin: 0 auto; }
.fd-hero-txt { flex: 1 1 55%; max-width: 640px; padding-top: 10px; }
.fd-hero .fd-kicker { color: #c9c9c9; margin: 0 0 6px; font-size: 12px; letter-spacing: 2px; }
.fd-hero .fd-name { font-size: 19px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: #e8e8e8; margin: 0 0 10px; }
.fd-hero h1 { font-size: clamp(30px, 3.1vw, 44px); font-weight: 700; text-transform: uppercase; line-height: 1.15; color: #fff; margin: 0 0 18px; }
.fd-hero .fd-sub { font-size: 16.5px; max-width: 54ch; margin: 0 0 18px; color: #efefef; }
.fd-hero .fd-hero-phone { margin: 0 0 26px; }
.fd-hero .fd-hero-phone a { font-size: clamp(28px, 2.6vw, 36px); font-weight: 700; color: var(--fd-accent-bright); text-decoration: none; letter-spacing: .5px; }
.fd-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Translucent black lead-form card (Jackson rgba(0,0,0,.7)) */
.fd-formcard { flex: 0 1 400px; min-width: 320px; background: rgba(0,0,0,.7); border-radius: 4px; padding: 26px 26px 20px; box-shadow: 0 14px 44px rgba(0,0,0,.45); }
.fd-formcard-head { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 17px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin: 0 0 18px; }
.fd-formcard-head svg { width: 15px; height: 15px; fill: #fff; opacity: .85; }
.fd-form { display: flex; flex-direction: column; gap: 11px; }
.fd-field { position: relative; display: block; }
.fd-field svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; fill: #8b8b8b; pointer-events: none; z-index: 2; }
.fd-field--area svg { top: 16px; transform: none; }
.fdemo .fd-field input, .fdemo .fd-field textarea { width: 100%; background: #fff; border: 0; border-radius: 5px; padding: 12px 14px 12px 38px !important; font-family: 'Montserrat', sans-serif; font-size: 13.5px; color: #222; }
.fdemo .fd-field textarea { min-height: 84px; resize: vertical; }
.fd-field input::placeholder, .fd-field textarea::placeholder { color: #8a8a8a; }
.fd-consent { display: flex; gap: 9px; align-items: flex-start; font-size: 9.5px; line-height: 1.45; color: #c2c2c2; }
.fd-consent input { margin-top: 2px; flex: 0 0 auto; }
.fd-form .fd-form-submit { width: 100%; text-align: center; margin-top: 4px; font-size: 14px; }
.fd-form-links { text-align: center; font-size: 10.5px; margin: 8px 0 0; }
.fd-form-links a { color: #9db8d6; text-decoration: none; }

/* ---------- 5. Bands ---------- */
.fd-band { padding: clamp(48px, 5.5vw, 84px) 5vw; }
.fd-band-in { max-width: 1220px; margin: 0 auto; }
.fd-band--white { background: #fff; }
.fd-band--light { background: var(--fd-light); }
.fd-band--gray  { background: var(--fd-gray); }
.fd-band--charcoal {
  background-color: var(--fd-charcoal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0.55 0.55 0 0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
  color: #ddd;
}
.fd-band--charcoal h2, .fd-band--charcoal h3 { color: #fff; }

/* 5a. Checkbox feature blocks + labeled photo pair (Jackson band 2) */
.fd-features { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 52px; align-items: center; }
.fd-feat { display: grid; grid-template-columns: 44px 1fr; gap: 16px; margin-bottom: 26px; }
.fd-feat:last-child { margin-bottom: 0; }
.fd-feat svg { width: 38px; height: 38px; fill: var(--fd-ink); margin-top: 3px; }
.fd-feat h3 { font-size: 19px; font-weight: 700; margin: 0 0 6px; }
.fd-feat p { margin: 0; font-size: 15px; color: #555; }
.fd-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.fd-pair figure { margin: 0; position: relative; }
.fd-pair img { width: 100%; height: 300px; object-fit: cover; display: block; }
.fd-pair figcaption { position: absolute; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,.72); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; padding: 8px 10px; text-align: center; }

/* 5b. Charcoal service tiles (Jackson: edge-to-edge photos, gradient label) */
.fd-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; margin: 0 0 34px; }
.fd-tile { position: relative; display: flex; align-items: flex-end; justify-content: flex-start; min-height: 300px; overflow: hidden; text-decoration: none; }
.fd-tile::before { content: ""; position: absolute; inset: 0; background: var(--tilebg) center/cover no-repeat; transition: transform .35s; }
.fd-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(0,0,0,.78)); }
.fd-tile:hover::before { transform: scale(1.06); }
.fd-tile span { position: relative; z-index: 2; color: #fff; font-size: clamp(19px, 1.75vw, 25px); font-weight: 700; line-height: 1.2; padding: 20px 22px; }
.fd-tiles-more { text-align: center; }

/* 5c. Specialty 2-col (photo + badge/copy/button) */
.fd-spec { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.fd-spec-photo img { width: 100%; height: 420px; object-fit: cover; display: block; box-shadow: 14px 14px 0 var(--fd-gray); }
.fd-spec-txt { text-align: center; }
.fd-spec-txt .fd-badge img { height: 56px; }
.fd-spec-txt p { font-size: 16px; margin: 18px 0 24px; }

/* 5d. Google reviews band */
.fd-gband { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.fd-gband-logo { text-align: center; flex: 0 0 auto; }
.fd-gband-logo .fd-gword { font-size: 44px; font-weight: 700; letter-spacing: -1px; line-height: 1; }
.fd-gband-logo .fd-glabel { display: block; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: #777; margin-top: 2px; }
.fd-gband-logo .fd-stars { font-size: 22px; letter-spacing: 3px; display: block; margin-top: 6px; }
.fd-gband-txt h2 { font-size: clamp(22px, 2vw, 28px); font-weight: 700; text-transform: uppercase; margin: 0 0 8px; }
.fd-gband-txt p { margin: 0; font-size: 16px; }
.fd-gband-txt a { color: var(--fd-ink); font-weight: 700; }

/* 5e. OUR SERVICE AREA: photo band + gray inset panel + city grid + map */
.fd-area { position: relative; padding: clamp(48px, 5.5vw, 84px) 5vw; overflow: hidden; background: var(--fd-charcoal); }
.fd-area-bg { position: absolute; inset: 0; background: var(--areabg) center/cover no-repeat; filter: grayscale(1) brightness(.75) blur(2px); transform: scale(1.04); }
.fd-area-panel { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; background: linear-gradient(#e3e3e3, #c9c9c9); border-radius: 3px; box-shadow: 0 18px 50px rgba(0,0,0,.4); padding: clamp(30px, 4vw, 58px) clamp(22px, 4vw, 58px); }
.fd-area-cols { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 44px; align-items: start; }
.fd-area .hvg-city-related-pages { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px 18px; margin: 0 0 28px; padding: 0; }
.fd-area .hvg-city-related-pages li { background: none; border-radius: 0; padding: 0; font-size: 15px; color: #333; }
.fd-area .hvg-city-related-pages a { color: #1d1d1d; font-weight: 700; text-decoration: underline; text-decoration-color: var(--fd-accent); text-underline-offset: 3px; }
.fd-area .hvg-city-related-pages a:hover { color: var(--fd-accent-dark); }
.fd-area-map { position: relative; border-radius: 4px; overflow: hidden; box-shadow: 0 8px 26px rgba(0,0,0,.25); background: #dfe3e8; }
.fd-area-map iframe { display: block; width: 100%; min-height: 330px; border: 0; }
.fd-mappin { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: #fff; border-top: 3px solid var(--fd-accent); }
.fd-mappin .dot { flex: 0 0 auto; width: 15px; height: 15px; border-radius: 50% 50% 50% 0; background: var(--fd-crimson); transform: rotate(-45deg); }
.fd-mappin .txt { display: flex; flex-direction: column; line-height: 1.3; }
.fd-mappin strong { font-size: 14px; color: var(--fd-ink); }
.fd-mappin span { font-size: 12px; color: #666; }

/* 5f. Photo CTA band + dark gradient strip (the CTA ladder) */
.fd-ctaband { position: relative; padding: clamp(56px, 6vw, 92px) 5vw; overflow: hidden; background: var(--fd-charcoal); text-align: center; color: #fff; }
.fd-ctaband-bg { position: absolute; inset: 0; background: var(--bg) center/cover no-repeat; }
.fd-ctaband-bg::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.66); }
.fd-ctaband-in { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.fd-ctaband-in h2, .fd-ctaband-h { font-size: clamp(24px, 2.4vw, 34px); font-weight: 700; color: #fff; margin: 0 0 26px; line-height: 1.3; }
.fd-ctaband-actions { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }
.fd-ctaband-actions a { text-decoration: none; }
.fd-ctaband-actions a.fdemo-cta { background: var(--fd-accent); color: var(--fd-on-accent) !important; font-size: 14px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; padding: 17px 30px; border-radius: 2px; display: inline-block; }
.fd-ctaband-actions a.fdemo-cta:hover { background: var(--fd-accent-dark); color: #fff !important; }
.fd-ctaband-actions a:not(.fdemo-cta) { background: #fff; color: #161616 !important; font-size: 14px; font-weight: 700; letter-spacing: .8px; padding: 17px 30px; border-radius: 2px; display: inline-block; }

.fd-darkstrip { background: linear-gradient(100deg, #0c0c0c, #2f2f2f); color: #fff; padding: 34px 5vw; }
.fd-darkstrip-in { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.fd-darkstrip p, .fd-darkstrip-h { font-size: clamp(18px, 1.6vw, 23px); font-weight: 700; line-height: 1.4; margin: 0; flex: 1 1 420px; }
.fd-darkstrip a { flex: 0 0 auto; background: var(--fd-crimson); color: #fff !important; font-size: 17px; font-weight: 700; letter-spacing: .5px; padding: 16px 30px; border-radius: 3px; text-decoration: none; white-space: nowrap; }
.fd-darkstrip a:hover { background: var(--fd-crimson-dark); }

/* CTA bands emitted inside a constrained content column go full-bleed */
.fd-content .fd-ctaband, .fd-content .fd-darkstrip,
.fd-citymain .fd-ctaband, .fd-citymain .fd-darkstrip,
.fd-citybottom .fd-ctaband, .fd-citybottom .fd-darkstrip {
  width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  margin-top: 3em; margin-bottom: 3em;
}

/* Full-width crimson CALL US NOW bar (city pages) */
.fd-crimsonbar { display: block; background: var(--fd-crimson); color: #fff !important; text-align: center; font-size: 16px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; padding: 16px 20px; border-radius: 3px; text-decoration: none !important; margin: 26px 0; }
.fd-crimsonbar:hover { background: var(--fd-crimson-dark); }

/* ---------- 6. Interior page framing ---------- */
.fd-phero { position: relative; color: #fff; padding: clamp(44px, 5vw, 72px) 5vw clamp(64px, 7vw, 96px); overflow: hidden; background: var(--fd-charcoal); }
.fd-phero-bg { position: absolute; inset: 0; background: var(--herobg) center/cover no-repeat; filter: grayscale(1) brightness(.9); }
.fd-phero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.68)); }
.fd-phero-in { position: relative; z-index: 2; max-width: 1220px; margin: 0 auto; }
.fd-phero .fd-kicker { color: #d6d6d6; margin: 0 0 4px; }
.fd-phero h1 { font-size: clamp(30px, 3.9vw, 56px); font-weight: 700; text-transform: uppercase; line-height: 1.1; color: #fff; margin: 0 0 10px; }
.fd-phero .fd-phone a { font-size: clamp(24px, 2.2vw, 32px); font-weight: 700; color: #fff; text-decoration: none; }
.fd-phero .fd-phone a:hover { color: var(--fd-accent-bright); }
.fd-phero--page { padding: clamp(34px, 3.6vw, 54px) 5vw clamp(52px, 6vw, 78px); }

/* 24-hour emergency hero variant (gdm-local-trust): crimson top rule + 24/7 chip */
.fd-phero--emergency { border-top: 4px solid var(--fd-crimson); }
.fd-emg-chip { display: inline-block; background: var(--fd-crimson); color: #fff; font-size: 12.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 14px; border-radius: 3px; margin: 2px 0 12px; }
.fd-phero--page h1 { font-size: clamp(28px, 3.2vw, 46px); }

/* Long-form content typography */
.fd-content { max-width: 920px; margin: 0 auto; padding: clamp(44px, 5vw, 72px) 5vw; font-size: 16.5px; line-height: 1.75; }
.fd-content > *:first-child { margin-top: 0; }
.fd-content h2 { font-size: clamp(23px, 2.1vw, 29px); font-weight: 700; line-height: 1.25; margin: 1.7em 0 .55em; }
.fd-content h2:first-child { margin-top: 0; }
.fd-content h3 { font-size: 20px; font-weight: 700; margin: 1.5em 0 .45em; }
.fd-content p { margin: 0 0 1.2em; }
.fd-content a { color: var(--fd-accent-dark); font-weight: 500; }
.fd-content .fdemo-cta { background: var(--fd-accent); color: var(--fd-on-accent) !important; font-size: 14px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; padding: 15px 26px; border-radius: 2px; display: inline-block; text-decoration: none; }
.fd-content .fdemo-cta:hover { background: var(--fd-accent-dark); color: #fff !important; }
.fd-content .fdemo-cta-line { font-weight: 700; font-size: 19px; }
.fd-content .fdemo-cta-line a:not(.fdemo-cta) { color: var(--fd-crimson); font-size: 22px; text-decoration: none; }

/* FAQ block: 2-col with accordion rows (Jackson "Have Questions?") */
.fd-faqwrap { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 48px; align-items: start; margin: 3em 0; }
.fd-faqcol .fd-badge img { height: 50px; }
.fd-faqcol h2 { font-size: clamp(26px, 2.6vw, 36px); margin: .4em 0 .4em; }
.fd-faq { background: var(--fd-gray); border-radius: 3px; margin-bottom: 10px; }
.fd-faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px; padding: 15px 18px; font-size: 15.5px; font-weight: 700; color: var(--fd-ink); }
.fd-faq summary::-webkit-details-marker { display: none; }
.fd-faq summary::before { content: "+"; font-size: 20px; font-weight: 500; color: var(--fd-ink); line-height: 1; flex: 0 0 auto; }
.fd-faq[open] summary::before { content: "\2212"; }
.fd-faq .fd-faq-a { padding: 0 18px 16px 46px; font-size: 15px; }
.fd-faq .fd-faq-a p { margin: 0; }

/* Rely-on 2-col closer (real photo instead of Jackson's stock cutout) */
.fd-rely { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 48px; align-items: center; margin: 3em 0 0; }
.fd-rely-txt h2 { margin-top: 0; }
.fd-rely-photo { margin: 0; }
.fd-rely-photo img { width: 100%; height: 380px; object-fit: cover; display: block; border-radius: 3px; box-shadow: 12px 12px 0 var(--fd-gray); }
.fd-rely-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }

/* City page: sidebar layout */
.fd-citywrap { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 52px; align-items: start; max-width: 1220px; margin: 0 auto; padding: clamp(44px, 5vw, 72px) 5vw 0; }
.fd-citymain { font-size: 16.5px; line-height: 1.75; }
.fd-citymain h2 { font-size: clamp(22px, 2vw, 28px); font-weight: 700; line-height: 1.25; margin: 1.6em 0 .5em; }
.fd-citymain h2:first-child { margin-top: 0; }
.fd-citymain h3 { font-size: 19px; margin: 1.2em 0 .4em; }
.fd-citymain p { margin: 0 0 1.2em; }
.fd-citymain .fdemo-cta-line a { color: var(--fd-crimson); font-size: 24px; font-weight: 700; text-decoration: none; }
.fd-cityside { position: sticky; top: 20px; }
.fd-cityside .fd-crimsonbar { margin: 0 0 22px; }
.fd-cityside-head { text-align: center; font-size: 18px; font-weight: 700; margin: 0 0 14px; }
.fd-citybottom { max-width: 1220px; margin: 0 auto; padding: 0 5vw clamp(44px, 5vw, 72px); font-size: 16.5px; line-height: 1.75; }
.fd-citybottom h2 { font-size: clamp(22px, 2vw, 28px); font-weight: 700; margin: 1.6em 0 .5em; }

/* hvg services accordion restyle */
.hvg-accordion-list { list-style: none; margin: 0 0 16px; padding: 0; }
.hvg-accordion-list li { background: var(--fd-gray); border: 0; border-left: 4px solid var(--fd-accent); border-radius: 3px; margin-bottom: 9px; padding: 13px 16px; }
.hvg-accordion-list h3 { margin: 0 0 .25em; font-size: 15px; font-weight: 700; color: var(--fd-ink); }
.hvg-accordion-list .hvg-accordion-answer p { margin: 0; font-size: 14px; color: #555; }

/* Related cities list (areas page + city pages) */
.hvg-city-related-pages { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(160px, 1fr)); gap: 9px 22px; margin: 16px 0 24px; padding: 0; }
.hvg-city-related-pages li { background: none; border-radius: 0; padding: 0; font-size: 15.5px; }
.hvg-city-related-pages a { color: var(--fd-ink); font-weight: 700; text-decoration: underline; text-decoration-color: var(--fd-accent); text-underline-offset: 3px; }
.hvg-city-related-pages a:hover { color: var(--fd-accent-dark); }

/* Services hub links */
.section-services-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 10px 28px; margin: 24px 0; }
.col-services-links { display: flex; flex-direction: column; gap: 10px; }
.fdemo .services-page-link { display: block; background: var(--fd-gray); border-left: 4px solid var(--fd-accent); border-radius: 0; padding: 14px 18px; color: var(--fd-ink); text-decoration: none; font-weight: 700; text-transform: none; font-size: 16px; text-align: left; }
.fdemo .services-page-link:hover { background: var(--fd-ink); color: #fff; }

/* /services/ hub: services directory rendered as home-style photo tiles inside a
   full-bleed charcoal band (same breakout trick as the CTA bands above). Flex, not
   the home grid, so a 7-tile set wraps 4 + 3 with the last row filling the width. */
.fd-content .fd-hubtiles { width: 100vw; margin: 3em calc(50% - 50vw); padding: clamp(40px, 4.5vw, 64px) 5vw; }
.fd-tiles--hub { display: flex; flex-wrap: wrap; margin: 0; }
.fd-tiles--hub .fd-tile { flex: 1 1 270px; min-height: 280px; flex-direction: column; align-items: stretch; justify-content: flex-end; }
.fd-tiles--hub .fd-tile span:not(.fd-tile-desc) { padding-bottom: 6px; }
/* One-line service description under each hub tile title (COPY-REVIEWED 2026-08-19) */
.fd-tile-desc { position: relative; z-index: 2; color: #fff; opacity: .8; font-size: 14px; font-weight: 400; line-height: 1.45; padding: 0 22px 18px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Gallery grid */
.fdemo-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 10px; margin: 26px 0; }
.fdemo-gallery figure { margin: 0; overflow: hidden; background: var(--fd-gray); }
.fdemo-gallery img { width: 100%; height: 220px; object-fit: cover; display: block; transition: .25s; }
.fdemo-gallery figure:hover img { transform: scale(1.05); }
.fdemo-gallery figcaption { font-size: 12.5px; padding: 8px 10px; color: #666; }

/* Contact grid */
.fdemo-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin: 20px 0; }
.fdemo-contact-phone a { font-size: 26px; font-weight: 700; color: var(--fd-crimson); text-decoration: none; }
.fdemo-contact-map iframe { width: 100%; min-height: 340px; border: 0; border-radius: 4px; }

/* Quiet demo note (demo-only widget stand-ins): one muted italic line, never a loud box */
.fdemo-demo-note { font-size: 13px; font-style: italic; color: #8a8a8a; margin: 14px 0; }

/* Quiet widget stand-in frame (reviews page): subdued, clearly a slot, not a fake widget */
.fdemo-placeholder-frame { display: flex; flex-direction: column; gap: 6px; justify-content: center; background: var(--fd-gray); border: 1px solid #e2e2e2; border-radius: 4px; padding: 34px 28px; margin: 22px 0; color: #6d6d6d; }
.fdemo-placeholder-frame strong { font-size: 15px; color: #4a4a4a; }
.fdemo-placeholder-frame span { font-size: 13px; line-height: 1.6; }

/* ---------- 7. Footer: black 4-col icon-headed (Jackson) ---------- */
.fd-footer { background: var(--fd-black); color: #cfcfcf; padding: clamp(44px, 5vw, 70px) 5vw 0; font-size: 14.5px; }
.fd-footer-cols { max-width: 1220px; margin: 0 auto; display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr; gap: 40px; }
.fd-footer h4 { display: flex; align-items: center; gap: 9px; color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin: 0 0 16px; }
.fd-footer h4 svg { width: 15px; height: 15px; fill: var(--fd-accent-bright); flex: 0 0 auto; }
.fd-footer-brand img { max-height: 60px; width: auto; filter: invert(1) grayscale(1) brightness(1.7); }
.fd-footer-brand .brandtext { font-weight: 700; font-size: 18px; color: #fff; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; display: inline-block; }
.fd-footer-brand hr { border: 0; border-top: 1px solid #333; margin: 16px 0; }
.fd-footer-brand p { margin: 0 0 14px; font-size: 13.5px; line-height: 1.6; color: #b5b5b5; }
.fd-footer-phone { display: flex; align-items: center; gap: 9px; font-size: 19px; font-weight: 700; margin: 0 0 18px; }
.fd-footer-phone svg { width: 16px; height: 16px; fill: var(--fd-accent-bright); }
.fd-footer-phone a { color: #fff; text-decoration: none; }
.fd-footer ul { list-style: none; margin: 0; padding: 0; }
.fd-footer ul li { margin: 0 0 9px; }
.fd-footer ul a { color: #cfcfcf; text-decoration: none; }
.fd-footer ul a:hover { color: var(--fd-accent-bright); }
.fd-footer address { font-style: normal; line-height: 1.7; color: #b5b5b5; }
.fd-footer address a { color: #cfcfcf; text-decoration: none; }
.fd-footer-legal { max-width: 1220px; margin: 40px auto 0; border-top: 1px solid #222; padding: 18px 0 22px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 12.5px; color: #9a9a9a; }
.fd-footer-legal a { color: #cfcfcf; text-decoration: none; }
.fd-footer-legal a:hover { color: var(--fd-accent-bright); }
.fd-footer-menu { display: flex; gap: 4px 20px; flex-wrap: wrap; }
.fd-footer-menu ul { display: flex; gap: 4px 20px; flex-wrap: wrap; }
.fd-footer-menu li { margin: 0; }

/* Astra scroll-to-top rides the brand accent instead of default blue */
#ast-scroll-top { background-color: var(--primary-color, #e0900a) !important; }

/* ---------- 8. Responsive ---------- */
@media (max-width: 1100px) {
  .fd-tiles { grid-template-columns: repeat(2, 1fr); }
  .fd-footer-cols { grid-template-columns: 1fr 1fr; }
  .fd-mainnav a { padding: 12px 9px; font-size: 12px; }
}
@media (max-width: 900px) {
  .fd-t1-loc, .fd-gpill { display: none; }
  .fd-t1 { justify-content: center; gap: 12px; }
  .fd-demo-tag { font-size: 10px; padding: 2px 8px; }
  /* tier-2 collapses: logo + FREE ESTIMATE pill + burger */
  .fd-mainnav, .fd-t3 { display: none; }
  .fd-t2 { min-height: 68px; flex-wrap: wrap; }
  .fd-t2 > .fd-btn { padding: 12px 18px; font-size: 12.5px; margin-left: auto; }
  .fd-mnav { flex-basis: 100%; margin: 0 -3vw; }
  .fd-mnav li { list-style: none; margin: 0; }
  .fd-burger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 6px; cursor: pointer; }
  .fd-burger span { display: block; height: 3px; background: #fff; border-radius: 2px; }
  .fd-mtoggle:checked ~ .fd-mnav { display: block; }
  .fd-mnav { background: #0d0d0d; padding: 8px 0 16px; }
  .fd-mnav a { display: block; padding: 11px 6vw; color: #fff; text-decoration: none; font-size: 14px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; border-bottom: 1px solid #1c1c1c; }
  .fd-mnav a:hover { color: var(--fd-accent-bright); }
  .fd-mnav .fd-mnav-svc { font-weight: 400; padding-left: 9vw; text-transform: none; letter-spacing: .2px; }
  .fd-hero-in { flex-direction: column; }
  .fd-hero-txt { max-width: none; }
  .fd-formcard { width: 100%; max-width: 460px; margin: 34px auto 0; flex: 1 1 auto; }
  .fd-features, .fd-spec, .fd-area-cols, .fd-faqwrap, .fd-rely, .fd-citywrap, .fdemo-contact-grid { grid-template-columns: 1fr; }
  .fd-features { gap: 40px; }
  .fd-spec-photo img { height: 300px; }
  .fd-cityside { position: static; }
  .fd-area .hvg-city-related-pages, .hvg-city-related-pages { grid-template-columns: repeat(2, 1fr); }
  .fd-rely-photo img { height: 280px; }
}
@media (max-width: 560px) {
  .fd-tiles { grid-template-columns: 1fr; }
  .fd-tile { min-height: 220px; }
  .fd-footer-cols { grid-template-columns: 1fr; }
  .fd-pair { grid-template-columns: 1fr; }
  .fd-pair img { height: 220px; }
  .fd-hero { padding-bottom: 56px; }
  .fd-hero-ctas .fd-btn { padding: 15px 20px; font-size: 13px; }
  .fd-darkstrip-in { justify-content: center; text-align: center; }
  .fd-cut-top, .fd-cut-top-rev { --fd-cut: 5vw; }
}
