/*
Theme Name:        Kadence Alpha Le Concrete
Theme URI:         https://alphaleconcrete.com
Description:       Custom child theme for Alpha Le Concrete, by Humble Brand Marketing. Includes the brand palette, mega-menu nav, footer, and reusable block patterns. WP 7.0 ready (theme.json, Font Library, pattern picker, editor styles).
Author:            Humble Brand Marketing
Author URI:        https://humblebrandmarketing.com
Template:          kadence
Version:           0.2.0
Requires at least: 6.6
Tested up to:      7.0
Requires PHP:      7.4
Text Domain:       kadence-alpha-le-concrete
Tags:              business, custom-logo, custom-menu, custom-colors, featured-images, full-width-template, block-styles, wide-blocks, accessibility-ready
*/

/* ============================================================
   Mirrored from sandbox: assets/css/style.css + assets/css/city-pages.css
   Last sync: 2026-06-03
   ============================================================ */

/* =========================================================================
   ALPHA LE CONCRETE — stylesheet (static sandbox)
   Custom Concrete Patios, Driveways & Stamped Concrete · Northern Virginia
   Palette sampled from official logo (skies the electric #0101FE — used only
   in the logo's chimney stripe, not in UI).
   Mirror this token block into wp-build/kadence-alpha-le-concrete/style.css.
   ========================================================================= */

/* ---- Design tokens ----------------------------------------------------- */
:root {
  /* Brand — primary sky-blue from the wordmark + secondary navy from roof edges */
  --brand:        #4D9FF1;   /* primary — buttons, links, CTAs, hero accents */
  --brand-dark:   #346BA2;   /* hover / pressed / secondary navy */
  --brand-light:  #E9F3FE;   /* pale tint — section backgrounds, hover bg */
  --accent:       #346BA2;   /* secondary CTA = the deeper navy (no separate hue) */

  /* Brand canvas — Alpha's signature dark background */
  --canvas:       #000000;   /* hero / dark sections / footer */
  --canvas-soft:  #0a0a0a;   /* near-black for layered dark surfaces */

  /* Concrete neutrals — sampled directly from the logo */
  --concrete-light: #D4DAE4; /* light surfaces, dividers on dark bg */
  --concrete:       #94989B; /* secondary text, captions, broom/chimney gray */
  --concrete-deep:  #696A6A; /* driveway/asphalt — deep neutral */

  /* Text + UI neutrals (light-mode pages) */
  --ink:          #0a0a0a;   /* body text on light bg */
  --ink-soft:     #4a4d52;   /* secondary text */
  --line:         #E6E8EC;   /* borders / dividers */
  --bg:           #ffffff;   /* base surface */
  --bg-elevated:  #F6F7F9;   /* elevated surface */

  /* Type — modern geometric sans pair (matches the wordmark feel).
     Decide final faces after design review; these are sensible defaults. */
  --font-head: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --space-1: 4px;  --space-2: 8px;  --space-3: 16px;
  --space-4: 24px; --space-5: 40px; --space-6: 64px; --space-7: 96px;

  --radius: 14px;
  --container: 1180px;

  /* Layered, brand-tinted shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.08), 0 2px 6px rgba(77,159,241,.10);
  --shadow-md: 0 6px 16px rgba(0,0,0,.10), 0 12px 32px rgba(77,159,241,.12);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---- Reset / base ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;            /* generous body line-height */
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.1;
  letter-spacing: -0.03em;     /* tight tracking on large headings */
  margin: 0 0 var(--space-3);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.01em; }
p  { margin: 0 0 var(--space-3); color: var(--ink-soft); }

/* ---- Layout helpers ---------------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-4); }
.section   { padding: var(--space-7) 0; }
.section--tint { background: var(--bg-elevated); }

/* ---- Buttons — every state defined; only animate transform/opacity ----- */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 14px 26px; border-radius: 999px; font-weight: 600;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--brand); border-color: var(--line); }
.btn--ghost:hover { background: var(--brand-light); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ---- Nav scaffold ------------------------------------------------------ */
#nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,.85); backdrop-filter: blur(10px);
  transition: box-shadow .2s var(--ease), background-color .2s var(--ease);
}
#nav.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.95); }
.nav-links { display: flex; gap: var(--space-4); align-items: center; }
.nav-toggle { display: none; }

/* Mobile menu (driven by main.js .open toggle) */
#mobile-menu {
  position: fixed; inset: 0; z-index: 60;
  background: var(--bg); padding: var(--space-6) var(--space-4);
  display: flex; flex-direction: column; gap: var(--space-4);
  transform: translateY(-100%); transition: transform .3s var(--ease);
}
#mobile-menu.open { transform: translateY(0); }

/* ---- Hero scaffold ----------------------------------------------------- */
.hero, .page-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.page-hero { min-height: 52vh; }
/* Photo treatment: restrained, cool-tinted overlay (not heavy black) */
.hero__media img { filter: brightness(1.1) saturate(1.2) contrast(1.05); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,90,98,.35), rgba(20,32,42,.6));
}
.hero .container { position: relative; z-index: 2; }

/* ---- Cards / depth layering -------------------------------------------- */
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--space-4); box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ════════════════════════════════════════════════════════════
   Animations — paired with assets/js/animations.js
   - .reveal added by JS to keep elements visible if JS fails
   - --reveal-i drives 60ms stagger within grids
   - Hero fades in on page load via CSS animation only
   ════════════════════════════════════════════════════════════ */

.js-anim .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(.2,.7,.2,1),
    transform 0.7s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--reveal-i, 0) * 60ms);
  will-change: opacity, transform;
}
.js-anim .reveal.in {
  opacity: 1;
  transform: none;
}

/* Hero fade-in on page load (no JS dependency for the trigger) */
.js-anim .hero,
.js-anim .page-hero {
  animation: heroFadeIn 1s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Screenshot mode — disable everything */
.shot-mode .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.shot-mode .hero, .shot-mode .page-hero {
  animation: none !important;
  min-height: 0 !important;
  padding-top: 180px;
}

/* Respect prefers-reduced-motion (also covered globally at the bottom of this file) */
@media (prefers-reduced-motion: reduce) {
  .js-anim .reveal,
  .js-anim .reveal.in,
  .js-anim .hero,
  .js-anim .page-hero {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---- Footer scaffold --------------------------------------------------- */
footer { background: var(--ink); color: #cdd6dd; padding: var(--space-6) 0 var(--space-4); }
footer a { color: #fff; }

/* ---- Responsive: mobile-first breakpoints (480 / 820 / 1100) ----------- */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .section { padding: var(--space-6) 0; }
}

/* ---- Reduced motion ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE CTA BAR — Call + Estimate buttons stickied at the top.
   Industry research (Google Ads landing pages) shows this lifts call/form
   conversion ~10-25% on mobile. Hidden on desktop where the nav CTA wins.
   ═══════════════════════════════════════════════════════════════════ */
.mobile-cta-bar { display: none; }

@media (max-width: 820px) {
  .mobile-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 115;
    background: #000;
    /* Sky-blue accent line — premium brand divider between bar and nav */
    border-bottom: 1px solid rgba(77,159,241,0.45);
  }
  .mobile-cta-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    /* Pin to exactly 47px + 1px border = 48px total, matches nav `top: 48px` */
    min-height: 47px;
    box-sizing: border-box;
    padding: 0 12px;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    transition: background .2s ease;
  }
  .mobile-cta-bar .cta-phone {
    background: #0a0a0a;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-cta-bar .cta-phone:active {
    background: rgba(77,159,241,0.12);
  }
  .mobile-cta-bar .cta-estimate {
    background: #4D9FF1;
    color: #fff;
  }
  .mobile-cta-bar .cta-estimate:active {
    background: #346BA2;
  }
  .mobile-cta-bar svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }
  /* Make room: bar takes ~48px, shift the nav and document content down. */
  body { padding-top: 48px; }
  #nav { top: 48px !important; }
  /* Note: #mobile-menu z-index / padding overrides live below the base rule
     (further down this file) so they win source-order against `#mobile-menu` at
     equal specificity. Don't duplicate the override here — it gets overwritten. */
}

/* ═══════════════════════════════════════════════════════════════════
   MEGA MENU — Residential / Commercial dropdowns
   Selectors use .nav-links .mega-panel ... so they out-specify the
   per-page inline .nav-links a rule (which comes later in the cascade).
   ═══════════════════════════════════════════════════════════════════ */

.nav-links .has-mega {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-links .has-mega > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-links .has-mega .caret {
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
  opacity: 0.7;
}
.nav-links .has-mega:hover .caret,
.nav-links .has-mega:focus-within .caret,
.nav-links .has-mega.is-open .caret {
  transform: translateY(0) rotate(225deg);
}

.nav-links .mega-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 640px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 36px 40px 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 4px 14px rgba(77,159,241,0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .25s cubic-bezier(.2,.7,.2,1), visibility 0s linear .25s;
  z-index: 105;
}
.nav-links .has-mega:hover .mega-panel,
.nav-links .has-mega:focus-within .mega-panel,
.nav-links .has-mega.is-open .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .22s ease, transform .25s cubic-bezier(.2,.7,.2,1), visibility 0s linear 0s;
}

/* Invisible hover bridge — keeps panel open as cursor crosses the gap */
.nav-links .has-mega::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 18px;
}

.nav-links .mega-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-links .mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  row-gap: 2px;
  margin-bottom: 24px;
}

.nav-links .mega-grid a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-weight: 500;
  display: block;
  transition: color .2s ease, transform .2s ease, letter-spacing .2s ease;
}
.nav-links .mega-grid a:hover {
  color: #4D9FF1;
  transform: translateX(4px);
}

.nav-links .mega-viewall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid rgba(77,159,241,0.4);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #4D9FF1 !important;
  text-decoration: none;
  font-weight: 700;
  transition: background .25s ease, border-color .25s ease;
}
.nav-links .mega-viewall:hover {
  background: rgba(77,159,241,0.1);
  border-color: #4D9FF1;
}

/* ═══════════════════════════════════════════════════════════════════
   HAMBURGER + MOBILE MENU DRAWER
   ═══════════════════════════════════════════════════════════════════ */

.nav-hamburger {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  z-index: 110;
  color: #fff;
  align-items: center;
  justify-content: center;
}
.nav-hamburger svg { display: block; width: 28px; height: 28px; }
.nav-hamburger .icon-close { display: none; }
.nav-hamburger.is-open .icon-open { display: none; }
.nav-hamburger.is-open .icon-close { display: block; }

#mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #000;
  z-index: 95;
  padding: 110px 28px 40px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  display: block !important;  /* override any inline display:none */
}
#mobile-menu.is-open {
  transform: translateY(0);
}
#mobile-menu .mobile-section {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
#mobile-menu .mobile-toggle {
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}
#mobile-menu .mobile-toggle .caret {
  display: inline-block;
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.6;
  transition: transform .25s ease;
}
#mobile-menu .mobile-toggle[aria-expanded="true"] .caret {
  transform: rotate(225deg);
}
#mobile-menu .mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.2,.7,.2,1);
}
#mobile-menu .mobile-submenu.is-open {
  max-height: 800px;
}
#mobile-menu .mobile-submenu a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 14px 4px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
#mobile-menu .mobile-submenu a:first-child {
  border-top: 0;
}
#mobile-menu .mobile-submenu .mobile-viewall {
  color: #4D9FF1;
  font-weight: 700;
}
#mobile-menu > a {
  display: block;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
#mobile-menu .mobile-cta {
  margin-top: 36px;
  background: #4D9FF1;
  color: #fff !important;
  text-align: center;
  border: 0 !important;
  border-radius: 4px;
  padding: 18px !important;
}
#mobile-menu .mobile-phone {
  margin-top: 14px;
  text-align: center;
  color: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 4px;
  padding: 18px !important;
}

body.menu-open { overflow: hidden; }

/* Mobile breakpoint */
@media (max-width: 1100px) {
  .nav-links .mega-panel { width: 560px; }
}
@media (max-width: 900px) {
  .nav-links .mega-panel { width: 500px; padding: 28px 32px 26px; }
  .nav-links .mega-intro { font-size: 15px; }
}
@media (max-width: 820px) {
  .nav-hamburger { display: inline-flex; flex-direction: column; }
  .nav-links { display: none !important; }
  /* keep the desktop CTA hidden on mobile — it's in the drawer */
  /* Drawer slides into the space BELOW the nav (top:152 = 48 bar + 104 nav).
     All pages use 12px nav padding on mobile, so this height is consistent
     sitewide — no gap below the nav, no overlap.
     z-index 90 sits below nav (100) + bar (115) but above main content. */
  #mobile-menu {
    top: 152px;
    padding-top: 28px;
    z-index: 90;
  }
}
@media (min-width: 821px) {
  #mobile-menu { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   NAV SCROLL-BLUR — solid black at top, translucent + backdrop-blur
   once user scrolls past the hero. Apple/Linear/Stripe-style polish.
   Specificity: `#nav.scrolled` (1,1,0) beats per-page inline `#nav` (1,0,0),
   so the scrolled-state colors win without needing !important.
   ═══════════════════════════════════════════════════════════════════ */
#nav {
  /* `will-change` alone gives iOS Safari the compositing-layer hint needed
     for backdrop-filter to render on a fixed element — without adding
     `transform: translateZ(0)`, which conflicts with backdrop-filter on
     iOS Safari and forces the bg to render solid. */
  will-change: background-color, backdrop-filter, -webkit-backdrop-filter;
  transition: background-color .35s cubic-bezier(.2,.7,.2,1),
              border-color .35s ease,
              box-shadow .35s ease;
  /* Override the stale kit-default blur(10px) that lingers on #nav from
     the original scaffold — we only want blur in the .scrolled state. */
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}
/* Desktop: backdrop-filter blur works beautifully here. */
#nav.scrolled {
  background-color: rgba(0, 0, 0, 0.4) !important;
  -webkit-backdrop-filter: saturate(180%) blur(28px);
          backdrop-filter: saturate(180%) blur(28px);
  border-bottom: 1px solid rgba(77, 159, 241, 0.4) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}
/* Mobile: iOS Safari has a documented bug where `backdrop-filter` on a
   `position: fixed` element with a non-zero `top` value renders the bg
   as fully opaque. After multiple workarounds we drop backdrop-filter
   entirely on mobile and lean on a heavier translucent overlay. The cream
   content shows through cleanly — no blur, but the state change is obvious
   and works in every mobile browser. */
@media (max-width: 820px) {
  #nav.scrolled {
    background-color: rgba(0, 0, 0, 0.32) !important;
    -webkit-backdrop-filter: none !important;
            backdrop-filter: none !important;
    border-bottom-color: rgba(77, 159, 241, 0.5) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  }
}
/* In screenshot mode we never scroll, but force the un-scrolled state for clarity */
.shot-mode #nav { background-color: #000 !important; -webkit-backdrop-filter: none !important; backdrop-filter: none !important; }

/* ═══════════════════════════════════════════════════════════════════
   TRUSTED BY — sitewide partner logos section.
   Used on home, contact, and commercial pages.
   ═══════════════════════════════════════════════════════════════════ */
.trusted {
  padding: 90px 80px;
  background: #fbfaf7;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.trusted-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.trusted-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: #696A6A; font-weight: 600;
  margin-bottom: 14px;
}
.trusted-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: #6a6a6a;
  margin: 0 0 56px;
}
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px 56px;
  align-items: center;
  justify-items: center;
}
.trusted-logo {
  max-height: 56px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter .35s ease, opacity .35s ease;
}
.trusted-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}
.trusted-logo.is-compact { max-height: 40px; }

@media (max-width: 980px) {
  .trusted { padding: 56px 24px; }
  .trusted-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 24px; }
  .trusted-logo { max-height: 38px; }
  .trusted-logo.is-compact { max-height: 28px; }
  .trusted-sub { font-size: 17px; margin-bottom: 36px; }
}

/* ═══════════════════════════════════════════════════════════════════
   FINANCING LINKS — subtle "finance over time" cues on service/city
   pages. Hero link sits below the hero buttons (dark bg, light text);
   form block sits below the inline-form microcopy (light tinted card).
   ═══════════════════════════════════════════════════════════════════ */
.hero-finance-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  transition: color .2s ease, border-color .2s ease;
}
.hero-finance-link:hover {
  color: #4D9FF1;
  border-color: #4D9FF1;
}
.hero-finance-link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.form-finance-block {
  margin-top: 22px;
  padding: 16px 20px;
  background: rgba(77,159,241,0.07);
  border-left: 2px solid #4D9FF1;
  border-radius: 2px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}
.form-finance-block .label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: #4a4d52;
}
.form-finance-block a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #346BA2;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(52,107,162,0.4);
  transition: color .2s ease, border-color .2s ease;
}
.form-finance-block a:hover {
  color: #4D9FF1;
  border-color: #4D9FF1;
}

/* Screenshot mode — open both mega panels so they're captured, suppress mobile drawer */
.shot-mode .nav-links .mega-panel { display: none !important; }
.shot-mode #mobile-menu { display: none !important; }
/* ════════════════════════════════════════════════════════════════════════
   Alpha Le Concrete — City Landing Page Styles (shared)
   Extracted from per-page inline <style> blocks on 2026-05-28.
   Used by all 10 concrete-contractor-*-va.html pages.
   Includes:
     - Hero / Stats / Local + Hometown / Services / Why / Testimonial / FAQ / Final CTA / Footer
     - Mobile responsive breakpoint at 980px
   Brand tokens (--brand, --brand-dark, etc.) come from style.css which loads first.
   ════════════════════════════════════════════════════════════════════════ */

body { font-family: 'Inter', system-ui, sans-serif; color: #1a1a1a; background: #fff; }
#nav { position: fixed; top: 0; left: 0; right: 0; background: #000; padding: 12px 48px; display: flex; justify-content: space-between; align-items: center; z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-logo { display: inline-flex; align-items: center; text-decoration: none; line-height: 0; }
.nav-logo img { height: 80px; width: auto; display: block; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { font-family: 'Montserrat', sans-serif; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.85); font-weight: 500; text-decoration: none; }
.nav-links a:hover { color: #4D9FF1; }
.nav-cta { color: #fff !important; border: 1px solid rgba(255,255,255,0.5); padding: 12px 22px; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; transition: background .2s, color .2s; }
.nav-cta:hover { background: #fff; color: #000 !important; }

.hero { position: relative; min-height: 720px; padding: 200px 80px 80px; background: #000; color: #fff; overflow: hidden; display: flex; align-items: center; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.65) contrast(1.04) saturate(1.05); }
.hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.38) 50%, rgba(0,0,0,0.15) 100%); }
.hero__content { position: relative; z-index: 2; max-width: 1100px; width: 100%; margin: 0; }
.hero__eyebrow { font-family: 'Inter', sans-serif; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: #4D9FF1; font-weight: 500; margin-bottom: 28px; display: flex; align-items: center; gap: 14px; }
.hero__eyebrow::before { content: ''; width: 32px; height: 1px; background: #4D9FF1; }
.hero__title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(36px, 4.8vw, 72px); line-height: 0.98; letter-spacing: -0.025em; text-transform: uppercase; color: #fff; margin: 0 0 14px; }
.hero__title-accent { display: block; font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; font-size: clamp(22px, 2.6vw, 38px); letter-spacing: -0.005em; text-transform: none; color: #4D9FF1; margin-top: 14px; }
.hero__h2 { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin: 32px 0 0; }
.hero__sub { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.82); font-weight: 300; margin: 16px 0 36px; max-width: 580px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-blue { background: #4D9FF1; color: #000; padding: 18px 30px; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: 12px; transition: background .2s, transform .2s; }
.btn-blue:hover { background: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); padding: 18px 30px; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: 12px; transition: border-color .2s, background .2s; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

.stats { background: #0a0a0a; padding: 56px 80px; border-top: 1px solid rgba(255,255,255,0.06); }
.stats-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { padding: 0 32px; border-left: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 8px; }
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num { font-family: 'Montserrat', sans-serif; font-size: 52px; font-weight: 800; line-height: 1; color: #fff; letter-spacing: -0.02em; }
.stat-num span { color: #4D9FF1; }
.stat-num .star { font-size: 28px; vertical-align: 0.4em; margin-left: 4px; }
.stat-label { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 600; }

.section-header { max-width: 1280px; margin: 0 auto 64px; }
.section-header--center { text-align: center; }
.section-eyebrow { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: #696A6A; font-weight: 600; display: inline-flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.section-eyebrow::before { content: ''; width: 32px; height: 1px; background: #4D9FF1; }
.section-header--center .section-eyebrow::after { content: ''; width: 32px; height: 1px; background: #c8c4ba; }
.section-header--center .section-eyebrow::before { background: #c8c4ba; }
.section-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(32px, 3.8vw, 56px); line-height: 1.05; letter-spacing: -0.02em; text-transform: uppercase; color: #1a1a1a; margin: 0; }
.section-title em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; text-transform: none; letter-spacing: -0.005em; color: #346BA2; font-size: 0.78em; display: block; margin-top: 12px; }

.local { padding: 140px 80px; background: #ffffff; }
.local-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.local-media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.local-media img { width: 100%; height: 100%; object-fit: cover; }
.local-media::after { content: ''; position: absolute; left: -16px; bottom: -16px; width: 120px; height: 120px; border-left: 1px solid #4D9FF1; border-bottom: 1px solid #4D9FF1; }
.local-content { padding-left: 16px; }
.local-content .section-title { color: #1a1a1a; margin-bottom: 28px; }
.local-content p { font-size: 17px; line-height: 1.8; color: #4a4d52; margin: 0 0 20px; max-width: 540px; }
.local-content p:last-child { margin-bottom: 0; }
.neighborhood-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 8px; max-width: 540px; }
.neighborhood-pill { display: inline-flex; align-items: center; padding: 8px 16px; background: rgba(77,159,241,0.08); border: 1px solid rgba(77,159,241,0.22); border-radius: 999px; font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #346BA2; font-weight: 600; }

/* HOMETOWN STORY — Purcellville only (Alpha's home base) */
.hometown { padding: 140px 80px; background: #ffffff; }
.hometown-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.hometown-media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.hometown-media img { width: 100%; height: 100%; object-fit: cover; }
.hometown-media::after { content: ''; position: absolute; left: -16px; bottom: -16px; width: 120px; height: 120px; border-left: 1px solid #4D9FF1; border-bottom: 1px solid #4D9FF1; }
.hometown-content { padding-left: 16px; }
.hometown-content .section-title { color: #1a1a1a; margin-bottom: 28px; }
.hometown-content p { font-size: 17px; line-height: 1.8; color: #4a4d52; margin: 0 0 20px; max-width: 520px; }
.hometown-content p:last-child { margin-bottom: 0; }
.hometown-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; background: rgba(77,159,241,0.12); border: 1px solid rgba(77,159,241,0.3); border-radius: 999px; font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: #346BA2; font-weight: 700; margin-bottom: 24px; }
.hometown-badge::before { content: '★'; font-size: 13px; }
  .hometown, .services, .why, .local-testimonial, .final-cta { padding: 70px 24px; }
  .hometown-grid { grid-template-columns: 1fr; gap: 40px; }
  .hometown-content { padding: 0; }

.services { padding: 120px 80px; background: #fbfaf7; }
.services-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #000; color: #fff; cursor: pointer; text-decoration: none; transition: transform .3s; }
.service-card:hover { transform: translateY(-4px); }
.service-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.82) saturate(0.95); transition: transform .8s ease, filter .3s; }
.service-card:hover img { transform: scale(1.04); filter: brightness(0.65); }
.service-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%); }
.service-card__content { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 32px 32px; }
.service-card__label { font-family: 'Montserrat', sans-serif; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: #4D9FF1; font-weight: 600; margin-bottom: 12px; }
.service-card__title { font-family: 'Montserrat', sans-serif; font-size: 30px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; text-transform: uppercase; color: #fff; margin: 0 0 14px; }
.service-card__list { font-family: 'Inter', sans-serif; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.78); font-weight: 300; margin: 0 0 20px; }
.service-card__cta { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid #fff; padding-bottom: 4px; }
.service-card:hover .service-card__cta { color: #4D9FF1; border-color: #4D9FF1; }

.why { padding: 120px 80px; background: #0a0a0a; color: #fff; }
.why-grid { max-width: 1280px; margin: 56px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.why-item { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); }
.why-num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; font-size: 32px; line-height: 1; color: #4D9FF1; margin-bottom: 20px; }
.why-title { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #fff; margin: 0 0 14px; }
.why-body { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.7); font-weight: 300; margin: 0; }
.why-header .section-eyebrow { color: rgba(255,255,255,0.55); }
.why-header .section-eyebrow::before, .why-header .section-eyebrow::after { background: rgba(255,255,255,0.2); }
.why-header .section-title { color: #fff; }
.why-header .section-title em { color: #4D9FF1; }

.local-testimonial { padding: 120px 80px; background: #fbfaf7; text-align: center; }
.local-testimonial-inner { max-width: 880px; margin: 0 auto; }
.local-testimonial-eyebrow { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: #696A6A; font-weight: 600; display: inline-flex; align-items: center; gap: 14px; margin-bottom: 44px; }
.local-testimonial-eyebrow::before, .local-testimonial-eyebrow::after { content: ''; width: 32px; height: 1px; background: #c8c4ba; }
.local-testimonial-stars { color: #4D9FF1; font-size: 18px; letter-spacing: 6px; margin-bottom: 28px; }
.local-testimonial-quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; font-size: 28px; line-height: 1.45; color: #1a1a1a; margin: 0 0 32px; }
.local-testimonial-attr { font-family: 'Inter', sans-serif; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: #696A6A; font-weight: 500; }
.local-testimonial-attr span { color: #1a1a1a; font-weight: 600; margin-right: 6px; }

.final-cta { padding: 120px 80px; background: #000; color: #fff; text-align: center; }
.final-cta-inner { max-width: 860px; margin: 0 auto; }
.final-cta-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(36px, 4.5vw, 64px); line-height: 1.02; letter-spacing: -0.025em; text-transform: uppercase; color: #fff; margin: 0 0 14px; }
.final-cta-title em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; text-transform: none; color: #4D9FF1; font-size: 0.7em; display: block; margin-top: 12px; }
.final-cta-sub { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.72); font-weight: 300; margin: 28px auto 44px; max-width: 580px; }
.final-cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.btn-ghost-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); padding: 18px 30px; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: 12px; transition: border-color .2s, background .2s; }
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

.footer { background: #050505; color: rgba(255,255,255,0.65); padding: 80px 80px 32px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand-name { line-height: 0; margin-bottom: 20px; }
.footer-brand-name img { height: 180px; width: auto; display: block; margin-left: -12px; }
.footer-brand-text { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 320px; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #fff; font-weight: 600; margin: 0 0 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-col a:hover { color: #4D9FF1; }
.footer-legal { max-width: 880px; margin: 24px auto 0; font-size: 11px; line-height: 1.6; color: rgba(255,255,255,0.35); }
.footer-legal sup { color: #4D9FF1; font-weight: 600; margin-right: 2px; }
.footer-legal a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.footer-bottom { max-width: 1280px; margin: 24px auto 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }

@media (max-width: 980px) {
  #nav { padding: 12px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hero { padding: 130px 24px 60px; min-height: 0; }
  .hero__title { font-size: 40px; }
  .stats { padding: 32px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat { padding: 0; border-left: none; }
  .stat-num { font-size: 36px; }
  .local, .hometown, .services, .why, .local-testimonial, .final-cta { padding: 70px 24px; }
  .hometown-grid { grid-template-columns: 1fr; gap: 40px; }
  .hometown-content { padding: 0; }
  .local-grid { grid-template-columns: 1fr; gap: 40px; }
  .local-content { padding: 0; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer { padding: 56px 24px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
.faq { padding: 120px 80px; background: #ffffff; }
.faq-inner { max-width: 880px; margin: 0 auto; }
.faq-header { margin-bottom: 56px; }
.faq-list { border-top: 1px solid #E6E8EC; }
.faq-item { border-bottom: 1px solid #E6E8EC; }
.faq-item summary { list-style: none; cursor: pointer; padding: 28px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: -0.005em; color: #1a1a1a; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ''; width: 14px; height: 14px; border-right: 2px solid #4D9FF1; border-bottom: 2px solid #4D9FF1; transform: rotate(45deg); transition: transform .25s ease; flex-shrink: 0; margin-right: 6px; }
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 6px; }
.faq-item summary:hover { color: #346BA2; }
.faq-a { padding: 0 0 28px 0; font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.75; color: #4a4d52; font-weight: 300; max-width: 760px; }
.faq-a p { margin: 0 0 14px 0; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a { color: #346BA2; border-bottom: 1px solid rgba(52,107,162,0.3); transition: border-color .2s; }
.faq-a a:hover { border-bottom-color: #346BA2; }
.faq-a strong { color: #1a1a1a; font-weight: 600; }
@media (max-width: 820px) {
  .faq { padding: 70px 24px; }
  .faq-item summary { font-size: 15px; padding: 22px 0; }
  .faq-a { font-size: 15px; }
}
