/* ==========================================================
   Bison Hill — Custom Footer Styles
   ========================================================== */

/* Scoped to .bh-footer to prevent theme :root overrides */
.bh-footer {
  --bh-orange: #c8782a;
  --bh-dark:   #1a1a1a;
  --bh-mid:    #2a2a2a;
  --bh-text:   #c2c2c2;
  --bh-light:  #e2e2e2;
  --bh-white:  #ffffff;
}

/* ── Wrapper ── */
.bh-footer {
  background: var(--bh-dark);
  color: var(--bh-text);
  font-size: 14px;
  line-height: 1.6;
}

.bh-footer__wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Main grid ── */
.bh-footer__main {
  padding: 64px 0 48px;
  border-bottom: 1px solid #333;
}

.bh-footer__main .bh-footer__wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr;
  gap: 48px;
}

/* ── Brand column ── */
.bh-footer__logo img {
  display: block;
  max-width: 130px;
  height: auto;
  margin-bottom: 16px;
}

.bh-footer__tagline {
  color: var(--bh-light) !important;
  font-size: 13px;
  font-style: italic;
  margin: 0 0 20px;
  line-height: 1.5;
}

.bh-footer__trust {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.bh-footer__trust li {
  padding: 3px 0 3px 18px;
  position: relative;
  font-size: 13px;
  color: var(--bh-text) !important;
}

.bh-footer__trust li::before {
  content: '✓';
  color: var(--bh-orange) !important;
  position: absolute;
  left: 0;
  font-weight: 700;
}

address.bh-footer__address {
  font-style: normal;
  font-size: 13px;
  color: #aaa !important;
  line-height: 1.7;
}

address.bh-footer__address a {
  color: #aaa !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

address.bh-footer__address a:hover {
  color: var(--bh-orange) !important;
}

/* ── Nav columns ── */
.bh-footer__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bh-white) !important;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #333;
}

.bh-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bh-footer__links li {
  margin-bottom: 8px;
}

.bh-footer__links a {
  color: var(--bh-text) !important;
  text-decoration: none !important;
  font-size: 13px;
  transition: color 0.2s;
}

.bh-footer__links a:hover {
  color: var(--bh-orange) !important;
}

/* ── Newsletter column ── */
.bh-footer__newsletter-intro {
  font-size: 13px;
  color: var(--bh-text) !important;
  margin: 0 0 16px;
  line-height: 1.5;
}

.bh-footer__form-row {
  display: flex;
  gap: 0;
  margin-bottom: 8px;
}

.bh-footer__form-row input[type="email"] {
  flex: 1;
  background: #2a2a2a;
  border: 1px solid #444;
  border-right: none;
  color: var(--bh-white);
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 2px 0 0 2px;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}

.bh-footer__form-row input[type="email"]::placeholder {
  color: #666;
}

.bh-footer__form-row input[type="email"]:focus {
  border-color: var(--bh-orange);
}

.bh-footer__form-row button {
  background: var(--bh-orange);
  border: 1px solid var(--bh-orange);
  color: var(--bh-white);
  padding: 10px 16px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  transition: background 0.2s;
  white-space: nowrap;
}

.bh-footer__form-row button:hover {
  background: #b06820;
  border-color: #b06820;
}

.bh-footer__form-row button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.bh-footer__form-msg {
  font-size: 12px;
  color: var(--bh-orange);
  margin: 0;
}

/* ── Social ── */
.bh-footer__social {
  margin-top: 24px;
}

.bh-footer__social-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888 !important;
  margin: 0 0 10px;
}

.bh-footer__social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
}

.bh-footer__social ul li a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #444 !important;
  border-radius: 2px;
  color: var(--bh-text) !important;
  font-size: 14px;
  text-decoration: none !important;
  transition: border-color 0.2s, color 0.2s;
}

.bh-footer__social ul li a:hover {
  border-color: var(--bh-orange) !important;
  color: var(--bh-orange) !important;
}

/* ── Bottom bar ── */
.bh-footer__bottom {
  padding: 20px 0;
  background: #111;
}

.bh-footer__bottom .bh-footer__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.bh-footer__copy {
  font-size: 12px;
  color: #888 !important;
  margin: 0;
}

.bh-footer__legal {
  display: flex;
  gap: 20px;
}

.bh-footer__legal a {
  font-size: 12px;
  color: #888 !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

.bh-footer__legal a:hover {
  color: var(--bh-text) !important;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bh-footer__main .bh-footer__wrap {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .bh-footer__main .bh-footer__wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bh-footer__main {
    padding: 40px 0 32px;
  }

  .bh-footer__bottom .bh-footer__wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
