/*
 * BALS redesign prototype styles
 * Version: 1.4.0
 */
:root {
  --bals-red: #a7101d;
  --bals-red-dark: #820c16;
  --bals-red-soft: #f7e9ea;
  --bals-red-softer: #fcf1f1;
  --bals-green: #4f8457;
  --bals-text: #1e1e1c;
  --bals-muted: #626260;
  --bals-surface: #ffffff;
  --bals-bg: #f6f3f1;
  --bals-line: #e6dfdb;
  --bals-line-strong: #d3cbc7;
  --bals-shadow: 0 18px 44px rgba(30, 23, 20, 0.1);
  --bals-shadow-soft: 0 10px 28px rgba(30, 23, 20, 0.06);
  --bals-radius-xl: 34px;
  --bals-radius-lg: 26px;
  --bals-radius-md: 18px;
  --bals-radius-sm: 14px;
  --bals-container: 1368px;
  --bals-content: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bals-bg);
  color: var(--bals-text);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

main {
  min-height: 70vh;
}

.bals-container {
  max-width: var(--bals-container);
  padding-left: clamp(1rem, 2vw, 2rem);
  padding-right: clamp(1rem, 2vw, 2rem);
}

.content-container {
  max-width: var(--bals-content);
}

.section-space {
  padding: 2rem 0;
}

.section-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.8rem, 3vw, 3.3rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.section-subtitle {
  max-width: 62ch;
  margin: 0;
  color: var(--bals-muted);
  font-size: 1rem;
  line-height: 1.68;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--bals-red-softer);
  color: var(--bals-red);
  font-size: 0.85rem;
  font-weight: 700;
}

.kicker--light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.breadcrumb-wrap {
  color: #7c7773;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.breadcrumb-wrap a:hover {
  color: var(--bals-red);
}

.bals-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 0.82rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.bals-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--bals-shadow-soft);
}

.bals-btn--primary {
  background: var(--bals-red);
  color: #fff;
}

.bals-btn--primary:hover {
  background: var(--bals-red-dark);
  color: #fff;
}

.bals-btn--outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
}

.bals-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.bals-btn--light {
  background: #fff;
  color: var(--bals-red);
  border-color: rgba(255, 255, 255, 0.35);
}

.bals-btn--light:hover {
  color: var(--bals-red);
  background: #fff4f5;
}

.bals-btn--secondary {
  background: #fff;
  color: var(--bals-red);
  border-color: var(--bals-line);
}

.bals-btn--secondary:hover {
  color: var(--bals-red);
  border-color: #ccb8bb;
}

.bals-btn--sm {
  padding: 0.86rem 1.15rem;
  font-size: 0.95rem;
}

.bals-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  line-height: 1;
}

.bals-icon i {
  font-size: 1rem;
}

.bals-icon--plain {
  width: auto;
  height: auto;
}

.bals-icon--tiny i {
  font-size: 0.85rem;
}

.bals-icon--store,
.bals-icon--feature,
.bals-icon--value,
.bals-icon--contact,
.bals-icon--footer,
.bals-icon--metric {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}

.bals-icon--store,
.bals-icon--feature,
.bals-icon--contact,
.bals-icon--metric {
  background: var(--bals-red-softer);
  color: var(--bals-red);
}

.bals-icon--feature {
  width: 3.6rem;
  height: 3.6rem;
  margin-bottom: 1rem;
}

.bals-icon--value {
  width: 3.4rem;
  height: 3.4rem;
  background: rgba(167, 16, 29, 0.08);
  color: var(--bals-red);
}

.bals-icon--value.is-green {
  background: rgba(79, 132, 87, 0.12);
  color: var(--bals-green);
}

.bals-icon--marker {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--bals-red);
  color: #fff;
  box-shadow: 0 8px 18px rgba(167, 16, 29, 0.32);
}

.bals-icon--footer {
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.desktop-header {
  padding: 1.12rem 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.desktop-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.25rem;
}

.desktop-header__brand img,
.mobile-homebar__logo img,
.offcanvas-title img,
.footer-brand img {
  width: 162px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 1.8rem;
}

.bals-nav-link {
  position: relative;
  color: #464340;
  font-size: 0.92rem;
  font-weight: 700;
}

.bals-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.6rem;
  height: 2px;
  background: transparent;
  border-radius: 999px;
}

.bals-nav-link:hover,
.bals-nav-link.is-active {
  color: var(--bals-red);
}

.bals-nav-link.is-active::after,
.bals-nav-link:hover::after {
  background: var(--bals-red);
}

.desktop-header__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.desktop-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.95rem;
  height: 2.95rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--bals-line);
  color: var(--bals-red);
}

.mobile-homebar,
.mobile-subbar {
  position: sticky;
  top: 0;
  z-index: 1020;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.98);
  padding: 1.05rem 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-homebar {
  position: absolute;
  inset: 0 0 auto 0;
}

.mobile-homebar__logo img {
  width: 118px;
}

.mobile-homebar__toggle,
.mobile-subbar__menu,
.mobile-subbar__back {
  border: 0;
  background: transparent;
  color: var(--bals-red);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
}

.mobile-homebar__toggle {
  color: var(--bals-text);
  font-size: 1.35rem;
}

.mobile-subbar__title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bals-offcanvas {
  max-width: 340px;
  border-left: 0;
}

.mobile-menu {
  display: grid;
  gap: 0.6rem;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--bals-line);
  border-radius: var(--bals-radius-sm);
  background: #fff;
  font-weight: 700;
}

.mobile-menu__link.is-active {
  border-color: rgba(167, 16, 29, 0.26);
  color: var(--bals-red);
  background: var(--bals-red-softer);
}

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: clip;
  background: #0d0d0d;
}

.home-hero__media,
.home-hero__overlay,
.home-hero__glow {
  position: absolute;
  inset: 0;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.44) 44%, rgba(0, 0, 0, 0.18) 100%);
}

.home-hero__glow {
  background: linear-gradient(180deg, rgba(167, 16, 29, 0.18) 0%, rgba(167, 16, 29, 0.03) 22%, transparent 60%);
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.home-hero__copy {
  max-width: 660px;
  color: #fff;
}

.home-hero__copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.home-hero__copy p {
  margin: 0;
  max-width: 35rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.04rem;
  line-height: 1.68;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.home-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.hero-badge .bals-icon {
  color: #fff;
}

.home-shortcuts-wrap {
  position: relative;
  margin-top: -2rem;
  z-index: 4;
}

.shortcut-grid,
.news-grid,
.value-grid,
.info-grid,
.story-grid,
.metrics-grid,
.faq-grid,
.job-grid,
.contact-quick-grid,
.community-grid {
  display: grid;
  gap: 1rem;
}

.shortcut-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shortcut-card,
.news-card,
.value-card,
.contact-card,
.team-card,
.why-card,
.career-pill,
.info-panel,
.form-card,
.store-card,
.map-shell,
.history-image-card,
.callout-card,
.metric-card,
.story-card,
.job-card,
.faq-card,
.contact-quick-card,
.community-card {
  background: var(--bals-surface);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--bals-radius-md);
  box-shadow: var(--bals-shadow-soft);
}

.shortcut-card,
.news-card,
.value-card,
.team-card,
.career-pill,
.metric-card,
.story-card,
.job-card,
.faq-card,
.contact-quick-card,
.community-card {
  height: 100%;
}

.shortcut-card,
.news-card,
.team-card,
.why-card,
.store-card,
.story-card,
.job-card,
.contact-quick-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shortcut-card:hover,
.news-card:hover,
.team-card:hover,
.why-card:hover,
.store-card:hover,
.story-card:hover,
.job-card:hover,
.contact-quick-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--bals-shadow);
}

.shortcut-card {
  padding: 1.3rem 1rem;
  min-height: 172px;
  text-align: center;
}

.shortcut-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
  font-weight: 800;
}

.shortcut-card p {
  margin: 0;
  color: var(--bals-muted);
  font-size: 0.94rem;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-link {
  color: var(--bals-red);
  font-weight: 700;
  white-space: nowrap;
}

.news-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.news-card__media {
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1 1 auto;
  padding: 1rem 1rem 1.2rem;
}

.news-card__date {
  display: block;
  color: #8b8682;
  font-size: 0.85rem;
}

.news-card__body h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.38;
  font-weight: 800;
  min-height: 3.1em;
}

.news-card__body p {
  margin: 0;
  color: var(--bals-muted);
  line-height: 1.6;
}

.news-card__body a {
  color: var(--bals-red);
  font-weight: 700;
  margin-top: auto;
}

.page-shell {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

.page-grid-top {
  display: grid;
  gap: 1.4rem;
}

.history-image-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.2 / 1;
}

.history-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.year-chip {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.7rem;
  background: var(--bals-red);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 800;
}

.timeline-mobile {
  position: relative;
  padding-left: 1rem;
  margin-top: 1.5rem;
}

.timeline-mobile::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 0.8rem;
  bottom: 0.8rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(167, 16, 29, 0.15) 0%, rgba(167, 16, 29, 0.45) 100%);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 0.9rem;
  padding: 0.25rem 0 1rem;
}

.timeline-item__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: start;
  justify-content: center;
}

.timeline-item__icon .bals-icon {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: var(--bals-red);
  color: #fff;
}

.timeline-item__content h3,
.timeline-desktop h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.timeline-item__content p,
.timeline-desktop p {
  margin: 0;
  color: var(--bals-muted);
  line-height: 1.55;
}

.timeline-desktop {
  display: none;
}

.values-panel,
.info-panel {
  padding: 1.4rem;
}

.values-panel {
  margin-top: 2rem;
  background: linear-gradient(180deg, #fbefef 0%, #faf7f5 100%);
  border: 1px solid #f1dddd;
  border-radius: var(--bals-radius-lg);
}

.values-panel h2,
.info-panel h2,
.metrics-section h2,
.story-section h2,
.faq-section h2,
.contact-extra h2,
.community-section h2 {
  margin: 0 0 1rem;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.value-card {
  padding: 1.25rem;
  text-align: center;
}

.value-card h3,
.info-panel h3,
.metric-card h3,
.story-card h3,
.job-card h3,
.faq-card h3,
.contact-quick-card h3,
.community-card h3 {
  margin: 0.85rem 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.value-card p,
.info-panel p,
.metric-card p,
.story-card p,
.job-card p,
.faq-card p,
.contact-quick-card p,
.community-card p {
  margin: 0;
  color: var(--bals-muted);
  line-height: 1.6;
}

.story-card,
.job-card,
.contact-quick-card,
.community-card,
.metric-card,
.faq-card {
  padding: 1.2rem;
}

.story-card ul,
.job-card ul,
.info-panel ul,
.community-card ul {
  margin: 0.85rem 0 0;
  padding-left: 1rem;
  color: var(--bals-muted);
}

.story-card li,
.job-card li,
.info-panel li,
.community-card li {
  margin-bottom: 0.45rem;
}

.metrics-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-card {
  text-align: center;
}

.metric-card strong {
  display: block;
  margin-top: 0.8rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
  color: var(--bals-red);
  font-weight: 800;
}

.story-grid,
.value-grid,
.info-grid,
.faq-grid,
.contact-quick-grid,
.community-grid {
  grid-template-columns: 1fr;
}

.story-card,
.job-card,
.community-card {
  display: flex;
  flex-direction: column;
}

.story-card__eyebrow,
.job-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--bals-red);
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.locator-controls,
.locator-layout,
.store-list,
.filter-panel {
  display: grid;
  gap: 0.9rem;
}

.search-shell,
.filter-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.25rem;
  padding: 0 1rem;
  border: 1px solid var(--bals-line);
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: var(--bals-shadow-soft);
}

.search-shell input,
.filter-panel select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.search-shell button,
.filter-button {
  color: var(--bals-red);
  font-weight: 700;
  background: transparent;
  border: 0;
}

.filter-panel {
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--bals-line);
  border-radius: var(--bals-radius-sm);
}

.filter-panel label {
  font-weight: 700;
}

.store-list {
  grid-template-columns: 1fr;
}

.store-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
  width: 100%;
  padding: 1rem;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.store-card.is-active {
  border-color: rgba(167, 16, 29, 0.24);
  box-shadow: 0 12px 28px rgba(167, 16, 29, 0.08);
}

.store-card__copy h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.store-card__copy p,
.store-card__meta {
  margin: 0;
  color: var(--bals-muted);
  line-height: 1.5;
}

.store-card__link {
  color: var(--bals-red);
  font-weight: 700;
  white-space: nowrap;
}

.map-shell {
  position: relative;
  min-height: 455px;
  overflow: hidden;
}

.map-shell__frame,
.map-shell__fallback,
.map-shell__markers {
  position: absolute;
  inset: 0;
}

.map-shell__frame {
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}

.map-shell__fallback {
  z-index: 0;
}

.map-shell__fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-shell__markers {
  z-index: 3;
  pointer-events: none;
}

.store-marker,
.map-shell__locate,
.map-shell__zoom {
  pointer-events: auto;
}

.store-marker {
  position: absolute;
  transform: translate(-50%, -100%);
  background: transparent;
  border: 0;
  padding: 0;
}

.store-marker.is-active .bals-icon--marker {
  transform: scale(1.08);
  box-shadow: 0 10px 22px rgba(167, 16, 29, 0.4);
}

.map-shell__info {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 4;
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: var(--bals-shadow-soft);
  font-size: 0.92rem;
}

.map-shell__locate {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 4;
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  border: 0;
  background: rgba(255, 255, 255, 0.94);
  color: var(--bals-red);
  box-shadow: var(--bals-shadow-soft);
}

.map-shell__notice {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 4;
  padding: 0.75rem 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--bals-line);
  color: var(--bals-muted);
  font-size: 0.85rem;
  display: none;
}

.map-fallback-only .map-shell__notice {
  display: block;
}

.map-ready .map-shell__notice {
  display: none;
}

.map-fallback-only .map-shell__frame {
  opacity: 0;
  pointer-events: none;
}

.contact-layout,
.career-hero,
.callout-card,
.contact-top-grid,
.contact-extra-grid,
.contact-intro {
  display: grid;
  gap: 1rem;
}

.contact-card,
.form-card,
.info-panel {
  padding: 1.3rem;
}

.contact-list,
.why-list {
  display: grid;
  gap: 1rem;
}

.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.contact-item h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: var(--bals-muted);
  line-height: 1.5;
}

.form-card h2,
.contact-card h2,
.team-section h2,
.callout-card h2,
.info-panel h2,
.career-hero h1 {
  margin: 0 0 0.9rem;
}

.form-card .form-control,
.form-card .form-select {
  min-height: 3rem;
  padding: 0.8rem 0.95rem;
}

.form-card textarea.form-control {
  min-height: 8.5rem;
  resize: vertical;
}

.form-feedback {
  margin-top: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: var(--bals-red-softer);
  color: var(--bals-red);
  font-weight: 700;
}

.team-grid {
  display: none;
}

.team-card {
  overflow: hidden;
}

.team-card__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f0ece8;
}

.team-card__body {
  padding: 1rem;
}

.team-card__body h3 {
  margin: 0 0 0.2rem;
  font-size: 1.08rem;
  font-weight: 800;
}

.team-card__body p {
  margin: 0;
  color: var(--bals-muted);
  line-height: 1.5;
}

.mobile-team-carousel .carousel-item {
  padding-bottom: 2rem;
}

.mobile-team-carousel .carousel-indicators {
  bottom: 0;
}

.mobile-team-carousel .carousel-indicators [data-bs-target] {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border-top: 0;
  border-bottom: 0;
  background: rgba(167, 16, 29, 0.2);
}

.mobile-team-carousel .carousel-indicators .active {
  background: var(--bals-red);
}

.career-hero {
  overflow: hidden;
  border-radius: var(--bals-radius-lg);
  background: linear-gradient(135deg, #b30f20 0%, #920b18 100%);
  color: #fff;
}

.career-hero__copy {
  padding: 1.6rem 1.3rem 1.2rem;
}

.career-hero__copy h1 {
  font-size: clamp(2rem, 5vw, 3.7rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.career-hero__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  max-width: 36rem;
  line-height: 1.7;
}

.career-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.career-hero__media {
  aspect-ratio: 1.15 / 1;
}

.career-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.career-pill {
  padding: 1rem;
  text-align: center;
}

.career-pill h3 {
  margin: 0.75rem 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
}

.career-pill p {
  margin: 0;
  color: var(--bals-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.why-card {
  padding: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
}

.why-card__copy h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.why-card__copy p {
  margin: 0;
  color: var(--bals-muted);
}

.callout-card {
  padding: 1.3rem;
  background: linear-gradient(180deg, #faf0f0 0%, #fbf6f4 100%);
}

.callout-card p {
  margin: 0;
  color: var(--bals-muted);
}

.desktop-footer {
  margin-top: 4rem;
  background: linear-gradient(180deg, #b10f1f 0%, #8e0c17 100%);
  color: #fff;
}

.desktop-footer__top {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.8fr 0.8fr 1.2fr;
  gap: 2rem;
  padding: 2.7rem 0 2.2rem;
}

.footer-col h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.footer-col p,
.footer-col li,
.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
}

.footer-col ul {
  margin: 0;
  padding: 0;
}

.footer-socials {
  display: grid;
  gap: 0.65rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-newsletter {
  display: grid;
  gap: 0.75rem;
}

.footer-newsletter .form-control {
  min-height: 3rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.footer-newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.desktop-footer__bottom {
  background: rgba(0, 0, 0, 0.14);
}

.desktop-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.desktop-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.mobile-footer {
  padding: 1.25rem 0 1.75rem;
  color: #8a8682;
  text-align: center;
}

.no-results {
  padding: 1rem;
  border-radius: var(--bals-radius-sm);
  border: 1px dashed var(--bals-line-strong);
  color: var(--bals-muted);
  background: #fff;
}

@media (max-width: 991.98px) {
  .page-shell {
    padding-top: 1rem;
  }

  body[data-page="home"] .page-shell {
    padding-top: 0;
  }

  .section-space {
    padding: 1.5rem 0;
  }

  .home-hero__copy h1 {
    max-width: 15ch;
  }

  .home-hero__copy p {
    max-width: 26rem;
    font-size: 0.98rem;
  }

  .career-hero__actions,
  .home-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .bals-btn {
    width: 100%;
  }

  .section-head {
    align-items: center;
  }
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-top-grid,
  .career-hero,
  .callout-card,
  .locator-controls,
  .contact-extra-grid,
  .metrics-grid,
  .story-grid,
  .faq-grid,
  .contact-quick-grid,
  .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid,
  .info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .mobile-team-carousel {
    display: none;
  }
}

@media (min-width: 992px) {
  .page-shell {
    padding-top: 2rem;
    padding-bottom: 4.5rem;
  }

  .home-hero {
    min-height: 680px;
    border-radius: 0 0 2rem 2rem;
  }

  .home-hero__inner {
    padding-top: 4.35rem;
    padding-bottom: 6rem;
  }

  .home-shortcuts-wrap {
    margin-top: -4rem;
  }

  .shortcut-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  .shortcut-card {
    min-height: 198px;
    padding: 1.5rem 1rem 1.3rem;
  }

  .news-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-grid-top {
    grid-template-columns: 1.02fr 1fr;
    align-items: start;
  }

  .timeline-mobile {
    display: none;
  }

  .timeline-desktop {
    display: block;
    margin-top: 2rem;
    padding-top: 1rem;
  }

  .timeline-desktop__track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding-top: 2rem;
  }

  .timeline-desktop__track::before {
    content: "";
    position: absolute;
    top: 3.25rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, rgba(167, 16, 29, 0.22) 0%, rgba(167, 16, 29, 0.45) 45%, rgba(167, 16, 29, 0.2) 100%);
  }

  .timeline-desktop .timeline-node {
    position: relative;
    text-align: center;
    padding: 0 0.65rem;
  }

  .timeline-desktop .timeline-node__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #fff;
    margin-bottom: 1rem;
    box-shadow: var(--bals-shadow-soft);
    border: 1px solid rgba(167, 16, 29, 0.15);
  }

  .timeline-desktop .timeline-node__icon .bals-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--bals-red-softer);
    color: var(--bals-red);
  }

  .values-panel {
    padding: 1.6rem;
  }

  .value-card {
    text-align: left;
    min-height: 180px;
  }

  .locator-controls {
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
  }

  .locator-layout {
    grid-template-columns: 395px minmax(0, 1fr);
    align-items: stretch;
  }

  .map-shell {
    min-height: 640px;
  }

  .contact-top-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .career-hero {
    grid-template-columns: 1.02fr 0.98fr;
    min-height: 420px;
  }

  .career-hero__copy {
    padding: 2.55rem 2.35rem 2.2rem;
  }

  .career-pills {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .callout-card {
    grid-template-columns: 1.2fr auto;
    align-items: center;
    padding: 1.45rem 1.6rem;
  }

  .desktop-footer {
    margin-top: 5.5rem;
  }

  .w-lg-auto {
    width: auto !important;
  }
}


.article-hero {
  padding: 1.2rem 0 0.5rem;
}

.article-grid {
  display: grid;
  gap: 1.25rem;
}

.article-main,
.article-sidebar,
.article-intro-card,
.article-pullquote,
.article-fact-card,
.article-relations,
.article-cta {
  background: var(--bals-surface);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--bals-radius-md);
  box-shadow: var(--bals-shadow-soft);
}

.article-main,
.article-sidebar {
  padding: 1.3rem;
}

.article-lead {
  color: var(--bals-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 68ch;
  margin: 1rem 0 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.article-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: var(--bals-red-softer);
  color: var(--bals-red);
  font-weight: 700;
  font-size: 0.92rem;
}

.article-media {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--bals-radius-md) - 4px);
  aspect-ratio: 16 / 9;
  margin-bottom: 1.2rem;
}

.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-caption {
  margin-top: 0.75rem;
  color: #7a7672;
  font-size: 0.9rem;
}

.article-content {
  display: grid;
  gap: 1.3rem;
}

.article-content h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.article-content p {
  margin: 0;
  color: #403d39;
  line-height: 1.82;
}

.article-intro-card,
.article-pullquote,
.article-fact-card,
.article-cta {
  padding: 1.25rem;
}

.article-intro-card {
  background: linear-gradient(180deg, #fff 0%, #fff6f6 100%);
}

.article-checklist {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.8rem;
  color: #403d39;
  line-height: 1.7;
}

.article-pullquote {
  background: var(--bals-red);
  color: #fff;
}

.article-pullquote blockquote {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.article-pullquote p {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.article-fact-card {
  background: var(--bals-red-softer);
}

.article-fact-card h3,
.article-sidebar h3,
.article-relations h2,
.article-cta h2 {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  line-height: 1.2;
}

.article-facts {
  display: grid;
  gap: 0.9rem;
}

.article-facts strong {
  display: block;
  margin-bottom: 0.2rem;
}

.article-sidebar {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.article-sidebar__list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-sidebar__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.article-sidebar__list p,
.article-sidebar__list span {
  margin: 0;
  color: var(--bals-muted);
  line-height: 1.6;
}

.article-relations {
  margin-top: 1.4rem;
  padding: 1.3rem;
}

.article-related-grid {
  display: grid;
  gap: 1rem;
}

.article-teaser {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--bals-radius-md);
  overflow: hidden;
  box-shadow: var(--bals-shadow-soft);
}

.article-teaser__media {
  aspect-ratio: 16 / 10;
}

.article-teaser__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-teaser__body {
  padding: 1rem 1rem 1.15rem;
}

.article-teaser__body span {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: #7a7672;
  font-size: 0.86rem;
}

.article-teaser__body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  line-height: 1.25;
}

.article-teaser__body p {
  margin: 0 0 0.7rem;
  color: var(--bals-muted);
  line-height: 1.65;
}

.article-teaser__body a {
  color: var(--bals-red);
  font-weight: 700;
}

.article-cta {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.7rem;
  background: linear-gradient(180deg, #fff 0%, #fff6f6 100%);
}

.article-cta p {
  margin: 0;
  color: var(--bals-muted);
  line-height: 1.7;
}

.article-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (min-width: 992px) {
  .article-hero {
    padding-top: 2rem;
  }

  .article-grid {
    grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.85fr);
    align-items: start;
  }

  .article-main,
  .article-sidebar,
  .article-relations,
  .article-cta {
    padding: 1.6rem;
  }

  .article-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/*
 * BALS mobile-first/PWA polish
 * Version: 1.4.0
 */
:root {
  --bals-mobile-nav-height: 74px;
  --bals-focus-ring: 0 0 0 0.22rem rgba(167, 16, 29, 0.18);
}

html {
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  overflow-x: hidden;
  touch-action: manipulation;
}

body::selection {
  background: rgba(167, 16, 29, 0.18);
}

.bals-container {
  width: min(100%, var(--bals-container));
  margin-left: auto;
  margin-right: auto;
}

.content-container {
  width: min(100%, var(--bals-content));
}

.bals-svg-icon {
  display: block;
  width: 1em;
  height: 1em;
}

.bals-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.bals-icon--feature svg,
.bals-icon--value svg,
.bals-icon--contact svg,
.bals-icon--store svg,
.bals-icon--metric svg,
.bals-icon--marker svg {
  width: 1.32rem;
  height: 1.32rem;
}

.bals-icon--footer svg {
  width: 1rem;
  height: 1rem;
}

.bals-icon--plain svg {
  width: 1.15rem;
  height: 1.15rem;
}

.bals-icon--tiny svg {
  width: 0.9rem;
  height: 0.9rem;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 0;
  box-shadow: var(--bals-focus-ring);
}

.bals-btn,
.mobile-menu__link,
.mobile-tabbar__item,
.store-card,
.desktop-search,
.mobile-homebar__toggle,
.mobile-subbar__back,
.mobile-subbar__menu {
  -webkit-tap-highlight-color: transparent;
}

.bals-btn:active,
.mobile-menu__link:active,
.mobile-tabbar__item:active,
.store-card:active {
  transform: translateY(1px) scale(0.99);
}

.desktop-header__inner {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: clamp(1rem, 2vw, 2.25rem);
}

.desktop-header__brand {
  justify-self: start;
}

.desktop-nav {
  flex: unset;
  justify-self: center;
  gap: clamp(1rem, 1.55vw, 1.8rem);
}

.desktop-header__actions {
  justify-self: end;
}

.mobile-homebar,
.mobile-subbar {
  display: grid;
  grid-template-columns: 3.15rem minmax(0, 1fr) 3.15rem;
  align-items: center;
  gap: 0.35rem;
  min-height: calc(64px + env(safe-area-inset-top));
  padding: calc(0.72rem + env(safe-area-inset-top)) max(1rem, env(safe-area-inset-left)) 0.72rem max(1rem, env(safe-area-inset-right));
  box-shadow: 0 8px 22px rgba(30, 23, 20, 0.06);
}

.mobile-homebar {
  position: absolute;
  inset: 0 0 auto 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.84) 100%);
  backdrop-filter: blur(14px);
}

.mobile-subbar {
  position: sticky;
}

.mobile-homebar__spacer {
  width: 2.75rem;
  height: 2.75rem;
}

.mobile-homebar__logo,
.mobile-subbar__title {
  justify-self: center;
  min-width: 0;
  text-align: center;
}

.mobile-homebar__logo img {
  width: min(124px, 34vw);
  margin: 0 auto;
}

.mobile-homebar__toggle,
.mobile-subbar__menu,
.mobile-subbar__back {
  width: 2.75rem;
  min-width: 2.75rem;
  height: 2.75rem;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 7px 18px rgba(30, 23, 20, 0.06);
}

.mobile-homebar__toggle,
.mobile-subbar__menu {
  justify-self: end;
}

.mobile-subbar__back {
  justify-self: start;
  color: var(--bals-red);
}

.mobile-subbar__back-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.mobile-subbar__title {
  color: var(--bals-text);
  font-size: 1.02rem;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 0.25rem;
}

.mobile-tabbar {
  position: fixed;
  left: max(0.75rem, env(safe-area-inset-left));
  right: max(0.75rem, env(safe-area-inset-right));
  bottom: max(0.65rem, env(safe-area-inset-bottom));
  z-index: 1030;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.2rem;
  min-height: var(--bals-mobile-nav-height);
  padding: 0.45rem;
  border: 1px solid rgba(112, 99, 94, 0.14);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(30, 23, 20, 0.16);
  backdrop-filter: blur(18px);
}

.mobile-tabbar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  min-width: 0;
  min-height: 3.6rem;
  border-radius: 1rem;
  color: #746f6b;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.mobile-tabbar__item .bals-icon {
  color: currentColor;
}

.mobile-tabbar__item.is-active,
.mobile-tabbar__item:hover {
  color: var(--bals-red);
  background: var(--bals-red-softer);
}

.bals-offcanvas {
  width: min(92vw, 380px);
  max-width: none;
  border-radius: 1.4rem 0 0 1.4rem;
}

.offcanvas-title img {
  width: 134px;
}

.offcanvas-body {
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
}

.mobile-menu__cta {
  display: grid;
  gap: 0.6rem;
}

.home-hero {
  min-height: min(760px, 88svh);
}

.home-hero__inner {
  padding-top: calc(6rem + env(safe-area-inset-top));
}

.home-hero__copy {
  text-wrap: pretty;
}

.section-title,
.section-head h2,
.home-hero__copy h1 {
  text-wrap: balance;
}

.news-card__media img,
.article-media img,
.article-teaser__media img,
.history-image-card img,
.career-hero__image img {
  transition: transform 0.34s ease;
}

.news-card:hover .news-card__media img,
.article-teaser:hover .article-teaser__media img,
.history-image-card:hover img,
.career-hero:hover .career-hero__image img {
  transform: scale(1.035);
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: calc(var(--bals-mobile-nav-height) + 1.6rem + env(safe-area-inset-bottom));
  }

  .page-shell {
    padding-top: 1.15rem;
    padding-bottom: 2rem;
  }

  .section-space {
    padding: 1.65rem 0;
  }

  .home-hero__copy h1 {
    max-width: 18ch;
  }

  .home-hero__copy p {
    max-width: 32rem;
  }

  .section-head {
    align-items: flex-start;
  }

  .mobile-footer {
    padding-bottom: 0.75rem;
  }
}

@media (max-width: 767.98px) {
  .bals-container {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .section-title {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .section-subtitle,
  .article-lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .home-shortcuts-wrap {
    margin-top: -2.4rem;
  }

  .shortcut-grid,
  .metrics-grid {
    gap: 0.8rem;
  }

  .shortcut-card,
  .metric-card,
  .value-card,
  .story-card,
  .job-card,
  .faq-card,
  .contact-quick-card,
  .community-card,
  .article-main,
  .article-sidebar,
  .article-relations,
  .article-cta {
    border-radius: 1.15rem;
  }

  .news-grid,
  .story-grid,
  .job-grid,
  .faq-grid,
  .contact-quick-grid,
  .community-grid,
  .article-related-grid {
    gap: 0.95rem;
  }

  .section-head {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 0.95rem;
  }

  .section-link {
    justify-self: start;
  }

  .article-meta {
    gap: 0.45rem;
  }

  .article-meta__item {
    font-size: 0.84rem;
    padding: 0.55rem 0.72rem;
  }

  .article-checklist li,
  .article-sidebar__list li {
    gap: 0.7rem;
  }

  .store-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .store-card__link {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 575.98px) {
  .mobile-tabbar {
    left: max(0.55rem, env(safe-area-inset-left));
    right: max(0.55rem, env(safe-area-inset-right));
    bottom: max(0.45rem, env(safe-area-inset-bottom));
    border-radius: 1.15rem;
  }

  .mobile-tabbar__item {
    font-size: 0.68rem;
    min-height: 3.4rem;
  }

  .home-hero {
    min-height: 82svh;
  }

  .home-hero__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.74) 58%, rgba(0, 0, 0, 0.88) 100%);
  }

  .home-hero__copy {
    text-align: left;
  }

  .home-hero__badges {
    gap: 0.55rem;
  }

  .hero-badge {
    padding: 0.65rem 0.75rem;
    font-size: 0.84rem;
  }

  .shortcut-card {
    min-height: 152px;
    padding: 1.05rem 0.72rem;
  }

  .shortcut-card h2,
  .news-card__body h3,
  .value-card h3,
  .metric-card h3,
  .community-card h3 {
    overflow-wrap: anywhere;
  }

  .bals-btn {
    min-height: 3.12rem;
  }

  .desktop-header__brand img,
  .mobile-homebar__logo img,
  .offcanvas-title img,
  .footer-brand img {
    width: min(128px, 42vw);
  }
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }

  .desktop-header {
    padding: 1rem 0;
  }

  .mobile-tabbar {
    display: none;
  }

  .bals-btn {
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
