:root{
  --bg-dark: #2D3E33;
  --bg-hero: #3E5D58;
  --bg-light: #F4F2EE;
  --bg-soft: #ECE8E1;
  --bg-gray: #FFFFFF;

  --text-dark: #1A1B1D;
  --text-muted: #4A4E52;
  --text-light: #FFFFFF;

  --accent: #A66E4E;
  --accent-hover: #8D5B43;

  --line: rgba(26, 27, 29, .10);
  --line-soft: rgba(26, 27, 29, .07);

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .04);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, .06);
  --shadow-lg: 0 18px 38px rgba(0, 0, 0, .10);

  --report-caution-bg: rgba(166, 110, 78, .11);
  --report-caution-text: #7B4E39;
  --report-ok: #A66E4E;
  --report-ok-dark: #8D5B43;
  --report-media-bg: #EEF2F1;
  --report-media-border: rgba(26, 27, 29, .08);

  --container: 1100px;
}


/* ========================================
   RESET
   ======================================== */

*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  line-height: 1.65;
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1,
h2,
p,
ul{
  margin: 0;
}

img,
svg{
  display: block;
  max-width: 100%;
}


/* ========================================
   LAYOUT
   ======================================== */

.container{
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 28px;
}

.section{
  padding: 100px 0;
}

.section-light{
  background: var(--bg-light);
}

.section-gray{
  background: var(--bg-gray);
}

.section-dark{
  background: var(--bg-dark);
  color: var(--text-light);
}


/* ========================================
   TYPOGRAPHY
   ======================================== */

h1,
h2{
  font-family: "Zilla Slab", serif;
}

h2{
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: var(--text-dark);
}

p{
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 1.04rem;
  line-height: 1.72;
  color: var(--text-muted);
}

.section-dark h2{
  color: var(--text-light);
}

.section-dark p{
  color: rgba(255, 255, 255, .84);
}


/* ========================================
   NAVIGATION
   ======================================== */

.site-nav{
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(26, 27, 29, .08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.nav-logo{
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img{
  height: 42px;
  width: auto;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link{
  color: var(--text-dark);
  text-decoration: none;
  font-size: .96rem;
  font-weight: 600;
  line-height: 1;
  transition: color .2s ease, opacity .2s ease;
}

.nav-link:hover{
  color: var(--accent);
}

.nav-link:focus-visible{
  outline: 2px solid rgba(166, 110, 78, .35);
  outline-offset: 4px;
  border-radius: 4px;
}


/* ========================================
   HERO
   ======================================== */

.hero{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(45, 62, 51, .22), rgba(45, 62, 51, .22)),
    linear-gradient(180deg, #48645f 0%, var(--bg-hero) 100%);
  color: var(--text-light);
}

.hero::before{
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  left: -190px;
  top: 50%;
  transform: translateY(-50%);
  background: url("img/birddog-watermark.png") no-repeat center;
  background-size: contain;
  opacity: .075;
  pointer-events: none;
}

.hero-inner{
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1{
  font-size: clamp(3rem, 5vw, 5.15rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-wrap: balance;
  color: var(--text-light);
}

.hero p{
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.22rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .84);
}

.hero-buttons{
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 5px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
  transition:
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.hero-btn:hover{
  transform: translateY(-1px);
}

.hero-btn-primary{
  background: var(--accent);
  color: var(--text-light);
  border-color: var(--accent);
}

.hero-btn-primary:hover{
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--text-light);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}

.hero-btn-secondary{
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, .45);
}

.hero-btn-secondary:hover{
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .72);
  color: var(--text-light);
}

.hero-highlight{
  position: relative;
  display: inline-block;
}

.hero-highlight::after{
  content: "";
  position: absolute;
  left: -4px;
  right: -6px;
  bottom: .02em;
  height: .09em;
  background: linear-gradient(
    90deg,
    rgba(166, 110, 78, .95),
    rgba(166, 110, 78, .85)
  );
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: markerDraw 1.15s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: .55s;
  filter: blur(.3px);
  z-index: -1;
}

@keyframes markerDraw{
  0%{
    transform: scaleX(0);
    opacity: .9;
  }
  75%{
    transform: scaleX(1.04);
  }
  100%{
    transform: scaleX(1);
    opacity: .95;
  }
}


/* ========================================
   LOCAL TRUST
   ======================================== */

.local-trust-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.local-trust-content{
  min-width: 0;
}

.local-trust-image{
  min-width: 0;
}

.local-trust-image img{
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(26, 27, 29, .10);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #F6F4EF, #ECE8E1);
  box-shadow: var(--shadow-md);
}


/* ========================================
   WHAT WE CHECK
   ======================================== */

.bd-checks{
  padding: 92px 0;
}

.bd-checks__header{
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.bd-checks__title{
  margin-bottom: 12px;
}

.bd-checks__intro{
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.68;
}

.bd-checks__grid{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 44px;
  align-items: start;
  padding-top: 28px;
}

.bd-checks__grid::before{
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: rgba(26, 27, 29, .08);
}

.bd-checks__list{
  list-style: none;
  padding: 0;
  display: grid;
  gap: 18px;
}

.bd-checks__list li{
  position: relative;
  padding-left: 48px;
  color: var(--text-dark);
  font-size: 15.5px;
  line-height: 1.5;
}

.bd-checks__list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(26, 27, 29, .09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .70)),
    rgba(0, 0, 0, .02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .95),
    0 4px 10px rgba(0, 0, 0, .05);
}

.bd-checks__list li::after{
  content: "✓";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), var(--accent-hover));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .2),
    0 2px 6px rgba(0, 0, 0, .16);
}

@media (min-width: 768px){
  .bd-checks__grid::after{
    content: "";
    position: absolute;
    top: 24px;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(26, 27, 29, .06);
    transform: translateX(-22px);
  }
}


/* ========================================
   REPORTS
   ======================================== */

.bd-reports{
  padding: 92px 0;
}

.bd-reports__header{
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.bd-reports__title{
  margin-bottom: 12px;
}

.bd-reports__intro{
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.68;
}

.bd-report-preview{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(0, 0, 0, .03),
    var(--shadow-md);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.bd-report-preview:hover{
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, .03),
    var(--shadow-lg);
  border-color: rgba(26, 27, 29, .13);
}

.bd-report-preview__top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 22px 16px;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .025), rgba(0, 0, 0, 0)),
    #fff;
}

.bd-report-preview__badge{
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(26, 27, 29, .10);
  background: rgba(0, 0, 0, .025);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.bd-report-preview__meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
}

.bd-report-preview__meta span{
  display: inline;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  min-height: 0;
  position: relative;
}

.bd-report-preview__meta span:not(:last-child)::after{
  content: "•";
  margin-left: 14px;
  color: rgba(26, 27, 29, .28);
}

.bd-report-preview__meta strong{
  color: var(--text-dark);
  font-weight: 600;
  margin-right: 4px;
}

.bd-report-preview__status{
  padding: 12px 22px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13.5px;
  line-height: 1.45;
}

.bd-report-preview__status--caution{
  background: var(--report-caution-bg);
  color: var(--text-dark);
}

.bd-report-preview__status--caution strong{
  color: var(--report-caution-text);
  font-weight: 700;
}

.bd-report-preview__summary{
  padding: 20px 22px 0;
}

.bd-report-preview__summary .bd-report-preview__text{
  margin: 0;
  max-width: none;
}

.bd-report-preview__body{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 20px 22px;
  align-items: start;
}

.bd-report-preview__col{
  min-width: 0;
}

.bd-report-preview__col--media{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bd-report-preview__label{
  margin-bottom: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(26, 27, 29, .58);
}

.bd-report-preview__label--checklist{
  margin-top: 0;
}

.bd-report-preview__text{
  max-width: none;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

.bd-report-preview__checks{
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.bd-report-preview__checks li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.46;
  color: var(--text-dark);
}

.bd-report-check{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 1px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--report-ok), var(--report-ok-dark));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .20),
    0 2px 6px rgba(0, 0, 0, .14);
}

.bd-report-preview__media{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bd-report-media-card{
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  border: 1px solid var(--report-media-border);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .58), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #F6F8F8, var(--report-media-bg));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55);
}

.bd-report-media-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bd-report-preview__notes{
  padding: 0 22px 22px;
  border-top: 1px solid var(--line-soft);
}

.bd-report-preview__notes .bd-report-preview__label{
  padding-top: 18px;
}


/* ========================================
   SERVICE AREA
   ======================================== */

.bd-service-area{
  padding: 92px 0;
}

.bd-service-area__grid{
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 40px;
  align-items: stretch;
}

.bd-service-area__content{
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.bd-service-area__title{
  margin-bottom: 14px;
}

.bd-service-area__text{
  max-width: 560px;
  margin-bottom: 22px;
  color: var(--text-muted);
}

.bd-service-area__list{
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.bd-service-area__list li{
  position: relative;
  padding-left: 24px;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.55;
}

.bd-service-area__list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 11px;
  height: 11px;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .10);
}

.bd-service-area__list li::after{
  content: "";
  position: absolute;
  left: 3px;
  top: .60em;
  width: 5px;
  height: 5px;
  background: var(--bg-light);
  border-radius: 50%;
}

.bd-service-area__map-wrap{
  align-self: end;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(26, 27, 29, .12);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease;
}

.bd-service-area__map-wrap:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
}

.bd-service-area__map{
  width: 100%;
  height: auto;
  border: 1px solid rgba(166, 110, 78, .28);
  border-radius: 8px;
}


/* ========================================
   SCROLL REVEAL
   ======================================== */

.fade-up{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

.fade-up.visible{
  opacity: 1;
  transform: translateY(0);
}


/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 991.98px){
  .section,
  .bd-checks,
  .bd-reports,
  .bd-service-area{
    padding: 72px 0;
  }

  .local-trust-grid,
  .bd-report-preview__body,
  .bd-service-area__grid{
    grid-template-columns: 1fr;
  }

  .local-trust-grid{
    gap: 34px;
  }

  .bd-report-preview__body{
    gap: 24px;
  }

  .bd-service-area__content{
    min-height: auto;
  }

  .bd-service-area__list{
    margin-top: 0;
  }

  .bd-service-area__map-wrap{
    align-self: stretch;
  }
}

@media (max-width: 767.98px){
  .container{
    padding: 0 20px;
  }

  .site-nav{
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .nav-inner{
    min-height: 68px;
  }

  .nav-logo img{
    height: 38px;
  }

  .hero{
    min-height: auto;
    padding: 96px 20px 88px;
  }

  .hero::before{
    width: 720px;
    height: 720px;
    left: -190px;
    opacity: .075;
  }

  .hero h1{
    font-size: 2.6rem;
    line-height: 1.06;
  }

  .hero p{
    font-size: 1.05rem;
  }

  h2{
    font-size: 2rem;
  }

  p{
    font-size: 1rem;
    line-height: 1.68;
  }

  .bd-checks__header,
  .bd-reports__header{
    margin-bottom: 26px;
  }

  .bd-checks__grid{
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 18px;
  }

  .bd-checks__grid::after{
    display: none;
  }

  .bd-checks__list li{
    padding-left: 46px;
    font-size: 15px;
  }

  .bd-report-preview__top{
    flex-direction: column;
    align-items: flex-start;
  }

  .bd-report-preview__meta{
    justify-content: flex-start;
    gap: 6px 12px;
  }

  .bd-report-preview__meta span:not(:last-child)::after{
    margin-left: 12px;
  }
}

@media (max-width: 575.98px){
  .hero-buttons{
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn{
    width: 100%;
  }

  .local-trust-image img{
    aspect-ratio: 16 / 11;
  }

  .bd-report-preview__top,
  .bd-report-preview__status,
  .bd-report-preview__summary,
  .bd-report-preview__body,
  .bd-report-preview__notes{
    padding-left: 16px;
    padding-right: 16px;
  }

  .bd-report-preview__media{
    grid-template-columns: 1fr;
  }

  .bd-report-preview__meta span{
    width: 100%;
    justify-content: flex-start;
  }

  .bd-report-preview__meta span:not(:last-child)::after{
    display: none;
  }

  .fade-up{
    transform: translateY(18px);
  }
}


/* ========================================
   WHY IT MATTERS
   ======================================== */

.bd-why{
  position: relative;
  padding: 88px 0 84px;
  overflow: hidden;
}

.bd-why__grid{
  position: relative;
  display: block;
}

.bd-why__content{
  position: relative;
  z-index: 2;
  max-width: 760px;
  min-width: 0;
}

.bd-why__title{
  max-width: 22ch;
  margin-bottom: 18px;
}

.bd-why__text{
  max-width: 48rem;
  margin-bottom: 18px;
}

.bd-why__text:last-child{
  margin-bottom: 0;
}


/* decorative art only — not a layout column */

.bd-why__art{
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  width: min(34vw, 420px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.bd-why__art img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: .16;
}


/* hide old custom svg-specific elements if they still exist */

.bd-why__topo,
.bd-why__house,
.bd-why__house-main,
.bd-why__house-detail,
.bd-why__scan,
.bd-why__scan--light,
.bd-why__marker{
  display: none !important;
}


/* ========================================
   WHY IT MATTERS
   ======================================== */

.bd-why{
  position: relative;
  padding: 92px 0 88px;
  overflow: hidden;
}

.bd-why__grid{
  position: relative;
  display: block;
  min-height: 0;
}

.bd-why__content{
  position: relative;
  z-index: 2;
  max-width: 760px;
  min-width: 0;
}

.bd-why__title{
  max-width: 24ch;
  margin-bottom: 18px;
}

.bd-why__text{
  max-width: 48rem;
  margin-bottom: 18px;
}

.bd-why__text:last-child{
  margin-bottom: 0;
}


/* decorative image only */

.bd-why__art{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: min(64vw, 820px);
  z-index: 1;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.bd-why__art img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: .10;
}


/* hide any old experimental markup */

.bd-why__topo,
.bd-why__house,
.bd-why__house-main,
.bd-why__house-detail,
.bd-why__scan,
.bd-why__scan--light,
.bd-why__marker{
  display: none !important;
}
/* ========================================
   WHY IT MATTERS
   ======================================== */

.bd-why{
  position: relative;
  padding: 92px 0 88px;
  overflow: hidden;
}

.bd-why .container{
  position: relative;
}

.bd-why__grid{
  position: relative;
  display: block;
}

.bd-why__content{
  position: relative;
  z-index: 2;
  max-width: 820px;
  min-width: 0;
}

.bd-why__title{
  max-width: 26ch;
  margin-bottom: 18px;
}

.bd-why__text{
  max-width: 48rem;
  margin-bottom: 18px;
}

.bd-why__text:last-child{
  margin-bottom: 0;
}


/* decorative illustration */

.bd-why__art{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: min(64vw, 820px);
  z-index: 1;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.bd-why__art img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: .10;
  transform: translateX(80px);
}


/* hide any old experimental svg elements if still present */

.bd-why__topo,
.bd-why__house,
.bd-why__house-main,
.bd-why__house-detail,
.bd-why__scan,
.bd-why__scan--light,
.bd-why__marker{
  display: none !important;
}

/* ========================================
   LOCAL TRUST
   ======================================== */

.local-trust-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}

.local-trust-content{
  min-width:0;
}

.local-trust-image{
  display:flex;
  justify-content:flex-end;
}

.local-trust-image-wrap{
  width:100%;
  max-width:420px; /* controls visual size */
  padding:8px;
  background:#fff;
  border:1px solid rgba(26,27,29,.12);
  border-radius:12px;
  box-shadow:var(--shadow-sm);
  transition:transform .28s ease, box-shadow .28s ease;
}

.local-trust-image-wrap:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}

.local-trust-image-wrap img{
  width:100%;
  height:auto;
  display:block;
  border-radius:8px;
  border:1px solid rgba(166,110,78,.28);
}

.bd-why{
  position: relative;
  overflow: hidden;
}

.bd-why__grid{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 380px);
  align-items: center;
  gap: 40px;
}

.bd-why__content{
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.bd-why__title{
  margin: 0 0 18px;
}

.bd-why__text{
  margin: 0 0 18px;
}

.bd-why__text:last-child{
  margin-bottom: 0;
}

.bd-why__graphic{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.16; /* keeps it subtle */
  filter: grayscale(100%);
  pointer-events: none;
  user-select: none;
}

.bd-why__graphic img{
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
}

@media (max-width: 991.98px){
  .bd-why__grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bd-why__graphic{
    order: -1;
    justify-content: flex-start;
    opacity: 0.12;
  }

  .bd-why__graphic img{
    max-width: 220px;
  }
}