/* =============================================================
   BroodWeb Equipment — Main Stylesheet
   ============================================================= */

/* --- CSS Variables --- */
:root {
  --bwe-black:      #0f0f0f;
  --bwe-dark:       #1a1a1a;
  --bwe-dark-2:     #222222;
  --bwe-navy:       #0d1b2a;
  --bwe-yellow:     #f5a623;
  --bwe-yellow-dk:  #d48c10;
  --bwe-white:      #ffffff;
  --bwe-off-white:  #f8f8f8;
  --bwe-light-gray: #f0f0f0;
  --bwe-border:     #e0e0e0;
  --bwe-gray:       #6c757d;
  --bwe-text:       #1a1a1a;
  --bwe-text-light: #555555;
  --bwe-green:      #28a745;
  --bwe-red:        #dc3545;

  --bwe-font-heading: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --bwe-font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --bwe-container:  1280px;
  --bwe-radius:     4px;
  --bwe-radius-lg:  8px;
  --bwe-shadow:     0 2px 12px rgba(0,0,0,0.08);
  --bwe-shadow-lg:  0 8px 32px rgba(0,0,0,0.12);
  --bwe-transition: 0.2s ease;

  --bwe-header-h: 72px;
  --bwe-topbar-h: 38px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--bwe-font-body);
  color: var(--bwe-text);
  background: var(--bwe-white);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }
table { border-collapse: collapse; width: 100%; }
h1,h2,h3,h4,h5,h6 { font-family: var(--bwe-font-heading); line-height: 1.1; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; }

/* --- Container --- */
.bwe-container {
  width: 100%;
  max-width: var(--bwe-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.bwe-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--bwe-font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  border-radius: var(--bwe-radius);
  transition: background var(--bwe-transition), color var(--bwe-transition), border-color var(--bwe-transition), transform var(--bwe-transition);
  white-space: nowrap;
  text-transform: uppercase;
  border: 2px solid transparent;
}
.bwe-btn:hover { transform: translateY(-1px); }
.bwe-btn:active { transform: translateY(0); }

.bwe-btn--primary {
  background: var(--bwe-yellow);
  color: var(--bwe-black);
  border-color: var(--bwe-yellow);
}
.bwe-btn--primary:hover { background: var(--bwe-yellow-dk); border-color: var(--bwe-yellow-dk); }

.bwe-btn--outline {
  background: transparent;
  color: var(--bwe-yellow);
  border-color: var(--bwe-yellow);
}
.bwe-btn--outline:hover { background: var(--bwe-yellow); color: var(--bwe-black); }

.bwe-btn--outline-dark {
  background: transparent;
  color: var(--bwe-dark);
  border-color: var(--bwe-dark);
}
.bwe-btn--outline-dark:hover { background: var(--bwe-dark); color: var(--bwe-white); }

.bwe-btn--outline-white {
  background: transparent;
  color: var(--bwe-white);
  border-color: var(--bwe-white);
}
.bwe-btn--outline-white:hover { background: var(--bwe-white); color: var(--bwe-black); }

.bwe-btn--dark {
  background: var(--bwe-dark);
  color: var(--bwe-white);
  border-color: var(--bwe-dark);
}
.bwe-btn--dark:hover { background: var(--bwe-black); }

.bwe-btn--whatsapp {
  background: #25d366;
  color: var(--bwe-white);
  border-color: #25d366;
}
.bwe-btn--whatsapp:hover { background: #1da851; }

.bwe-btn--sm { padding: 8px 16px; font-size: 0.8rem; }
.bwe-btn--lg { padding: 16px 32px; font-size: 1rem; }
.bwe-btn--full { width: 100%; justify-content: center; }

/* --- Badges --- */
.bwe-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--bwe-font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
}
.bwe-badge--new      { background: var(--bwe-yellow); color: var(--bwe-black); }
.bwe-badge--used     { background: var(--bwe-dark); color: var(--bwe-white); }
.bwe-badge--featured { background: var(--bwe-navy); color: var(--bwe-white); }
.bwe-badge--gray     { background: var(--bwe-light-gray); color: var(--bwe-gray); }
.bwe-badge--inline   { vertical-align: middle; }
.bwe-badge--gallery  {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

/* Availability badges */
.bwe-avail { display: inline-block; padding: 2px 10px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; border-radius: 2px; }
.bwe-avail--available  { background: #d4edda; color: #155724; }
.bwe-avail--sold       { background: #f8d7da; color: #721c24; }
.bwe-avail--hold       { background: #fff3cd; color: #856404; }
.bwe-avail--soon       { background: #d1ecf1; color: #0c5460; }

/* --- Section Titles --- */
.bwe-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--bwe-yellow);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bwe-section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--bwe-dark);
  margin-bottom: 16px;
}
.bwe-section-title--white { color: var(--bwe-white); }
.bwe-section-divider {
  width: 48px;
  height: 3px;
  background: var(--bwe-yellow);
  margin-bottom: 40px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.bwe-topbar {
  background: var(--bwe-black);
  color: var(--bwe-white);
  height: var(--bwe-topbar-h);
  font-size: 0.78rem;
}
.bwe-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}
.bwe-topbar__contact { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.bwe-topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.85;
}
.bwe-topbar__link { transition: opacity var(--bwe-transition); }
.bwe-topbar__link:hover { opacity: 1; color: var(--bwe-yellow); }
.bwe-topbar__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bwe-topbar__nav-link { opacity: 0.8; transition: opacity var(--bwe-transition); }
.bwe-topbar__nav-link:hover { opacity: 1; color: var(--bwe-yellow); }
.bwe-topbar__social { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.bwe-topbar__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background var(--bwe-transition), border-color var(--bwe-transition);
  color: rgba(255,255,255,0.7);
}
.bwe-topbar__social-link:hover { background: var(--bwe-yellow); border-color: var(--bwe-yellow); color: var(--bwe-black); }

/* ============================================================
   HEADER
   ============================================================ */
.bwe-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bwe-white);
  box-shadow: 0 1px 0 var(--bwe-border);
  transition: box-shadow var(--bwe-transition);
}
.bwe-header.is-scrolled { box-shadow: var(--bwe-shadow); }
.bwe-header__inner {
  display: flex;
  align-items: center;
  height: var(--bwe-header-h);
  gap: 32px;
}
.bwe-header__logo { flex-shrink: 0; }
.bwe-header__logo img { max-height: 60px; width: auto; }
.bwe-site-name {
  font-family: var(--bwe-font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--bwe-dark);
}
.bwe-header__nav { flex: 1; }

.bwe-nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.bwe-nav-menu > li > a {
  display: block;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bwe-dark);
  border-bottom: 2px solid transparent;
  transition: color var(--bwe-transition), border-color var(--bwe-transition);
}
.bwe-nav-menu > li > a:hover,
.bwe-nav-menu > li.current-menu-item > a,
.bwe-nav-menu > li.current-menu-parent > a {
  color: var(--bwe-yellow);
  border-bottom-color: var(--bwe-yellow);
}
/* Dropdown */
.bwe-nav-menu > li { position: relative; }
.bwe-nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--bwe-white);
  box-shadow: var(--bwe-shadow-lg);
  border-top: 3px solid var(--bwe-yellow);
  z-index: 100;
  padding: 8px 0;
}
.bwe-nav-menu > li:hover .sub-menu,
.bwe-nav-menu > li:focus-within .sub-menu { display: block; }
.bwe-nav-menu .sub-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bwe-text);
  transition: background var(--bwe-transition), color var(--bwe-transition);
}
.bwe-nav-menu .sub-menu li a:hover { background: var(--bwe-off-white); color: var(--bwe-yellow); }

.bwe-header__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.bwe-header__search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--bwe-radius);
  color: var(--bwe-dark);
  transition: background var(--bwe-transition);
}
.bwe-header__search-toggle:hover { background: var(--bwe-light-gray); }

.bwe-header__menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.bwe-hamburger { display: flex; flex-direction: column; gap: 5px; }
.bwe-hamburger span { display: block; width: 24px; height: 2px; background: var(--bwe-dark); transition: transform 0.3s, opacity 0.3s; border-radius: 2px; }
.bwe-header__menu-toggle[aria-expanded="true"] .bwe-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bwe-header__menu-toggle[aria-expanded="true"] .bwe-hamburger span:nth-child(2) { opacity: 0; }
.bwe-header__menu-toggle[aria-expanded="true"] .bwe-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.bwe-header__search-bar {
  border-top: 1px solid var(--bwe-border);
  background: var(--bwe-off-white);
  padding: 14px 0;
}
.bwe-header__search-bar[hidden] { display: none; }
.bwe-search-form {
  display: flex;
  gap: 8px;
  align-items: center;
}
.bwe-search-form__input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid var(--bwe-border);
  border-radius: var(--bwe-radius);
  font-size: 0.9rem;
  background: var(--bwe-white);
}
.bwe-search-form__input:focus { outline: 2px solid var(--bwe-yellow); border-color: var(--bwe-yellow); }
.bwe-search-form__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--bwe-gray);
  transition: background var(--bwe-transition);
}
.bwe-search-form__close:hover { background: var(--bwe-light-gray); color: var(--bwe-dark); }

/* ============================================================
   HERO
   ============================================================ */
.bwe-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: var(--bwe-navy) center/cover no-repeat;
  overflow: hidden;
}
.bwe-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,15,25,0.85) 0%, rgba(10,15,25,0.4) 60%, transparent 100%);
}
.bwe-hero__content {
  position: relative;
  z-index: 2;
  color: var(--bwe-white);
  max-width: 640px;
  padding: 80px 24px;
}
.bwe-hero__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--bwe-yellow);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.bwe-hero__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--bwe-white);
  white-space: pre-line;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.bwe-hero__text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 500px;
}
.bwe-hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   FEATURE STRIP
   ============================================================ */
.bwe-features {
  background: var(--bwe-white);
  border-bottom: 1px solid var(--bwe-border);
  padding: 32px 0;
}
.bwe-features__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.bwe-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.bwe-feature__icon { flex-shrink: 0; }
.bwe-feature__title {
  display: block;
  font-family: var(--bwe-font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.bwe-feature__text p { font-size: 0.85rem; color: var(--bwe-text-light); }

/* ============================================================
   CATEGORIES GRID
   ============================================================ */
.bwe-browse-categories { padding: 80px 0; background: var(--bwe-white); }
.bwe-cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.bwe-cat-item {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--bwe-border);
  border-radius: var(--bwe-radius);
  overflow: hidden;
  transition: box-shadow var(--bwe-transition), transform var(--bwe-transition);
  text-decoration: none;
}
.bwe-cat-item:hover { box-shadow: var(--bwe-shadow); transform: translateY(-2px); }
.bwe-cat-item__image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bwe-light-gray);
}
.bwe-cat-item__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.bwe-cat-item:hover .bwe-cat-item__image img { transform: scale(1.05); }
.bwe-cat-item__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.bwe-cat-item__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: var(--bwe-white);
}
.bwe-cat-item__label span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; color: var(--bwe-dark); }
.bwe-cat-item__arrow { color: var(--bwe-yellow); font-size: 0.9rem; }
.bwe-browse-categories__cta { text-align: center; }

/* ============================================================
   FEATURED PRODUCTS SECTION
   ============================================================ */
.bwe-featured-section {
  background: var(--bwe-dark);
  padding: 80px 0;
  overflow: hidden;
}
.bwe-featured-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}
.bwe-featured-carousel-wrap {
  position: relative;
  padding: 0 24px;
  max-width: var(--bwe-container);
  margin: 0 auto;
}
.bwe-featured-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}
.bwe-featured-carousel::-webkit-scrollbar { display: none; }
.bwe-featured-card {
  flex: 0 0 260px;
  background: var(--bwe-white);
  border-radius: var(--bwe-radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform var(--bwe-transition);
}
.bwe-featured-card:hover { transform: translateY(-4px); }
.bwe-featured-card__image-link {
  display: block;
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bwe-light-gray);
}
.bwe-featured-card__image-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.bwe-featured-card:hover .bwe-featured-card__image-link img { transform: scale(1.04); }
.bwe-featured-card__no-image { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--bwe-dark-2); }
.bwe-featured-card__body { padding: 16px; }
.bwe-featured-card__title { font-size: 0.95rem; font-weight: 700; font-family: var(--bwe-font-body); text-transform: none; letter-spacing: 0; margin-bottom: 4px; }
.bwe-featured-card__model { font-size: 0.8rem; color: var(--bwe-gray); margin-bottom: 4px; }
.bwe-featured-card__price { font-size: 1rem; font-weight: 700; color: var(--bwe-dark); margin-bottom: 4px; }
.bwe-featured-card__location { font-size: 0.78rem; color: var(--bwe-gray); display: flex; align-items: center; gap: 4px; margin-bottom: 12px; }
.bwe-featured-card__body .bwe-btn { width: 100%; justify-content: center; }

/* Carousel Buttons */
.bwe-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bwe-white);
  color: var(--bwe-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--bwe-shadow);
  transition: background var(--bwe-transition), color var(--bwe-transition);
  z-index: 10;
}
.bwe-carousel-btn:hover { background: var(--bwe-yellow); }
.bwe-carousel-btn--prev { left: -16px; }
.bwe-carousel-btn--next { right: -16px; }

/* ============================================================
   BRANDS ROW
   ============================================================ */
.bwe-brands-row { padding: 48px 0; background: var(--bwe-white); border-top: 1px solid var(--bwe-border); }
.bwe-brands-row__header { margin-bottom: 24px; }
.bwe-brands-row__tagline { font-family: var(--bwe-font-heading); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.08em; color: var(--bwe-dark); }
.bwe-brands-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  overflow-x: auto;
}
.bwe-brand-logo { display: flex; align-items: center; justify-content: center; filter: grayscale(1); opacity: 0.65; transition: filter var(--bwe-transition), opacity var(--bwe-transition); flex-shrink: 0; }
.bwe-brand-logo:hover { filter: none; opacity: 1; }
.bwe-brand-logo img { max-height: 40px; max-width: 120px; object-fit: contain; }
.bwe-brand-logo--text .bwe-brand-logo__text { font-family: var(--bwe-font-heading); font-size: 1.2rem; font-weight: 800; letter-spacing: 0.04em; color: var(--bwe-dark); text-transform: uppercase; }
.bwe-brands-arrow { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--bwe-border); color: var(--bwe-gray); transition: all var(--bwe-transition); }
.bwe-brands-arrow:hover { border-color: var(--bwe-yellow); color: var(--bwe-yellow); }

/* ============================================================
   RENTAL CTA
   ============================================================ */
.bwe-rental-cta {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 440px;
  overflow: hidden;
}
.bwe-rental-cta__image {
  position: relative;
  background: var(--bwe-dark) center/cover no-repeat;
  min-height: 320px;
}
/* Dark right half */
.bwe-rental-cta__dark {
  background: var(--bwe-dark);
  display: flex;
  align-items: center;
}
/* Two-column row inside the dark half */
.bwe-rental-cta__inner {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  padding: 56px 48px 56px 56px;
  width: 100%;
}
/* Left column: text + button */
.bwe-rental-cta__text { flex: 1 1 0; min-width: 0; }
.bwe-rental-cta__eyebrow { font-size: 0.78rem; letter-spacing: 0.15em; color: var(--bwe-yellow); font-weight: 700; text-transform: uppercase; margin-bottom: 10px; display: block; }
.bwe-rental-cta__title { font-size: clamp(1.6rem, 2.8vw, 2.4rem); color: var(--bwe-white); margin-bottom: 14px; }
.bwe-rental-cta__desc { font-size: 0.92rem; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 28px; }
/* Right column: feature list */
.bwe-rental-cta__features { display: flex; flex-direction: column; gap: 18px; flex-shrink: 0; min-width: 200px; justify-content: center; padding-top: 4px; }
.bwe-rental-feature { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500; }
.bwe-rental-feature__icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(245,166,35,0.15); display: flex; align-items: center; justify-content: center; color: var(--bwe-yellow); flex-shrink: 0; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.bwe-why-us { padding: 80px 0; background: var(--bwe-white); }
.bwe-why-us__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 60px; align-items: start; }
.bwe-why-us__desc { font-size: 1rem; line-height: 1.7; color: var(--bwe-text-light); margin-bottom: 24px; }
.bwe-why-us__points { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.bwe-why-us__points li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 600; }

/* Image column */
.bwe-why-us__image-col { position: relative; }
.bwe-why-us__img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--bwe-radius-lg); display: block; }
.bwe-why-us__img-placeholder { display: flex; align-items: center; justify-content: center; min-height: 300px; background: var(--bwe-light-gray); border-radius: var(--bwe-radius-lg); }

/* Testimonial column */
.bwe-why-us__testimonial-col { display: flex; flex-direction: column; gap: 16px; }
.bwe-why-stars { display: flex; flex-direction: row; gap: 4px; align-items: center; }
.bwe-why-testimonial { border-left: 3px solid var(--bwe-yellow); padding: 20px 20px 20px 24px; background: var(--bwe-off-white); border-radius: 0 var(--bwe-radius) var(--bwe-radius) 0; margin: 0; }
.bwe-why-testimonial p { font-size: 0.95rem; font-style: italic; color: var(--bwe-text-light); line-height: 1.75; margin-bottom: 16px; }
.bwe-why-testimonial footer cite { font-style: normal; }
.bwe-why-testimonial footer cite strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--bwe-dark); margin-bottom: 2px; }
.bwe-why-testimonial footer cite span { display: block; font-size: 0.78rem; color: var(--bwe-gray); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.bwe-testimonials { padding: 80px 0; background: var(--bwe-off-white); border-top: 1px solid var(--bwe-border); }
.bwe-testimonials__carousel { overflow: hidden; }
.bwe-testimonial-slide { display: none; text-align: center; max-width: 700px; margin: 0 auto; }
.bwe-testimonial-slide.is-active { display: block; }
.bwe-testimonial-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 24px; }
.bwe-testimonial-text p { font-size: 1.15rem; font-style: italic; color: var(--bwe-text-light); line-height: 1.75; margin-bottom: 20px; }
.bwe-testimonial-author { font-weight: 700; color: var(--bwe-dark); font-style: normal; display: block; }
.bwe-testimonial-position { display: block; font-weight: 400; font-size: 0.85rem; color: var(--bwe-gray); margin-top: 4px; }
.bwe-testimonials__dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.bwe-testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bwe-border);
  transition: background var(--bwe-transition), transform var(--bwe-transition);
}
.bwe-testimonial-dot.is-active { background: var(--bwe-yellow); transform: scale(1.3); }

/* ============================================================
   NEWS SECTION
   ============================================================ */
.bwe-news { padding: 80px 0; background: var(--bwe-white); }
.bwe-news__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; gap: 16px; }
.bwe-news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.bwe-news-card { border-radius: var(--bwe-radius-lg); overflow: hidden; border: 1px solid var(--bwe-border); transition: box-shadow var(--bwe-transition), transform var(--bwe-transition); }
.bwe-news-card:hover { box-shadow: var(--bwe-shadow-lg); transform: translateY(-3px); }
.bwe-news-card__image-link { display: block; aspect-ratio: 16/9; overflow: hidden; }
.bwe-news-card__image-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.bwe-news-card:hover .bwe-news-card__image-link img { transform: scale(1.04); }
.bwe-news-card__no-image { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--bwe-light-gray); }
.bwe-news-card__body { padding: 20px; }
.bwe-news-card__date { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; color: var(--bwe-yellow); text-transform: uppercase; margin-bottom: 10px; }
.bwe-news-card__title { font-family: var(--bwe-font-body); font-size: 1rem; font-weight: 700; text-transform: none; letter-spacing: 0; margin-bottom: 12px; line-height: 1.4; }
.bwe-news-card__title a:hover { color: var(--bwe-yellow); }
.bwe-news-card__read-more { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--bwe-yellow); transition: gap var(--bwe-transition); display: inline-flex; gap: 4px; }
.bwe-news-card__read-more:hover { gap: 8px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.bwe-newsletter {
  background: var(--bwe-yellow);
  padding: 32px 0;
}
.bwe-newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.bwe-newsletter__text { display: flex; align-items: flex-start; gap: 20px; }
.bwe-newsletter__text strong { display: block; font-family: var(--bwe-font-heading); font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--bwe-dark); margin-bottom: 4px; }
.bwe-newsletter__text p { font-size: 0.85rem; color: rgba(0,0,0,0.65); max-width: 340px; line-height: 1.5; }
.bwe-newsletter__form { display: flex; gap: 8px; flex: 1; min-width: 300px; }
.bwe-newsletter__input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid rgba(0,0,0,0.12);
  border-radius: var(--bwe-radius);
  font-size: 0.9rem;
  background: rgba(255,255,255,0.6);
}
.bwe-newsletter__input::placeholder { color: rgba(0,0,0,0.5); }
.bwe-newsletter__input:focus { outline: none; border-color: var(--bwe-dark); background: var(--bwe-white); }

/* ============================================================
   FOOTER
   ============================================================ */
.bwe-footer { background: var(--bwe-black); color: rgba(255,255,255,0.75); }
.bwe-footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 48px; padding: 64px 24px; }
.bwe-footer__logo img { max-height: 64px; max-width: 180px; }
.bwe-footer__site-name { font-family: var(--bwe-font-heading); font-size: 1.8rem; font-weight: 900; color: var(--bwe-white); }
.bwe-footer__tagline { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 16px; margin-bottom: 24px; line-height: 1.6; max-width: 260px; }
.bwe-footer__social { display: flex; gap: 10px; }
.bwe-footer__social-link { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.6); transition: all var(--bwe-transition); }
.bwe-footer__social-link:hover { background: var(--bwe-yellow); border-color: var(--bwe-yellow); color: var(--bwe-black); }
.bwe-footer__heading { font-size: 0.8rem; letter-spacing: 0.12em; color: var(--bwe-white); margin-bottom: 20px; font-weight: 700; }
.bwe-footer__menu { display: flex; flex-direction: column; gap: 10px; }
.bwe-footer__menu a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color var(--bwe-transition); }
.bwe-footer__menu a:hover { color: var(--bwe-yellow); }
.bwe-footer__contact-list { display: flex; flex-direction: column; gap: 14px; }
.bwe-footer__contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.bwe-footer__contact-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--bwe-yellow); }
.bwe-footer__contact-list a:hover { color: var(--bwe-yellow); }
.bwe-footer__hours { line-height: 1.6; }
.bwe-footer__map-btn { margin-top: 16px; }
.bwe-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 24px;
}
.bwe-footer__bottom .bwe-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.bwe-footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.bwe-footer__legal-links { display: flex; gap: 16px; }
.bwe-footer__legal-links a { font-size: 0.78rem; color: rgba(255,255,255,0.4); transition: color var(--bwe-transition); }
.bwe-footer__legal-links a:hover { color: var(--bwe-yellow); }

/* ============================================================
   MISC PAGE LAYOUTS
   ============================================================ */
.bwe-main { min-height: 60vh; }
.bwe-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 40px; }
.bwe-post-card { border: 1px solid var(--bwe-border); border-radius: var(--bwe-radius-lg); overflow: hidden; }
.bwe-post-card__image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.bwe-post-card__body { padding: 20px; }
.bwe-post-card__title { font-family: var(--bwe-font-body); font-size: 1.1rem; font-weight: 700; margin: 8px 0 12px; text-transform: none; }
.bwe-post-card__title a:hover { color: var(--bwe-yellow); }
.bwe-post-card__excerpt { font-size: 0.9rem; color: var(--bwe-text-light); margin-bottom: 16px; }

/* Pagination */
.bwe-pagination { margin-top: 40px; }
.bwe-pagination .page-numbers { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; padding: 0; }
.bwe-pagination .page-numbers li { list-style: none; }
.bwe-pagination .page-numbers a,
.bwe-pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--bwe-border);
  border-radius: var(--bwe-radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bwe-text);
  transition: all var(--bwe-transition);
}
.bwe-pagination .page-numbers a:hover { background: var(--bwe-yellow); border-color: var(--bwe-yellow); color: var(--bwe-black); }
.bwe-pagination .page-numbers .current { background: var(--bwe-dark); border-color: var(--bwe-dark); color: var(--bwe-white); }
.bwe-pagination .page-numbers .prev,
.bwe-pagination .page-numbers .next { width: auto; padding: 0 16px; }

/* Archive Banner */
.bwe-archive-banner {
  background: var(--bwe-dark);
  padding: 48px 0;
  color: var(--bwe-white);
}
.bwe-archive-banner__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--bwe-white);
  margin-bottom: 12px;
}
.bwe-archive-banner__desc { font-size: 0.95rem; color: rgba(255,255,255,0.7); max-width: 600px; }
.bwe-breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 12px; }
.bwe-breadcrumb a { color: rgba(255,255,255,0.6); }
.bwe-breadcrumb a:hover { color: var(--bwe-yellow); }
.bwe-breadcrumb span { color: rgba(255,255,255,0.85); }

/* No Results */
.bwe-no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: var(--bwe-gray);
}
.bwe-no-results h3 { font-family: var(--bwe-font-body); font-size: 1.3rem; margin: 16px 0 8px; color: var(--bwe-dark); text-transform: none; }
.bwe-no-results p { margin-bottom: 24px; }

/* Default Page */
.bwe-page-content { min-height: 60vh; }
.bwe-page-inner { padding: 60px 24px; }
.bwe-page-header { margin-bottom: 36px; padding-bottom: 20px; border-bottom: 2px solid var(--bwe-border); }
.bwe-page-header__title { font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--bwe-dark); }
.bwe-page-body { max-width: 800px; }
/* When Elementor builds the page, remove all padding so it goes edge-to-edge */
.bwe-page-content .elementor { width: 100%; }

/* Quote Page */
.bwe-quote-page__layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  padding: 60px 0;
  align-items: start;
}
.bwe-quote-page__intro h2 { font-size: 1.8rem; margin-bottom: 12px; }
.bwe-quote-page__intro p { font-size: 0.95rem; color: var(--bwe-text-light); margin-bottom: 32px; }
.bwe-quote-sidebar-box {
  background: var(--bwe-off-white);
  border-radius: var(--bwe-radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid var(--bwe-border);
}
.bwe-quote-sidebar-box--dark { background: var(--bwe-dark); color: var(--bwe-white); border-color: var(--bwe-dark); }
.bwe-quote-sidebar-box h3 { font-size: 1rem; margin-bottom: 16px; }
.bwe-quote-sidebar-box--dark h3 { color: var(--bwe-white); }
.bwe-quote-contact-list { display: flex; flex-direction: column; gap: 12px; }
.bwe-quote-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--bwe-text-light); }
.bwe-quote-contact-list li svg { flex-shrink: 0; margin-top: 1px; color: var(--bwe-yellow); }
.bwe-quote-contact-list a:hover { color: var(--bwe-yellow); }
.bwe-why-quote-list { display: flex; flex-direction: column; gap: 10px; }
.bwe-why-quote-list li { font-size: 0.875rem; color: rgba(255,255,255,0.75); padding-left: 16px; position: relative; }
.bwe-why-quote-list li::before { content: '✓'; position: absolute; left: 0; color: var(--bwe-yellow); font-weight: 700; }

/* ============================================================
   COMMENTS
   ============================================================ */
.bwe-comments-area {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 2px solid var(--bwe-border);
}
.bwe-comments-title {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bwe-dark);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.bwe-comments-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  background: var(--bwe-yellow);
  color: var(--bwe-black);
  border-radius: 20px;
  font-size: 0.85rem;
}
.bwe-comments-title__post { font-weight: 400; font-size: 1rem; color: var(--bwe-gray); text-transform: none; letter-spacing: 0; }
.bwe-comment-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.bwe-comment { border-bottom: 1px solid var(--bwe-border); padding: 24px 0; }
.bwe-comment:last-child { border-bottom: none; }
.bwe-comment__inner { display: flex; gap: 16px; align-items: flex-start; }
.bwe-comment__avatar { flex-shrink: 0; }
.bwe-comment__avatar-img { border-radius: 50%; width: 52px; height: 52px; object-fit: cover; display: block; }
.bwe-comment__body { flex: 1; min-width: 0; }
.bwe-comment__header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.bwe-comment__author { font-weight: 700; font-size: 0.9rem; color: var(--bwe-dark); }
.bwe-comment__author a { color: var(--bwe-dark); }
.bwe-comment__author a:hover { color: var(--bwe-yellow); }
.bwe-comment__badge {
  display: inline-block;
  padding: 1px 8px;
  background: var(--bwe-yellow);
  color: var(--bwe-black);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 2px;
  vertical-align: middle;
}
.bwe-comment__date { font-size: 0.78rem; color: var(--bwe-gray); margin-left: auto; }
.bwe-comment__date a { color: var(--bwe-gray); }
.bwe-comment__date a:hover { color: var(--bwe-yellow); }
.bwe-comment__edit-link { font-size: 0.75rem; color: var(--bwe-gray); padding: 2px 8px; border: 1px solid var(--bwe-border); border-radius: 3px; transition: all var(--bwe-transition); }
.bwe-comment__edit-link:hover { border-color: var(--bwe-yellow); color: var(--bwe-yellow); }
.bwe-comment__pending { font-size: 0.8rem; color: #856404; background: #fff3cd; border-radius: var(--bwe-radius); padding: 6px 12px; margin-bottom: 10px; }
.bwe-comment__text p { font-size: 0.9rem; line-height: 1.7; color: var(--bwe-text-light); margin-bottom: 0.5em; }
.bwe-comment__text p:last-child { margin-bottom: 0; }
.bwe-comment__footer { margin-top: 10px; }
.bwe-comment__reply .comment-reply-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bwe-yellow);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.bwe-comment__reply .comment-reply-link:hover { color: var(--bwe-yellow-dk); }

/* Nested replies indent */
.children { padding-left: 48px; border-left: 2px solid var(--bwe-border); margin-top: 0; }
.children .bwe-comment { border-bottom: none; padding: 20px 0; }
.children .bwe-comment:not(:last-child) { border-bottom: 1px solid var(--bwe-border); }

/* Comment respond form */
.bwe-comment-respond { margin-top: 48px; padding: 36px; background: var(--bwe-off-white); border-radius: var(--bwe-radius-lg); border: 1px solid var(--bwe-border); }
.bwe-comment-respond__title { font-size: 1.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 24px; color: var(--bwe-dark); }
.bwe-cancel-reply { font-size: 0.8rem; font-weight: 400; text-transform: none; letter-spacing: 0; }
.bwe-cancel-reply a { color: var(--bwe-yellow); }
.bwe-comment-logged-as,
.bwe-comment-login-notice { font-size: 0.875rem; color: var(--bwe-text-light); margin-bottom: 20px; padding: 12px 16px; background: var(--bwe-white); border-radius: var(--bwe-radius); border: 1px solid var(--bwe-border); }
.bwe-comment-logged-as a,
.bwe-comment-login-notice a { color: var(--bwe-yellow); text-decoration: underline; }
.bwe-comment-form__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.bwe-cf-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.bwe-cf-group--full { grid-column: 1 / -1; }
.bwe-cf-group--checkbox { margin-bottom: 0; }
.bwe-cf-label { font-size: 0.85rem; font-weight: 600; color: var(--bwe-dark); }
.bwe-cf-input,
.bwe-cf-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--bwe-border);
  border-radius: var(--bwe-radius);
  font-size: 0.9rem;
  background: var(--bwe-white);
  font-family: var(--bwe-font-body);
  transition: border-color var(--bwe-transition), box-shadow var(--bwe-transition);
  color: var(--bwe-text);
}
.bwe-cf-input:focus,
.bwe-cf-textarea:focus { outline: none; border-color: var(--bwe-yellow); box-shadow: 0 0 0 3px rgba(245,166,35,0.15); }
.bwe-cf-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.bwe-cf-checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: var(--bwe-text-light); cursor: pointer; line-height: 1.5; }
.bwe-cf-checkbox-label input { margin-top: 2px; accent-color: var(--bwe-yellow); flex-shrink: 0; }
.bwe-cf-footer { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.bwe-cf-note { font-size: 0.78rem; color: var(--bwe-gray); margin: 0; }
.bwe-comments-closed { font-size: 0.875rem; color: var(--bwe-gray); font-style: italic; }
.bwe-comments-password { font-size: 0.9rem; color: var(--bwe-gray); padding: 16px; border: 1px solid var(--bwe-border); border-radius: var(--bwe-radius); }

@media (max-width: 600px) {
  .bwe-comment-form__fields { grid-template-columns: 1fr; }
  .bwe-comment-respond { padding: 20px; }
  .bwe-children { padding-left: 20px; }
  .bwe-cf-footer { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   BLOG ARCHIVE
   ============================================================ */
.bwe-blog-archive-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  padding: 60px 24px;
  align-items: start;
}
.bwe-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.bwe-blog-card {
  border: 1px solid var(--bwe-border);
  border-radius: var(--bwe-radius-lg);
  overflow: hidden;
  background: var(--bwe-white);
  transition: box-shadow var(--bwe-transition), transform var(--bwe-transition);
}
.bwe-blog-card:hover { box-shadow: var(--bwe-shadow-lg); transform: translateY(-3px); }
.bwe-blog-card__image-link { display: block; aspect-ratio: 16/9; overflow: hidden; }
.bwe-blog-card__image-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.bwe-blog-card:hover .bwe-blog-card__image-link img { transform: scale(1.04); }
.bwe-blog-card__no-image { aspect-ratio: 16/9; background: var(--bwe-light-gray); }
.bwe-blog-card__body { padding: 24px; }
.bwe-blog-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.bwe-blog-card__date { font-size: 0.78rem; color: var(--bwe-gray); }
.bwe-blog-card__title { font-family: var(--bwe-font-body); font-size: 1.1rem; font-weight: 700; text-transform: none; letter-spacing: 0; margin-bottom: 10px; line-height: 1.4; }
.bwe-blog-card__title a:hover { color: var(--bwe-yellow); }
.bwe-blog-card__excerpt { font-size: 0.875rem; color: var(--bwe-text-light); line-height: 1.65; margin-bottom: 16px; }
.bwe-blog-card__read-more { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--bwe-yellow); display: inline-flex; align-items: center; gap: 4px; transition: gap var(--bwe-transition); }
.bwe-blog-card__read-more:hover { gap: 8px; }

/* Category badge used in archive + single */
.bwe-post-cat-badge {
  display: inline-block;
  padding: 2px 10px;
  background: var(--bwe-yellow);
  color: var(--bwe-black);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 2px;
}
.bwe-post-cat-badge:hover { background: var(--bwe-yellow-dk); }

/* ============================================================
   BLOG SIDEBAR
   ============================================================ */
.bwe-blog-sidebar { position: sticky; top: calc(var(--bwe-topbar-h) + var(--bwe-header-h) + 24px); }
.bwe-sidebar-widget {
  background: var(--bwe-off-white);
  border: 1px solid var(--bwe-border);
  border-radius: var(--bwe-radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.bwe-sidebar-widget__title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bwe-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bwe-yellow);
}
.bwe-sidebar-search { display: flex; flex-direction: column; gap: 8px; }
.bwe-sidebar-search__input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--bwe-border);
  border-radius: var(--bwe-radius);
  font-size: 0.875rem;
  background: var(--bwe-white);
}
.bwe-sidebar-search__input:focus { outline: 2px solid var(--bwe-yellow); border-color: var(--bwe-yellow); }
.bwe-sidebar-cats { display: flex; flex-direction: column; gap: 8px; }
.bwe-sidebar-cats li { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; }
.bwe-sidebar-cats li a { color: var(--bwe-text); transition: color var(--bwe-transition); }
.bwe-sidebar-cats li a:hover,
.bwe-sidebar-cats li.is-current a { color: var(--bwe-yellow); font-weight: 600; }
.bwe-sidebar-cats li span { font-size: 0.78rem; color: var(--bwe-gray); }
.bwe-sidebar-recent { display: flex; flex-direction: column; gap: 14px; }
.bwe-sidebar-recent li { display: flex; gap: 12px; align-items: flex-start; }
.bwe-sidebar-recent__thumb { flex-shrink: 0; width: 60px; height: 45px; overflow: hidden; border-radius: var(--bwe-radius); display: block; }
.bwe-sidebar-recent__thumb img { width: 100%; height: 100%; object-fit: cover; }
.bwe-sidebar-recent__title { display: block; font-size: 0.825rem; font-weight: 600; line-height: 1.4; color: var(--bwe-dark); margin-bottom: 3px; }
.bwe-sidebar-recent__title:hover { color: var(--bwe-yellow); }
.bwe-sidebar-recent__date { font-size: 0.72rem; color: var(--bwe-gray); }
.bwe-sidebar-cta { background: var(--bwe-dark); border-color: var(--bwe-dark); }
.bwe-sidebar-cta h3 { color: var(--bwe-white); border-bottom-color: var(--bwe-yellow); }
.bwe-sidebar-cta p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 16px; }

/* ============================================================
   SINGLE BLOG POST
   ============================================================ */
.bwe-single-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  padding: 60px 24px;
  align-items: start;
}
.bwe-single-post__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.bwe-single-post__date,
.bwe-single-post__author,
.bwe-single-post__read-time { font-size: 0.825rem; color: var(--bwe-gray); }
.bwe-single-post__title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--bwe-dark);
}
.bwe-single-post__hero-img {
  border-radius: var(--bwe-radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
}
.bwe-single-post__hero-img img { width: 100%; height: auto; display: block; max-height: 520px; object-fit: cover; }

/* Post prose content */
.bwe-prose { max-width: 720px; }
.bwe-prose p { margin-bottom: 1.5em; font-size: 1rem; line-height: 1.8; color: var(--bwe-text-light); }
.bwe-prose h2 { font-size: 1.6rem; margin: 2em 0 0.6em; color: var(--bwe-dark); }
.bwe-prose h3 { font-size: 1.3rem; margin: 1.8em 0 0.5em; color: var(--bwe-dark); }
.bwe-prose h4 { font-size: 1.1rem; margin: 1.5em 0 0.4em; }
.bwe-prose ul, .bwe-prose ol { padding-left: 1.5em; margin-bottom: 1.5em; }
.bwe-prose ul { list-style: disc; }
.bwe-prose ol { list-style: decimal; }
.bwe-prose li { margin-bottom: 0.4em; line-height: 1.7; color: var(--bwe-text-light); }
.bwe-prose blockquote { border-left: 4px solid var(--bwe-yellow); padding: 12px 20px; margin: 2em 0; background: var(--bwe-off-white); border-radius: 0 var(--bwe-radius) var(--bwe-radius) 0; font-style: italic; }
.bwe-prose blockquote p { margin: 0; }
.bwe-prose img { border-radius: var(--bwe-radius); margin: 1.5em 0; max-width: 100%; }
.bwe-prose a { color: var(--bwe-yellow); text-decoration: underline; text-underline-offset: 3px; }
.bwe-prose a:hover { color: var(--bwe-yellow-dk); }
.bwe-prose table { margin: 1.5em 0; border: 1px solid var(--bwe-border); }
.bwe-prose th { background: var(--bwe-off-white); font-weight: 700; padding: 10px 14px; font-size: 0.875rem; border-bottom: 2px solid var(--bwe-border); }
.bwe-prose td { padding: 10px 14px; border-bottom: 1px solid var(--bwe-border); font-size: 0.875rem; }
.bwe-prose code { background: var(--bwe-light-gray); padding: 2px 6px; border-radius: 3px; font-size: 0.875em; }
.bwe-prose pre { background: var(--bwe-dark); color: #f8f8f8; padding: 20px; border-radius: var(--bwe-radius); overflow-x: auto; margin: 1.5em 0; }
.bwe-prose pre code { background: none; padding: 0; }
.bwe-prose hr { border: none; border-top: 1px solid var(--bwe-border); margin: 2.5em 0; }

/* Tags */
.bwe-single-post__tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--bwe-border); }
.bwe-single-post__tags-label { font-size: 0.8rem; font-weight: 700; color: var(--bwe-gray); text-transform: uppercase; letter-spacing: 0.06em; }
.bwe-post-tag { display: inline-block; padding: 4px 12px; background: var(--bwe-light-gray); border-radius: 20px; font-size: 0.78rem; color: var(--bwe-text-light); transition: background var(--bwe-transition), color var(--bwe-transition); }
.bwe-post-tag:hover { background: var(--bwe-yellow); color: var(--bwe-black); }

/* Author box */
.bwe-author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bwe-off-white);
  border-radius: var(--bwe-radius-lg);
  border: 1px solid var(--bwe-border);
  margin: 32px 0;
}
.bwe-author-box__img { border-radius: 50%; width: 72px; height: 72px; object-fit: cover; flex-shrink: 0; }
.bwe-author-box__label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bwe-yellow); margin-bottom: 4px; }
.bwe-author-box__name { display: block; font-size: 1rem; font-weight: 700; color: var(--bwe-dark); margin-bottom: 6px; }
.bwe-author-box__bio { font-size: 0.875rem; color: var(--bwe-text-light); margin: 0; line-height: 1.6; }

/* Post navigation */
.bwe-post-nav {
  display: flex;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid var(--bwe-border);
  border-bottom: 1px solid var(--bwe-border);
  margin-bottom: 40px;
}
.bwe-post-nav__link {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: var(--bwe-off-white);
  border-radius: var(--bwe-radius);
  border: 1px solid var(--bwe-border);
  transition: border-color var(--bwe-transition), background var(--bwe-transition);
}
.bwe-post-nav__link:hover { border-color: var(--bwe-yellow); background: var(--bwe-white); }
.bwe-post-nav__link--next { text-align: right; }
.bwe-post-nav__dir { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bwe-yellow); }
.bwe-post-nav__title { font-size: 0.875rem; font-weight: 600; color: var(--bwe-dark); line-height: 1.4; }

/* ============================================================
   MOBILE MENU OVERLAY & INJECTED ELEMENTS
   (JS adds these to the DOM – keep invisible on desktop)
   ============================================================ */
.bwe-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  /* Must be BELOW the header stacking context (z-index: 1000) so the
     nav panel (which lives inside the header's stacking context) paints
     above this overlay and stays clickable. */
  z-index: 999;
}
.bwe-mobile-overlay.is-active { display: block; }
body.bwe-menu-open { overflow: hidden; }

/* Hide JS-injected elements on desktop */
.bwe-mobile-nav-header { display: none; }
.bwe-nav-row           { display: contents; } /* transparent wrapper – li>a selectors still match */
.bwe-submenu-toggle    { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .bwe-cat-grid { grid-template-columns: repeat(4, 1fr); }
  .bwe-why-us__grid { grid-template-columns: 1fr 1fr; }
  .bwe-why-us__testimonial-preview { grid-column: 1/-1; }
  .bwe-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .bwe-features__inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .bwe-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .bwe-rental-cta { grid-template-columns: 1fr; }
  .bwe-rental-cta__image { min-height: 280px; }
  .bwe-rental-cta__dark { order: 1; }
  .bwe-rental-cta__image { order: 2; }
  .bwe-rental-cta__inner { flex-direction: column; gap: 32px; padding: 40px 28px; }
  .bwe-rental-cta__features { flex-direction: row; flex-wrap: wrap; gap: 14px; min-width: 0; }
  .bwe-news__grid { grid-template-columns: 1fr 1fr; }
  .bwe-posts-grid { grid-template-columns: 1fr 1fr; }
  .bwe-quote-page__layout { grid-template-columns: 1fr; }
  .bwe-topbar__nav { display: none; }
  .bwe-newsletter__inner { flex-direction: column; align-items: stretch; }
  .bwe-newsletter__form { width: 100%; min-width: 0; flex-direction: column; }
  .bwe-newsletter__form .bwe-btn { width: 100%; justify-content: center; }
  .bwe-newsletter__input { width: 100%; }
}

@media (max-width: 1024px) {
  .bwe-single-post-layout,
  .bwe-blog-archive-layout { grid-template-columns: 1fr; gap: 40px; }
  .bwe-blog-sidebar { position: static; }
  .bwe-blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --bwe-header-h: 62px; --bwe-topbar-h: 34px; }

  /* ── Slide-in drawer panel ── */
  .bwe-header__nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(290px, 85vw);
    background: var(--bwe-white);
    z-index: 9000; /* high within header stacking context */
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.18);
  }
  /* Use block – not flex – so desktop align-items:center doesn't centrer items */
  .bwe-header__nav.is-open { display: block; }

  /* ── Sticky panel header ── */
  .bwe-mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 58px;
    background: var(--bwe-dark);
    position: sticky;
    top: 0;
    z-index: 2;
  }
  .bwe-mobile-nav-title {
    font-family: var(--bwe-font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--bwe-white);
  }
  .bwe-mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--bwe-white);
    transition: background var(--bwe-transition);
  }
  .bwe-mobile-nav-close:hover { background: rgba(255, 255, 255, 0.22); }

  /* ── Override ALL desktop flex nav styles ── */
  .bwe-nav-menu {
    display: block !important;  /* kills desktop flex + align-items:center */
    width: 100%;
    padding: 8px 0 24px;
  }
  .bwe-nav-menu > li {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--bwe-border);
    position: static;
  }
  .bwe-nav-menu > li:last-child { border-bottom: none; }

  /* Top-level link (no children) */
  .bwe-nav-menu > li > a {
    display: block;
    width: 100%;
    padding: 15px 20px;
    font-size: 0.83rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--bwe-dark);
    text-align: left;
    border: none;
    transition: color var(--bwe-transition), background var(--bwe-transition);
  }
  .bwe-nav-menu > li > a:hover { color: var(--bwe-yellow); background: var(--bwe-off-white); }
  .bwe-nav-menu > li.current-menu-item > a,
  .bwe-nav-menu > li.current-menu-parent > a {
    color: var(--bwe-yellow);
    border-bottom: none;
    border-left: 3px solid var(--bwe-yellow);
    padding-left: 17px;
  }

  /* JS-injected row wrapper (parent link + chevron) */
  .bwe-nav-row {
    display: flex;
    align-items: stretch;
    width: 100%;
  }
  .bwe-nav-row > a {
    flex: 1;
    display: block;
    padding: 15px 20px;
    font-size: 0.83rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--bwe-dark);
    text-align: left;
    border: none;
    transition: color var(--bwe-transition), background var(--bwe-transition);
  }
  .bwe-nav-row > a:hover { color: var(--bwe-yellow); background: var(--bwe-off-white); }

  /* ── Chevron button ── */
  .bwe-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    min-height: 52px;
    border-left: 1px solid var(--bwe-border);
    color: var(--bwe-gray);
    background: transparent;
    flex-shrink: 0;
    transition: background var(--bwe-transition), color var(--bwe-transition);
  }
  .bwe-submenu-toggle:hover { background: var(--bwe-off-white); color: var(--bwe-dark); }
  .bwe-submenu-toggle.is-open { background: var(--bwe-yellow); color: var(--bwe-dark); border-color: var(--bwe-yellow); }
  .bwe-submenu-toggle svg { display: block; transition: transform 0.22s ease; }
  .bwe-submenu-toggle.is-open svg { transform: rotate(180deg); }

  /* ── Kill desktop hover dropdowns on mobile ── */
  .bwe-nav-menu > li:hover > .sub-menu,
  .bwe-nav-menu > li:focus-within > .sub-menu { display: none; }

  /* ── Sub-menu (shown/hidden via JS inline style) ── */
  .bwe-nav-menu .sub-menu {
    display: none;          /* default hidden; JS overrides with inline style */
    position: static !important;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    border: none;
    margin: 0;
    padding: 4px 0;
    background: var(--bwe-off-white);
    z-index: auto;
  }
  .bwe-nav-menu .sub-menu > li {
    display: block;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .bwe-nav-menu .sub-menu > li:last-child { border-bottom: none; }
  .bwe-nav-menu .sub-menu li a {
    display: block;
    padding: 12px 20px 12px 40px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bwe-text-light);
    text-align: left;
    border: none;
    background: transparent;
    transition: color var(--bwe-transition), background var(--bwe-transition);
    position: relative;
  }
  .bwe-nav-menu .sub-menu li a::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--bwe-yellow);
  }
  .bwe-nav-menu .sub-menu li a:hover { color: var(--bwe-yellow); background: var(--bwe-light-gray); }

  /* 3rd-level */
  .bwe-nav-menu .sub-menu .sub-menu { background: #e8e8e8; }
  .bwe-nav-menu .sub-menu .sub-menu li a { padding-left: 56px; }
  .bwe-nav-menu .sub-menu .sub-menu li a::before { left: 38px; background: #bbb; width: 4px; height: 4px; }

  /* ── Header controls ── */
  .bwe-header__menu-toggle { display: flex; }
  .bwe-header__quote-btn { display: none; }

  /* ── Topbar: phone number only ── */
  .bwe-topbar__address,
  .bwe-topbar__email { display: none; }
  .bwe-topbar__social { display: none; }
  .bwe-topbar__inner { justify-content: center; }
  .bwe-topbar__contact { gap: 0; justify-content: center; }

  .bwe-hero { min-height: 500px; }
  .bwe-hero__content { padding: 60px 0; }
  .bwe-features__inner { grid-template-columns: 1fr; }
  .bwe-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .bwe-featured-card { flex: 0 0 220px; }
  .bwe-news__grid { grid-template-columns: 1fr; }
  .bwe-posts-grid { grid-template-columns: 1fr; }
  .bwe-why-us__grid { grid-template-columns: 1fr; }
  .bwe-footer__top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .bwe-featured-section__header { flex-direction: column; align-items: flex-start; }
  .bwe-news__header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .bwe-blog-grid { grid-template-columns: 1fr; }
  .bwe-post-nav { flex-direction: column; }
  .bwe-author-box { flex-direction: column; }
}

@media (max-width: 520px) {
  .bwe-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .bwe-footer__top { grid-template-columns: 1fr; }
  .bwe-footer__bottom .bwe-container { flex-direction: column; text-align: center; }
  .bwe-hero__buttons { flex-direction: column; }
  .bwe-hero__buttons .bwe-btn { width: 100%; justify-content: center; }
  .bwe-brands-logos { gap: 20px; }
}
