/* ==========================================================================
   BrightJoys — global stylesheet (brightjoys.vip)
   Library-first: Bootstrap 5.3.3 carries the grid/utilities, this file only
   adds the house theme (ivory / casino green / champagne gold) and the
   decorative components that Bootstrap does not ship.
   NOTE: keep this file free of url(../../images/brightjoys_ab2627618dd46.25911496.jpg) — photo.js fills image paths in HTML,
   and we never want random photos injected into CSS.
   ========================================================================== */
html,body{overflow-x: hidden;max-width:100%;}

/* --------------------------------------------------------------------------
   1. Design tokens + Bootstrap theme overrides (not black, not white)
   -------------------------------------------------------------------------- */
:root {
  --bj-ivory: #f7f2e9;
  --bj-sand: #efe6d4;
  --bj-paper: #fffdf8;
  --bj-ink: #221c13;
  --bj-ink-soft: #6b604d;
  --bj-green: #17402e;
  --bj-green-deep: #0e2b1e;
  --bj-gold: #c29b3c;
  --bj-gold-soft: #e6cb85;
  --bj-line: rgba(34, 28, 19, 0.14);
  --bj-line-light: rgba(247, 242, 233, 0.22);
  --bj-shadow: 0 30px 60px -32px rgba(14, 43, 30, 0.45);
  --bj-radius: 1.25rem;
  --bj-font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --bj-font-body: "Manrope", system-ui, -apple-system, sans-serif;
}

[data-bs-theme="light"] {
  --bs-body-bg: var(--bj-ivory);
  --bs-body-color: var(--bj-ink);
  --bs-border-color: var(--bj-line);
  --bs-link-color: var(--bj-green);
  --bs-link-hover-color: var(--bj-gold);
  --bs-heading-color: var(--bj-ink);
  --bs-secondary-color: var(--bj-ink-soft);
  --bs-primary: var(--bj-green);
  --bs-primary-rgb: 23, 64, 46;
}

/* --------------------------------------------------------------------------
   2. Base typography
   -------------------------------------------------------------------------- */
body {
  font-family: var(--bj-font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .bj-display {
  font-family: var(--bj-font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.bj-h-xl { font-size: clamp(2.6rem, 6.2vw, 4.6rem); }
.bj-h-lg { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.bj-h-md { font-size: clamp(1.5rem, 3vw, 2.4rem); }
.bj-accent { font-style: italic; color: var(--bj-gold); }

/* Small caps label with a gold dash — used above every heading */
.bj-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bj-gold);
}
.bj-eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--bj-gold);
}

.bj-lead { font-size: 1.15rem; color: var(--bj-ink-soft); }

/* --------------------------------------------------------------------------
   3. Buttons (built on Bootstrap button CSS vars)
   -------------------------------------------------------------------------- */
.btn { border-radius: 999px; font-weight: 700; letter-spacing: 0.01em; }

.btn-bj-gold {
  --bs-btn-bg: var(--bj-gold);
  --bs-btn-border-color: var(--bj-gold);
  --bs-btn-color: #241c0c;
  --bs-btn-hover-bg: var(--bj-gold-soft);
  --bs-btn-hover-border-color: var(--bj-gold-soft);
  --bs-btn-hover-color: #241c0c;
  --bs-btn-active-bg: #b38c33;
  --bs-btn-padding-x: 1.6rem;
  --bs-btn-padding-y: 0.7rem;
}
.btn-bj-green {
  --bs-btn-bg: var(--bj-green);
  --bs-btn-border-color: var(--bj-green);
  --bs-btn-color: var(--bj-ivory);
  --bs-btn-hover-bg: var(--bj-green-deep);
  --bs-btn-hover-border-color: var(--bj-green-deep);
  --bs-btn-hover-color: var(--bj-gold-soft);
}
.btn-bj-ghost {
  --bs-btn-color: var(--bj-ivory);
  --bs-btn-border-color: var(--bj-line-light);
  --bs-btn-hover-bg: rgba(247, 242, 233, 0.14);
  --bs-btn-hover-border-color: var(--bj-gold-soft);
  --bs-btn-hover-color: var(--bj-gold-soft);
}
.btn-bj-outline {
  --bs-btn-color: var(--bj-ink);
  --bs-btn-border-color: rgba(34, 28, 19, 0.35);
  --bs-btn-hover-bg: var(--bj-green);
  --bs-btn-hover-border-color: var(--bj-green);
  --bs-btn-hover-color: var(--bj-ivory);
}

.bj-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--bj-green);
}
.bj-link-arrow i { transition: transform 0.25s ease; }
.bj-link-arrow:hover i { transform: translateX(6px); }

/* --------------------------------------------------------------------------
   4. Decorative utilities (pure CSS — no SVG anywhere on this site)
   -------------------------------------------------------------------------- */
.bj-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.bj-blob--green { background: rgba(23, 64, 46, 0.35); }
.bj-blob--gold { background: rgba(194, 155, 60, 0.4); }

.bj-dots {
  background-image: radial-gradient(rgba(34, 28, 19, 0.22) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
}
.bj-dots--light {
  background-image: radial-gradient(rgba(247, 242, 233, 0.3) 1.4px, transparent 1.4px);
}

/* Giant outlined word used as a background typographic layer */
.bj-outline-word {
  font-family: var(--bj-font-display);
  font-weight: 700;
  font-size: clamp(4rem, 14vw, 13rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(34, 28, 19, 0.16);
  user-select: none;
  white-space: nowrap;
}
.bj-outline-word--light { -webkit-text-stroke: 1px rgba(247, 242, 233, 0.2); }

/* Photo frame with offset gold border */
.bj-media {
  position: relative;
  border-radius: var(--bj-radius);
  overflow: hidden;
  background: var(--bj-sand);
}
.bj-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bj-media__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--bj-ivory);
  background: linear-gradient(transparent, rgba(14, 43, 30, 0.85));
}
.bj-media--frame::after {
  content: "";
  position: absolute;
  inset: 0.9rem;
  border: 1px solid rgba(247, 242, 233, 0.55);
  border-radius: calc(var(--bj-radius) - 0.5rem);
  pointer-events: none;
}

/* Numbered index chip (01, 02 …) */
.bj-index-num {
  font-family: var(--bj-font-display);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--bj-gold);
}

/* Pulsing "live" dot */
.bj-live-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: bj-pulse 1.8s infinite;
}
@keyframes bj-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* Glass card (floating hero widgets, glass panels) */
.bj-glass {
  background: rgba(255, 253, 248, 0.12);
  border: 1px solid rgba(247, 242, 233, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--bj-radius);
}

/* --------------------------------------------------------------------------
   5. Header (top contact strip + navbar)
   -------------------------------------------------------------------------- */
.bj-topbar {
  background: var(--bj-green-deep);
  color: rgba(247, 242, 233, 0.85);
  font-size: 0.82rem;
  font-weight: 600;
}
.bj-topbar__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 1.4rem;
  padding: 0.5rem 0;
}
.bj-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}
.bj-topbar__item i { color: var(--bj-gold); }
a.bj-topbar__item:hover { color: var(--bj-gold-soft); }
.bj-topbar__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--bj-gold-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.bj-nav {
  background: rgba(247, 242, 233, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bj-line);
  transition: box-shadow 0.3s ease;
}
.bj-nav.is-scrolled { box-shadow: 0 12px 30px -18px rgba(14, 43, 30, 0.4); }

.bj-brand { display: flex; align-items: center; gap: 0.7rem; }
.bj-brand img { border-radius: 0.6rem; }
.bj-brand__text {
  font-family: var(--bj-font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--bj-ink);
  line-height: 1;
}
.bj-brand__text em { color: var(--bj-gold); font-style: italic; }
.bj-brand__text small {
  display: block;
  font-family: var(--bj-font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bj-ink-soft);
}
.bj-nav .nav-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bj-ink);
  padding: 0.5rem 1rem;
  border-radius: 999px;
}
.bj-nav .nav-link:hover { color: var(--bj-gold); }
.bj-nav .nav-link.active { background: var(--bj-green); color: var(--bj-ivory); }

.bj-nav__toggler {
  border: 1px solid var(--bj-line);
  border-radius: 0.7rem;
  padding: 0.45rem 0.8rem;
  color: var(--bj-ink);
}
.bj-nav__toggler:focus { box-shadow: 0 0 0 3px rgba(194, 155, 60, 0.35); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.bj-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--bj-ivory);
  overflow: hidden;
  isolation: isolate;
}
.bj-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--bj-line-light);
  background: rgba(14, 43, 30, 0.45);
  backdrop-filter: blur(8px);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bj-hero__panel {
  border-top: 1px solid var(--bj-line-light);
  background: rgba(14, 43, 30, 0.5);
  backdrop-filter: blur(10px);
}
.bj-hero__img {
  border-radius: var(--bj-radius);
  border: 1px solid var(--bj-line-light);
  box-shadow: var(--bj-shadow);
  transform: rotate(2deg);
}
.bj-metric {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
}
.bj-metric i {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 0.8rem;
  background: rgba(194, 155, 60, 0.2);
  color: var(--bj-gold-soft);
  font-size: 1.05rem;
}
.bj-metric strong { font-family: var(--bj-font-display); font-size: 1.35rem; line-height: 1; }
.bj-metric small { color: rgba(247, 242, 233, 0.75); font-size: 0.78rem; letter-spacing: 0.06em; }

/* --------------------------------------------------------------------------
   7. Marquee ticker
   -------------------------------------------------------------------------- */
.bj-marquee { overflow: hidden; }
.bj-marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: bj-marquee 32s linear infinite;
}
.bj-marquee--reverse .bj-marquee__track { animation-direction: reverse; }
.bj-marquee:hover .bj-marquee__track { animation-play-state: paused; }
.bj-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--bj-font-display);
  font-size: 1.15rem;
  white-space: nowrap;
}
@keyframes bj-marquee {
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   8. Bento grid
   -------------------------------------------------------------------------- */
.bj-bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; }
.bj-bento__cell {
  position: relative;
  border-radius: var(--bj-radius);
  border: 1px solid var(--bj-line);
  background: var(--bj-paper);
  padding: 1.8rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bj-bento__cell:hover { transform: translateY(-4px); box-shadow: var(--bj-shadow); }
.bj-bento__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 0.9rem;
  background: rgba(23, 64, 46, 0.08);
  color: var(--bj-green);
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}
.bj-bento__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bj-ink-soft);
}

/* --------------------------------------------------------------------------
   9. Kinetic accordion (services)
   -------------------------------------------------------------------------- */
.bj-kinetic__item { border-top: 1px solid var(--bj-line); }
.bj-kinetic__item:last-child { border-bottom: 1px solid var(--bj-line); }
.bj-kinetic__btn {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  padding: 1.4rem 0.4rem;
  background: none;
  border: 0;
  text-align: left;
  color: var(--bj-ink);
  transition: padding-left 0.25s ease;
}
.bj-kinetic__btn:hover { padding-left: 1rem; color: var(--bj-green); }
.bj-kinetic__btn[aria-expanded="true"] { color: var(--bj-green); }
.bj-kinetic__plus {
  margin-left: auto;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--bj-line);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.bj-kinetic__btn[aria-expanded="true"] .bj-kinetic__plus {
  transform: rotate(45deg);
  background: var(--bj-green);
  color: var(--bj-ivory);
}
.bj-kinetic__body { padding: 0 0.4rem 1.6rem; }
.bj-kinetic__num {
  font-family: var(--bj-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bj-gold);
  min-width: 2.2rem;
}

/* --------------------------------------------------------------------------
   10. Horizontal showcase reel
   -------------------------------------------------------------------------- */
.bj-reel__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: thin;
}
.bj-reel__card {
  position: relative;
  flex: 0 0 min(440px, 82vw);
  min-height: 480px;
  border-radius: var(--bj-radius);
  overflow: hidden;
  scroll-snap-align: start;
  color: var(--bj-ivory);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
}
.bj-reel__card-body { position: relative; z-index: 2; padding: 1.8rem; }
.bj-reel__progress { height: 4px; background: var(--bj-line); border-radius: 999px; overflow: hidden; }
.bj-reel__progress-bar { height: 100%; width: 20%; background: var(--bj-gold); transition: width 0.3s ease; }

/* --------------------------------------------------------------------------
   11. Telemetry (metrics dashboard)
   -------------------------------------------------------------------------- */
.bj-telemetry {
  background: #101a14;
  color: var(--bj-ivory);
  border-radius: var(--bj-radius);
  border: 1px solid rgba(247, 242, 233, 0.14);
  overflow: hidden;
}
.bj-telemetry__status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  align-items: center;
  padding: 0.9rem 1.6rem;
  border-bottom: 1px solid var(--bj-line-light);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(247, 242, 233, 0.75);
}
.bj-counter {
  padding: 2rem 1.6rem;
  border-right: 1px solid var(--bj-line-light);
}
.bj-counter:last-child { border-right: 0; }
.bj-counter__value {
  font-family: var(--bj-font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1;
  color: var(--bj-gold-soft);
}
.bj-counter__delta {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 0.8rem;
  color: #86efac;
}

/* --------------------------------------------------------------------------
   12. Process roadmap
   -------------------------------------------------------------------------- */
.bj-road { position: relative; }
.bj-road__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.35rem;
  width: 2px;
  background: linear-gradient(var(--bj-gold), var(--bj-line));
}
.bj-road__node {
  position: relative;
  z-index: 1;
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bj-paper);
  border: 2px solid var(--bj-gold);
  color: var(--bj-green);
  flex: 0 0 auto;
}
.bj-road__tags .badge {
  background: rgba(23, 64, 46, 0.08);
  color: var(--bj-green);
  font-weight: 700;
  border: 1px solid var(--bj-line);
}

/* --------------------------------------------------------------------------
   13. Testimonials
   -------------------------------------------------------------------------- */
.bj-quote-mark {
  font-family: var(--bj-font-display);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--bj-gold);
}
.bj-wave { display: flex; align-items: flex-end; gap: 3px; height: 26px; }
.bj-wave span {
  width: 3px;
  border-radius: 2px;
  background: var(--bj-gold);
  animation: bj-wave 1.1s ease-in-out infinite;
}
.bj-wave span:nth-child(2n) { animation-delay: 0.15s; height: 60%; }
.bj-wave span:nth-child(3n) { animation-delay: 0.3s; height: 90%; }
@keyframes bj-wave {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* --------------------------------------------------------------------------
   14. Services directory rows
   -------------------------------------------------------------------------- */
.bj-service-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid var(--bj-line);
}
.bj-service-row__icon {
  width: 3.6rem;
  height: 3.6rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(23, 64, 46, 0.08);
  color: var(--bj-green);
  font-size: 1.3rem;
}

/* --------------------------------------------------------------------------
   15. Comparison table
   -------------------------------------------------------------------------- */
.bj-compare th, .bj-compare td {
  padding: 1rem 1.2rem;
  border-color: var(--bj-line);
  vertical-align: middle;
}
.bj-compare thead th {
  font-family: var(--bj-font-display);
  font-size: 1.05rem;
  background: var(--bj-green);
  color: var(--bj-ivory);
  border-color: rgba(247, 242, 233, 0.2);
}
.bj-compare .bj-compare__us { background: rgba(194, 155, 60, 0.12); }

/* --------------------------------------------------------------------------
   16. Team roster
   -------------------------------------------------------------------------- */
.bj-roster__row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.3rem 0.6rem;
  border-top: 1px solid var(--bj-line);
  cursor: default;
  transition: background 0.25s ease, padding-left 0.25s ease;
}
.bj-roster__row:hover { background: rgba(194, 155, 60, 0.08); padding-left: 1.2rem; }
.bj-roster__name {
  font-family: var(--bj-font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin: 0;
  transition: color 0.25s ease;
}
.bj-roster__row:hover .bj-roster__name { color: var(--bj-green); }
.bj-roster__avatar {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bj-gold-soft);
}
.bj-roster__photo {
  position: sticky;
  top: 110px;
  border-radius: var(--bj-radius);
  overflow: hidden;
  box-shadow: var(--bj-shadow);
  aspect-ratio: 4 / 5;
  background: var(--bj-sand);
}
.bj-roster__photo img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------------------
   17. History timeline
   -------------------------------------------------------------------------- */
.bj-timeline { position: relative; padding-left: 2rem; }
.bj-timeline::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(var(--bj-gold), var(--bj-line));
}
.bj-timeline__item { position: relative; padding-bottom: 2rem; }
.bj-timeline__item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.45rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--bj-gold);
  border: 3px solid var(--bj-ivory);
  box-shadow: 0 0 0 2px var(--bj-gold);
}

/* --------------------------------------------------------------------------
   18. Awards ledger
   -------------------------------------------------------------------------- */
.bj-ledger__row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1rem;
  border-bottom: 1px solid var(--bj-line);
  transition: background 0.25s ease;
}
.bj-ledger__row:hover { background: rgba(23, 64, 46, 0.05); }

/* --------------------------------------------------------------------------
   19. Forms, toast, cookie banner
   -------------------------------------------------------------------------- */
.form-control, .form-select {
  border-radius: 0.8rem;
  border-color: var(--bj-line);
  padding: 0.75rem 1rem;
  background-color: var(--bj-paper);
}
.form-control:focus, .form-select:focus {
  border-color: var(--bj-gold);
  box-shadow: 0 0 0 0.2rem rgba(194, 155, 60, 0.22);
}
.form-floating > label { color: var(--bj-ink-soft); }

.bj-toast-host {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1090;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.bj-toast {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 280px;
  max-width: 380px;
  padding: 0.9rem 1.1rem;
  border-radius: 0.9rem;
  background: var(--bj-green-deep);
  color: var(--bj-ivory);
  box-shadow: var(--bj-shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-weight: 600;
  font-size: 0.95rem;
}
.bj-toast.is-visible { opacity: 1; transform: translateY(0); }
.bj-toast--success i { color: #86efac; }
.bj-toast--error { background: #7c2d12; }
.bj-toast--error i { color: #fca5a5; }

.bj-cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  max-width: 640px;
  margin: 0 auto;
  padding: 1.1rem 1.3rem;
  border-radius: 1rem;
  background: rgba(14, 43, 30, 0.97);
  color: var(--bj-ivory);
  border: 1px solid var(--bj-line-light);
  box-shadow: var(--bj-shadow);
  transform: translateY(140%);
  transition: transform 0.45s ease;
}
.bj-cookie.is-visible { transform: translateY(0); }

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.bj-footer {
  background: var(--bj-green-deep);
  color: rgba(247, 242, 233, 0.85);
  overflow: hidden;
}
.bj-footer a { color: rgba(247, 242, 233, 0.85); text-decoration: none; }
.bj-footer a:hover { color: var(--bj-gold-soft); }
.bj-footer__title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bj-gold-soft);
  margin-bottom: 1rem;
}
.bj-footer__word {
  font-family: var(--bj-font-display);
  font-weight: 700;
  font-size: clamp(3rem, 11vw, 9rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247, 242, 233, 0.18);
  user-select: none;
}
.bj-footer__disclaimer {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin: 2.5rem 0 0;
  padding: 1.1rem 1.3rem;
  border: 1px dashed var(--bj-line-light);
  border-radius: 0.9rem;
  font-size: 0.9rem;
}
.bj-footer__disclaimer i { color: var(--bj-gold-soft); margin-top: 0.2rem; }
.bj-footer__bottom { border-top: 1px solid var(--bj-line-light); }

/* --------------------------------------------------------------------------
   21. Shared section rhythm + responsive polish
   -------------------------------------------------------------------------- */
.bj-section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }
.bj-section--dark { background: var(--bj-green-deep); color: var(--bj-ivory); }
.bj-section--sand { background: var(--bj-sand); }

.bj-divider { height: 1px; background: var(--bj-line); border: 0; opacity: 1; }

@media (max-width: 991.98px) {
  .bj-hero { min-height: auto; }
  .bj-road__line { left: 1.35rem; }
  .bj-counter { border-right: 0; border-bottom: 1px solid var(--bj-line-light); }
  .bj-telemetry .row > div:last-child .bj-counter { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .bj-marquee__track, .bj-wave span { animation: none; }
}
