/* =========================================================
   COMBINED STYLES — Hastie Fence Co.
   Prepared by SL Development / Agent 1
   
   Removed from original concept (Bricks handles these):
     - *, *::before, *::after reset
     - html {} global reset
     - /* body reset removed — handled by Bricks */ reset
     - a { color: inherit; text-decoration: none; }
     - img { display: block; max-width: 100%; }
     - ul { list-style: none; }
     - .design-note {} (concept-only badge)
   
 /*  Bricks dual selectors added for all root sections.
   ========================================================= */

/* --- TOKENS --- */
:root {
  --green:        #1B3A2D;
  --green-mid:    #254d3c;
  --green-light:  #2e6349;
  --cream:        #F5F0E8;
  --cream-dark:   #EBE4D6;
  --charcoal:     #2C2C2C;
  --charcoal-mid: #444444;
  --copper:       #B87333;
  --copper-dark:  #9e6228;
  --white:        #FFFFFF;
  --text-body:    #3a3a3a;
  --text-muted:   #6b6b6b;
  --border:       rgba(27,58,45,0.12);

  --font: 'Inter', sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
  --transition: 0.3s ease;
  --max-width: 1280px;
  --section-pad: 100px;
}

/* =========================================================
   HASTIE FENCE CO. — Bricks 2.3.4 CSS Overrides
   Generated by SL Development
   
   Overrides Bricks Builder defaults to match the concept
   design exactly. Applied AFTER combined-styles.css which
   holds :root variables and base concept-class styles.
   
   Selector pattern: .brxe-[type].[custom-class]
    used throughout to beat Bricks inline + element
   level defaults (flex-direction:column, max-width:1100px, etc.)
   ========================================================= */

/* =========================================================
   GLOBAL BRICKS RESETS
   ========================================================= */

/* Inter on all Bricks content 
#brx-content,
#brx-content *,
#brx-header,
#brx-header *,
#brx-footer,
#brx-footer * {
  font-family: var(--font) ;
}
*/

/* Strip Bricks default section horizontal padding */
.brxe-section {
  padding-left: 0 ;
  padding-right: 0 ;
}

/* Container max-width override (Bricks defaults to 1100px) */
.brxe-container {
  max-width: var(--max-width) ;
}

/* Headings: strip Bricks top margin */
.brxe-heading {
  margin-top: 0 ;
}

/* =========================================================
   HEADER
   ========================================================= */

/* Bricks renders the header template in #brx-header > .brxe-section */
#brx-header .brxe-section,
.brxe-section.site-header {
  position: fixed ;
  top: 0 ;
  left: 0 ;
  right: 0 ;
  z-index: 1000 ;
  background: var(--green);
  padding: 20px 0 ;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition) ;
  width: 100% ;
}

#brx-header .brxe-section.scrolled,
.brxe-section.site-header.scrolled {
  background: rgba(17,40,28,0.96) ;
  backdrop-filter: blur(12px) ;
  -webkit-backdrop-filter: blur(12px) ;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25) ;
  padding: 12px 0 ;
}

/* Header inner container — row layout */
#brx-header .brxe-section > .brxe-container,
.brxe-section.site-header > .brxe-container,
.brxe-container.header-inner {
  justify-content: space-between ;
  display: flex ;
  flex-direction: row ;
  align-items: center ;
  gap: 24px ;
  max-width: var(--max-width) ;
  padding: 0 40px ;
  margin: 0 auto ;
  width: 100% ;
}

/* Logo */
.brxe-logo.header-logo,
#brx-header .brxe-logo {
  flex-shrink: 0 ;
  display: flex ;
  align-items: center ;
  line-height: 1 ;
}

.brxe-logo.header-logo img,
#brx-header .brxe-logo img,
.brxe-section.site-header .brxe-logo img {
  height: 50px ;
  width: auto ;
  filter: brightness(0) invert(1) ;
  display: block ;
  max-width: none ;
}

/* Nav menu */
.brxe-nav-menu.header-nav,
#brx-header .brxe-nav-menu {
  flex: 1 ;
  display: flex ;
  justify-content: center ;
}

.brxe-nav-menu.header-nav nav > ul,
#brx-header .brxe-nav-menu nav > ul {
  display: flex ;
  flex-direction: row ;
  align-items: center ;
  gap: 4px ;
  list-style: none ;
  margin: 0 ;
  padding: 0 ;
}

.brxe-nav-menu.header-nav nav > ul > li > a,
#brx-header .brxe-nav-menu nav > ul > li > a {
  display: block ;
  color: rgba(255,255,255,0.9) ;
  font-size: 14px ;
  font-weight: 500 ;
  padding: 8px 14px ;
  border-radius: var(--radius) ;
  transition: color var(--transition), background var(--transition) ;
  white-space: nowrap ;
  text-decoration: none ;
  background: transparent ;
}

.brxe-nav-menu.header-nav nav > ul > li > a:hover,
#brx-header .brxe-nav-menu nav > ul > li > a:hover {
  color: white ;
  background: rgba(255,255,255,0.1) ;
}

/* Dropdown */
.brxe-nav-menu .dropdown,
#brx-header .brxe-nav-menu .bricks-nav-menu--dropdown {
  position: absolute ;
  top: calc(100% + 8px) ;
  left: 50% ;
  transform: translateX(-50%) translateY(-6px) ;
  background: white ;
  border-radius: var(--radius-lg) ;
  box-shadow: var(--shadow-lg) ;
  min-width: 180px ;
  padding: 8px 0 ;
  opacity: 0 ;
  visibility: hidden ;
  transition: opacity 0.2s ease, transform 0.2s ease ;
}

.brxe-nav-menu nav > ul > li:hover .dropdown,
#brx-header .brxe-nav-menu nav > ul > li:hover .bricks-nav-menu--dropdown {
  opacity: 1 ;
  visibility: visible ;
  transform: translateX(-50%) translateY(0) ;
}

/* Header right area */
.brxe-div.header-right,
.brxe-block.header-right {
  display: flex ;
  flex-direction: row ;
  align-items: center ;
  gap: 20px ;
  flex-shrink: 0 ;
}

/* Header phone */
.brxe-text-basic.header-phone,
.header-phone {
  color: rgba(255,255,255,0.85) ;
  font-size: 14px ;
  font-weight: 500 ;
  white-space: nowrap ;
}

.brxe-text-basic.header-phone a,
.header-phone a {
  color: rgba(255,255,255,0.85) ;
  text-decoration: none ;
}

.brxe-text-basic.header-phone span,
.header-phone span {
  color: var(--copper) ;
  margin-right: 4px ;
}

/* Header CTA button */
.brxe-button.btn-estimate-header {
  display: inline-block ;
  background: var(--copper) ;
  color: white ;
  font-size: 13px ;
  font-weight: 600 ;
  letter-spacing: 0.04em ;
  text-transform: uppercase ;
  padding: 10px 20px ;
  border-radius: var(--radius) ;
  white-space: nowrap ;
  transition: background var(--transition), transform var(--transition) ;
  border: none ;
  text-decoration: none ;
  cursor: pointer ;
}

.brxe-button.btn-estimate-header:hover {
  background: var(--copper-dark) ;
  transform: translateY(-1px) ;
}

/* =========================================================
   HERO
   ========================================================= */

.brxe-section.hero {
  position: relative ;
  height: 100vh ;
  min-height: 600px ;
  display: flex ;
  flex-direction: column ;
  align-items: stretch ;
  justify-content: center ;
  overflow: hidden ;
  background-color: #1B3A2D ;
  padding: 0 ;
}

/* Hero video background — code element */
.brxe-code.hero-video-bg {
  position: absolute ;
  inset: 0 ;
  overflow: hidden ;
  z-index: 0 ;
  padding: 0 ;
  margin: 0 ;
  width: 100% ;
  height: 100% ;
  display: block ;
}

.brxe-code.hero-video-bg iframe,
.brxe-code.hero-video-bg #ytPlayer,
.hero-video-bg iframe,
.hero-video-bg #ytPlayer {
  position: absolute ;
  top: 50% ;
  left: 50% ;
  width: 177.78vh ;
  height: 100vh ;
  min-width: 100% ;
  min-height: 56.25vw ;
  transform: translate(-50%, -50%) ;
  pointer-events: none ;
  border: none ;
}

/* Hero dark overlay */
.brxe-div.hero-video-overlay {
  position: absolute ;
  inset: 0 ;
  background: rgba(0,0,0,0.45) ;
  z-index: 1 ;
  width: 100% ;
  height: 100% ;
}

/* Hero gradient overlay */
.brxe-div.hero-overlay {
  position: absolute ;
  inset: 0 ;
  background: linear-gradient(
    to right,
    rgba(10,25,18,0.55) 0%,
    rgba(10,25,18,0.25) 50%,
    rgba(10,25,18,0.05) 100%
  ) ;
  z-index: 1 ;
  width: 100% ;
  height: 100% ;
}

/* Hero content container */
.brxe-container.hero-content {
  position: relative ;
  z-index: 2 ;
  max-width: var(--max-width) ;
  width: 100% ;
  margin: 0 auto ;
  padding: 80px 40px 0 ;
  display: flex ;
  flex-direction: column ;
  align-items: flex-start ;
}

/* Hero eyebrow */
.brxe-text-basic.hero-eyebrow {
  display: inline-flex ;
  align-items: center ;
  gap: 10px ;
  font-size: 12px ;
  font-weight: 600 ;
  letter-spacing: 0.16em ;
  text-transform: uppercase ;
  color: var(--copper) ;
  margin-bottom: 20px ;
}

.brxe-text-basic.hero-eyebrow::before {
  content: '' ;
  display: inline-block ;
  width: 32px ;
  height: 2px ;
  background: var(--copper) ;
  flex-shrink: 0 ;
}

/* Hero headline */
.brxe-heading.hero-headline {
  font-size: clamp(42px, 6vw, 80px) ;
  font-weight: 700 ;
  color: white ;
  line-height: 1.05 ;
  letter-spacing: -0.02em ;
  max-width: 680px ;
  margin-bottom: 24px ;
  margin-top: 0 ;
}

.brxe-heading.hero-headline em {
  font-style: normal ;
  color: var(--copper) ;
}

/* Hero subhead */
.brxe-text-basic.hero-subhead {
  font-size: clamp(16px, 2vw, 20px) ;
  font-weight: 300 ;
  color: rgba(255,255,255,0.82) ;
  max-width: 520px ;
  line-height: 1.6 ;
  margin-bottom: 40px ;
}

/* Hero CTA row */
.brxe-div.hero-ctas,
.brxe-block.hero-ctas {
  display: flex ;
  flex-direction: row ;
  gap: 16px ;
  flex-wrap: wrap ;
  align-items: center ;
}

/* Primary button (hero + global) */
.brxe-button.btn-primary {
  display: inline-flex ;
  align-items: center ;
  gap: 8px ;
  background: var(--copper) ;
  color: white ;
  font-size: 15px ;
  font-weight: 600 ;
  letter-spacing: 0.04em ;
  text-transform: uppercase ;
  padding: 16px 32px ;
  border-radius: var(--radius) ;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) ;
  text-decoration: none ;
  border: none ;
  cursor: pointer ;
}

.brxe-button.btn-primary:hover {
  background: var(--copper-dark) ;
  transform: translateY(-2px) ;
  box-shadow: 0 8px 24px rgba(184,115,51,0.4) ;
}

/* Outline button (hero) */
.brxe-button.btn-outline {
  display: inline-flex ;
  align-items: center ;
  gap: 8px ;
  background: transparent ;
  color: white ;
  font-size: 15px ;
  font-weight: 600 ;
  letter-spacing: 0.04em ;
  text-transform: uppercase ;
  padding: 15px 32px ;
  border: 2px solid rgba(255,255,255,0.5) ;
  border-radius: var(--radius) ;
  transition: border-color var(--transition), background var(--transition) ;
  text-decoration: none ;
  cursor: pointer ;
}

.brxe-button.btn-outline:hover {
  border-color: white ;
  background: rgba(255,255,255,0.08) ;
}

/* Hero scroll indicator */
.brxe-div.hero-scroll,
.brxe-block.hero-scroll {
  position: absolute ;
  bottom: 36px ;
  left: 50% ;
  transform: translateX(-50%) ;
  z-index: 2 ;
  display: flex ;
  flex-direction: column ;
  align-items: center ;
  gap: 8px ;
  color: rgba(255,255,255,0.5) ;
  font-size: 11px ;
  letter-spacing: 0.12em ;
  text-transform: uppercase ;
  font-weight: 500 ;
  animation: scrollPulse 2.5s ease-in-out infinite ;
}

.brxe-div.hero-scroll .scroll-line,
.scroll-line {
  width: 1px ;
  height: 40px ;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent) ;
  display: block ;
}

/* =========================================================
   TRUST BAR
   ========================================================= */

.brxe-section.trust-bar {
  background: var(--green) ;
  padding: 20px 0 ;
}

.brxe-section.trust-bar > .brxe-container,
.brxe-container.trust-bar-inner {
  display: flex ;
  flex-direction: row ;
  justify-content: center ;
  align-items: center ;
  gap: 0 ;
  flex-wrap: wrap ;
  max-width: var(--max-width) ;
  padding: 0 40px ;
  margin: 0 auto ;
  width: 100% ;
}

.brxe-block.trust-item,
.brxe-div.trust-item {
  display: flex ;
  flex-direction: row ;
  align-items: center ;
  gap: 10px ;
  color: white ;
  font-size: 14px ;
  font-weight: 500 ;
  padding: 10px 36px ;
  letter-spacing: 0.01em ;
  border-right: 1px solid rgba(255,255,255,0.2) ;
}

.brxe-block.trust-item:last-child,
.brxe-div.trust-item:last-child {
  border-right: none ;
}

.brxe-text-basic.trust-icon,
.trust-icon {
  font-size: 18px ;
  opacity: 0.85 ;
}

/* =========================================================
   SHARED: SECTION INNER CONTAINER + HEADERS
   ========================================================= */

/* All content section inner containers */
.brxe-section.fence-types > .brxe-container,
.brxe-section.featured-projects > .brxe-container,
.brxe-section.why-hastie > .brxe-container,
.brxe-section.testimonials > .brxe-container,
.brxe-section.blog-preview > .brxe-container,
.brxe-section.cta-banner > .brxe-container,
.brxe-container.section-inner {
  max-width: var(--max-width) ;
  padding: 0 40px ;
  margin: 0 auto ;
  width: 100% ;
  flex-direction: column ;
  align-items: stretch ;
}

/* Section vertical padding */
.brxe-section.fence-types,
.brxe-section.featured-projects,
.brxe-section.why-hastie,
.brxe-section.testimonials,
.brxe-section.blog-preview {
  padding-top: var(--section-pad) ;
  padding-bottom: var(--section-pad) ;
}

/* Section header block */
.brxe-div.section-header,
.brxe-block.section-header {
  text-align: center ;
  margin-bottom: 60px ;
  display: flex ;
  flex-direction: column ;
  align-items: center ;
}

/* Section eyebrow */
.brxe-text-basic.section-eyebrow {
  display: inline-flex ;
  align-items: center ;
  gap: 10px ;
  font-size: 12px ;
  font-weight: 600 ;
  letter-spacing: 0.16em ;
  text-transform: uppercase ;
  color: var(--copper) ;
  margin-bottom: 14px ;
}

.brxe-text-basic.section-eyebrow::before,
.brxe-text-basic.section-eyebrow::after {
  content: '' ;
  display: inline-block ;
  width: 28px ;
  height: 1px ;
  background: var(--copper) ;
  flex-shrink: 0 ;
}

/* Section title */
.brxe-heading.section-title {
  font-size: clamp(30px, 4vw, 48px) ;
  font-weight: 700 ;
  color: var(--green) ;
  letter-spacing: -0.02em ;
  line-height: 1.1 ;
  margin-bottom: 16px ;
  margin-top: 0 ;
}

.brxe-heading.section-title.light {
  color: white ;
}

/* Section subtitle */
.brxe-text-basic.section-subtitle {
  font-size: 17px ;
  font-weight: 300 ;
  color: var(--text-muted) ;
  max-width: 600px ;
  margin: 0 auto ;
  line-height: 1.65 ;
  text-align: center ;
}

.brxe-text-basic.section-subtitle.light {
  color: rgba(255,255,255,0.7) ;
}

/* =========================================================
   FENCE TYPES
   ========================================================= */

.brxe-section.fence-types {
  background: var(--cream) ;
}

/* 4-column fence grid */
.brxe-div.fence-grid,
.brxe-block.fence-grid {
  display: grid ;
  grid-template-columns: repeat(4, 1fr) ;
  gap: 24px ;
  width: 100% ;
}

/* Fence card wrapper */
.brxe-div.fence-card,
.brxe-block.fence-card {
  background: white ;
  border-radius: var(--radius-lg) ;
  overflow: hidden ;
  box-shadow: var(--shadow-sm) ;
  transition: box-shadow var(--transition), transform var(--transition) ;
  cursor: pointer ;
  position: relative ;
  display: flex ;
  flex-direction: column ;
  padding: 0 ;
}

.brxe-div.fence-card:hover,
.brxe-block.fence-card:hover {
  box-shadow: var(--shadow-lg) ;
  transform: translateY(-4px) ;
}

/* Fence card image container */
.brxe-div.fence-card-img,
.brxe-block.fence-card-img {
  height: 240px ;
  position: relative ;
  overflow: hidden ;
  flex-shrink: 0 ;
  display: block ;
}

.brxe-div.fence-card-img .brxe-image,
.brxe-div.fence-card-img .brxe-image img,
.brxe-div.fence-card-img img,
.brxe-block.fence-card-img img {
  width: 100% ;
  height: 100% ;
  object-fit: cover ;
  display: block ;
  max-width: none ;
}

/* Hover overlay slides up */
.brxe-div.fence-card-hover {
  position: absolute ;
  inset: 0 ;
  background: linear-gradient(to top, rgba(27,58,45,0.92) 0%, rgba(27,58,45,0.6) 60%, transparent 100%) ;
  opacity: 0 ;
  transition: opacity var(--transition) ;
  display: flex ;
  align-items: flex-end ;
  padding: 20px ;
  z-index: 2 ;
}

.brxe-div.fence-card:hover .brxe-div.fence-card-hover,
.brxe-block.fence-card:hover .brxe-div.fence-card-hover {
  opacity: 1 ;
}

.brxe-div.fence-card-hover p {
  color: white ;
  font-size: 14px ;
  line-height: 1.55 ;
  font-weight: 300 ;
  margin: 0 ;
}

/* Fence card body */
.brxe-div.fence-card-body,
.brxe-block.fence-card-body {
  padding: 20px 24px 24px ;
  display: flex ;
  flex-direction: column ;
  align-items: flex-start ;
  flex: 1 ;
}

.brxe-heading.fence-card-title {
  font-size: 18px ;
  font-weight: 700 ;
  color: var(--green) ;
  margin-bottom: 6px ;
  margin-top: 0 ;
  line-height: 1.2 ;
}

.brxe-text-basic.fence-card-tag {
  font-size: 12px ;
  color: var(--text-muted) ;
  font-weight: 400 ;
  margin-bottom: 0 ;
  order: -1 ;
}

.brxe-button.fence-card-link {
  display: inline-flex ;
  align-items: center ;
  gap: 6px ;
  margin-top: 12px ;
  font-size: 13px ;
  font-weight: 600 ;
  color: var(--copper) ;
  letter-spacing: 0.04em ;
  text-transform: uppercase ;
  transition: gap var(--transition) ;
  background: transparent ;
  border: none ;
  padding: 0 ;
  text-decoration: none ;
  cursor: pointer ;
}

.brxe-div.fence-card:hover .brxe-button.fence-card-link,
.brxe-block.fence-card:hover .brxe-button.fence-card-link {
  gap: 10px ;
}

/* =========================================================
   SECURITY BANNER
   ========================================================= */

.brxe-section.security-banner {
  position: relative ;
  min-height: 480px ;
  display: flex ;
  align-items: center ;
  justify-content: center ;
  text-align: center ;
  background: var(--charcoal) ;
  overflow: hidden ;
  padding: 0 ;
}

/* Background image absolutely positioned */
.brxe-image.security-banner-bg,
.brxe-section.security-banner > .brxe-image {
  position: absolute ;
  inset: 0 ;
  width: 100% ;
  height: 100% ;
  z-index: 0 ;
  padding: 0 ;
  margin: 0 ;
  display: block ;
}

.brxe-image.security-banner-bg img,
.brxe-section.security-banner > .brxe-image img {
  width: 100% ;
  height: 100% ;
  object-fit: cover ;
  display: block ;
  opacity: 0.35 ;
  max-width: none ;
}

/* Dark overlay on security banner via ::before */
.brxe-section.security-banner::before {
  content: '' ;
  position: absolute ;
  inset: 0 ;
  background: rgba(0,0,0,0.35) ;
  z-index: 1 ;
}

/* Security content */
.brxe-container.security-banner-content,
.brxe-div.security-banner-content,
.brxe-block.security-banner-content {
  position: relative ;
  z-index: 2 ;
  max-width: 720px ;
  padding: 60px 24px ;
  text-align: center ;
  display: flex ;
  flex-direction: column ;
  align-items: center ;
}

.brxe-text-basic.security-eyebrow {
  font-size: 11px ;
  font-weight: 600 ;
  letter-spacing: 0.15em ;
  text-transform: uppercase ;
  color: var(--copper) ;
  margin-bottom: 16px ;
}

.brxe-heading.security-title {
  font-size: clamp(28px, 4vw, 44px) ;
  font-weight: 700 ;
  color: var(--white) ;
  line-height: 1.15 ;
  margin-bottom: 20px ;
  margin-top: 0 ;
}

.brxe-text-basic.security-desc {
  font-size: 16px ;
  line-height: 1.7 ;
  color: rgba(255,255,255,0.75) ;
  margin-bottom: 32px ;
}

.brxe-button.btn-security {
  display: inline-block ;
  padding: 16px 36px ;
  background: var(--copper) ;
  color: var(--white) ;
  font-size: 13px ;
  font-weight: 600 ;
  letter-spacing: 0.06em ;
  text-transform: uppercase ;
  border-radius: var(--radius) ;
  transition: background var(--transition) ;
  border: none ;
  text-decoration: none ;
  cursor: pointer ;
}

.brxe-button.btn-security:hover {
  background: var(--copper-dark) ;
}

/* =========================================================
   FEATURED PROJECTS
   ========================================================= */

.brxe-section.featured-projects {
  background: var(--cream) ;
}

/* 3-column projects grid */
.brxe-div.projects-grid,
.brxe-block.projects-grid {
  display: grid ;
  grid-template-columns: repeat(3, 1fr) ;
  gap: 24px ;
  width: 100% ;
}

/* Project card */
.brxe-div.project-card,
.brxe-block.project-card {
  border-radius: var(--radius-lg) ;
  overflow: hidden ;
  position: relative ;
  cursor: pointer ;
  box-shadow: var(--shadow-sm) ;
  display: flex ;
  flex-direction: column ;
  padding: 0 ;
  background: white ;
}

/* Project card image container */
.brxe-div.project-card-img,
.brxe-block.project-card-img {
  height: 280px ;
  position: relative ;
  overflow: hidden ;
  flex-shrink: 0 ;
  display: block ;
}

.brxe-div.project-card-img .brxe-image,
.brxe-div.project-card-img .brxe-image img,
.brxe-div.project-card-img img,
.brxe-block.project-card-img img {
  width: 100% ;
  height: 100% ;
  object-fit: cover ;
  display: block ;
  transition: transform 0.5s ease ;
  max-width: none ;
}

.brxe-div.project-card:hover .brxe-div.project-card-img img,
.brxe-div.project-card:hover .brxe-div.project-card-img .brxe-image img,
.brxe-block.project-card:hover .brxe-block.project-card-img img {
  transform: scale(1.04) ;
}

/* Project overlay */
.brxe-div.project-card-overlay {
  position: absolute ;
  inset: 0 ;
  background: linear-gradient(to top, rgba(27,58,45,0.92) 0%, rgba(27,58,45,0.4) 55%, transparent 100%) ;
  opacity: 0 ;
  transition: opacity var(--transition) ;
  display: flex ;
  align-items: flex-end ;
  padding: 24px ;
  z-index: 2 ;
}

.brxe-div.project-card:hover .brxe-div.project-card-overlay,
.brxe-block.project-card:hover .brxe-div.project-card-overlay {
  opacity: 1 ;
}

.brxe-text-basic.project-card-overlay-text,
.project-card-overlay-text {
  color: rgba(255,255,255,0.9) ;
  font-size: 13px ;
  font-weight: 300 ;
  line-height: 1.5 ;
  margin: 0 ;
}

/* Project card body */
.brxe-div.project-card-body,
.brxe-block.project-card-body {
  background: white ;
  padding: 20px 24px ;
  display: flex ;
  flex-direction: column ;
  flex: 1 ;
}

.brxe-text-basic.project-card-category {
  font-size: 11px ;
  font-weight: 600 ;
  color: var(--copper) ;
  letter-spacing: 0.1em ;
  text-transform: uppercase ;
  margin-bottom: 6px ;
}

.brxe-heading.project-card-title,
.brxe-text-basic.project-card-title {
  font-size: 16px ;
  font-weight: 600 ;
  color: var(--green) ;
  margin-top: 0 ;
  margin-bottom: 0 ;
  line-height: 1.3 ;
}

/* View all / blog all button */
.brxe-button.btn-green {
  display: inline-flex ;
  align-items: center ;
  gap: 8px ;
  background: var(--green) ;
  color: white ;
  font-size: 14px ;
  font-weight: 600 ;
  letter-spacing: 0.05em ;
  text-transform: uppercase ;
  padding: 14px 32px ;
  border-radius: var(--radius) ;
  transition: background var(--transition), transform var(--transition) ;
  text-decoration: none ;
  border: none ;
  cursor: pointer ;
}

.brxe-button.btn-green:hover {
  background: var(--green-mid) ;
  transform: translateY(-2px) ;
}

/* Centered CTA wrap */
.brxe-div.blog-cta-wrap,
.brxe-block.blog-cta-wrap,
.brxe-div.projects-cta {
  text-align: center ;
  margin-top: 48px ;
  display: flex ;
  justify-content: center ;
  align-items: center ;
}

/* =========================================================
   WHY HASTIE
   ========================================================= */

.brxe-section.why-hastie {
  background: var(--green) ;
}

/* 5-column why grid */
.brxe-div.why-grid,
.brxe-block.why-grid {
  display: grid ;
  grid-template-columns: repeat(5, 1fr) ;
  gap: 32px ;
  width: 100% ;
}

/* Why item */
.brxe-div.why-item,
.brxe-block.why-item {
  text-align: center ;
  display: flex ;
  flex-direction: column ;
  align-items: center ;
}

/* Why icon circle */
.brxe-div.why-icon,
.brxe-block.why-icon {
  width: 72px ;
  height: 72px ;
  min-width: 72px ;
  background: rgba(255,255,255,0.08) ;
  border: 1px solid rgba(255,255,255,0.15) ;
  border-radius: 50% ;
  display: flex ;
  align-items: center ;
  justify-content: center ;
  margin: 0 auto 20px ;
  font-size: 28px ;
  transition: background var(--transition), transform var(--transition), border-color var(--transition) ;
  flex-shrink: 0 ;
}

.brxe-div.why-item:hover .brxe-div.why-icon,
.brxe-block.why-item:hover .brxe-block.why-icon,
.brxe-div.why-item:hover .why-icon,
.brxe-block.why-item:hover .why-icon {
  background: rgba(184,115,51,0.2) ;
  border-color: var(--copper) ;
  transform: translateY(-3px) ;
}

.brxe-heading.why-item-title {
  font-size: 16px ;
  font-weight: 700 ;
  color: white ;
  margin-bottom: 8px ;
  margin-top: 0 ;
}

.brxe-text-basic.why-item-desc {
  font-size: 14px ;
  font-weight: 300 ;
  color: rgba(255,255,255,0.65) ;
  line-height: 1.55 ;
  margin: 0 ;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */

.brxe-section.testimonials {
  background: var(--charcoal) ;
}

/* 3-column testimonials grid */
.brxe-div.testimonials-grid,
.brxe-block.testimonials-grid {
  display: grid ;
  grid-template-columns: repeat(3, 1fr) ;
  gap: 28px ;
  margin-top: 56px ;
  width: 100% ;
}

/* Testimonial card */
.brxe-div.testimonial-card,
.brxe-block.testimonial-card {
  background: rgba(255,255,255,0.05) ;
  border: 1px solid rgba(255,255,255,0.1) ;
  border-radius: var(--radius-lg) ;
  padding: 36px ;
  position: relative ;
  transition: background var(--transition) ;
  display: flex ;
  flex-direction: column ;
}

.brxe-div.testimonial-card:hover,
.brxe-block.testimonial-card:hover {
  background: rgba(255,255,255,0.08) ;
}

/* Opening quote mark */
.brxe-div.testimonial-card::before,
.brxe-block.testimonial-card::before {
  content: '\201C' ;
  position: absolute ;
  top: -10px ;
  left: 30px ;
  font-size: 80px ;
  line-height: 1 ;
  color: var(--copper) ;
  font-family: Georgia, serif ;
  opacity: 0.5 ;
  pointer-events: none ;
}

/* Stars */
.brxe-text-basic.stars {
  color: var(--copper) ;
  font-size: 16px ;
  letter-spacing: 2px ;
  margin-bottom: 16px ;
}

/* Review text */
.brxe-text-basic.testimonial-text {
  font-size: 15px ;
  font-weight: 300 ;
  color: rgba(255,255,255,0.8) ;
  line-height: 1.7 ;
  margin-bottom: 24px ;
  flex: 1 ;
}

/* Author row */
.brxe-div.testimonial-author,
.brxe-block.testimonial-author {
  display: flex ;
  flex-direction: row ;
  align-items: center ;
  gap: 14px ;
}

/* Avatar circle */
.brxe-div.author-avatar,
.brxe-block.author-avatar {
  width: 44px ;
  height: 44px ;
  min-width: 44px ;
  border-radius: 50% ;
  background: var(--green-mid) ;
  display: flex ;
  align-items: center ;
  justify-content: center ;
  font-size: 16px ;
  font-weight: 600 ;
  color: white ;
  flex-shrink: 0 ;
}

.brxe-div.author-info,
.brxe-block.author-info {
  display: flex ;
  flex-direction: column ;
  gap: 2px ;
}

.brxe-text-basic.author-name {
  font-size: 14px ;
  font-weight: 600 ;
  color: white ;
  margin: 0 ;
}

.brxe-text-basic.author-location {
  font-size: 12px ;
  color: rgba(255,255,255,0.45) ;
  margin: 0 ;
}

/* =========================================================
   BLOG PREVIEW
   ========================================================= */

.brxe-section.blog-preview {
  background: white ;
}

/* 3-column blog grid */
.brxe-div.blog-grid,
.brxe-block.blog-grid {
  display: grid ;
  grid-template-columns: repeat(3, 1fr) ;
  gap: 28px ;
  width: 100% ;
}

/* Blog card */
.brxe-div.blog-card,
.brxe-block.blog-card {
  border-radius: var(--radius-lg) ;
  overflow: hidden ;
  border: 1px solid var(--border) ;
  transition: box-shadow var(--transition), transform var(--transition) ;
  display: flex ;
  flex-direction: column ;
  background: white ;
  padding: 0 ;
}

.brxe-div.blog-card:hover,
.brxe-block.blog-card:hover {
  box-shadow: var(--shadow-md) ;
  transform: translateY(-3px) ;
}

/* Blog card image */
.brxe-div.blog-card-img,
.brxe-block.blog-card-img {
  height: 200px ;
  overflow: hidden ;
  flex-shrink: 0 ;
  display: block ;
  background: var(--cream-dark) ;
}

.brxe-div.blog-card-img .brxe-image,
.brxe-div.blog-card-img .brxe-image img,
.brxe-div.blog-card-img img,
.brxe-block.blog-card-img img {
  width: 100% ;
  height: 100% ;
  object-fit: cover ;
  display: block ;
  max-width: none ;
}

/* Blog card body */
.brxe-div.blog-card-body,
.brxe-block.blog-card-body {
  padding: 24px ;
  display: flex ;
  flex-direction: column ;
  flex: 1 ;
}

/* Blog meta row */
.brxe-div.blog-meta,
.brxe-block.blog-meta {
  display: flex ;
  flex-direction: row ;
  align-items: center ;
  gap: 12px ;
  margin-bottom: 12px ;
}

.brxe-text-basic.blog-category {
  font-size: 11px ;
  font-weight: 600 ;
  color: var(--copper) ;
  letter-spacing: 0.1em ;
  text-transform: uppercase ;
  margin: 0 ;
}

.brxe-text-basic.blog-date {
  font-size: 12px ;
  color: var(--text-muted) ;
  margin: 0 ;
}

.brxe-heading.blog-title {
  font-size: 18px ;
  font-weight: 600 ;
  color: var(--green) ;
  line-height: 1.3 ;
  margin-bottom: 10px ;
  margin-top: 0 ;
}

.brxe-text-basic.blog-excerpt {
  font-size: 14px ;
  font-weight: 300 ;
  color: var(--text-muted) ;
  line-height: 1.65 ;
  margin-bottom: 16px ;
  flex: 1 ;
}

.brxe-button.blog-read-more {
  font-size: 13px ;
  font-weight: 600 ;
  color: var(--copper) ;
  letter-spacing: 0.04em ;
  text-transform: uppercase ;
  display: inline-flex ;
  align-items: center ;
  gap: 6px ;
  transition: gap var(--transition) ;
  background: transparent ;
  border: none ;
  padding: 0 ;
  text-decoration: none ;
  cursor: pointer ;
  align-self: flex-start ;
}

.brxe-div.blog-card:hover .brxe-button.blog-read-more,
.brxe-block.blog-card:hover .brxe-button.blog-read-more {
  gap: 10px ;
}

/* =========================================================
   CTA BANNER
   ========================================================= */

.brxe-section.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%) ;
  position: relative ;
  overflow: hidden ;
  padding: 90px 0 ;
}

.brxe-section.cta-banner::before {
  content: '' ;
  position: absolute ;
  inset: 0 ;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") ;
  pointer-events: none ;
  z-index: 0 ;
}

/* CTA inner — 2-column grid */
.brxe-container.cta-banner-inner {
  position: relative ;
  z-index: 1 ;
  max-width: var(--max-width) ;
  margin: 0 auto ;
  padding: 0 40px ;
  display: grid ;
  grid-template-columns: 1fr auto ;
  align-items: center ;
  gap: 60px ;
  width: 100% ;
}

/* CTA text column */
.brxe-div.cta-banner-text,
.brxe-block.cta-banner-text {
  display: flex ;
  flex-direction: column ;
}

.brxe-text-basic.cta-banner-eyebrow {
  font-size: 12px ;
  font-weight: 600 ;
  letter-spacing: 0.16em ;
  text-transform: uppercase ;
  color: var(--copper) ;
  margin-bottom: 12px ;
}

.brxe-heading.cta-banner-title {
  font-size: clamp(28px, 4vw, 46px) ;
  font-weight: 700 ;
  color: white ;
  letter-spacing: -0.02em ;
  line-height: 1.1 ;
  margin-bottom: 12px ;
  margin-top: 0 ;
}

.brxe-text-basic.cta-banner-sub {
  font-size: 16px ;
  font-weight: 300 ;
  color: rgba(255,255,255,0.75) ;
  margin: 0 ;
}

/* CTA actions column */
.brxe-div.cta-banner-actions,
.brxe-block.cta-banner-actions {
  display: flex ;
  flex-direction: column ;
  gap: 14px ;
  align-items: flex-start ;
  flex-shrink: 0 ;
}

/* Large copper button */
.brxe-button.btn-copper-lg {
  display: inline-flex ;
  align-items: center ;
  gap: 10px ;
  background: var(--copper) ;
  color: white ;
  font-size: 16px ;
  font-weight: 700 ;
  letter-spacing: 0.04em ;
  text-transform: uppercase ;
  padding: 18px 40px ;
  border-radius: var(--radius) ;
  white-space: nowrap ;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) ;
  text-decoration: none ;
  border: none ;
  cursor: pointer ;
}

.brxe-button.btn-copper-lg:hover {
  background: var(--copper-dark) ;
  transform: translateY(-2px) ;
  box-shadow: 0 10px 30px rgba(184,115,51,0.5) ;
}

/* Phone link in CTA */
.brxe-text-basic.cta-phone-link {
  color: rgba(255,255,255,0.7) ;
  font-size: 15px ;
  font-weight: 400 ;
  display: flex ;
  align-items: center ;
  gap: 8px ;
  margin: 0 ;
}

.brxe-text-basic.cta-phone-link a {
  color: rgba(255,255,255,0.7) ;
  text-decoration: none ;
}

.brxe-text-basic.cta-phone-link strong {
  color: white ;
  font-weight: 600 ;
}

/* =========================================================
   FOOTER
   ========================================================= */

.brxe-section.site-footer {
  background: #0d2119 ;
  padding-top: 80px ;
  padding-bottom: 0 ;
  position: relative ;
  overflow: hidden ;
}

/* Gradient accent line at top */
.brxe-section.site-footer::before {
  content: '' ;
  position: absolute ;
  top: 0 ;
  left: 0 ;
  right: 0 ;
  height: 3px ;
  background: linear-gradient(to right, var(--green), var(--copper), var(--green)) ;
  z-index: 1 ;
}

/* Footer inner container */
.brxe-section.site-footer > .brxe-container,
.brxe-container.footer-inner {
  max-width: var(--max-width) ;
  margin: 0 auto ;
  padding: 0 40px ;
  width: 100% ;
  display: flex ;
  flex-direction: column ;
}

/* 4-column footer grid */
.brxe-div.footer-grid,
.brxe-block.footer-grid {
  display: grid ;
  grid-template-columns: 2fr 1fr 1.5fr 1fr ;
  gap: 48px ;
  padding-bottom: 60px ;
  border-bottom: 1px solid rgba(255,255,255,0.08) ;
  width: 100% ;
}

/* Footer logo */
.brxe-logo.footer-logo img,
.brxe-section.site-footer .brxe-logo img {
  height: 45px ;
  width: auto ;
  filter: brightness(0) invert(1) ;
  display: block ;
  margin-bottom: 8px ;
  max-width: none ;
}

.brxe-text-basic.footer-logo-sub {
  font-size: 10px ;
  font-weight: 600 ;
  color: rgba(255,255,255,0.4) ;
  letter-spacing: 0.15em ;
  text-transform: uppercase ;
  margin-bottom: 20px ;
}

.brxe-text-basic.footer-desc {
  font-size: 14px ;
  font-weight: 300 ;
  color: rgba(255,255,255,0.55) ;
  line-height: 1.65 ;
  margin-bottom: 24px ;
}

/* Footer contact items */
.brxe-div.footer-contact-item,
.brxe-block.footer-contact-item {
  display: flex ;
  flex-direction: row ;
  align-items: flex-start ;
  gap: 10px ;
  margin-bottom: 10px ;
  font-size: 14px ;
  color: rgba(255,255,255,0.6) ;
  font-weight: 300 ;
}

.brxe-div.footer-contact-item .icon,
.brxe-block.footer-contact-item .icon {
  color: var(--copper) ;
  font-size: 15px ;
  flex-shrink: 0 ;
  margin-top: 1px ;
}

/* Column headings */
.brxe-text-basic.footer-col-title {
  font-size: 12px ;
  font-weight: 700 ;
  letter-spacing: 0.14em ;
  text-transform: uppercase ;
  color: rgba(255,255,255,0.5) ;
  margin-bottom: 20px ;
}

/* Link list */
.brxe-div.footer-link-list li,
.brxe-block.footer-link-list li,
.footer-link-list li {
  margin-bottom: 8px ;
}

.brxe-div.footer-link-list a,
.brxe-block.footer-link-list a,
.footer-link-list a {
  font-size: 14px ;
  font-weight: 300 ;
  color: rgba(255,255,255,0.6) ;
  transition: color var(--transition) ;
  text-decoration: none ;
}

.brxe-div.footer-link-list a:hover,
.brxe-block.footer-link-list a:hover,
.footer-link-list a:hover {
  color: white ;
}

/* Service areas text */
.brxe-text-basic.service-areas-text,
.service-areas-text {
  font-size: 14px ;
  font-weight: 300 ;
  color: rgba(255,255,255,0.55) ;
  line-height: 1.8 ;
}

.service-areas-text strong {
  display: block ;
  font-size: 11px ;
  font-weight: 600 ;
  color: var(--copper) ;
  letter-spacing: 0.1em ;
  text-transform: uppercase ;
  margin-bottom: 6px ;
  margin-top: 14px ;
}

.service-areas-text strong:first-child {
  margin-top: 0 ;
}

/* Social links row */
.brxe-div.social-links,
.brxe-block.social-links {
  display: flex ;
  flex-direction: row ;
  gap: 12px ;
  margin-bottom: 24px ;
  flex-wrap: wrap ;
}

.brxe-div.social-link,
.brxe-button.social-link,
a.social-link,
.social-link {
  width: 40px ;
  height: 40px ;
  min-width: 40px ;
  background: rgba(255,255,255,0.07) ;
  border: 1px solid rgba(255,255,255,0.1) ;
  border-radius: var(--radius) ;
  display: flex ;
  align-items: center ;
  justify-content: center ;
  color: rgba(255,255,255,0.6) ;
  font-size: 16px ;
  transition: background var(--transition), color var(--transition), border-color var(--transition) ;
  text-decoration: none ;
  flex-shrink: 0 ;
  cursor: pointer ;
}

.brxe-div.social-link:hover,
.brxe-button.social-link:hover,
a.social-link:hover,
.social-link:hover {
  background: rgba(184,115,51,0.15) ;
  border-color: var(--copper) ;
  color: var(--copper) ;
}

/* Customer portal link */
.brxe-button.portal-link,
a.portal-link,
.portal-link {
  display: inline-flex ;
  align-items: center ;
  gap: 8px ;
  font-size: 13px ;
  font-weight: 600 ;
  color: var(--copper) ;
  border: 1px solid rgba(184,115,51,0.4) ;
  padding: 9px 16px ;
  border-radius: var(--radius) ;
  margin-top: 10px ;
  transition: background var(--transition), border-color var(--transition) ;
  background: transparent ;
  text-decoration: none ;
  cursor: pointer ;
}

.brxe-button.portal-link:hover,
a.portal-link:hover {
  background: rgba(184,115,51,0.1) ;
  border-color: var(--copper) ;
}

/* Footer portal description */
.brxe-text-basic.footer-portal-desc {
  font-size: 13px ;
  color: rgba(255,255,255,0.45) ;
  margin-bottom: 12px ;
  font-weight: 300 ;
}

/* Footer license info */
.brxe-text-basic.footer-lic-info {
  font-size: 13px ;
  color: rgba(255,255,255,0.4) ;
  font-weight: 300 ;
  line-height: 1.6 ;
  margin-top: 28px ;
}

/* Footer bottom bar */
.brxe-div.footer-bottom,
.brxe-block.footer-bottom {
  padding: 24px 0 ;
  display: flex ;
  flex-direction: row ;
  justify-content: space-between ;
  align-items: center ;
  flex-wrap: wrap ;
  gap: 12px ;
  width: 100% ;
}

.brxe-text-basic.footer-copy {
  font-size: 13px ;
  color: rgba(255,255,255,0.3) ;
  margin: 0 ;
}

.brxe-div.footer-legal,
.brxe-block.footer-legal {
  display: flex ;
  flex-direction: row ;
  gap: 20px ;
}

.brxe-div.footer-legal a,
.brxe-block.footer-legal a,
.footer-legal a {
  font-size: 13px ;
  color: rgba(255,255,255,0.3) ;
  transition: color var(--transition) ;
  text-decoration: none ;
}

.brxe-div.footer-legal a:hover,
.brxe-block.footer-legal a:hover,
.footer-legal a:hover {
  color: rgba(255,255,255,0.7) ;
}

/* =========================================================
   RESPONSIVE — 991px (tablet landscape)
   ========================================================= */

@media (max-width: 991px) {

  /* Fence: 2-col */
  .brxe-div.fence-grid,
  .brxe-block.fence-grid {
    grid-template-columns: repeat(2, 1fr) ;
  }

  /* Why: 3-col */
  .brxe-div.why-grid,
  .brxe-block.why-grid {
    grid-template-columns: repeat(3, 1fr) ;
    gap: 28px ;
  }

  /* Footer: 2-col */
  .brxe-div.footer-grid,
  .brxe-block.footer-grid {
    grid-template-columns: 1fr 1fr ;
    gap: 36px ;
  }

  /* Projects: 2-col */
  .brxe-div.projects-grid,
  .brxe-block.projects-grid {
    grid-template-columns: repeat(2, 1fr) ;
  }

  /* Hide estimate CTA button */
  .brxe-button.btn-estimate-header {
    display: none ;
  }

  /* Slightly smaller logo */
  .brxe-logo.header-logo img,
  #brx-header .brxe-logo img,
  .brxe-section.site-header .brxe-logo img {
    height: 42px ;
  }

  /* CTA banner: stack */
  .brxe-container.cta-banner-inner {
    grid-template-columns: 1fr ;
    gap: 36px ;
  }

  .brxe-div.cta-banner-actions,
  .brxe-block.cta-banner-actions {
    flex-direction: row ;
    align-items: center ;
  }
}

/* =========================================================
   RESPONSIVE — 767px (tablet portrait / large mobile)
   ========================================================= */

@media (max-width: 767px) {

  /* Section padding */
  .brxe-section.fence-types,
  .brxe-section.featured-projects,
  .brxe-section.why-hastie,
  .brxe-section.testimonials,
  .brxe-section.blog-preview {
    padding-top: 56px ;
    padding-bottom: 56px ;
  }

  /* Header container narrower */
  #brx-header .brxe-section > .brxe-container,
  .brxe-section.site-header > .brxe-container,
  .brxe-container.header-inner {
  justify-content: space-between ;
    padding: 0 20px ;
  }

  /* Hide desktop nav *
  .brxe-nav-menu.header-nav,
  #brx-header .brxe-nav-menu {
    display: none ;
  }
*/
  /* Hide phone in header */
  .brxe-text-basic.header-phone,
  .header-phone {
    display: none ;
  }

  /* Hide estimate button */
  .brxe-button.btn-estimate-header {
    display: none ;
  }

  /* Hero content narrower padding */
  .brxe-container.hero-content {
    padding: 80px 24px 0 ;
  }

  /* Hero CTAs stack vertically */
  .brxe-div.hero-ctas,
  .brxe-block.hero-ctas {
    flex-direction: column ;
    gap: 12px ;
    align-items: flex-start ;
  }

  /* Trust bar stacks */
  .brxe-section.trust-bar > .brxe-container,
  .brxe-container.trust-bar-inner {
    flex-direction: column ;
    gap: 0 ;
    padding: 0 ;
  }

  .brxe-block.trust-item,
  .brxe-div.trust-item {
    border-right: none ;
    border-bottom: 1px solid rgba(255,255,255,0.12) ;
    width: 100% ;
    justify-content: center ;
    padding: 12px 20px ;
  }

  .brxe-block.trust-item:last-child,
  .brxe-div.trust-item:last-child {
    border-bottom: none ;
  }

  /* Section inner padding reduced */
  .brxe-section.fence-types > .brxe-container,
  .brxe-section.featured-projects > .brxe-container,
  .brxe-section.why-hastie > .brxe-container,
  .brxe-section.testimonials > .brxe-container,
  .brxe-section.blog-preview > .brxe-container,
  .brxe-container.section-inner {
    padding: 0 20px ;
  }

  /* Fence: 1-col */
  .brxe-div.fence-grid,
  .brxe-block.fence-grid {
    grid-template-columns: 1fr ;
    gap: 18px ;
  }

  /* Projects: 1-col */
  .brxe-div.projects-grid,
  .brxe-block.projects-grid {
    grid-template-columns: 1fr ;
  }

  /* Why: 2-col */
  .brxe-div.why-grid,
  .brxe-block.why-grid {
    grid-template-columns: 1fr 1fr ;
    gap: 24px ;
  }

  /* Testimonials: 1-col */
  .brxe-div.testimonials-grid,
  .brxe-block.testimonials-grid {
    grid-template-columns: 1fr ;
    margin-top: 32px ;
  }

  /* Blog: 1-col */
  .brxe-div.blog-grid,
  .brxe-block.blog-grid {
    grid-template-columns: 1fr ;
  }

  /* CTA Banner: stacked */
  .brxe-container.cta-banner-inner {
    grid-template-columns: 1fr ;
    gap: 36px ;
    padding: 0 20px ;
  }

  .brxe-div.cta-banner-actions,
  .brxe-block.cta-banner-actions {
    flex-direction: column ;
    align-items: flex-start ;
  }

  /* Footer: 1-col */
  .brxe-section.site-footer > .brxe-container,
  .brxe-container.footer-inner {
    padding: 0 20px ;
  }

  .brxe-div.footer-grid,
  .brxe-block.footer-grid {
    grid-template-columns: 1fr ;
    gap: 32px ;
    padding-bottom: 40px ;
  }

  .brxe-div.footer-bottom,
  .brxe-block.footer-bottom {
    flex-direction: column ;
    align-items: flex-start ;
  }
}

/* =========================================================
   RESPONSIVE — 480px (small phones)
   ========================================================= */

@media (max-width: 480px) {

  /* Why: 1-col */
  .brxe-div.why-grid,
  .brxe-block.why-grid {
    grid-template-columns: 1fr ;
    gap: 24px ;
  }

  /* Projects: 1-col (already 1-col at 767, but explicit) */
  .brxe-div.projects-grid,
  .brxe-block.projects-grid {
    grid-template-columns: 1fr ;
  }

  /* Smaller hero headline */
  .brxe-heading.hero-headline {
    font-size: 36px ;
  }

  /* Full-width hero buttons */
  .brxe-button.btn-primary,
  .brxe-button.btn-outline {
    width: 100% ;
    justify-content: center ;
  }

  .brxe-div.hero-ctas,
  .brxe-block.hero-ctas {
    width: 100% ;
  }

  /* Full-width CTA button */
  .brxe-button.btn-copper-lg {
    width: 100% ;
    justify-content: center ;
  }

  /* Smaller section header margin */
  .brxe-div.section-header,
  .brxe-block.section-header {
    margin-bottom: 40px ;
  }

  /* Fence card image shorter on small screens */
  .brxe-div.fence-card-img,
  .brxe-block.fence-card-img {
    height: 200px ;
  }

  /* Project card image shorter */
  .brxe-div.project-card-img,
  .brxe-block.project-card-img {
    height: 220px ;
  }
}

/* ==========================================================
   MOBILE MENU — Bricks mobile menu toggle & panel
   ========================================================== */
/*
.bricks-mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
*/
.bricks-mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.bricks-mobile-menu-wrapper {
  display: none;
}


.bricks-mobile-menu-overlay {
  display: none;
}

@media (max-width: 991px) {

  /* Show hamburger */
  .bricks-mobile-menu-toggle {
    display: flex ;
    order: 99;
  }

  /* Hide desktop nav wrapper *
  .brxe-nav-menu .bricks-nav-menu-wrapper {
    display: none ;
  }
*/
  /* Mobile menu panel */
  .bricks-mobile-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: var(--green, #1B3A2D);
    z-index: 10001;
    padding-top: 70px;
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
    flex-direction: column;
  }

  .bricks-mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .bricks-mobile-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .bricks-mobile-menu a {
    display: block;
    padding: 14px 24px;
 /*   color: rgba(255,255,255,0.85) ;*/
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
  }

  .bricks-mobile-menu a:hover {
    color: #fff ;
    background: rgba(255,255,255,0.05);
  }

  .bricks-mobile-menu .sub-menu {
    padding-left: 16px;
    background: rgba(0,0,0,0.15);
  }

  .bricks-mobile-menu .sub-menu a {
    font-size: 14px;
    padding: 12px 24px;
  }

  .bricks-mobile-menu .brx-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .bricks-mobile-menu .brx-submenu-toggle button {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    padding: 14px;
    cursor: pointer;
  }

}
