/* ════════════════════════════════════════════════════════════
   Batty Developments Ltd. Design System
   Navy + brass palette, Cormorant Garamond display headings,
   Montserrat body text.
   ════════════════════════════════════════════════════════════ */

:root {
  --bd-navy: #041e42;
  --bd-navy-deep: #02132b;
  --bd-brass: #b6985a;
  --bd-brass-dark: #9a7f45;
  --bd-off-white: #f8f7f4;
  --bd-ink: #1f2430;
  --bd-muted: #5c6470;
  --bd-line: #e7e4dd;
  --bd-font-display: 'Cormorant Garamond', Georgia, serif;
  --bd-font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--bd-font-body);
  background: #fff;
  color: var(--bd-ink);
  font-size: 1.0625rem; /* 17px */
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bd-font-display);
  font-weight: 600;
  line-height: 1.25;
  color: inherit;
}

p {
  font-family: var(--bd-font-body);
}

a {
  color: var(--bd-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--bd-brass);
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

::selection {
  background: var(--bd-navy);
  color: #fff;
}

/* ── Cookie consent ─────────────────────────────────────────── */

.bd-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1900;
  background: var(--bd-navy);
  color: #fff;
  border-top: 3px solid var(--bd-brass);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.bd-cookie-banner.bd-cookie-visible {
  transform: translateY(0);
}

.bd-cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.bd-cookie-text {
  flex: 1 1 auto;
}

.bd-cookie-title {
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
  color: #fff;
}

.bd-cookie-text p,
.bd-cookie-confirm-text {
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.bd-cookie-confirm-text {
  flex: 1 1 auto;
}

.bd-cookie-text a {
  color: var(--bd-brass);
  text-decoration: underline;
}

.bd-cookie-text a:hover,
.bd-cookie-text a:focus {
  color: #fff;
}

.bd-cookie-actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Both choices are deliberately the same size and weight, so neither is
   nudged ahead of the other. */
.bd-cookie-btn {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.4rem;
  min-width: 200px;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bd-cookie-accept {
  background: var(--bd-brass);
  border-color: var(--bd-brass);
  color: var(--bd-navy);
}

.bd-cookie-accept:hover,
.bd-cookie-accept:focus {
  background: #fff;
  border-color: #fff;
}

.bd-cookie-decline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.bd-cookie-decline:hover,
.bd-cookie-decline:focus {
  background: #fff;
  border-color: #fff;
  color: var(--bd-navy);
}

.bd-cookie-btn:focus-visible {
  outline: 3px solid var(--bd-brass);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .bd-cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1.1rem;
    padding: 1.25rem 1.1rem;
  }

  .bd-cookie-actions {
    flex-direction: column;
  }

  .bd-cookie-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bd-cookie-banner {
    transition: none;
  }
}

/* ── Skip link ──────────────────────────────────────────────── */

.bd-skip-link {
  position: fixed;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--bd-navy);
  color: #fff !important;
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0 0 3px 0;
}

.bd-skip-link:focus {
  left: 0;
}

/* ── Layout ─────────────────────────────────────────────────── */

.container {
  width: 90%;
  max-width: 1140px;
  margin: auto;
}

/* ── Eyebrow + section headings ─────────────────────────────── */

.bd-eyebrow {
  display: block;
  font-family: var(--bd-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--bd-brass);
  margin-bottom: 0.75rem;
}

.bd-section-heading {
  color: var(--bd-navy);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-bottom: 1rem;
}

.bd-rule {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--bd-brass);
  border: none;
  margin: 0 auto 2.25rem;
}

.bd-rule-left {
  margin: 0 0 2.25rem;
}

.bd-section {
  padding: 4.5rem 0;
}

.bd-section-alt {
  background: var(--bd-off-white);
}

/* ── Tagline strip ──────────────────────────────────────────── */

.heading {
  background-color: var(--bd-navy);
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.heading strong {
  font-family: var(--bd-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}

/* ── Buttons ────────────────────────────────────────────────── */

.btn {
  cursor: pointer;
  display: inline-block;
  font-family: var(--bd-font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background-color 0.25s ease, color 0.25s ease,
              border-color 0.25s ease, transform 0.25s ease,
              box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(2, 19, 43, 0.18);
}

.btn-primary,
.btn-primary:focus {
  color: #fff !important;
  background-color: var(--bd-navy) !important;
  border-color: var(--bd-navy) !important;
}

.btn-primary:hover {
  background-color: var(--bd-navy-deep) !important;
  border-color: var(--bd-navy-deep) !important;
}

.btn-accent,
.btn-accent:focus {
  color: #fff !important;
  background-color: var(--bd-brass);
  border-color: var(--bd-brass);
}

.btn-accent:hover {
  color: #fff !important;
  background-color: var(--bd-brass-dark);
  border-color: var(--bd-brass-dark);
}

.btn-ghost,
.btn-ghost:focus {
  color: #fff !important;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-ghost:hover {
  color: var(--bd-navy) !important;
  background-color: #fff;
  border-color: #fff;
}

.btn-light {
  color: var(--bd-navy) !important;
  background-color: #fff;
  border-color: #fff;
}

.btn i {
  transition: transform 0.25s ease;
  margin-left: 0.35rem;
  font-size: 0.7rem;
}

.btn:hover i {
  transform: translateX(4px);
}

/* ── Navbar ─────────────────────────────────────────────────── */

.navbar {
  background-color: rgba(4, 30, 66, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 1020;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.bd-nav-solid {
  background-color: var(--bd-navy);
  box-shadow: 0 4px 24px rgba(2, 19, 43, 0.35);
}

.navbar-collapse {
  z-index: 1;
}

.mainLogo {
  width: 225px;
  height: auto;
  transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--bd-font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1.1rem;
  position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 0.25rem;
  height: 1px;
  background: var(--bd-brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link:focus::after {
  transform: scaleX(1);
}

/* Current page */
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar .dropdown-menu .dropdown-item.active {
  background-color: var(--bd-off-white);
  color: var(--bd-brass-dark);
}

/* Dropdown */
.navbar .dropdown-menu {
  background-color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 0;
  min-width: 200px;
  box-shadow: 0 14px 38px rgba(2, 19, 43, 0.18);
  margin-top: 0;
}

.navbar .dropdown-menu .dropdown-item {
  color: var(--bd-navy);
  padding: 0.6rem 1.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease,
              padding-left 0.2s ease;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
  background-color: var(--bd-off-white);
  color: var(--bd-brass-dark);
  padding-left: 1.6rem;
}

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* ── Inner page hero ────────────────────────────────────────── */

.bd-page-hero {
  position: relative;
  min-height: 52vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.bd-page-hero-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(180deg,
              rgba(2, 19, 43, 0.35) 0%,
              rgba(2, 19, 43, 0.55) 55%,
              rgba(2, 19, 43, 0.78) 100%);
}

.bd-page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1rem;
}

.bd-page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 0.5rem;
  color: #fff;
}

.bd-page-hero p {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.9;
  margin-bottom: 0;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .bd-page-hero { min-height: 38vh; }
}

/* ── Gallery modal arrows ───────────────────────────────────── */

.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(2, 19, 43, 0.5);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  padding: 1rem 0.75rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
  line-height: 1;
}

.modal-arrow:hover { background: rgba(2, 19, 43, 0.85); }
.modal-arrow:disabled { opacity: 0.15; cursor: default; }
.modal-arrow-left  { left: 0;  border-radius: 0 3px 3px 0; }
.modal-arrow-right { right: 0; border-radius: 3px 0 0 3px; }

/* Gallery thumbnails */
.img-thumbnail {
  border: 1px solid var(--bd-line);
  border-radius: 4px;
  padding: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-thumbnail:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(2, 19, 43, 0.16);
}

/* ── Info card grids (ground works lists, affiliates) ───────── */

.info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-bottom: 40px;
}

.info-cards-double {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-bottom: 40px;
}

.info-cards-triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin-bottom: 20px;
}

.info-cards-five {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
  margin-bottom: 20px;
}

.info-cards img {
  width: 100%;
  margin-bottom: 20px;
}

.info-cards h3 {
  margin-bottom: 5px;
}

.info-cards a {
  display: inline-block;
  padding-top: 10px;
  color: var(--bd-navy);
  text-transform: uppercase;
  font-weight: 600;
}

.info-cards a:hover {
  color: var(--bd-brass);
}

.info-cards a:hover i {
  margin-left: 10px;
}

/* ── Affiliate strips ───────────────────────────────────────── */

.bd-affiliates {
  background: var(--bd-off-white);
  border-top: 1px solid var(--bd-line);
  padding: 3rem 0 2rem;
}

.bd-affiliates .footerLogo {
  text-align: center;
  margin: 0 auto 2.5rem;
}

.bd-affiliates .footerLogo img {
  width: 230px;
  height: auto;
}

.footer-small img,
.info-cards-aff img {
  height: auto;
}

.footer-small {
  align-items: center;
  width: 90%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.footer-small img {
  display: block;
  margin: 0 auto;
  max-width: 55%;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.footer-small img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.06);
}

.info-cards-aff {
  grid-gap: 6px;
  margin-bottom: 8px;
}

.info-cards-aff img {
  max-width: 70%;
}

.info-cards-five.footer-small {
  grid-gap: 6px;
  margin-bottom: 8px;
}

.affiliates {
  padding-bottom: 20px;
}

/* ── Footer ─────────────────────────────────────────────────── */

.page-footer {
  background-color: var(--bd-navy) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  padding-top: 3.5rem !important;
}

.page-footer h5 {
  font-family: var(--bd-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bd-brass);
  margin-bottom: 1.1rem;
}

.page-footer ul li {
  margin-bottom: 0.45rem;
}

.page-footer a {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.9rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.page-footer a:hover {
  color: #fff !important;
  padding-left: 4px;
}

.bd-footer-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2.5rem;
  padding: 1.75rem 1rem 0.5rem;
  font-size: 0.9rem;
}

.bd-footer-contact p {
  margin-bottom: 0.35rem;
}

/* Statutory registered-company details. Quieter than the contact strip
   above it, but must stay legible. */
.bd-footer-registered {
  padding: 1.25rem 1rem 0;
  font-size: 0.76rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

.bd-footer-registered p {
  margin-bottom: 0;
}

.footer-copyright {
  background: var(--bd-navy-deep);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1.75rem;
}

.footer-copyright a {
  color: rgba(255, 255, 255, 0.75) !important;
}

.footer-copyright a:hover {
  color: #fff !important;
  padding-left: 0;
}

/* ── Fade animations ────────────────────────────────────────── */

.fade-in {
  animation: fadeIn ease 1.5s;
}

.fade-in2 {
  animation: fadeIn ease 2s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in, .fade-in2 { animation: none; }
  .btn:hover { transform: none; }
}

/* ── Intro copy ─────────────────────────────────────────────── */

.bd-intro {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  color: var(--bd-muted);
}

/* ── Gallery grid ───────────────────────────────────────────── */

.bd-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  grid-auto-flow: dense;
  gap: 12px;
}

.bd-gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.bd-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bd-gallery-item:hover img {
  transform: scale(1.06);
}

.bd-gallery-item::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(2, 19, 43, 0);
  transition: background 0.3s ease;
  z-index: 1;
}

.bd-gallery-item:hover::before {
  background: rgba(2, 19, 43, 0.28);
}

.bd-gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.3rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.bd-gallery-item:hover::after {
  opacity: 1;
}

.bd-gallery-item:nth-child(8n+1) {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 991px) {
  .bd-gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
}

@media (max-width: 575px) {
  .bd-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 8px;
  }
}

/* ── Lightbox ───────────────────────────────────────────────── */

#bdLightbox .modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
}

#bdLightbox .modal-body {
  position: relative;
  padding: 0;
  text-align: center;
}

#bdLightbox #bdLightboxImage {
  max-width: 100%;
  max-height: 82vh;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.bd-lightbox-close {
  position: absolute;
  top: -2.4rem;
  right: 0;
  color: #fff;
  opacity: 0.8;
  font-size: 2rem;
  font-weight: 400;
  z-index: 5;
  text-shadow: none;
  background: none;
  border: none;
  cursor: pointer;
}

.bd-lightbox-close:hover {
  color: #fff;
  opacity: 1;
}

.bd-lightbox-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.75rem 0.25rem;
  font-size: 0.85rem;
}

.modal-backdrop.show {
  opacity: 0.85;
}

/* ── Team members ───────────────────────────────────────────── */

.bd-team-member {
  padding: 3rem 0;
}

.bd-team-member + .bd-team-member {
  border-top: 1px solid var(--bd-line);
}

.bd-team-member img {
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(2, 19, 43, 0.12);
  margin-bottom: 1.5rem;
}

.bd-team-member h3 {
  font-size: 1.9rem;
  color: var(--bd-navy);
  margin-bottom: 0.15rem;
}

.bd-team-role {
  display: block;
  font-family: var(--bd-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bd-brass);
  margin-bottom: 1.1rem;
}

.bd-team-member p {
  font-size: 0.95rem;
}

/* ── Forms ──────────────────────────────────────────────────── */

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bd-navy);
  margin-bottom: 0.35rem;
}

.form-control {
  border-radius: 2px;
  border-color: var(--bd-line);
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
}

.form-control:focus {
  border-color: var(--bd-navy);
  box-shadow: 0 0 0 0.15rem rgba(4, 30, 66, 0.15);
}

/* Honeypot: kept in the layout for bots, out of sight for everyone else.
   display:none is avoided because some bots skip hidden fields. */
.bd-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.bd-contact-info i {
  color: var(--bd-brass);
}

.bd-contact-info p {
  font-size: 0.92rem;
}

#status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bd-navy);
}

/* ── Service lists (ground works) ───────────────────────────── */

.bd-subheading {
  color: var(--bd-navy);
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

.bd-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.bd-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.bd-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 2px;
  background: var(--bd-brass);
}

/* ── Legal pages ────────────────────────────────────────────── */

.bd-page-header {
  background: var(--bd-navy);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1rem 3rem;
}

.bd-page-header .bd-eyebrow {
  color: #cfb87c;
}

.bd-page-header h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 0;
  color: #fff;
}

.bd-legal {
  max-width: 820px;
  margin: 0 auto;
}

.bd-legal h2 {
  color: var(--bd-navy);
  font-size: 1.65rem;
  margin: 2.5rem 0 0.75rem;
}

.bd-legal p,
.bd-legal li {
  font-size: 0.95rem;
}

.bd-legal ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.bd-legal ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
}

.bd-legal ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 2px;
  background: var(--bd-brass);
}

.bd-legal-updated {
  font-size: 0.85rem;
  color: var(--bd-muted);
}

/* ── Media queries ──────────────────────────────────────────── */

@media (max-width: 1100px) {
  .info-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 870px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 750px) {
  .bd-affiliates .footerLogo img {
    width: 190px;
  }
}

@media (max-width: 767px) {
  .info-cards-five {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .info-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .info-cards-aff {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .info-cards-five {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-small img {
    max-width: 78%;
  }

  .info-cards-double {
    grid-template-columns: repeat(1, 1fr);
  }

  .mainLogo {
    width: 170px;
  }

  .container { width: 100%; }
}
