/* ============================================================
   BLACK HELMET GUN SHOP — Global Stylesheet
   Enqueue via bhgs_enqueue_styles() in functions.php
   Brand: #5A717D (steel blue) | #4D3117 (brown) | #111 (near-black)
   Updated: 2026-04-20
   ============================================================ */


/* ============================================================
   NAVIGATION (.bhgs-nav)
   ============================================================ */

/* Force Divi sections below the nav */
.et_pb_section,
.et_pb_row,
.et_pb_module { z-index: auto !important; }

/* Break Divi's stacking context on nav column so dropdowns escape */
.et_pb_css_mix_blend_mode_passthrough {
  mix-blend-mode: normal !important;
  isolation: auto !important;
  overflow: visible !important;
  transform: none !important;
}
.et_block_section,
.et_builder_inner_content,
#et-boc { overflow: visible !important; }

/* ── Base ── */
.bhgs-nav {
  position: sticky;
  top: 0;
  z-index: 99999;
  isolation: isolate;
  background: #0d0d0d;
  border-bottom: 1px solid #1e1e1e;
  transition: box-shadow 0.2s;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.bhgs-nav--scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.bhgs-nav * { box-sizing: border-box; margin: 0; padding: 0; }
.bhgs-nav a { text-decoration: none; }
.bhgs-nav ul { list-style: none; }
.bhgs-nav,
.bhgs-nav__inner,
.bhgs-nav__list,
.bhgs-nav__item { overflow: visible !important; }

.bhgs-nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}

/* ── Logo ── */
.bhgs-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 8px;
}
.bhgs-nav__logo img { height: 40px; width: auto; display: block; }
.bhgs-nav__logo-text {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.bhgs-nav__logo-text em { font-style: normal; color: #5A717D; display: block; }

/* ── Desktop Menu ── */
.bhgs-nav__menu { flex: 1; display: flex; align-items: center; margin-top: 25px !important; }
.bhgs-nav__menu nav { display: flex; align-items: center; }
.bhgs-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.bhgs-nav__item { position: relative; display: flex; align-items: center; line-height: 1 !important; }
.bhgs-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  color: #ccc;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.bhgs-nav__link:hover { color: #fff; background: #1c1c1c; }
.bhgs-nav__link--accent { color: #c8a96e; }
.bhgs-nav__link--accent:hover { color: #dfc08a; background: rgba(200,169,110,0.08); }
.bhgs-nav__caret { transition: transform 0.15s; flex-shrink: 0; }
.bhgs-nav__item--mega:hover .bhgs-nav__caret,
.bhgs-nav__item--drop:hover .bhgs-nav__caret { transform: rotate(180deg); }

/* ── Inline Badge ── */
.bhgs-nav__badge {
  display: inline-block;
  padding: 2px 6px;
  background: #4D3117;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 3px;
  vertical-align: middle;
}
.bhgs-nav__badge--inline { margin-left: 4px; }

/* ── Mega Dropdown ── */
.bhgs-nav__mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 640px;
  background: #1e2a30;
  border: 1px solid #2e3f47;
  border-top: 3px solid #5A717D;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
  z-index: 10000;
}
.bhgs-nav__item--mega:hover .bhgs-nav__mega,
.bhgs-nav__item--mega:focus-within .bhgs-nav__mega { display: block; }
.bhgs-nav__mega-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 24px;
  gap: 16px;
}
.bhgs-nav__mega-col { padding: 0; }
.bhgs-nav__mega-heading {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5A717D;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #2e3f47;
}
.bhgs-nav__mega-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.bhgs-nav__mega-list li { list-style: none; padding: 0; margin: 0; }
.bhgs-nav__mega-list li a {
  font-size: 0.85rem;
  color: #aaa;
  display: block;
  padding: 4px 0;
  transition: color 0.15s;
}
.bhgs-nav__mega-list li a:hover { color: #fff; }
.bhgs-nav__mega-badge-link { display: flex; align-items: center; gap: 6px; }

/* ── Simple Dropdown ── */
.bhgs-nav__drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #1e2a30;
  border: 1px solid #2e3f47;
  border-top: 3px solid #5A717D;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.7);
  padding: 8px;
  z-index: 10000;
  list-style: none;
}
.bhgs-nav__item--drop:hover .bhgs-nav__drop,
.bhgs-nav__item--drop:focus-within .bhgs-nav__drop { display: block; }
.bhgs-nav__drop li { list-style: none; padding: 0; margin: 0; }
.bhgs-nav__drop li a {
  display: block;
  padding: 8px 12px;
  font-size: 0.875rem;
  color: #aaa;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.bhgs-nav__drop li a:hover { color: #fff; background: #1c1c1c; }

/* ── Right Actions ── */
.bhgs-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.bhgs-nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #aaa;
  transition: color 0.15s;
  white-space: nowrap;
}
.bhgs-nav__phone:hover { color: #fff; }
.bhgs-nav__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #aaa;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.bhgs-nav__cart:hover { color: #fff; background: #1c1c1c; }
.bhgs-nav__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #5A717D;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.bhgs-nav__shop-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: #5A717D;
  color: #fff;
  font-size: 0.825rem;
  font-weight: 700;
  border-radius: 4px;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.bhgs-nav__shop-btn:hover { opacity: 0.88; }

/* ── Hamburger ── */
.bhgs-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.15s;
}
.bhgs-nav__hamburger:hover { background: #1c1c1c; }
.bhgs-nav__hamburger span {
  display: block;
  height: 2px;
  background: #ccc;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ── Mobile Drawer ── */
.bhgs-nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100dvh;
  background: #0d0d0d;
  border-left: 1px solid #1e1e1e;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.bhgs-nav__drawer--open { transform: translateX(0); }
.bhgs-nav__drawer-inner { padding: 20px; }
.bhgs-nav__drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  color: #aaa;
  cursor: pointer;
  margin-bottom: 24px;
  margin-left: auto;
  transition: color 0.15s;
}
.bhgs-nav__drawer-close:hover { color: #fff; }

.bhgs-nav__drawer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.bhgs-nav__drawer-item { list-style: none; border-bottom: 1px solid #1e1e1e; }
.bhgs-nav__drawer-item a {
  display: block;
  padding: 14px 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ccc;
  transition: color 0.15s;
}
.bhgs-nav__drawer-item a:hover { color: #fff; }
.bhgs-nav__drawer-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 4px;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ccc;
  cursor: pointer;
  text-align: left;
  transition: color 0.15s;
}
.bhgs-nav__drawer-toggle:hover { color: #fff; }
.bhgs-nav__drawer-toggle svg { transition: transform 0.2s; flex-shrink: 0; }
.bhgs-nav__drawer-item--open .bhgs-nav__drawer-toggle svg { transform: rotate(180deg); }

.bhgs-nav__drawer-sub {
  list-style: none;
  padding: 0 0 8px 12px;
  margin: 0;
  display: none;
}
.bhgs-nav__drawer-item--open .bhgs-nav__drawer-sub { display: flex; flex-direction: column; }
.bhgs-nav__drawer-sub li { list-style: none; padding: 0; margin: 0; }
.bhgs-nav__drawer-sub li a {
  display: block;
  padding: 8px 4px;
  font-size: 0.875rem;
  color: #888;
  transition: color 0.15s;
}
.bhgs-nav__drawer-sub li a:hover { color: #e0e0e0; }

.bhgs-nav__drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #1e1e1e;
}
.bhgs-nav__drawer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #aaa;
}
.bhgs-nav__drawer-phone:hover { color: #fff; }
.bhgs-nav__drawer-shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: #5A717D;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 4px;
  transition: opacity 0.15s;
}
.bhgs-nav__drawer-shop:hover { opacity: 0.88; }

/* ── Overlay ── */
.bhgs-nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  backdrop-filter: blur(2px);
}
.bhgs-nav__overlay--show { display: block; }

/* ── Nav Responsive ── */
@media (max-width: 960px) {
  .bhgs-nav__menu { display: none; }
  .bhgs-nav__phone { display: none; }
  .bhgs-nav__shop-btn { display: none; }
  .bhgs-nav__hamburger { display: flex; }
}
@media (max-width: 480px) {
  .bhgs-nav__inner { padding: 0 16px; }
}


/* ============================================================
   HOMEPAGE — Layout C (.bhgs-c)
   ============================================================ */

/* ── Reset & Base ── */
.bhgs-c *,
.bhgs-c *::before,
.bhgs-c *::after { box-sizing: border-box; margin: 0; padding: 0; }

.bhgs-c {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #111;
  color: #e0e0e0;
  line-height: 1.6;
}

.bhgs-c a { color: inherit; text-decoration: none; }

/* ── Tokens ── */
.bhgs-c {
  --blue: #5A717D;
  --blue-dark: #3d5560;
  --blue-light: rgba(90,113,125,0.12);
  --brown: #4D3117;
  --dark: #111;
  --mid: #1c1c1c;
  --raised: #222;
  --border: #2a2a2a;
  --border-light: #333;
  --text: #e0e0e0;
  --muted: #888;
  --accent: #c8a96e;
  --white: #fff;
}

/* ── Layout ── */
.bhgs-c__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.bhgs-c__section { padding: 72px 0; }
.bhgs-c__section--alt { background: #161616; }
.bhgs-c__section--darker { background: #0d0d0d; }

.bhgs-c__section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}
.bhgs-c__section-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.bhgs-c__section-header a {
  font-size: 0.875rem;
  color: var(--blue);
  font-weight: 600;
  white-space: nowrap;
}
.bhgs-c__section-header a:hover { color: var(--accent); }

.bhgs-c__section-intro {
  font-size: 0.95rem;
  color: #999;
  line-height: 1.75;
  max-width: 700px;
  margin-bottom: 40px;
}
.bhgs-c__section-intro strong { color: #ccc; }

/* ── Buttons ── */
.bhgs-c__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: opacity 0.15s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.bhgs-c__btn:hover { opacity: 0.88; transform: translateY(-1px); }
.bhgs-c__btn--primary { background: var(--blue); color: #fff; }
.bhgs-c__btn--phone { background: var(--brown); color: #fff; }
.bhgs-c__btn--ghost { background: transparent; color: #ccc; border: 2px solid #3a3a3a; }
.bhgs-c__btn--ghost:hover { border-color: var(--blue); color: #fff; }
.bhgs-c__btn--white { background: #fff; color: #4D3117 !important; }
.bhgs-c__btn--white:hover { opacity: 0.92; }

/* ── Hero ── */
.bhgs-c__hero {
  background: #0d0d0d;
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
}
.bhgs-c__hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: center;
}
.bhgs-c__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  padding: 6px 12px;
  background: var(--blue-light);
  border-radius: 3px;
  border: 1px solid rgba(90,113,125,0.25);
}
.bhgs-c__h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 22px;
}
.bhgs-c__h1 em { font-style: normal; color: var(--accent); }
.bhgs-c__hero-sub {
  font-size: 1rem;
  color: #aaa;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.bhgs-c__hero-sub strong { color: #ddd; }
.bhgs-c__hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.bhgs-c__hero-meta { display: flex; gap: 0; flex-wrap: wrap; }
.bhgs-c__hero-meta-item {
  font-size: 0.78rem;
  color: var(--muted);
  padding-right: 16px;
  margin-right: 16px;
  border-right: 1px solid #333;
  line-height: 1;
}
.bhgs-c__hero-meta-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.bhgs-c__hero-meta-item::before { content: '✓ '; color: var(--blue); font-weight: 700; }
.bhgs-c__hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bhgs-c__hero-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(90,113,125,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.bhgs-c__hero-image img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: brightness(0.88) contrast(1.05);
}

/* ── Trust Bar ── */
.bhgs-c__trust { background: var(--blue); padding: 14px 0; }
.bhgs-c__trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.bhgs-c__trust-item {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 7px;
}
.bhgs-c__trust-divider { color: rgba(255,255,255,0.3); font-size: 1rem; }

/* ── Services ── */
.bhgs-c__services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.bhgs-c__service {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  border-top: 3px solid var(--blue);
  transition: border-color 0.15s;
}
.bhgs-c__service--brown { border-top-color: var(--brown); }
.bhgs-c__service--brown .bhgs-c__service-icon { color: var(--brown); }
.bhgs-c__service:hover { border-color: #3a3a3a; }
.bhgs-c__service-icon { color: var(--blue); margin-top: 4px; }
.bhgs-c__service-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.bhgs-c__service-desc { font-size: 0.875rem; color: #999; line-height: 1.7; margin-bottom: 12px; }
.bhgs-c__service-link { font-size: 0.78rem; font-weight: 700; color: var(--blue); letter-spacing: 0.04em; }
.bhgs-c__service--brown .bhgs-c__service-link { color: #9a7a5a; }
.bhgs-c__service-link:hover { color: var(--accent); }

/* ── Category Grid ── */
.bhgs-c__cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.bhgs-c__cat-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.bhgs-c__cat-tile:hover { border-color: var(--blue); background: #222; transform: translateY(-2px); }
.bhgs-c__cat-tile:hover .bhgs-c__cat-arrow { opacity: 1; transform: translateX(0); }
.bhgs-c__cat-icon { color: var(--blue); flex-shrink: 0; }
.bhgs-c__cat-icon--brown { color: #9a7a5a; }
.bhgs-c__cat-icon--accent { color: var(--accent); }
.bhgs-c__cat-text { flex: 1; }
.bhgs-c__cat-name { display: block; font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.bhgs-c__cat-sub { display: block; font-size: 0.72rem; color: var(--muted); line-height: 1.4; }
.bhgs-c__cat-arrow {
  color: var(--blue);
  font-size: 0.9rem;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s, transform 0.15s;
}

/* ── Product Cards ── */
.bhgs-c__product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bhgs-c__product-card {
  display: flex;
  flex-direction: column;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
}
.bhgs-c__product-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.bhgs-c__product-img { aspect-ratio: 4/3; background: #1a1a1a; position: relative; overflow: hidden; }
.bhgs-c__product-img img { width: 100%; height: 100%; object-fit: cover; }
.bhgs-c__product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brown);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.bhgs-c__product-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.bhgs-c__product-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.bhgs-c__product-name { font-size: 0.92rem; font-weight: 600; color: #e0e0e0; line-height: 1.4; flex: 1; margin-bottom: 14px; }
.bhgs-c__product-footer { display: flex; align-items: center; justify-content: space-between; }
.bhgs-c__product-price { font-size: 1.05rem; font-weight: 800; color: var(--accent); }
.bhgs-c__product-cta { font-size: 0.75rem; font-weight: 700; color: var(--blue); }
.bhgs-c__product-card:hover .bhgs-c__product-cta { color: var(--accent); }

/* ── Specials Banner ── */
.bhgs-c__specials { background: var(--brown); padding: 48px 0; }
.bhgs-c__specials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.bhgs-c__specials-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.bhgs-c__specials-headline { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 6px; }
.bhgs-c__specials-sub { font-size: 0.875rem; color: rgba(255,255,255,0.75); }

/* ── Location ── */
.bhgs-c__location-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.bhgs-c__location-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.bhgs-c__location h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 8px; }
.bhgs-c__location-tagline { font-size: 0.9rem; color: #888; line-height: 1.7; margin-bottom: 24px; }
.bhgs-c__location-detail { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.875rem; color: #aaa; line-height: 1.6; }
.bhgs-c__location-detail svg { flex-shrink: 0; margin-top: 2px; color: var(--blue); }
.bhgs-c__location-detail a { color: #aaa; }
.bhgs-c__location-detail a:hover { color: var(--blue); }
.bhgs-c__location-detail strong { color: #ddd; }
.bhgs-c__location-areas {
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--blue-light);
  border: 1px solid rgba(90,113,125,0.2);
  border-radius: 6px;
  font-size: 0.8rem;
  color: #999;
  line-height: 1.9;
}
.bhgs-c__location-areas strong { color: var(--blue); display: block; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.bhgs-c__location-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.bhgs-c__map {
  aspect-ratio: 4/3;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.875rem;
}
.bhgs-c__map span { display: contents; }
.bhgs-c__map iframe { display: block; width: 100% !important; height: 100% !important; border: 0 !important; min-height: 400px; }

/* ── FAQ Strip ── */
.bhgs-c__faq-intro { font-size: 0.875rem; color: var(--muted); margin-bottom: 32px; line-height: 1.7; max-width: 600px; }
.bhgs-c__faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.bhgs-c__faq-item {
  padding: 24px;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  border-left: 3px solid var(--blue);
}
.bhgs-c__faq-item--brown { border-left-color: var(--brown); }
.bhgs-c__faq-q { font-size: 0.925rem; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.35; }
.bhgs-c__faq-a { font-size: 0.86rem; color: #999; line-height: 1.7; }
.bhgs-c__faq-a a { color: var(--blue); }
.bhgs-c__faq-a a:hover { color: var(--accent); }

/* ── Blog ── */
.bhgs-c__blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bhgs-c__blog-card {
  display: flex;
  flex-direction: column;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
}
.bhgs-c__blog-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.bhgs-c__blog-img { aspect-ratio: 16/9; background: #1a1a1a; }
.bhgs-c__blog-img img { width: 100%; height: 100%; object-fit: cover; }
.bhgs-c__blog-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.bhgs-c__blog-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.bhgs-c__blog-title { font-size: 0.92rem; font-weight: 700; color: #e0e0e0; line-height: 1.4; flex: 1; margin-bottom: 14px; }
.bhgs-c__blog-read { font-size: 0.78rem; font-weight: 700; color: var(--blue); letter-spacing: 0.04em; }
.bhgs-c__blog-card:hover .bhgs-c__blog-read { color: var(--accent); }

/* ── Homepage Responsive ── */
@media (max-width: 960px) {
  .bhgs-c__hero-inner { grid-template-columns: 1fr; }
  .bhgs-c__hero-image { display: none; }
  .bhgs-c__services-grid { grid-template-columns: 1fr; }
  .bhgs-c__cat-grid { grid-template-columns: repeat(2, 1fr); }
  .bhgs-c__product-grid { grid-template-columns: repeat(2, 1fr); }
  .bhgs-c__location-inner { grid-template-columns: 1fr; }
  .bhgs-c__blog-grid { grid-template-columns: repeat(2, 1fr); }
  .bhgs-c__faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .bhgs-c__cat-grid { grid-template-columns: 1fr; }
  .bhgs-c__product-grid { grid-template-columns: 1fr; }
  .bhgs-c__blog-grid { grid-template-columns: 1fr; }
  .bhgs-c__hero-ctas { flex-direction: column; }
  .bhgs-c__specials-inner { flex-direction: column; text-align: center; }
  .bhgs-c__hero-meta { gap: 8px; flex-direction: column; }
  .bhgs-c__hero-meta-item { border-right: none; padding-right: 0; margin-right: 0; }
}


/* ============================================================
   FOOTER (.bhgs-footer)
   ============================================================ */

/* ── Reset ── */
.bhgs-footer *,
.bhgs-footer *::before,
.bhgs-footer *::after { box-sizing: border-box; margin: 0; padding: 0; }

.bhgs-footer {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0a;
  color: #999;
  line-height: 1.6;
  border-top: 1px solid #1e1e1e;
}

.bhgs-footer a { color: inherit; text-decoration: none; transition: color 0.15s; }
.bhgs-footer a:hover { color: #e0e0e0; }

/* ── Tokens ── */
.bhgs-footer {
  --blue: #5A717D;
  --brown: #4D3117;
  --border: #1e1e1e;
  --border-mid: #2a2a2a;
  --muted: #666;
  --accent: #c8a96e;
}

.bhgs-footer__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Pre-footer CTA Bar ── */
.bhgs-footer__cta-bar { background: var(--blue); padding: 28px 0; }
.bhgs-footer__cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.bhgs-footer__cta-text { font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.4; }
.bhgs-footer__cta-text span { display: block; font-size: 0.8rem; font-weight: 400; color: rgba(255,255,255,0.75); margin-top: 2px; }
.bhgs-footer__cta-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.bhgs-footer__cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  color: var(--blue);
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
}
.bhgs-footer__cta-phone:hover { opacity: 0.92; color: var(--blue); }
.bhgs-footer__cta-shop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: border-color 0.15s;
}
.bhgs-footer__cta-shop:hover { border-color: #fff; color: #fff; }

/* ── Main Footer Body ── */
.bhgs-footer__body { padding: 56px 0 48px; border-bottom: 1px solid var(--border); }
.bhgs-footer__grid { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 48px; align-items: start; }

.bhgs-footer__brand-logo { display: block; margin-bottom: 16px; }
.bhgs-footer__brand-logo img { height: 56px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.bhgs-footer__brand-name { font-size: 1rem; font-weight: 800; color: #e0e0e0; letter-spacing: -0.01em; margin-bottom: 8px; line-height: 1.2; }
.bhgs-footer__brand-tagline { font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.bhgs-footer__social { display: flex; gap: 10px; }
.bhgs-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #1c1c1c;
  border: 1px solid var(--border-mid);
  border-radius: 4px;
  color: #777;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.bhgs-footer__social-link:hover { background: #222; color: #e0e0e0; border-color: #3a3a3a; }
.bhgs-footer__ffl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 6px 12px;
  background: #1c1c1c;
  border: 1px solid var(--border-mid);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ── Nav Columns ── */
.bhgs-footer__nav-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e0e0e0;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-mid);
}
.bhgs-footer__nav-list { list-style: none; display: flex; flex-direction: column; gap: 9px; padding: 0; margin: 0; }
.bhgs-footer__nav-list li { list-style: none; padding: 0; margin: 0; }
.bhgs-footer__nav-list li a { font-size: 0.86rem; color: #888; display: flex; align-items: center; gap: 6px; }
.bhgs-footer__nav-list li a:hover { color: #e0e0e0; }
.bhgs-footer__nav-list li a::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.6;
}
.bhgs-footer__nav-badge {
  display: inline-block;
  padding: 2px 7px;
  background: var(--brown);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-left: 4px;
  vertical-align: middle;
}

/* ── Contact + Hours Bar ── */
.bhgs-footer__contact-bar { padding: 32px 0; border-bottom: 1px solid var(--border); }
.bhgs-footer__contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; align-items: start; }
.bhgs-footer__contact-item { display: flex; gap: 12px; align-items: flex-start; }
.bhgs-footer__contact-icon { color: var(--blue); flex-shrink: 0; margin-top: 1px; }
.bhgs-footer__contact-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #555; margin-bottom: 4px; }
.bhgs-footer__contact-value { font-size: 0.875rem; color: #aaa; line-height: 1.6; }
.bhgs-footer__contact-value a { color: #aaa; }
.bhgs-footer__contact-value a:hover { color: var(--blue); }
.bhgs-footer__contact-value strong { color: #ccc; }

/* ── Legal Bar ── */
.bhgs-footer__legal { padding: 20px 0; }
.bhgs-footer__legal-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.bhgs-footer__copyright { font-size: 0.78rem; color: var(--muted); }
.bhgs-footer__copyright a { color: var(--muted); }
.bhgs-footer__copyright a:hover { color: #aaa; }
.bhgs-footer__legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.bhgs-footer__legal-links a { font-size: 0.78rem; color: var(--muted); }
.bhgs-footer__legal-links a:hover { color: #aaa; }
.bhgs-footer__legal-disclaimer {
  width: 100%;
  font-size: 0.72rem;
  color: #444;
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

/* ── Footer Responsive ── */
@media (max-width: 960px) {
  .bhgs-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .bhgs-footer__contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .bhgs-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .bhgs-footer__contact-grid { grid-template-columns: 1fr; }
  .bhgs-footer__cta-inner { flex-direction: column; text-align: center; }
  .bhgs-footer__cta-actions { justify-content: center; }
  .bhgs-footer__legal-inner { flex-direction: column; text-align: center; }
  .bhgs-footer__legal-links { justify-content: center; }
}


/* ============================================================
   ABOUT PAGE (.bhgs-about)
   ============================================================ */

.bhgs-about {
  --blue: #5A717D;
  --brown: #4D3117;
  --dark: #111;
  --dark2: #1a1a1a;
  --border: #2a2a2a;
  --text: #ccc;
  --text-light: #888;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--dark);
}
.bhgs-about * { box-sizing: border-box; }
.bhgs-about a { color: var(--blue); text-decoration: none; }
.bhgs-about a:hover { text-decoration: underline; }

/* ── Inner container ── */
.bhgs-about__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ── */
.bhgs-about__hero {
  background: var(--dark);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
}
.bhgs-about__eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.bhgs-about__hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.bhgs-about__hero h1 em { font-style: normal; color: var(--blue); }
.bhgs-about__hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  max-width: 680px;
  margin-bottom: 32px;
}
.bhgs-about__hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.bhgs-about__stat { border-left: 3px solid var(--blue); padding-left: 16px; }
.bhgs-about__stat-number { font-size: 1.8rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 4px; }
.bhgs-about__stat-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-light); }

/* ── Story ── */
.bhgs-about__story { padding: 64px 0; border-bottom: 1px solid var(--border); }
.bhgs-about__story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.bhgs-about__section-label { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.bhgs-about__story h2 { font-size: 1.75rem; font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.02em; }
.bhgs-about__story p { font-size: 0.95rem; line-height: 1.8; color: var(--text); margin-bottom: 16px; }
.bhgs-about__story p:last-child { margin-bottom: 0; }
.bhgs-about__quote { background: var(--dark2); border-left: 4px solid var(--blue); border-radius: 0 6px 6px 0; padding: 24px 28px; margin-top: 8px; }
.bhgs-about__quote blockquote { font-size: 1.05rem; font-style: italic; line-height: 1.7; color: #ddd; margin: 0 0 12px; }
.bhgs-about__quote cite { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--blue); font-style: normal; }

/* ── Name origin ── */
.bhgs-about__name { background: var(--dark2); border: 1px solid var(--border); border-top: 3px solid var(--brown); border-radius: 6px; padding: 32px; margin-top: 32px; }
.bhgs-about__name h3 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 12px; letter-spacing: -0.01em; }
.bhgs-about__name p { font-size: 0.9rem; line-height: 1.7; color: var(--text); margin: 0; }

/* ── Values ── */
.bhgs-about__values { padding: 64px 0; border-bottom: 1px solid var(--border); }
.bhgs-about__values h2 { font-size: 1.75rem; font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 40px; letter-spacing: -0.02em; }
.bhgs-about__values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bhgs-about__value-card { background: var(--dark2); border: 1px solid var(--border); border-top: 3px solid var(--blue); border-radius: 6px; padding: 28px; }
.bhgs-about__value-card--brown { border-top-color: var(--brown); }
.bhgs-about__value-icon { width: 40px; height: 40px; margin-bottom: 16px; color: var(--blue); }
.bhgs-about__value-card--brown .bhgs-about__value-icon { color: var(--brown); }
.bhgs-about__value-card h3 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.bhgs-about__value-card p { font-size: 0.875rem; line-height: 1.7; color: var(--text); margin: 0; }

/* ── Services ── */
.bhgs-about__services { padding: 64px 0; border-bottom: 1px solid var(--border); }
.bhgs-about__services h2 { font-size: 1.75rem; font-weight: 900; color: #fff; margin-bottom: 8px; letter-spacing: -0.02em; }
.bhgs-about__services-intro { font-size: 0.95rem; color: var(--text); margin-bottom: 36px; max-width: 640px; }
.bhgs-about__services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.bhgs-about__service-item { display: flex; gap: 16px; align-items: flex-start; background: var(--dark2); border: 1px solid var(--border); border-radius: 6px; padding: 20px; text-decoration: none; transition: border-color 0.15s; }
.bhgs-about__service-item:hover { border-color: var(--blue); text-decoration: none; }
.bhgs-about__service-icon { flex-shrink: 0; width: 36px; height: 36px; color: var(--blue); margin-top: 2px; }
.bhgs-about__service-text strong { display: block; font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.bhgs-about__service-text span { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

/* ── Location ── */
.bhgs-about__location { padding: 64px 0; border-bottom: 1px solid var(--border); }
.bhgs-about__location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.bhgs-about__location h2 { font-size: 1.75rem; font-weight: 900; color: #fff; margin-bottom: 20px; letter-spacing: -0.02em; }
.bhgs-about__location p { font-size: 0.95rem; line-height: 1.8; color: var(--text); margin-bottom: 16px; }
.bhgs-about__location p:last-child { margin-bottom: 0; }
.bhgs-about__contact-block { background: var(--dark2); border: 1px solid var(--border); border-radius: 6px; padding: 28px; margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.bhgs-about__contact-row { display: flex; gap: 12px; align-items: flex-start; }
.bhgs-about__contact-row svg { flex-shrink: 0; color: var(--blue); margin-top: 2px; }
.bhgs-about__contact-row div strong { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 2px; }
.bhgs-about__contact-row div span { font-size: 0.9rem; color: #ddd; line-height: 1.5; }
.bhgs-about__contact-row a { color: #ddd; }
.bhgs-about__contact-row a:hover { color: var(--blue); text-decoration: none; }
.bhgs-about__map { aspect-ratio: 4/3; background: var(--dark2); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.bhgs-about__map span { display: contents; }
.bhgs-about__map iframe { display: block; width: 100% !important; height: 100% !important; border: 0 !important; min-height: 320px; filter: grayscale(80%) contrast(0.9); }

/* ── CTA ── */
.bhgs-about__cta { padding: 64px 0; text-align: center; }
.bhgs-about__cta h2 { font-size: 1.75rem; font-weight: 900; color: #fff; margin-bottom: 12px; letter-spacing: -0.02em; }
.bhgs-about__cta p { font-size: 0.95rem; color: var(--text); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.bhgs-about__cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.bhgs-about__btn { display: inline-block; padding: 14px 28px; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 4px; text-decoration: none; transition: opacity 0.15s; }
.bhgs-about__btn:hover { opacity: 0.85; text-decoration: none; }
.bhgs-about__btn--primary { background: var(--blue); color: #fff; }
.bhgs-about__btn--secondary { background: transparent; color: #fff; border: 1px solid var(--border); }
.bhgs-about__btn--secondary:hover { border-color: var(--blue); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .bhgs-about__story-grid,
  .bhgs-about__location-grid { grid-template-columns: 1fr; gap: 32px; }
  .bhgs-about__values-grid { grid-template-columns: 1fr; }
  .bhgs-about__services-grid { grid-template-columns: 1fr; }
  .bhgs-about__hero-stats { gap: 24px; }
  .bhgs-about__hero { padding: 48px 0 40px; }
}


/* ============================================================
   CONTACT PAGE (.bhgs-contact)
   ============================================================ */

.bhgs-contact {
  --blue: #5A717D;
  --brown: #4D3117;
  --dark: #111;
  --dark2: #1a1a1a;
  --border: #2a2a2a;
  --text: #ccc;
  --text-light: #888;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--dark);
}
.bhgs-contact * { box-sizing: border-box; }
.bhgs-contact a { color: var(--blue); text-decoration: none; }
.bhgs-contact a:hover { text-decoration: underline; }

.bhgs-contact__inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Hero ── */
.bhgs-contact__hero { padding: 72px 0 56px; border-bottom: 1px solid var(--border); }
.bhgs-contact__eyebrow { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.bhgs-contact__hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.02em; }
.bhgs-contact__hero h1 em { font-style: normal; color: var(--blue); }
.bhgs-contact__lead { font-size: 1.05rem; line-height: 1.7; color: var(--text); max-width: 640px; }

/* ── Body grid ── */
.bhgs-contact__body { padding: 64px 0; }
.bhgs-contact__grid { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: start; }

/* ── Form column ── */
.bhgs-contact__form-col h2 { font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: 8px; letter-spacing: -0.02em; }
.bhgs-contact__form-note { font-size: 0.875rem; color: var(--text-light); margin-bottom: 28px; line-height: 1.6; }
.bhgs-contact__form { display: flex; flex-direction: column; gap: 20px; }
.bhgs-contact__field { display: flex; flex-direction: column; gap: 6px; }
.bhgs-contact__field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bhgs-contact__field label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-light); }
.bhgs-contact__field label span { color: var(--blue); }
.bhgs-contact__field input,
.bhgs-contact__field select,
.bhgs-contact__field textarea {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.15s;
  width: 100%;
}
.bhgs-contact__field input::placeholder,
.bhgs-contact__field textarea::placeholder { color: #555; }
.bhgs-contact__field input:focus,
.bhgs-contact__field select:focus,
.bhgs-contact__field textarea:focus { outline: none; border-color: var(--blue); }
.bhgs-contact__field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.bhgs-contact__field select option { background: #1a1a1a; }
.bhgs-contact__field textarea { resize: vertical; min-height: 140px; }
.bhgs-contact__submit {
  display: inline-block;
  padding: 14px 32px;
  background: var(--blue);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.15s;
  align-self: flex-start;
}
.bhgs-contact__submit:hover { opacity: 0.85; }

/* ── Info column ── */
.bhgs-contact__info-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: 6px;
  padding: 28px;
  margin-bottom: 20px;
}
.bhgs-contact__info-card h2 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 24px; letter-spacing: -0.01em; }
.bhgs-contact__info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.bhgs-contact__info-item:last-child { margin-bottom: 0; }
.bhgs-contact__info-icon { flex-shrink: 0; color: var(--blue); margin-top: 2px; }
.bhgs-contact__info-item div { display: flex; flex-direction: column; gap: 3px; }
.bhgs-contact__info-item strong { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); }
.bhgs-contact__info-item span { font-size: 0.9rem; color: #ddd; line-height: 1.6; }
.bhgs-contact__info-item span em { font-style: normal; color: var(--blue); }
.bhgs-contact__info-item a { font-size: 0.9rem; color: #ddd; }
.bhgs-contact__info-item a:hover { color: var(--blue); text-decoration: none; }

/* ── Quick links ── */
.bhgs-contact__quick { background: var(--dark2); border: 1px solid var(--border); border-radius: 6px; padding: 24px 28px; }
.bhgs-contact__quick h3 { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 16px; }
.bhgs-contact__quick ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.bhgs-contact__quick ul li { list-style: none; padding: 0; margin: 0; }
.bhgs-contact__quick ul li a { font-size: 0.875rem; color: var(--text); display: flex; align-items: center; gap: 8px; }
.bhgs-contact__quick ul li a::before { content: '→'; color: var(--blue); font-size: 0.8rem; }
.bhgs-contact__quick ul li a:hover { color: #fff; text-decoration: none; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .bhgs-contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .bhgs-contact__field-row { grid-template-columns: 1fr; }
  .bhgs-contact__hero { padding: 48px 0 40px; }
  .bhgs-contact__submit { width: 100%; text-align: center; }
}


/* ============================================================
   LEGACY — Divi 4 homepage styles (.bhgs-home)
   These classes are still referenced by the existing live page.
   Remove once the Divi 5 homepage is live.
   ============================================================ */

.bhgs-home * { box-sizing: border-box; margin: 0; padding: 0; }
.bhgs-home { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #1a1a1a; background: #fff; line-height: 1.6; }
.bhgs-section { width: 100%; max-width: none; margin: 0 auto; padding: 0 24px; }
.bhgs-hero { background: #f5f3f0; padding: 80px 0 64px; border-bottom: 1px solid #e0dcd6; }
.bhgs-hero__inner { width: 100%; max-width: none; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.bhgs-hero__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #4D3117; margin-bottom: 16px; }
.bhgs-hero__headline { font-size: clamp(32px, 4vw, 52px); font-weight: 800; line-height: 1.1; color: #1a1a1a; margin-bottom: 16px; }
.bhgs-hero__sub { font-size: 16px; color: #555; margin-bottom: 8px; line-height: 1.6; }
.bhgs-hero__location { font-size: 13px; color: #888; margin-bottom: 32px; }
.bhgs-hero__location a { color: #5A717D; text-decoration: none; font-weight: 600; }
.bhgs-hero__location a:hover { text-decoration: underline; }
.bhgs-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.bhgs-btn { display: inline-block; padding: 14px 28px; font-size: 13px; font-weight: 700; text-decoration: none; border-radius: 3px; cursor: pointer; transition: opacity 0.15s; letter-spacing: 0.5px; }
.bhgs-btn:hover { opacity: 0.85; }
.bhgs-btn--primary { background: #1a1a1a; color: #fff; border: 2px solid #1a1a1a; }
.bhgs-btn--secondary { background: transparent; color: #4D3117; border: 2px solid #4D3117; }
.bhgs-btn--blue { background: #5A717D; color: #fff; border: 2px solid #5A717D; }
.bhgs-hero__image { width: 100%; }
.bhgs-hero__image img { width: 100%; height: auto; display: block; }
.bhgs-trust { background: #1a1a1a; padding: 14px 0; }
.bhgs-trust__inner { width: 100%; max-width: none; margin: 0 auto; padding: 0 24px; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.bhgs-trust__item { display: flex; align-items: center; gap: 8px; color: #ccc; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; }
.bhgs-trust__item span { color: #5A717D; font-size: 14px; }
.bhgs-section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; padding-top: 56px; }
.bhgs-section-header h2 { font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: #1a1a1a; }
.bhgs-section-header a { font-size: 12px; font-weight: 700; color: #5A717D; text-decoration: none; letter-spacing: 0.5px; }
.bhgs-section-header a:hover { text-decoration: underline; }
.bhgs-categories { background: #fff; padding-bottom: 16px; }
.bhgs-cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bhgs-cat-tile { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid #e0dcd6; border-radius: 4px; padding: 14px 16px; text-decoration: none; color: #1a1a1a; transition: border-color 0.15s, background 0.15s; position: relative; }
.bhgs-cat-tile:hover { border-color: #1a1a1a; background: #faf9f7; }
.bhgs-cat-tile::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; border-radius: 4px 0 0 4px; background: var(--tile-accent, #1a1a1a); }
.bhgs-cat-tile__icon { font-size: 22px; flex-shrink: 0; width: 36px; text-align: center; }
.bhgs-cat-tile__text { flex: 1; }
.bhgs-cat-tile__name { font-size: 13px; font-weight: 700; color: #1a1a1a; display: block; margin-bottom: 2px; }
.bhgs-cat-tile__sub { font-size: 11px; color: #888; }
.bhgs-cat-tile__arrow { font-size: 13px; color: #5A717D; font-weight: 700; flex-shrink: 0; }
.bhgs-products { background: #fff; padding-bottom: 56px; }
.bhgs-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bhgs-product-card { background: #fff; border: 1px solid #e0dcd6; border-radius: 4px; overflow: hidden; text-decoration: none; color: #1a1a1a; transition: border-color 0.15s, box-shadow 0.15s; display: flex; flex-direction: column; }
.bhgs-product-card:hover { border-color: #1a1a1a; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.bhgs-product-card__badge { position: absolute; top: 10px; left: 10px; background: #4D3117; color: #fff; font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.bhgs-product-card__image-wrap { position: relative; background: #f0ece6; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.bhgs-product-card__image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.bhgs-product-card__image-placeholder { font-size: 40px; opacity: 0.4; }
.bhgs-product-card__body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; }
.bhgs-product-card__cat { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #5A717D; margin-bottom: 4px; }
.bhgs-product-card__name { font-size: 13px; font-weight: 700; color: #1a1a1a; line-height: 1.4; margin-bottom: 10px; flex: 1; }
.bhgs-product-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.bhgs-product-card__price { font-size: 16px; font-weight: 800; color: #1a1a1a; }
.bhgs-product-card__cta { font-size: 10px; font-weight: 700; color: #fff; background: #1a1a1a; padding: 6px 12px; border-radius: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.bhgs-specials-banner { background: #f5f3f0; border-top: 1px solid #e0dcd6; border-bottom: 1px solid #e0dcd6; padding: 40px 0; }
.bhgs-specials-banner__inner { width: 100%; max-width: none; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.bhgs-specials-banner__label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #4D3117; margin-bottom: 6px; }
.bhgs-specials-banner__headline { font-size: 26px; font-weight: 800; color: #1a1a1a; }
.bhgs-services { background: #fff; padding: 56px 0; }
.bhgs-services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bhgs-service-item { text-align: center; padding: 24px 16px; border: 1px solid #e0dcd6; border-radius: 4px; }
.bhgs-service-item__icon { font-size: 28px; margin-bottom: 12px; }
.bhgs-service-item__title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #1a1a1a; margin-bottom: 6px; }
.bhgs-service-item__desc { font-size: 12px; color: #666; line-height: 1.5; }
.bhgs-blog { background: #f5f3f0; padding: 56px 0; border-top: 1px solid #e0dcd6; }
.bhgs-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bhgs-blog-card { background: #fff; border: 1px solid #e0dcd6; border-radius: 4px; overflow: hidden; text-decoration: none; color: #1a1a1a; transition: border-color 0.15s; display: flex; flex-direction: column; }
.bhgs-blog-card:hover { border-color: #1a1a1a; }
.bhgs-blog-card__image { background: #e8e4de; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 32px; }
.bhgs-blog-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.bhgs-blog-card__cat { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #5A717D; margin-bottom: 6px; }
.bhgs-blog-card__title { font-size: 14px; font-weight: 700; color: #1a1a1a; line-height: 1.4; margin-bottom: 8px; flex: 1; }
.bhgs-blog-card__read { font-size: 11px; font-weight: 700; color: #5A717D; }
.bhgs-location { background: #1a1a1a; padding: 56px 0; color: #fff; }
.bhgs-location__inner { width: 100%; max-width: none; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.bhgs-location__eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #5A717D; margin-bottom: 12px; }
.bhgs-location__name { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 20px; }
.bhgs-location__detail { font-size: 14px; color: #aaa; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 10px; }
.bhgs-location__detail strong { color: #fff; }
.bhgs-location__detail a { color: #5A717D; text-decoration: none; }
.bhgs-location__detail a:hover { text-decoration: underline; }
.bhgs-location__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.bhgs-map-placeholder { background: #2a2a2a; border-radius: 4px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; color: #555; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; border: 1px solid #333; }
@media (max-width: 768px) {
  .bhgs-hero__inner { grid-template-columns: 1fr; }
  .bhgs-hero__image { display: none; }
  .bhgs-cat-grid { grid-template-columns: 1fr; }
  .bhgs-product-grid { grid-template-columns: 1fr 1fr; }
  .bhgs-services__grid { grid-template-columns: 1fr 1fr; }
  .bhgs-blog-grid { grid-template-columns: 1fr; }
  .bhgs-location__inner { grid-template-columns: 1fr; }
  .bhgs-trust__inner { gap: 20px; }
}
@media (max-width: 480px) {
  .bhgs-product-grid { grid-template-columns: 1fr; }
  .bhgs-services__grid { grid-template-columns: 1fr 1fr; }
  .bhgs-hero { padding: 48px 0 40px; }
}
