/* Bralsford, Stubbs & Associates — Brand Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --cnvs-themecolor: #990033;
  --cnvs-themecolor-rgb: 153,0,51;
  --bs-gold: #ffcc66;
  --bs-cream: #fdf8f0;
  --bs-ink: #1a1010;
  --bs-mid: #4a3a3a;
  --bs-rule: rgba(153,0,51,0.15);
}

/* TYPOGRAPHY */
body { font-family: 'Source Sans 3', sans-serif; color: var(--bs-ink); }
h1,h2,h3,h4,h5,h6 { font-family: 'Libre Baskerville', serif; text-wrap: balance; }

/* ==========================================================
   HEADER
========================================================== */

#header {
  border-bottom: 3px solid var(--cnvs-themecolor);
}

#header.dark {
  background-color: #0f0606;
}

#header .header-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}

#header .menu-link {
  color: rgba(255,255,255,0.88);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

#header:not(.dark) .menu-link {
  color: var(--bs-ink);
}

#header .menu-link:hover,
#header .menu-link:focus,
#header .menu-item.active > .menu-link {
  color: var(--bs-gold) !important;
}

/* Logo */
#logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-right: 24px;
}

#logo .bs-wordmark {
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 1.1;
  text-decoration: none !important;
}

#logo .bs-wordmark img {
  display: block;
  width: auto !important;
  height: 80px !important;
  max-width: none !important;
  object-fit: contain;
}

.bs-wordmark .wm-main {
  color: #fff;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.bs-wordmark .wm-sub {
  margin-top: 1px;
  color: var(--bs-gold);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Desktop navigation */
#header .primary-menu {
  margin-left: auto;
}

#header .menu-container {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

#header .menu-container > .menu-item > .menu-link {
  padding-right: 10px;
  padding-left: 10px;
}

/* Enquire button inside menu */
.bs-menu-cta-item {
  margin-left: 12px;
}

.bs-menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 2px;
  background: var(--cnvs-themecolor);
  color: #fff !important;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.bs-menu-cta:hover,
.bs-menu-cta:focus {
  background: #7a0028;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(var(--cnvs-themecolor-rgb),0.35);
}
/* HERO */
#home {
  background-color: #0f0606;
  background-image: url('https://canvas-builder.nyc3.cdn.digitaloceanspaces.com/images/legal/001/hero.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
#home::before { content:''; position:absolute; inset:0; background: linear-gradient(120deg, rgba(10,2,2,0.88) 45%, rgba(153,0,51,0.28) 100%); z-index:1; }
.bs-hero-inner { position: relative; z-index: 2; }
@media (min-width: 992px) {
  .bs-hero-inner { padding-top: calc(var(--cnvs-header-height, 80px) + 3rem); padding-bottom: 5rem; }
}
.bs-rule-line { width: 56px; height: 3px; background: var(--cnvs-themecolor); margin-bottom: 1.5rem; }
.bs-hero-eyebrow { font-family: 'Source Sans 3', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bs-gold); margin-bottom: 1rem; }
.bs-hero-h1 { font-family: 'Libre Baskerville', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 1.5rem; }
.bs-hero-h1 em { font-style: italic; color: var(--bs-gold); }
.bs-hero-lead { font-size: 1.15rem; color: rgba(255,255,255,0.82); line-height: 1.7; max-width: 580px; margin-bottom: 2.5rem; }
.bs-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--cnvs-themecolor); color: #fff !important; font-family: 'Source Sans 3', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 14px 32px; border-radius: 2px; text-decoration: none; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; cursor: pointer; border: none; }
.bs-btn-primary:hover { background: #7a0028; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(var(--cnvs-themecolor-rgb),0.4); }
.bs-btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff !important; font-family: 'Source Sans 3', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 13px 28px; border-radius: 2px; border: 2px solid rgba(255,255,255,0.45); text-decoration: none; transition: border-color 0.2s, background 0.2s; cursor: pointer; }
.bs-btn-outline:hover { border-color: var(--bs-gold); background: rgba(255,204,102,0.08); }

.bs-trust-strip { display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; margin-top: 3rem; }
.bs-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.bs-trust-item i { color: var(--bs-gold); font-size: 1rem; }

/* SECTION SHARED */
.bs-section-label { font-family: 'Source Sans 3', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cnvs-themecolor); margin-bottom: 0.75rem; }
.bs-section-title { font-family: 'Libre Baskerville', serif; font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 700; color: var(--bs-ink); line-height: 1.2; }
.bs-section-title.light { color: #fff; }
.bs-section-lead { font-size: 1.05rem; color: var(--bs-mid); line-height: 1.75; }
.bs-divider { width: 48px; height: 3px; background: var(--cnvs-themecolor); margin: 1.25rem 0 1.75rem; }

/* INTRO / SERVICES STRIP */
.bs-intro { background: var(--bs-cream); padding: 5rem 0; }
.bs-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 768px) { .bs-intro-grid { grid-template-columns: 1fr; } }
.bs-intro-stat { display: flex; flex-direction: column; border-left: 3px solid var(--cnvs-themecolor); padding-left: 1.25rem; }
.bs-intro-stat .stat-num { font-family: 'Libre Baskerville', serif; font-size: 2.4rem; font-weight: 700; color: var(--cnvs-themecolor); line-height: 1; }
.bs-intro-stat .stat-label { font-size: 0.82rem; color: var(--bs-mid); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 4px; }
.bs-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 520px) { .bs-stats-row { grid-template-columns: 1fr 1fr; } }

/* SERVICES */
.bs-services { background: #fff; padding: 5.5rem 0; }
.bs-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 900px) { .bs-services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .bs-services-grid { grid-template-columns: 1fr; } }
.bs-service-card { border: 1px solid rgba(153,0,51,0.12); border-top: 3px solid var(--cnvs-themecolor); padding: 2rem 1.75rem; background: #fff; transition: box-shadow 0.25s, transform 0.2s; cursor: default; }
.bs-service-card:hover { box-shadow: 0 8px 32px rgba(var(--cnvs-themecolor-rgb),0.1); transform: translateY(-3px); }
.bs-service-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(var(--cnvs-themecolor-rgb),0.08); border-radius: 50%; margin-bottom: 1.25rem; }
.bs-service-icon i { font-size: 1.35rem; color: var(--cnvs-themecolor); }
.bs-service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--bs-ink); margin-bottom: 0.75rem; }
.bs-service-card p { font-size: 0.92rem; color: var(--bs-mid); line-height: 1.65; margin: 0; }

/* ABOUT */
.bs-about { background: var(--bs-cream); padding: 5.5rem 0; }
.bs-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 840px) { .bs-about-grid { grid-template-columns: 1fr; } }
.bs-about-img-wrap { position: relative; }
.bs-about-img-wrap img { width: 100%; border-radius: 2px; aspect-ratio: 4/5; object-fit: cover; }
.bs-about-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--cnvs-themecolor); color: #fff; padding: 1.5rem; text-align: center; border-radius: 2px; box-shadow: 0 8px 24px rgba(var(--cnvs-themecolor-rgb),0.35); }
.bs-about-badge .badge-num { font-family: 'Libre Baskerville', serif; font-size: 2rem; font-weight: 700; line-height: 1; display: block; }
.bs-about-badge .badge-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; display: block; margin-top: 4px; }
@media (max-width: 840px) { .bs-about-badge { right: 1rem; bottom: 1rem; } }
.bs-checklist { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.bs-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--bs-mid); }
.bs-checklist li i { color: var(--cnvs-themecolor); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* EXPERTS */
.bs-experts { background: #fff; padding: 5.5rem 0; }
.bs-experts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
@media (max-width: 820px) { .bs-experts-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .bs-experts-grid { grid-template-columns: 1fr; } }
.bs-expert-card { text-align: center; }
.bs-expert-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 2px; margin-bottom: 1.25rem; filter: grayscale(20%); transition: filter 0.3s; }
.bs-expert-card:hover .bs-expert-img { filter: grayscale(0%); }
.bs-expert-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--bs-ink); margin-bottom: 4px; }
.bs-expert-card .expert-title { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cnvs-themecolor); margin-bottom: 0.75rem; }
.bs-expert-card p { font-size: 0.88rem; color: var(--bs-mid); line-height: 1.6; }
.bs-expert-quals { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem; margin-top: 0.75rem; }
.bs-qual-tag { background: rgba(var(--cnvs-themecolor-rgb),0.07); color: var(--cnvs-themecolor); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; }

/* WHY CHOOSE US */
.bs-why { background: #0f0606; padding: 5.5rem 0; }
.bs-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
@media (max-width: 820px) { .bs-why-grid { grid-template-columns: 1fr; gap: 2rem; } }
.bs-why-list { display: flex; flex-direction: column; gap: 1.5rem; }
.bs-why-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.bs-why-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(var(--cnvs-themecolor-rgb),0.15); border: 1px solid rgba(var(--cnvs-themecolor-rgb),0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.bs-why-icon i { font-size: 1.1rem; color: var(--bs-gold); }
.bs-why-text h4 { font-family: 'Libre Baskerville', serif; font-size: 0.98rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.bs-why-text p { font-size: 0.88rem; color: rgba(255,255,255,0.58); line-height: 1.65; margin: 0; }
.bs-testimonial-block { background: rgba(var(--cnvs-themecolor-rgb),0.12); border: 1px solid rgba(var(--cnvs-themecolor-rgb),0.25); border-radius: 4px; padding: 2.5rem; }
.bs-testimonial-block blockquote { font-family: 'Libre Baskerville', serif; font-size: 1.05rem; font-style: italic; color: rgba(255,255,255,0.88); line-height: 1.7; margin: 0 0 1.25rem; }
.bs-testimonial-block .tq-author { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--bs-gold); }

/* CASE STUDIES */
.bs-cases { background: var(--bs-cream); padding: 5.5rem 0; }
.bs-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 3rem; }
@media (max-width: 820px) { .bs-cases-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .bs-cases-grid { grid-template-columns: 1fr; } }
.bs-case-card { background: #fff; border-radius: 2px; overflow: hidden; border: 1px solid rgba(0,0,0,0.07); transition: box-shadow 0.25s, transform 0.2s; }
.bs-case-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.1); transform: translateY(-3px); }
.bs-case-img { width: 100%; /*aspect-ratio: 16/10;*/ object-fit: cover; display: block; }
.bs-case-body { padding: 1.5rem; }
.bs-case-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cnvs-themecolor); background: rgba(var(--cnvs-themecolor-rgb),0.08); padding: 3px 10px; border-radius: 20px; display: inline-block; margin-bottom: 0.75rem; }
.bs-case-body h3 { font-size: 0.98rem; font-weight: 700; color: var(--bs-ink); margin-bottom: 0.5rem; line-height: 1.35; }
.bs-case-body p { font-size: 0.86rem; color: var(--bs-mid); line-height: 1.6; margin: 0; }

/* CONTACT */
.bs-contact { background: #fff; padding: 5.5rem 0; }
.bs-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
@media (max-width: 820px) { .bs-contact-grid { grid-template-columns: 1fr; } }
.bs-contact-info { display: flex; flex-direction: column; gap: 1.75rem; }
.bs-contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.bs-contact-item-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(var(--cnvs-themecolor-rgb),0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.bs-contact-item-icon i { font-size: 1.1rem; color: var(--cnvs-themecolor); }
.bs-contact-item-text h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bs-ink); margin-bottom: 4px; }
.bs-contact-item-text p, .bs-contact-item-text a { font-size: 0.95rem; color: var(--bs-mid); margin: 0; text-decoration: none; transition: color 0.2s; }
.bs-contact-item-text a:hover { color: var(--cnvs-themecolor); }
.bs-form { display: flex; flex-direction: column; gap: 1rem; }
.bs-form input, .bs-form select, .bs-form textarea { width: 100%; padding: 12px 16px; border: 1px solid rgba(0,0,0,0.15); border-radius: 2px; font-family: 'Source Sans 3', sans-serif; font-size: 0.95rem; color: var(--bs-ink); background: #fafafa; transition: border-color 0.2s, box-shadow 0.2s; }
.bs-form input:focus, .bs-form select:focus, .bs-form textarea:focus { outline: none; border-color: var(--cnvs-themecolor); box-shadow: 0 0 0 3px rgba(var(--cnvs-themecolor-rgb),0.12); }
.bs-form textarea { min-height: 130px; resize: vertical; }
.bs-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 440px) { .bs-form-row { grid-template-columns: 1fr; } }

/* CPR BADGE STRIP */
.bs-cpr-strip { background: var(--cnvs-themecolor); padding: 2rem 0; }
.bs-cpr-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem; text-align: center; }
.bs-cpr-badge { display: flex; align-items: center; gap: 10px; }
.bs-cpr-badge i { font-size: 1.5rem; color: var(--bs-gold); }
.bs-cpr-badge span { font-family: 'Source Sans 3', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; }

/* FOOTER */
#footer {
  --cnvs-footer-bg: #0a0203;
  --cnvs-footer-top-border: 1px solid rgba(255,255,255,0.06);
  --cnvs-copyrights-link-color: rgba(255,255,255,0.5);
}
.bs-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding: 4rem 0; }
@media (max-width: 900px) { .bs-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .bs-footer-grid { grid-template-columns: 1fr; } }
.bs-footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 1rem 0 1.5rem; }
.bs-footer-social { display: flex; gap: 0.75rem; }
.bs-footer-social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; color: rgba(255,255,255,0.55); font-size: 0.95rem; text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s; cursor: pointer; }
.bs-footer-social a:hover { border-color: var(--bs-gold); color: var(--bs-gold); background: rgba(255,204,102,0.08); }
.bs-footer-col h5 { font-family: 'Source Sans 3', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bs-gold); margin-bottom: 1.25rem; }
.bs-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.bs-footer-links li a { font-size: 0.88rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; cursor: pointer; }
.bs-footer-links li a:hover { color: var(--bs-gold); }
.bs-footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.bs-footer-contact-item i { color: var(--cnvs-themecolor); font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; }
.bs-footer-contact-item a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.bs-footer-contact-item a:hover { color: var(--bs-gold); }
#copyrights { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.25rem 0; text-align: center; font-size: 0.83rem; color: rgba(255,255,255,0.38); }
#copyrights a { color: var(--bs-gold); text-decoration: none; }
#copyrights a:hover { color: var(--cnvs-themecolor); }

/* MISC */
:focus-visible { outline: 3px solid rgba(var(--cnvs-themecolor-rgb),0.5); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } }

/* ==========================================================
   CUSTOM RESPONSIVE HEADER
========================================================== */

.bs-menu-toggle {
    display: none;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.bs-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

/* Animated close icon */
#header.bs-menu-open .bs-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#header.bs-menu-open .bs-menu-toggle span:nth-child(2) {
    opacity: 0;
}

#header.bs-menu-open .bs-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Desktop */
@media (min-width: 1241px) {

    #header .header-row {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
    }

    #header .primary-menu {
        display: block !important;
        margin-left: auto;
    }

    #header .primary-menu .menu-container {
        display: flex !important;
        align-items: center;
        flex-wrap: nowrap;
    }

    .bs-menu-toggle {
        display: none !important;
    }
}

/* Collapsed navigation */
@media (max-width: 1240px) {

    #header .header-row {
        position: relative;
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        width: 100%;
        min-height: 70px;
    }

    #header #logo {
        flex: 0 1 auto;
        margin-right: 15px;
    }

    #header #logo .bs-wordmark img {
        width: auto !important;
        height: 62px !important;
        max-width: calc(100vw - 90px) !important;
    }

    .bs-menu-toggle {
        display: block !important;
        margin-right: 0;
        margin-left: auto;
    }

    /*
     * Completely hide the navigation until our own
     * bs-menu-open class is added.
     */
    #header .primary-menu {
        display: none !important;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 9999;
        width: 100%;
        margin: 0 !important;
        background: #0f0606;
        border-top: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 12px 28px rgba(0,0,0,0.3);
    }

    #header.bs-menu-open .primary-menu {
        display: block !important;
    }

    #header .primary-menu .menu-container {
        display: block !important;
        width: 100%;
        margin: 0;
        padding: 10px 20px 20px;
    }

    #header .primary-menu .menu-item {
        display: block !important;
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    #header .primary-menu .menu-item > .menu-link {
        display: block !important;
        width: 100%;
        height: auto !important;
        padding: 12px 4px !important;
        font-size: 0.78rem;
        line-height: 1.4;
    }

    #header .bs-menu-cta-item {
        width: 100%;
        margin: 14px 0 0;
        border-bottom: 0;
    }

    #header .bs-menu-cta {
        display: flex;
        width: 100%;
        min-height: 46px;
        padding: 13px 18px;
    }
}

@media (max-width: 575px) {

    #header .header-row {
        min-height: 60px;
    }

    #header #logo .bs-wordmark img {
        height: 52px !important;
        max-width: calc(100vw - 75px) !important;
    }

    #header .primary-menu .menu-container {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (max-width: 400px) {

    #header #logo .bs-wordmark img {
        height: 46px !important;
    }
}

/* Keep logo left and burger right on collapsed header */
@media (max-width: 1240px) {
  #header #logo {
    order: 1 !important;
    flex: 0 1 auto;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  #header .bs-menu-toggle {
    order: 2 !important;
    flex: 0 0 44px;
    margin-right: 0 !important;
    margin-left: auto !important;
  }

  #header .primary-menu {
    order: 3 !important;
  }
}
.bs-page-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    background-position: center;
    background-size: cover;
}

.bs-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(10, 6, 7, 0.92) 0%,
            rgba(10, 6, 7, 0.72) 48%,
            rgba(10, 6, 7, 0.28) 100%
        );
}

.bs-page-hero .container {
    position: relative;
    z-index: 2;
}

/* ==========================================================
   AFFILIATIONS / PROFESSIONAL MEMBERSHIPS
========================================================== */

.bs-affiliations {
    overflow: hidden;
    padding: 4rem 0;
    background: var(--cnvs-themecolor);
}

.bs-affiliations-heading {
    margin-bottom: 2.25rem;
    text-align: center;
}

.bs-affiliations-heading .bs-section-label {
    margin-bottom: 0.5rem;
    color: var(--bs-gold);
}

.bs-affiliations-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
}

/* Carousel width */
.bs-affiliations .logo-carousel {
    display: block;
    width: 100%;
}

/* Keep all logos vertically aligned */
.bs-affiliations .owl-stage {
    display: flex;
    align-items: stretch;
}

.bs-affiliations .owl-item {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

/* Individual logo panel */
.bs-affiliations .com-logo-info {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 125px;
    padding: 1.25rem 1.5rem;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(70, 0, 24, 0.18);
}

/* Constrain the actual logo */
.bs-affiliations .com-logo-info img {
    display: block;
    width: auto !important;
    max-width: 190px !important;
    height: 72px !important;
    max-height: 72px !important;
    object-fit: contain;
    opacity: 0.92;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.bs-affiliations .com-logo-info:hover img {
    opacity: 1;
    transform: scale(1.025);
}

/* Remove Owl controls */
.bs-affiliations .owl-nav,
.bs-affiliations .owl-dots {
    display: none;
}

@media (max-width: 991px) {
    .bs-affiliations {
        padding: 3.5rem 0;
    }

    .bs-affiliations .com-logo-info {
        min-height: 115px;
        padding: 1rem 1.25rem;
    }

    .bs-affiliations .com-logo-info img {
        max-width: 170px !important;
        height: 64px !important;
        max-height: 64px !important;
    }
}

@media (max-width: 575px) {
    .bs-affiliations {
        padding: 3rem 0;
    }

    .bs-affiliations-heading {
        margin-bottom: 1.75rem;
    }

    .bs-affiliations .com-logo-info {
        min-height: 105px;
    }

    .bs-affiliations .com-logo-info img {
        max-width: 155px !important;
        height: 58px !important;
        max-height: 58px !important;
    }
}
.content-wrap { padding-top: 0; padding-bottom: 0; }
/* ==========================================================
   GLOBAL CANVAS OVERRIDES
========================================================== */

.content-wrap {
  padding-top: 0;
  padding-bottom: 0;
}

#content .section {
  margin-top: 0;
  margin-bottom: 0;
}

.bs-section-actions {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

/* ==========================================================
   HOMEPAGE-SPECIFIC COMPONENTS
========================================================== */

.bs-hero-specialisms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.75rem 0 2rem;
}

.bs-hero-specialism {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  background: rgba(15, 12, 13, 0.28);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  backdrop-filter: blur(3px);
}

.bs-hero-specialism i {
  color: var(--bs-gold);
}

.bs-contact-cta {
  padding: 5rem 0;
  background: #f5f1f2;
}

.bs-contact-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  border-left: 5px solid var(--cnvs-themecolor);
  background: #fff;
  box-shadow: 0 18px 50px rgba(29, 19, 23, 0.08);
}

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

.bs-contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--bs-mid);
  font-weight: 600;
  text-decoration: none;
}

.bs-contact-list a:hover {
  color: var(--cnvs-themecolor);
}

.bs-contact-list i {
  width: 1.25rem;
  margin-top: 0.1rem;
  color: var(--cnvs-themecolor);
  text-align: center;
}

/* ==========================================================
   INNER PAGE HERO / BREADCRUMBS
========================================================== */

.bs-inner-hero {
  position: relative;
  overflow: hidden;
  padding: 10.5rem 0 5.5rem;
  background-color: #171114;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bs-inner-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(12, 10, 11, 0.9) 0%,
    rgba(24, 18, 20, 0.72) 48%,
    rgba(36, 27, 31, 0.3) 100%
  );
}

.bs-inner-hero::after {
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.bs-inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.bs-inner-hero .bs-hero-h1 {
  margin-bottom: 1.25rem;
  color: #fff;
}

.bs-inner-hero .bs-hero-lead {
  max-width: 730px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.bs-inner-hero--about {
  background-image: url('images/about-hero.png');
}

.bs-inner-hero--services {
  background-image: url('images/services-hero.png');
}

.bs-inner-hero--cases {
  background-image: url('images/cases-hero.png');
}

.bs-inner-hero--qualifications {
  background-image: url('images/qualifications-hero.png');
}

.bs-inner-hero--contact {
  background-image: url('images/contact-hero.png');
}

.bs-inner-hero--experts {
  background-image: url('/images/experts-hero.png');
}

.bs-inner-hero--why {
  background-image: url('/images/why-choose-us-hero.png');
}

.bs-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bs-breadcrumbs a {
  color: var(--bs-gold);
  text-decoration: none;
}

/* ==========================================================
   ABOUT PAGE
========================================================== */

.bs-about-copy p + p {
  margin-top: 1rem;
}

.bs-principles {
  padding: 5.5rem 0;
  /*background: #fff;*/
}

.bs-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.bs-principle-card {
  height: 100%;
  padding: 1.75rem;
  border: 1px solid rgba(var(--cnvs-themecolor-rgb), 0.12);
  border-top: 3px solid var(--cnvs-themecolor);
  background: #fff;
}

.bs-principle-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: rgba(var(--cnvs-themecolor-rgb), 0.08);
  color: var(--cnvs-themecolor);
  font-size: 1.3rem;
}

.bs-principle-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1rem;
}

.bs-principle-card p {
  margin: 0;
  color: var(--bs-mid);
  font-size: 0.9rem;
  line-height: 1.65;
}

.bs-experts-grid.bs-experts-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}

.bs-about-cta {
  padding: 5rem 0;
  margin-bottom: 0;
  margin-top: 0;
  background: #0f0606;
}

.bs-about-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 2rem;
  align-items: center;
}

.bs-about-cta h2 {
  margin-bottom: 0.8rem;
  color: #fff;
}

.bs-about-cta p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.7;
}

/* ==========================================================
   CASE STUDY CONTENT
========================================================== */

.bs-case-body .bs-case-tag {
  margin-bottom: 0.85rem;
}

.bs-case-body ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--bs-mid);
  font-size: 0.94rem;
  line-height: 1.7;
}

.bs-case-body li + li {
  margin-top: 0.45rem;
}

.bs-case-description {
  color: var(--bs-mid);
  font-size: 0.86rem;
  line-height: 1.65;
}

.bs-case-description p {
  margin-bottom: 0.85rem;
}

.bs-case-description p:last-child {
  margin-bottom: 0;
}

.bs-case-description ul,
.bs-case-description ol {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
}

.bs-cases-empty {
  max-width: 680px;
  margin: 3rem auto 0;
  padding: 2.5rem;
  border: 1px solid rgba(var(--cnvs-themecolor-rgb), 0.12);
  background: #fff;
  text-align: center;
}

.bs-cases-empty p {
  margin-bottom: 1.5rem;
  color: var(--bs-mid);
  font-size: 1rem;
  line-height: 1.7;
}

/* ==========================================================
   CONTACT PAGE COMPONENTS
========================================================== */

.bs-contact-panel {
  height: 100%;
  padding: 2rem;
  border: 1px solid rgba(var(--cnvs-themecolor-rgb), 0.12);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(32, 24, 27, 0.08);
}

.bs-direct-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.bs-direct-contact {
  padding: 1.4rem;
  border: 1px solid rgba(var(--cnvs-themecolor-rgb), 0.12);
  border-radius: 4px;
  background: rgba(var(--cnvs-themecolor-rgb), 0.035);
}

.bs-direct-contact h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.bs-direct-contact .role {
  margin-bottom: 0.85rem;
  color: var(--cnvs-themecolor);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bs-direct-contact p {
  margin: 0.3rem 0 0;
  color: var(--bs-mid);
  font-size: 0.9rem;
}

.bs-direct-contact a {
  overflow-wrap: anywhere;
}

.bs-contact-note {
  margin-top: 1.5rem;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--cnvs-themecolor);
  border-radius: 2px;
  background: rgba(var(--cnvs-themecolor-rgb), 0.055);
}

.bs-contact-note p {
  margin: 0;
  color: var(--bs-mid);
  font-size: 0.88rem;
  line-height: 1.65;
}

.bs-enquiry-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}

.bs-enquiry-type {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.bs-enquiry-type i {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--bs-gold);
  font-size: 1.65rem;
}

.bs-enquiry-type strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
}

.bs-form label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--bs-ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bs-form-field {
  margin-bottom: 1rem;
}

.bs-form textarea {
  min-height: 175px;
}

.bs-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ==========================================================
   PAGE COMPONENT RESPONSIVENESS
========================================================== */

@media (max-width: 991.98px) {
  .bs-inner-hero {
    padding: 8.5rem 0 4.5rem;
  }

  .bs-principles-grid,
  .bs-enquiry-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bs-about-cta-inner,
  .bs-contact-cta-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .bs-experts-grid.bs-experts-grid-two,
  .bs-principles-grid,
  .bs-direct-contact-grid,
  .bs-enquiry-type-grid {
    grid-template-columns: 1fr;
  }

  .bs-contact-panel {
    padding: 1.4rem;
  }
}

@media (max-width: 575.98px) {
  .bs-contact-cta-inner {
    padding: 2rem 1.4rem;
  }
}
.bs-services-list {
  background: var(--bs-cream);
  padding: 5.5rem 0;
}

.bs-services-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.bs-service-list-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 2px;
  background: #fff;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.bs-service-list-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.1);
}

.bs-service-list-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.bs-service-list-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.6rem;
}

.bs-service-list-tag {
  align-self: flex-start;
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(var(--cnvs-themecolor-rgb), 0.08);
  color: var(--cnvs-themecolor);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bs-service-list-body h2 {
  margin-bottom: 0.75rem;
  color: var(--bs-ink);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
}

.bs-service-list-description {
  color: var(--bs-mid);
  font-size: 0.9rem;
  line-height: 1.68;
}

.bs-service-list-description p {
  margin-bottom: 0.85rem;
}

.bs-service-list-description p:last-child {
  margin-bottom: 0;
}

.bs-service-list-description ul,
.bs-service-list-description ol {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
}

.bs-service-list-action {
  margin-top: auto;
  padding-top: 1.5rem;
}

.bs-service-list-action .bs-btn-primary {
  width: 100%;
  justify-content: center;
  padding: 12px 18px;
  font-size: 0.76rem;
}

.bs-services-empty {
  max-width: 680px;
  margin: 3rem auto 0;
  padding: 2.5rem;
  border: 1px solid rgba(var(--cnvs-themecolor-rgb), 0.12);
  background: #fff;
  text-align: center;
}

.bs-services-empty p {
  margin-bottom: 1.5rem;
  color: var(--bs-mid);
  font-size: 1rem;
  line-height: 1.7;
}

.bs-services-cta {
  padding: 5rem 0;
  background: #0f0606;
}

.bs-services-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  gap: 2rem;
  align-items: center;
}

.bs-services-cta h2 {
  margin-bottom: 0.8rem;
  color: #fff;
}

.bs-services-cta p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 991.98px) {
  .bs-services-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bs-services-cta-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .bs-services-list-grid {
    grid-template-columns: 1fr;
  }
}

.bs-expert-profiles { padding:5.5rem 0; background:var(--bs-cream); }
.bs-expert-profile-list { display:flex; flex-direction:column; gap:3rem; margin-top:3.5rem; }
.bs-expert-profile { display:grid; grid-template-columns:minmax(280px,.72fr) minmax(0,1.28fr); overflow:hidden; border:1px solid rgba(153,0,51,.11); border-radius:3px; background:#fff; box-shadow:0 18px 48px rgba(29,19,23,.07); }
.bs-expert-profile:nth-child(even) { grid-template-columns:minmax(0,1.28fr) minmax(280px,.72fr); }
.bs-expert-profile:nth-child(even) .bs-expert-profile-media { order:2; }
.bs-expert-profile-media { min-height:540px; background:#171113; }
.bs-expert-profile-media img { display:block; width:100%; height:100%; min-height:540px; object-fit:cover; object-position:center top; }
.bs-expert-profile-placeholder { display:flex; align-items:center; justify-content:center; min-height:540px; color:rgba(255,255,255,.38); font-size:5rem; }
.bs-expert-profile-content { padding:clamp(2rem,4vw,3.5rem); }
.bs-expert-profile-role { margin-bottom:.55rem; color:var(--cnvs-themecolor); font-size:.75rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
.bs-expert-profile h2 { margin-bottom:.8rem; color:var(--bs-ink); font-size:clamp(1.55rem,2.6vw,2.25rem); }
.bs-expert-profile-summary { margin-bottom:1.5rem; color:var(--bs-mid); font-size:1.03rem; line-height:1.75; }
.bs-expert-profile-bio { color:var(--bs-mid); font-size:.95rem; line-height:1.75; }
.bs-expert-profile-bio p { margin-bottom:1rem; }
.bs-expert-details-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1.4rem; margin-top:2rem; }
.bs-expert-detail { padding:1.35rem; border-left:3px solid var(--cnvs-themecolor); background:rgba(var(--cnvs-themecolor-rgb),.045); }
.bs-expert-detail h3 { margin-bottom:.75rem; font-family:'Source Sans 3',sans-serif; font-size:.78rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; }
.bs-expert-detail-content { color:var(--bs-mid); font-size:.9rem; line-height:1.65; }
.bs-expert-detail-content ul,.bs-expert-detail-content ol { margin:0; padding-left:1.2rem; }
.bs-expert-detail-content li + li { margin-top:.4rem; }
.bs-expert-contact { display:flex; flex-wrap:wrap; gap:.75rem 1.25rem; margin-top:1.5rem; padding-top:1.4rem; border-top:1px solid rgba(0,0,0,.08); }
.bs-expert-contact a { display:inline-flex; align-items:center; gap:.5rem; color:var(--bs-mid); font-size:.88rem; font-weight:600; text-decoration:none; }
.bs-expert-contact a:hover,.bs-expert-contact i { color:var(--cnvs-themecolor); }
.bs-expert-actions { display:flex; flex-wrap:wrap; gap:.85rem; margin-top:2rem; }
.bs-btn-secondary { display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:13px 24px; border:2px solid rgba(var(--cnvs-themecolor-rgb),.35); border-radius:2px; color:var(--cnvs-themecolor)!important; font-size:.82rem; font-weight:700; letter-spacing:.06em; text-decoration:none; text-transform:uppercase; }
.bs-btn-secondary:hover { border-color:var(--cnvs-themecolor); background:rgba(var(--cnvs-themecolor-rgb),.06); }
.bs-experts-empty { max-width:700px; margin:3rem auto 0; padding:2.5rem; border:1px solid rgba(var(--cnvs-themecolor-rgb),.12); background:#fff; text-align:center; }
.bs-experts-cta { padding:5rem 0; background:#0f0606; }
.bs-experts-cta-inner { display:grid; grid-template-columns:minmax(0,1.25fr) auto; gap:2rem; align-items:center; }
.bs-experts-cta h2 { margin-bottom:.8rem; color:#fff; }
.bs-experts-cta p { max-width:760px; margin:0; color:rgba(255,255,255,.65); line-height:1.7; }
@media (max-width:991.98px) {
  .bs-expert-profile,.bs-expert-profile:nth-child(even) { grid-template-columns:1fr; }
  .bs-expert-profile:nth-child(even) .bs-expert-profile-media { order:initial; }
  .bs-expert-profile-media,.bs-expert-profile-media img,.bs-expert-profile-placeholder { min-height:480px; }
  .bs-experts-cta-inner { grid-template-columns:1fr; }
}
@media (max-width:767.98px) {
  .bs-expert-details-grid { grid-template-columns:1fr; }
  .bs-expert-profile-media,.bs-expert-profile-media img,.bs-expert-profile-placeholder { min-height:420px; }
}
@media (max-width:575.98px) {
  .bs-expert-profile-content { padding:1.6rem; }
  .bs-expert-profile-media,.bs-expert-profile-media img,.bs-expert-profile-placeholder { min-height:360px; }
  .bs-expert-actions { flex-direction:column; }
  .bs-expert-actions a { width:100%; }
}
.bs-error-section {
      margin: 0;
      padding: 6.5rem 0;
      background: #faf8f5;
    }

    .bs-error-wrap {
      display: grid;
      grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
      align-items: center;
      gap: clamp(2.5rem, 7vw, 6.5rem);
      max-width: 1080px;
      margin: 0 auto;
    }

    .bs-error-code {
      position: relative;
      color: #990033;
      font-family: "Libre Baskerville", Georgia, serif;
      font-size: clamp(7rem, 18vw, 13rem);
      font-weight: 700;
      letter-spacing: -.09em;
      line-height: .8;
      text-align: center;
    }

    .bs-error-code::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -2rem;
      width: 72px;
      height: 3px;
      background: #ffcc66;
      transform: translateX(-50%);
    }

    .bs-error-copy {
      max-width: 650px;
    }

    .bs-error-copy .bs-section-title {
      margin-bottom: 1.25rem;
    }

    .bs-error-copy > p:not(.bs-section-label) {
      max-width: 600px;
      font-size: 1.1rem;
      line-height: 1.75;
    }

    .bs-error-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .85rem;
      margin-top: 2rem;
    }

    .bs-error-links {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 3rem;
    }

    .bs-error-link {
      display: flex;
      align-items: center;
      gap: .75rem;
      min-height: 68px;
      padding: .95rem 1.1rem;
      border: 1px solid rgba(153, 0, 51, .14);
      border-radius: 3px;
      background: #fff;
      color: #252229;
      font-weight: 600;
      line-height: 1.25;
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }

    .bs-error-link:hover {
      border-color: #990033;
      box-shadow: 0 10px 25px rgba(42, 31, 36, .08);
      color: #990033;
      transform: translateY(-2px);
    }

    .bs-error-link i {
      flex: 0 0 auto;
      color: #990033;
      font-size: 1.15rem;
    }

    @media (max-width: 991.98px) {
      .bs-error-section {
        padding: 5rem 0;
      }

      .bs-error-wrap {
        grid-template-columns: 1fr;
        gap: 4.5rem;
      }

      .bs-error-code {
        font-size: clamp(7rem, 30vw, 11rem);
      }

      .bs-error-copy {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
      }

      .bs-error-copy .bs-divider {
        margin-right: auto;
        margin-left: auto;
      }

      .bs-error-actions {
        justify-content: center;
      }
    }

    @media (max-width: 575.98px) {
      .bs-error-section {
        padding: 4rem 0;
      }

      .bs-error-links {
        grid-template-columns: 1fr;
      }

      .bs-error-actions {
        flex-direction: column;
      }

      .bs-error-actions a {
        justify-content: center;
        width: 100%;
      }
    }
 .bs-policy-section {
      margin: 0;
      padding: 5.5rem 0;
      background: #faf8f5;
    }

    .bs-policy-layout {
      display: grid;
      grid-template-columns: minmax(220px, .32fr) minmax(0, 1fr);
      align-items: start;
      gap: clamp(2.5rem, 6vw, 5.5rem);
      max-width: 1120px;
      margin: 0 auto;
    }

    .bs-policy-nav {
      position: sticky;
      top: 120px;
      padding: 1.75rem;
      border-top: 4px solid #990033;
      background: #fff;
      box-shadow: 0 14px 35px rgba(42, 31, 36, .07);
    }

    .bs-policy-nav h2 {
      margin: 0 0 1rem;
      font-family: "Libre Baskerville", Georgia, serif;
      font-size: 1.15rem;
    }

    .bs-policy-nav ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .bs-policy-nav li + li {
      border-top: 1px solid rgba(42, 31, 36, .08);
    }

    .bs-policy-nav a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: .75rem;
      padding: .72rem 0;
      color: #49434b;
      font-size: .95rem;
      line-height: 1.3;
    }

    .bs-policy-nav a:hover {
      color: #990033;
    }

    .bs-policy-nav i {
      color: #990033;
      font-size: .75rem;
    }

    .bs-policy-date {
      margin: 1.25rem 0 0;
      color: #6e6870;
      font-size: .85rem;
      line-height: 1.5;
    }

    .bs-policy-content {
      min-width: 0;
      padding: clamp(2rem, 5vw, 4rem);
      background: #fff;
      box-shadow: 0 14px 40px rgba(42, 31, 36, .06);
    }

    .bs-policy-intro {
      padding-bottom: 2.25rem;
      border-bottom: 1px solid rgba(42, 31, 36, .1);
    }

    .bs-policy-intro .bs-section-title {
      margin-bottom: 1.25rem;
    }

    .bs-policy-content section {
      scroll-margin-top: 120px;
      padding-top: 2.6rem;
    }

    .bs-policy-content h2 {
      margin-bottom: 1.1rem;
      color: #2a1f24;
      font-family: "Libre Baskerville", Georgia, serif;
      font-size: clamp(1.35rem, 2vw, 1.75rem);
      line-height: 1.35;
    }

    .bs-policy-content h3 {
      margin: 1.6rem 0 .7rem;
      color: #2a1f24;
      font-size: 1.08rem;
    }

    .bs-policy-content p,
    .bs-policy-content li {
      color: #514b52;
      font-size: 1rem;
      line-height: 1.75;
    }

    .bs-policy-content ul {
      margin: .75rem 0 1.25rem;
      padding-left: 1.3rem;
    }

    .bs-policy-content li + li {
      margin-top: .45rem;
    }

    .bs-policy-content a:not(.bs-btn-primary) {
      color: #990033;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .bs-policy-table-wrap {
      overflow-x: auto;
      margin: 1.5rem 0;
    }

    .bs-policy-table {
      width: 100%;
      min-width: 670px;
      margin: 0;
      border-collapse: collapse;
    }

    .bs-policy-table th,
    .bs-policy-table td {
      padding: 1rem;
      border: 1px solid rgba(42, 31, 36, .11);
      text-align: left;
      vertical-align: top;
      line-height: 1.55;
    }

    .bs-policy-table th {
      background: #990033;
      color: #fff;
      font-size: .9rem;
      letter-spacing: .02em;
    }

    .bs-policy-table td {
      color: #514b52;
      font-size: .94rem;
    }

    .bs-policy-note {
      margin: 1.6rem 0 0;
      padding: 1.25rem 1.4rem;
      border-left: 4px solid #ffcc66;
      background: #faf8f5;
    }

    .bs-policy-note p:last-child {
      margin-bottom: 0;
    }

    .bs-policy-contact {
      margin-top: 1.6rem;
      padding: 1.6rem;
      border-left: 4px solid #990033;
      background: #faf8f5;
    }

    .bs-policy-contact p:last-child {
      margin-bottom: 0;
    }

    @media (max-width: 991.98px) {
      .bs-policy-layout {
        grid-template-columns: 1fr;
      }

      .bs-policy-nav {
        position: static;
      }

      .bs-policy-nav ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 1.5rem;
      }
    }

    @media (max-width: 575.98px) {
      .bs-policy-section {
        padding: 4rem 0;
      }

      .bs-policy-nav ul {
        grid-template-columns: 1fr;
      }

      .bs-policy-content {
        padding: 1.6rem;
      }
    }