.bch-site-footer {
  /*background: #f6f1ea; Ligther*/
  color: #2f2a24;
  /*border-top: 1px solid rgba(47, 42, 36, 0.12);*/
  font-family: "Inter", sans-serif;
  
    display: flex;
    align-items: center;
    justify-content: center;
    background: #10100f !important;
}

.bch-site-footer__top {
  background: #f8f2ea;
  padding: 34px 24px 28px;
}

.bch-site-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.9fr 1.25fr;
  gap: 42px;
}

.bch-site-footer__column {
  position: relative;
}

.bch-site-footer__column:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -21px;
  width: 1px;
  height: 100%;
  background: rgba(47, 42, 36, 0.1);
}

.bch-site-footer h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #1f1a14;
}

.bch-site-footer p {
  margin: 0 0 14px;
  max-width: 310px;
  font-size: 14px;
  line-height: 1.65;
  color: #4a4036;
}

.bch-site-footer a {
  color: #bd4f1f;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.bch-site-footer a:hover {
  color: #8f3515;
}

.bch-site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.bch-site-footer li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bch-site-footer__icon {
  width: 22px;
  min-width: 22px;
  height: 22px;
  border: 1px solid rgba(47, 42, 36, 0.28);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bd4f1f;
  font-size: 12px;
  line-height: 1;
}

.bch-site-footer strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
  color: #1f1a14;
}

.bch-site-footer small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.4;
  color: #62574d;
}

.bch-site-footer__column nav {
  display: grid;
  gap: 8px;
}

.bch-site-footer__column nav a {
  color: #2f2a24;
  font-size: 14px;
  font-weight: 500;
}

.bch-site-footer__column nav a:hover {
  color: #bd4f1f;
}

.bch-site-footer__form {
  display: flex;
  gap: 8px;
  margin: 12px 0 8px;
}

.bch-site-footer__form input {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(47, 42, 36, 0.16);
  border-radius: 4px;
  background: #fffaf4;
  color: #2f2a24;
  font-size: 13px;
  outline: none;
}

.bch-site-footer__form input:focus {
  border-color: #d96b32;
  box-shadow: 0 0 0 3px rgba(217, 107, 50, 0.12);
}

.bch-site-footer__form button {
  height: 42px;
  padding: 0 16px;
  border: 1px solid #bd4f1f;
  border-radius: 4px;
  background: #c95724;
  color: #fffaf4;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.bch-site-footer__form button:hover {
  background: #a94119;
}

.bch-site-footer__bottom {
  background: #13120f;
  color: rgba(255, 250, 244, 0.75);
  padding: 18px 24px;
}

.bch-site-footer__bottom-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.bch-site-footer__bottom p {
  margin: 0;
  color: rgba(255, 250, 244, 0.72);
  font-size: 13px;
  line-height: 1;
}

.bch-site-footer__bottom nav {
  display: flex;
  align-items: center;
  gap: 24px;
  /* margin-right: auto; */
}

.bch-site-footer__bottom nav a {
  color: rgba(255, 250, 244, 0.72);
  font-size: 13px;
  font-weight: 500;
}

.bch-site-footer__bottom nav a:hover {
  color: #fffaf4;
}

.bch-site-footer__social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.bch-site-footer__social a {
  color: rgba(255, 250, 244, 0.75);
  font-size: 15px;
  font-weight: 500;
}

.bch-site-footer__social a:hover {
  color: #fffaf4;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .bch-site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .bch-site-footer__column:not(:last-child)::after {
    display: none;
  }

  .bch-site-footer__bottom-inner {
    flex-wrap: wrap;
  }

  .bch-site-footer__bottom nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 22px;
  }
}

@media (max-width: 980px) {
  .bch-site-footer__top {
    padding: 30px 20px 26px;
  }

  .bch-site-footer__inner {
    grid-template-columns: 1fr;
  }

  .bch-site-footer__form {
    flex-direction: column;
  }

  .bch-site-footer__form button {
    width: 100%;
  }

  .bch-site-footer__bottom {
    padding: 20px;
  }

  .bch-site-footer__bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .bch-site-footer__bottom nav {
    order: initial;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}


/* ---------- Footer typography ---------- */

.bch-site-footer h3 {
  font-size: 21px !important;
  line-height: 1.1 !important;
  font-weight: 600 !important;
  letter-spacing: -0.015em !important;
}

.bch-site-footer p,
.bch-site-footer a,
.bch-site-footer__column nav a {
  font-family: var(--bch-font-body) !important;
  font-size: 13.5px !important;
  line-height: 1.55 !important;
}

.bch-site-footer strong {
  font-size: 14px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

.bch-site-footer small,
.bch-site-footer__bottom p,
.bch-site-footer__bottom nav a {
  font-size: 12.5px !important;
  line-height: 1.4 !important;
}


/* =========================
   Footer scale
   ========================= */

.bch-site-footer__top {
  padding: 34px 24px 28px !important;
}

.bch-site-footer__inner {
  max-width: 1200px !important;
  gap: 42px !important;
}

.bch-site-footer h3 {
  margin-bottom: 12px !important;
  font-family: var(--bch-font-heading) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.015em !important;
}

.bch-site-footer p,
.bch-site-footer a,
.bch-site-footer__column nav a {
  font-size: 13.5px !important;
  line-height: 1.55 !important;
}

.bch-site-footer strong {
  font-size: 14px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
}

.bch-site-footer small,
.bch-site-footer__bottom p,
.bch-site-footer__bottom nav a {
  font-size: 12.5px !important;
  line-height: 1.4 !important;
}


/* =========================================================
   BCH FOOTER - MOBILE ACCORDION MOCKUP
   Replace footer.php with the accordion version, then paste this
   at the VERY END of style.css so it overrides old footer mobile CSS.
   ========================================================= */

.bch-site-footer__mobile {
  display: none;
}

.bch-site-footer__desktop {
    max-width: 1200px;
  display: block;
}

@media (max-width: 980px) {
  .bch-site-footer {
    width: 100% !important;
    background: #f6efe4 !important;
    border-top: 0 !important;
    padding: 0 18px 28px !important;
    color: #17130f !important;
    font-family: var(--bch-font-body, Inter, Arial, sans-serif) !important;
  }

  .bch-site-footer__desktop {
    display: none !important;
  }

  .bch-site-footer__mobile {
    display: block !important;
    width: 100% !important;
    max-width: 430px !important;
    margin: 0 auto !important;
  }

  .bch-site-footer__accordion {
    overflow: hidden !important;
    width: 100% !important;
    background: #fffaf6 !important;
    border: 1px solid rgba(23, 19, 15, 0.08) !important;
    border-radius: 20px !important;
    box-shadow: 0 12px 28px rgba(23, 19, 15, 0.06) !important;
  }

  .bch-site-footer__accordion-item {
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(23, 19, 15, 0.08) !important;
    background: transparent !important;
  }

  .bch-site-footer__accordion-item:last-child {
    border-bottom: 0 !important;
  }

  .bch-site-footer__accordion-item summary {
    min-height: 70px !important;
    padding: 0 22px !important;
    display: grid !important;
    grid-template-columns: 30px minmax(0, 1fr) 24px !important;
    align-items: center !important;
    gap: 15px !important;
    list-style: none !important;
    cursor: pointer !important;
    color: #17130f !important;
    background: transparent !important;
  }

  .bch-site-footer__accordion-item summary::-webkit-details-marker {
    display: none !important;
  }

  .bch-site-footer__accordion-icon,
  .bch-site-footer__accordion-chevron {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #17130f !important;
  }

  .bch-site-footer__accordion-icon {
    width: 29px !important;
    height: 29px !important;
  }

  .bch-site-footer__accordion-chevron {
    width: 23px !important;
    height: 23px !important;
    transition: transform 0.18s ease !important;
  }

  .bch-site-footer__accordion-item[open] .bch-site-footer__accordion-chevron {
    transform: rotate(180deg) !important;
  }

  .bch-site-footer__accordion-icon svg,
  .bch-site-footer__accordion-chevron svg {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2.15 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }

  .bch-site-footer__accordion-title {
    display: block !important;
    color: #17130f !important;
    font-family: var(--bch-font-body, Inter, Arial, sans-serif) !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.035em !important;
  }

  .bch-site-footer__accordion-content {
    padding: 0 22px 20px 67px !important;
    margin-top: -6px !important;
    background: transparent !important;
  }

  .bch-site-footer__accordion-content p {
    margin: 0 0 12px !important;
    max-width: none !important;
    color: #342d26 !important;
    font-family: var(--bch-font-body, Inter, Arial, sans-serif) !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    line-height: 1.55 !important;
    letter-spacing: -0.01em !important;
  }

  .bch-site-footer__accordion-content a,
  .bch-site-footer__accordion-nav a {
    color: #c7501d !important;
    font-family: var(--bch-font-body, Inter, Arial, sans-serif) !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    text-decoration: none !important;
    background: transparent !important;
  }

  .bch-site-footer__accordion-list {
    display: grid !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .bch-site-footer__accordion-list li {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .bch-site-footer__accordion-list strong {
    display: block !important;
    color: #17130f !important;
    font-family: var(--bch-font-body, Inter, Arial, sans-serif) !important;
    font-size: 13.5px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.015em !important;
  }

  .bch-site-footer__accordion-list small,
  .bch-site-footer__accordion-content small {
    display: block !important;
    margin-top: 3px !important;
    color: #62574d !important;
    font-family: var(--bch-font-body, Inter, Arial, sans-serif) !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  .bch-site-footer__accordion-nav {
    display: grid !important;
    gap: 10px !important;
  }

  .bch-site-footer__accordion-form {
    display: grid !important;
    gap: 8px !important;
    margin: 12px 0 8px !important;
  }

  .bch-site-footer__accordion-form input,
  .bch-site-footer__accordion-form button {
    width: 100% !important;
    height: 42px !important;
    border-radius: 9px !important;
    font-family: var(--bch-font-body, Inter, Arial, sans-serif) !important;
    font-size: 13px !important;
  }

  .bch-site-footer__accordion-form input {
    padding: 0 13px !important;
    border: 1px solid rgba(23, 19, 15, 0.12) !important;
    background: #fffaf6 !important;
    color: #17130f !important;
    outline: none !important;
  }

  .bch-site-footer__accordion-form button {
    border: 0 !important;
    background: #f05a1a !important;
    color: #fffaf6 !important;
    font-weight: 800 !important;
    cursor: pointer !important;
  }

  .bch-site-footer__mobile-bottom {
    padding: 28px 14px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    background: transparent !important;
  }

  .bch-site-footer__mobile-bottom p {
    margin: 0 !important;
    max-width: none !important;
    color: #17130f !important;
    font-family: var(--bch-font-body, Inter, Arial, sans-serif) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    letter-spacing: -0.015em !important;
    white-space: nowrap !important;
  }

  .bch-site-footer__mobile-bottom nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 22px !important;
    flex-wrap: nowrap !important;
  }

  .bch-site-footer__mobile-bottom nav a {
    color: #17130f !important;
    font-family: var(--bch-font-body, Inter, Arial, sans-serif) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    background: transparent !important;
  }
}

@media (max-width: 380px) {
  .bch-site-footer {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .bch-site-footer__accordion-item summary {
    min-height: 66px !important;
    padding: 0 18px !important;
    grid-template-columns: 28px minmax(0, 1fr) 22px !important;
    gap: 13px !important;
  }

  .bch-site-footer__accordion-title {
    font-size: 16px !important;
  }

  .bch-site-footer__accordion-content {
    padding-left: 59px !important;
    padding-right: 18px !important;
  }

  .bch-site-footer__mobile-bottom {
    padding-left: 4px !important;
    padding-right: 4px !important;
    gap: 12px !important;
  }

  .bch-site-footer__mobile-bottom nav {
    gap: 14px !important;
  }

  .bch-site-footer__mobile-bottom p,
  .bch-site-footer__mobile-bottom nav a {
    font-size: 11px !important;
  }
}
/* =========================================================
   BCH mobile accordion footer - form alignment + spacing fix
   Paste this at the VERY END of style.css, after the accordion footer CSS.
   ========================================================= */

@media (max-width: 980px) {
  .bch-site-footer,
  .bch-site-footer * {
    box-sizing: border-box !important;
  }

  .bch-site-footer {
    padding-top: 18px !important;
    padding-bottom: 26px !important;
  }

  .bch-site-footer__mobile {
    max-width: 430px !important;
  }

  .bch-site-footer__accordion-content {
    padding: 0 22px 20px 68px !important;
    margin-top: -5px !important;
    min-width: 0 !important;
  }

  .bch-site-footer__accordion-form {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 9px !important;
    margin: 13px 0 8px !important;
    padding: 0 !important;
  }

  .bch-site-footer__accordion-form input,
  .bch-site-footer__accordion-form button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 40px !important;
    min-height: 40px !important;
    margin: 0 !important;
    border-radius: 8px !important;
    font-family: var(--bch-font-body, Inter, Arial, sans-serif) !important;
    font-size: 12.5px !important;
    line-height: 1 !important;
  }

  .bch-site-footer__accordion-form input {
    padding: 0 13px !important;
    border: 1px solid rgba(23, 19, 15, 0.12) !important;
    background: #fffaf6 !important;
    color: #17130f !important;
    box-shadow: none !important;
  }

  .bch-site-footer__accordion-form button {
    padding: 0 14px !important;
    border: 0 !important;
    background: #f05a1a !important;
    color: #fffaf6 !important;
    font-weight: 800 !important;
    text-align: center !important;
    box-shadow: none !important;
  }

  .bch-site-footer__accordion-content small {
    margin-top: 8px !important;
  }

  .bch-site-footer__mobile-bottom {
    padding: 26px 12px 0 !important;
    gap: 18px !important;
  }
}

@media (max-width: 380px) {
  .bch-site-footer {
    padding-top: 16px !important;
  }

  .bch-site-footer__accordion-content {
    padding-left: 60px !important;
    padding-right: 18px !important;
  }

  .bch-site-footer__accordion-form input,
  .bch-site-footer__accordion-form button {
    height: 39px !important;
    min-height: 39px !important;
  }

  .bch-site-footer__mobile-bottom {
    padding-top: 24px !important;
  }
}

@media (max-width: 980px) {
  .bch-site-footer__accordion details {
    overflow: hidden;
  }

  .bch-site-footer__accordion summary {
    transition:
      background-color 0.22s ease,
      color 0.22s ease;
  }

  .bch-site-footer__accordion summary::-webkit-details-marker {
    display: none;
  }

  .bch-site-footer__accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    transition:
      max-height 0.34s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.22s ease,
      transform 0.28s ease,
      padding-bottom 0.28s ease;
  }

  .bch-site-footer__accordion
    details[open]
    .bch-site-footer__accordion-content {
    max-height: 360px;
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 20px !important;
  }

  .bch-site-footer__accordion details[open] summary {
    background: #fff;
  }

.bch-site-footer__accordion summary .bch-site-footer__accordion-chevron {
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .bch-site-footer__accordion details[open] summary .bch-site-footer__accordion-chevron {
    transform: rotate(180deg);
  }
}

@media (min-width: 981px) {
  .bch-site-footer__desktop {
    width: min(1440px, calc(100vw - 48px)) !important;
    max-width: min(1440px, calc(100vw - 48px)) !important;
  }

  .bch-site-footer__inner,
  .bch-site-footer__bottom-inner {
    width: 100% !important;
    max-width: none !important;
  }
}

@media (min-width: 1600px) {
  .bch-site-footer__desktop {
    width: min(1600px, calc(100vw - 80px)) !important;
    max-width: min(1600px, calc(100vw - 80px)) !important;
  }
}

@media (min-width: 1800px) {
  .bch-site-footer__desktop {
    width: min(1680px, calc(100vw - 96px)) !important;
    max-width: min(1680px, calc(100vw - 96px)) !important;
  }
}

/* =========================================================
   BCH FOOTER WIDTH SYNC
   Same horizontal system as the Share Your Story page:
   - full browser width until 2000px
   - centered 2000px canvas above that
   - inner content padding aligned with the page content
   Keep this at the VERY END so it overrides older 1200/1440/1680 rules.
   ========================================================= */

@media (min-width: 981px) {
  .bch-site-footer__desktop {
    width: calc(100% - (var(--bch-outer-pad, 0px) * 2)) !important;
    max-width: 2000px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .bch-site-footer__top,
  .bch-site-footer__bottom {
    padding-left: var(--bch-pad, clamp(40px, 3.125vw, 60px)) !important;
    padding-right: var(--bch-pad, clamp(40px, 3.125vw, 60px)) !important;
  }

  .bch-site-footer__inner,
  .bch-site-footer__bottom-inner {
    width: 100% !important;
    max-width: none !important;
  }
}

@media (min-width: 2001px) {
  .bch-site-footer__desktop {
    width: 2000px !important;
    max-width: 2000px !important;
  }
}

/* =========================================================
   Newsletter Button Success State
   ========================================================= */
.bch-site-footer__form button.is-success,
.bch-site-footer__accordion-form button.is-success {
  background: #2d7a31 !important; /* Deep, natural forest green */
  border-color: #236127 !important;
  color: #ffffff !important;
  cursor: default !important;
  pointer-events: none !important;
  transition: background-color 0.25s ease, border-color 0.25s ease !important;
}

/* =========================================================================
   BCH FOOTER FLUID SCALE OVERRIDE (1200px -> 2000px Sync)
   PASTE AT THE VERY BOTTOM OF YOUR CSS FILE
   ========================================================================= */

@media (min-width: 981px) {

  /* 1. Synchronize Outer Padding with Get-In-Touch Page */
  .bch-site-footer__top,
  .bch-site-footer__bottom {
    padding-left: clamp(30px, 4vw, 60px) !important;
    padding-right: clamp(30px, 4vw, 60px) !important;
  }

  .bch-site-footer__top {
    padding-top: clamp(45px, 3.5vw, 75px) !important;
    padding-bottom: clamp(40px, 3vw, 65px) !important;
  }

  /* 2. Fluid Grid Gap & Column Spacers */
  .bch-site-footer__inner {
    gap: clamp(32px, 3.5vw, 65px) !important;
  }

  .bch-site-footer__column:not(:last-child)::after {
    right: clamp(-16px, -1.75vw, -32px) !important;
  }

  /* 3. Fluid Typography (Matched to Page Proportions) */
  .bch-site-footer h3 {
    font-size: clamp(20px, 1.6vw, 28px) !important;
    margin-bottom: clamp(14px, 1.2vw, 22px) !important;
  }

  .bch-site-footer p,
  .bch-site-footer a,
  .bch-site-footer__column nav a,
  .bch-site-footer strong {
    font-size: clamp(14px, 1.05vw, 18px) !important;
    line-height: 1.6 !important;
  }

  .bch-site-footer p {
    max-width: clamp(300px, 22vw, 420px) !important;
    /*margin-bottom: clamp(14px, 1.2vw, 20px) !important;*/
  }

  .bch-site-footer small,
  .bch-site-footer__bottom p,
  .bch-site-footer__bottom nav a {
    font-size: clamp(12.5px, 0.85vw, 15px) !important;
  }

  /* 4. Fluid List & Icon scaling */
  .bch-site-footer ul {
    gap: clamp(14px, 1.2vw, 20px) !important;
  }

  .bch-site-footer__icon {
    width: clamp(22px, 1.6vw, 28px) !important;
    min-width: clamp(22px, 1.6vw, 28px) !important;
    height: clamp(22px, 1.6vw, 28px) !important;
    font-size: clamp(12px, 0.85vw, 15px) !important;
    margin-top: 2px;
  }

  /* 5. Proportional Newsletter Input & Button */
  .bch-site-footer__form {
    gap: clamp(8px, 0.7vw, 12px) !important;
    margin: clamp(14px, 1.2vw, 20px) 0 clamp(8px, 0.7vw, 12px) !important;
  }

  .bch-site-footer__form input,
  .bch-site-footer__form button {
    height: clamp(42px, 3vw, 54px) !important;
    font-size: clamp(13px, 0.95vw, 16px) !important;
    border-radius: clamp(4px, 0.4vw, 6px) !important;
  }

  .bch-site-footer__form input {
    padding: 0 clamp(14px, 1.2vw, 20px) !important;
  }

  .bch-site-footer__form button {
    padding: 0 clamp(18px, 1.6vw, 28px) !important;
  }

  /* 6. Bottom Bar Proportions */
  .bch-site-footer__bottom {
    padding-top: clamp(20px, 1.8vw, 32px) !important;
    padding-bottom: clamp(20px, 1.8vw, 32px) !important;
  }

  .bch-site-footer__bottom-inner {
    gap: clamp(24px, 2.5vw, 45px) !important;
  }

  .bch-site-footer__bottom nav {
    gap: clamp(20px, 2vw, 36px) !important;
  }

  .bch-site-footer__social {
    gap: clamp(16px, 1.5vw, 26px) !important;
  }

  .bch-site-footer__social a {
    font-size: clamp(16px, 1.3vw, 22px) !important;
  }
}

.bch-newsletter-disclaimer {
    text-align: center;
}

/* =========================================================
   BCH Footer Disclaimer
   ========================================================= */

/* Desktop (Dark Background) */
.bch-site-footer__disclaimer {
    max-width: 1000px;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 12px !important;
    line-height: 1.6;
    color: rgba(255, 250, 244, 0.55); 
    border-bottom: 1px solid rgba(255, 250, 244, 0.1);
    padding-bottom: 20px;
}

@media (min-width: 981px) {
    .bch-site-footer__disclaimer {
        font-size: clamp(11.5px, 0.8vw, 13px) !important;
    }
}

/* Mobile (Light Background) */
.bch-site-footer__mobile-disclaimer {
    padding: 24px 14px 0;
    text-align: center;
    font-size: 11px !important;
    line-height: 1.5;
    color: #62574d;
    border-top: 1px solid rgba(23, 19, 15, 0.08);
    margin-top: 24px;
}

.container-disclaimer {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.container-disclaimer p {
 max-width: 60% !important;   
}

/* =========================================================
   BCH footer — mobile disclaimer fix
   Paste at the very end of style.css (after all other footer rules).
   Only touches the disclaimer inside .bch-site-footer__mobile-bottom.
   ========================================================= */

@media (max-width: 980px) {
  /* Allow the row to wrap so the disclaimer can sit on its own line */
  .bch-site-footer__mobile-bottom {
    flex-wrap: wrap !important;
  }

  /* Disclaimer: full-width line above the © + nav row */
  .bch-site-footer__mobile-bottom .bch-site-footer__disclaimer {
    order: -1;                       /* visually first — sits on top */
    flex: 1 1 100% !important;       /* takes the whole row */
    margin: 0 0 16px !important;
    padding: 0 0 16px !important;
    border-bottom: 1px solid rgba(23, 19, 15, 0.1) !important;

    color: rgba(23, 19, 15, 0.62) !important;
    font-family: var(--bch-font-body, Inter, Arial, sans-serif) !important;
    font-size: 11.5px !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
    letter-spacing: 0 !important;
    font-style: italic !important;
    text-align: center !important;
    white-space: normal !important;  /* override the nowrap on __mobile-bottom p */
  }
}

@media (max-width: 380px) {
  .bch-site-footer__mobile-bottom .bch-site-footer__disclaimer {
    font-size: 11px !important;
  }
}

.copyright-home-link {
    text-decoration: none !important;
    /*color: rgba(255, 250, 244, 0.72) !important;*/
    /*font-weight: 500 !important;*/
}

/*@media (min-width: 980px) {*/
/*    .copyright-home-link {*/
/*        text-decoration: none !important;*/
/*        font-size: clamp(12.5px, 0.85vw, 15px) !important;*/
/*        color: rgba(255, 250, 244, 0.72) !important;*/
/*        font-weight: 500 !important;*/
/*        font-family: var(--bch-font-body) !important;*/
/*        line-height: 1.4 !important;*/
/*    }*/
/*}*/