
:root {
  --ink: #1f1b17;
  --charcoal: #12100e;
  --muted: #665c52;
  --cream: #f8f5ef;
  --surface: #ffffff;
  --surface-2: #eee5d7;
  --oak: #9b6b3d;
  --oak-dark: #6d4425;
  --sage: #5f745f;
  --sage-dark: #3e563f;
  --line: #dfd4c5;
  --shadow: 0 18px 45px rgba(31, 27, 23, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", "DM Sans", Arial, sans-serif;
  line-height: 1.6;
}
img, video, iframe { max-width: 100%; }
img { display: block; }
a { color: inherit; }
svg {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.narrow { width: min(850px, calc(100% - 32px)); }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--surface);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

h1, h2, h3 {
  margin: 0;
  font-family: "Sora", "DM Sans", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}
h1 { font-size: clamp(2rem, 4.25vw, 3.9rem); max-width: 940px; font-weight: 900; }
h2 { font-size: clamp(1.65rem, 2.85vw, 2.55rem); font-weight: 900; }
h3 { font-size: 1.22rem; }
p { margin: 0; color: var(--muted); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--oak-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.eyebrow.light { color: #f1d4a8; }
.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}
.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-heading p { margin-top: 14px; font-size: 1.08rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled, .site-header.nav-open {
  background: rgba(248, 245, 239, 0.96);
  box-shadow: 0 8px 24px rgba(31, 27, 23, 0.08);
  border-color: rgba(109, 68, 37, 0.16);
  backdrop-filter: blur(10px);
}
.nav-shell {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Sora", "DM Sans", Arial, sans-serif;
  font-weight: 800;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 8px;
  background: #d9d4cc;
}
.brand span {
  max-width: 172px;
  color: #f7ead8;
  line-height: 1.1;
  font-size: 0.96rem;
  text-shadow: 0 2px 16px rgba(18, 16, 14, 0.45);
}
.site-header.scrolled .brand span, .site-header.nav-open .brand span {
  color: var(--ink);
  text-shadow: none;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  flex: 0 1 auto;
  margin-left: auto;
  padding: 6px;
  border: 1px solid rgba(247, 234, 216, 0.2);
  border-radius: 999px;
  background: rgba(18, 16, 14, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 30px rgba(18, 16, 14, 0.16);
  backdrop-filter: blur(10px);
}
.site-header.scrolled .main-nav, .site-header.nav-open .main-nav {
  border-color: rgba(109, 68, 37, 0.14);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 24px rgba(31, 27, 23, 0.08);
}
.main-nav > a, .nav-dropdown > summary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(247, 234, 216, 0.94);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.84rem;
  line-height: 1;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}
.site-header.scrolled .main-nav > a,
.site-header.scrolled .nav-dropdown > summary,
.site-header.nav-open .main-nav > a,
.site-header.nav-open .nav-dropdown > summary { color: var(--ink); }
.main-nav > a:hover, .nav-dropdown > summary:hover {
  color: #1f1b17;
  background: #f4c176;
}
.site-header.scrolled .main-nav > a:hover,
.site-header.scrolled .nav-dropdown > summary:hover {
  color: #fff;
  background: var(--oak);
}
.nav-dropdown { position: relative; }
.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  gap: 4px;
  min-width: 250px;
  max-height: 70vh;
  overflow: auto;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.dropdown-panel-wide {
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  min-width: 500px;
}
.nav-dropdown:nth-of-type(2) .dropdown-panel-wide {
  left: auto;
  right: 0;
}
.dropdown-panel-compact {
  min-width: 260px;
}
.dropdown-panel a {
  color: var(--ink);
  text-decoration: none;
  padding: 10px 11px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
}
.dropdown-panel a:hover { background: var(--cream); color: var(--oak-dark); }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(244, 193, 118, 0.68);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
  white-space: nowrap;
  background: rgba(155, 107, 61, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 10px 28px rgba(18, 16, 14, 0.18);
}
.site-header.scrolled .nav-phone, .site-header.nav-open .nav-phone {
  color: #fff;
  border-color: var(--oak);
  background: var(--oak);
}
.menu-button {
  display: none;
  border: 0;
  background: rgba(244, 193, 118, 0.16);
  color: #f7ead8;
  border-radius: 8px;
  padding: 10px;
}
.site-header.scrolled .menu-button, .site-header.nav-open .menu-button { color: var(--ink); background: var(--surface); }

.hero, .sub-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.sub-hero { min-height: 72vh; padding-top: 82px; }
.hero-video, .sub-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 16, 14, 0.86), rgba(18, 16, 14, 0.48), rgba(18, 16, 14, 0.26));
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
}
.hero-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.2rem;
  margin-top: 22px;
}
.hero-content h1 {
  color: #fff;
  background: linear-gradient(94deg, #fff8ed 0%, #f1bd66 36%, #83cdae 68%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 8px 20px rgba(18, 16, 14, 0.42));
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--oak); color: #fff; }
.btn-primary:hover { background: var(--oak-dark); }
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.split-section .btn-ghost, .contact-band .btn-ghost, .quote-band .btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: var(--surface);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 58px;
}
.hero-stats div {
  display: grid;
  gap: 2px;
  min-width: 140px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  padding-left: 18px;
}
.hero-stats strong { font-size: 2rem; font-family: "Fraunces", Georgia, serif; }
.hero-stats span { color: rgba(255, 255, 255, 0.76); font-weight: 700; }

.quick-bar {
  background: var(--sage-dark);
  color: #fff;
}
.quick-grid {
  min-height: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: center;
}
.quick-grid a, .quick-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
}

.split-section, .service-band, .gallery-preview, .faq-band, .contact-band, .quote-band, .area-band {
  padding: 82px 0;
}
.split-section { background: var(--surface); }
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 52px;
  align-items: center;
}
.split-grid p { font-size: 1.06rem; margin-top: 18px; }
.image-feature {
  margin: 0;
  position: relative;
}
.image-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.check-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}
.check-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.check-grid svg, .checked-list svg { color: var(--sage); margin-top: 4px; }
.check-grid h3, .check-grid p { grid-column: 2; }
.check-grid p { margin-top: 6px; font-size: 0.98rem; }
.service-band { background: var(--cream); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}
.service-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}
.service-card div { padding: 20px; }
.service-card p { margin-top: 10px; }
.service-card a, .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--oak-dark);
  font-weight: 900;
  text-decoration: none;
}

.dark-band {
  padding: 82px 0;
  background: var(--charcoal);
  color: #fff;
}
.dark-band p { color: rgba(255, 255, 255, 0.76); }
.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}
.trust-items {
  display: grid;
  gap: 16px;
}
.trust-items > div, .trust-card-grid article, .mini-card-grid a, .process-grid > div {
  border: 1px solid rgba(223, 212, 197, 0.35);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}
.trust-items svg { color: #f1d4a8; width: 28px; height: 28px; }
.trust-items h3 { margin-top: 14px; }
.trust-items p { margin-top: 8px; }

.masonry-lite, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.masonry-lite figure, .gallery-grid figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.masonry-lite img, .gallery-grid img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}
.masonry-lite figcaption {
  padding: 12px 14px;
  font-weight: 900;
}
.picflow-embed-block {
  margin: 0 0 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}
#gallery-container {
  position: relative;
  min-height: 360px;
  padding: 14px;
}
#loading-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border: 4px solid var(--surface-2);
  border-top-color: var(--oak);
  border-radius: 999px;
  animation: gallery-spin 1s linear infinite;
}
@keyframes gallery-spin {
  to { transform: rotate(360deg); }
}
#picflow-gallery {
  visibility: hidden;
  display: block;
}
.gallery-grid figcaption { padding: 18px; }
.gallery-grid figcaption p { margin-top: 8px; font-size: 0.95rem; }
.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.area-band { background: var(--surface); }
.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 38px;
  align-items: stretch;
}
.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.area-links a {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 800;
}
.map-frame {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 8px;
}
.faq-band { background: var(--cream); }
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary svg { transform: rotate(180deg); }
.faq-list p { padding: 0 0 20px; }

.quote-band { background: var(--surface-2); }
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.44fr);
  gap: 28px;
  align-items: start;
}
.quote-frame {
  height: 720px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}
.quote-details, .hours-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--surface);
}
.quote-details p { margin-top: 10px; }
.detail-list, .contact-list, .checked-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.detail-list li, .contact-list li, .checked-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.detail-list a { color: var(--oak-dark); font-weight: 900; }
.contact-band { background: var(--surface); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 32px;
}
.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.contact-methods a, .contact-methods span {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px;
  background: var(--cream);
}
.contact-methods strong {
  display: block;
  color: var(--ink);
}
.hours-panel dl {
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}
.hours-panel div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.hours-panel dt { font-weight: 900; }
.hours-panel dd { margin: 0; color: var(--muted); }

.process-grid, .mini-card-grid, .trust-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.process-grid > div, .mini-card-grid a, .trust-card-grid article {
  background: var(--surface);
  border-color: var(--line);
  text-decoration: none;
}
.process-grid span {
  color: var(--oak-dark);
  font-weight: 900;
}
.process-grid h3, .mini-card-grid h3, .trust-card-grid h3 { margin-top: 10px; }
.process-grid p, .mini-card-grid p, .trust-card-grid p { margin-top: 8px; }
.mini-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.trust-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.trust-card-grid svg {
  color: var(--sage);
  width: 30px;
  height: 30px;
}

.site-footer {
  background: var(--charcoal);
  color: #fff;
  padding-top: 54px;
}
.site-footer p, .site-footer a, .site-footer li { color: rgba(255, 255, 255, 0.78); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 34px;
}
.footer-brand img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  background: #d9d4cc;
}
.footer-brand span {
  color: #fff;
  font-weight: 900;
  line-height: 1.1;
}
.site-footer h2 {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #f1d4a8;
}
.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.footer-trust a {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 10px;
  font-weight: 800;
}
.footer-bottom {
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.9rem; }

.floating-bbb-badge {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: min(230px, calc(100vw - 32px));
  padding: 10px 12px;
  color: #15253b;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(30, 91, 153, 0.22);
  border-radius: 12px;
  box-shadow: 0 16px 42px rgba(18, 16, 14, 0.2);
  backdrop-filter: blur(12px);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.floating-bbb-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 91, 153, 0.5);
  box-shadow: 0 20px 48px rgba(18, 16, 14, 0.28);
}
.bbb-logo-mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fff;
  background: linear-gradient(135deg, #1e5b99, #153c70);
  border-radius: 10px;
  font-family: "Sora", "DM Sans", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
.bbb-badge-text {
  display: grid;
  gap: 1px;
  line-height: 1.12;
}
.bbb-badge-text strong {
  font-family: "Sora", "DM Sans", Arial, sans-serif;
  font-size: 0.94rem;
  color: #15253b;
}
.bbb-badge-text span {
  color: #315476;
  font-size: 0.8rem;
  font-weight: 800;
}
.bbb-badge-text small {
  color: var(--oak-dark);
  font-size: 0.74rem;
  font-weight: 900;
}

@media (max-width: 1160px) {
  .nav-phone { display: none; }
  .menu-button { display: inline-flex; margin-left: auto; }
  .main-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 80px;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px;
    box-shadow: var(--shadow);
    margin-left: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav > a, .nav-dropdown > summary { color: var(--ink); }
  .dropdown-panel {
    position: static;
    box-shadow: none;
    max-height: 260px;
    margin-top: 6px;
    min-width: 0;
  }
  .dropdown-panel-wide {
    grid-template-columns: 1fr;
    min-width: 0;
  }
  .brand span { color: #f7ead8; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); padding: 12px 0; }
  .card-grid, .masonry-lite, .gallery-grid, .mini-card-grid, .trust-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .container, .narrow { width: min(100% - 24px, 1180px); }
  .nav-shell { height: 74px; }
  .brand img { width: 48px; height: 48px; }
  .brand span { max-width: 160px; font-size: 0.94rem; }
  .main-nav { top: 74px; }
  .hero, .sub-hero { min-height: 88vh; }
  .sub-hero { padding-top: 74px; }
  .hero-content { padding: 118px 0 58px; }
  .hero-content p { font-size: 1.05rem; }
  .hero-overlay { background: linear-gradient(180deg, rgba(18, 16, 14, 0.88), rgba(18, 16, 14, 0.54)); }
  .button-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-stats { gap: 14px; margin-top: 34px; }
  .hero-stats div { min-width: 130px; }
  .quick-grid { grid-template-columns: 1fr; text-align: center; }
  .split-section, .service-band, .gallery-preview, .faq-band, .contact-band, .quote-band, .area-band, .dark-band { padding: 58px 0; }
  .split-grid, .trust-grid, .area-grid, .quote-grid, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .card-grid, .masonry-lite, .gallery-grid, .mini-card-grid, .trust-card-grid, .process-grid { grid-template-columns: 1fr; }
  .quote-frame { height: 760px; }
  .map-frame { min-height: 320px; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-bbb-badge {
    right: 12px;
    bottom: 12px;
    width: 186px;
    gap: 9px;
    padding: 8px 9px;
  }
  .bbb-logo-mark {
    width: 42px;
    height: 42px;
    font-size: 0.84rem;
  }
  .bbb-badge-text strong { font-size: 0.82rem; }
  .bbb-badge-text span { font-size: 0.7rem; }
  .bbb-badge-text small { font-size: 0.68rem; }
}
