/* B&B Global Marketing Solutions — clean / minimal */

:root {
  --navy: #1B2A4E;
  --navy-soft: #2A3A60;
  --orange: #F39B3F;
  --orange-deep: #E58520;
  --ink: #111827;
  --muted: #6B7280;
  --line: #E5E7EB;
  --line-soft: #F0F0EC;
  --bg: #FFFFFF;
  --surface: #FAFAF7;
  --max: 1180px;
  --pad: 32px;
  --radius: 6px;
  --serif: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", -apple-system, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--orange-deep); }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ─────────────── HEADER ─────────────── */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: var(--navy);
}
.brand img { height: 72px; width: auto; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  white-space: nowrap;
}
.brand-text .lg {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--navy);
  white-space: nowrap;
}
.brand-text .sm {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .brand-text { display: none; }
}

.nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav a {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav a:hover { color: var(--orange-deep); }
.nav a.active { color: var(--orange-deep); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -28px;
  height: 2px;
  background: var(--orange);
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover { background: var(--navy-soft); color: #fff; }
.btn-orange {
  background: var(--orange);
  color: #fff;
}
.btn-orange:hover { background: var(--orange-deep); color: #fff; }
.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }

/* ─────────────── HERO ─────────────── */
.hero {
  padding: 110px 0 100px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-grid {
  display: flex;
  align-items: center;
  gap: 56px;
}
.hero-copy {
  flex: 1 1 auto;
  min-width: 0;
}
.hero-visual {
  flex: 0 0 auto;
  width: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─────────────── HERO MARK ─────────────── */
.hero-mark {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
}
.hero-mark-svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(27, 42, 78, 0.10));
}

@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero-visual { width: 280px; }
}
@media (max-width: 768px) {
  .hero-grid { gap: 28px; }
  .hero-visual { width: 220px; }
}
@media (max-width: 560px) {
  .hero-grid { flex-direction: column; align-items: stretch; gap: 28px; }
  .hero-visual { order: -1; width: 100%; max-width: 240px; margin: 0 auto; }
}

.hero .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 28px;
  max-width: 880px;
}
.hero h1 .accent { color: var(--orange); }
.hero .lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 40px;
}
.hero .cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─────────────── PAGE HEADER (interior pages) ─────────────── */
.page-header {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 20px;
}
.page-header h1 {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 20px;
  max-width: 760px;
}
.page-header .lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 640px;
  margin: 0;
}

/* ─────────────── SECTIONS ─────────────── */
section { padding: 96px 0; }
section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
section.tight { padding: 72px 0; }

.section-head {
  margin-bottom: 56px;
  max-width: 720px;
}
.section-head .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 16px;
}
.section-head p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ─────────────── SERVICES GRID ─────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  padding: 36px 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.15s, transform 0.15s;
}
.card:hover { border-color: var(--navy); }
.card .num {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 20px;
}
.card .link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card .link:hover { color: var(--orange-deep); }

/* ─────────────── BRANDS ─────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.brand-card {
  padding: 48px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}
.brand-card .tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 18px;
}
.brand-card h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.brand-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 460px;
}

/* ─────────────── STATS ─────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 32px 16px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat .n {
  font-size: 38px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat .l {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 500;
  white-space: nowrap;
}

/* ─────────────── CTA ─────────────── */
.cta {
  padding: 96px 0;
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.cta h2 {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 18px;
  color: #fff;
}
.cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta .btn-orange { color: #fff; }

/* ─────────────── FOOTER ─────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 28px;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.footer-grid p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 16px 0 0;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--muted); }
.footer-col a:hover { color: var(--navy); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

/* ─────────────── ABOUT ─────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-grid p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 16px;
}
.about-grid p strong { color: var(--navy); font-weight: 600; }

.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.value h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 10px;
}
.value p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.value .marker {
  width: 28px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 16px;
}

/* ─────────────── CONTACT ─────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.field input, .field textarea, .field select {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--navy);
}
.field textarea { resize: vertical; min-height: 140px; }
.contact-info {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin: 0 0 18px;
}
.contact-row {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.contact-row:first-of-type { border-top: none; padding-top: 0; }
.contact-row .label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-row .value {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
}

/* ─────────────── LEGAL ─────────────── */
.legal-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}
.toc {
  position: sticky;
  top: 110px;
}
.toc h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 18px;
}
.toc ol { list-style: none; padding: 0; margin: 0; counter-reset: t; }
.toc li {
  counter-increment: t;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
}
.toc li::before {
  content: counter(t, decimal-leading-zero) " ";
  color: var(--orange);
  font-weight: 600;
  margin-right: 8px;
}
.toc a { color: var(--muted); }
.toc a:hover { color: var(--navy); }

.legal-body { max-width: 740px; }
.legal-body section { padding: 0 0 48px; border: none; }
.legal-body h2 {
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.legal-body p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #374151;
  margin: 0 0 14px;
}
.legal-body ul {
  padding-left: 20px;
  margin: 0 0 14px;
  color: #374151;
}
.legal-body li {
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 6px;
}
.updated {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
}

/* ─────────────── BRAND LOCKUPS ─────────────── */
.brand-logo-lockup {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  min-height: 56px;
}
.brand-logo-lockup img {
  height: 56px;
  width: auto;
  display: block;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ─────────────── BREADCRUMB ─────────────── */
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: var(--orange-deep); }
.breadcrumb span { margin: 0 10px; opacity: 0.5; }

/* ─────────────── PRODUCTS HUB / SERVICE PAGES ─────────────── */
.service-intro p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 18px;
}
.service-intro p:last-child { margin-bottom: 0; }

.three-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 16px;
}
.pillar { padding: 36px 32px 36px 0; border-right: 1px solid var(--line); }
.pillar:last-child { border-right: none; padding-right: 0; }
.pillar:not(:first-child) { padding-left: 32px; }
.pillar-eyebrow {
  font-size: 11px; font-weight: 600;
  color: var(--orange-deep);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 14px;
}
.pillar h4 {
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.01em; margin: 0 0 12px;
  line-height: 1.3; color: var(--navy);
}
.pillar p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }

.services-stack {
  display: flex; flex-direction: column;
  margin-top: 8px;
  border-top: 1px solid var(--ink);
}
.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px; align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit;
  transition: background 0.2s;
}
.svc-row:hover { background: rgba(243, 155, 63, 0.04); }
.svc-row:hover .svc-row-arrow { transform: translateX(6px); color: var(--orange-deep); }
.svc-row-num {
  font-size: 13px; font-weight: 600;
  color: var(--orange-deep);
  letter-spacing: 0.18em; text-transform: uppercase;
  padding-top: 6px;
}
.svc-row-body h3 {
  font-size: 30px; font-weight: 600;
  margin: 0 0 14px;
  letter-spacing: -0.02em; line-height: 1.15; color: var(--navy);
}
.svc-row-body p {
  font-size: 16px; line-height: 1.65;
  color: var(--muted); margin: 0; max-width: 720px;
}
.svc-row-arrow {
  font-size: 22px; color: var(--ink);
  padding-top: 4px;
  transition: transform 0.2s, color 0.2s;
}

/* services list (numbered) */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 48px;
  counter-reset: svc;
  margin-top: 40px;
}
.svc-item {
  display: flex; gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  counter-increment: svc;
}
.svc-item:first-child, .svc-item:nth-child(2) { border-top-color: var(--ink); }
.svc-num {
  font-size: 13px; font-weight: 600;
  color: var(--orange-deep);
  letter-spacing: 0.06em;
  min-width: 32px; padding-top: 3px;
}
.svc-num::before { content: counter(svc, decimal-leading-zero); }
.svc-text {
  font-size: 16px; line-height: 1.55;
  color: var(--ink); font-weight: 500;
}

/* process steps */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--ink);
}
.step { padding: 32px 32px 36px 0; border-right: 1px solid var(--line); }
.step:last-child { border-right: none; padding-right: 0; }
.step:not(:first-child) { padding-left: 32px; }
.step-num {
  font-size: 13px; font-weight: 600;
  color: var(--orange-deep);
  letter-spacing: 0.18em;
  margin-bottom: 14px; text-transform: uppercase;
}
.step h4 {
  font-size: 22px; font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.01em; line-height: 1.25; color: var(--navy);
}
.step p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0 0 12px; }
.step p:last-child { margin-bottom: 0; }

/* facts grid */
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.fact {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  padding-right: 32px;
}
.fact:nth-child(even) {
  padding-left: 32px;
  padding-right: 0;
  border-left: 1px solid var(--line);
}
.fact-eyebrow {
  font-size: 11px; font-weight: 600;
  color: var(--orange-deep);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 12px;
}
.fact h3 {
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 14px; line-height: 1.2; color: var(--navy);
}
.fact p { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0 0 12px; }
.fact p:last-child { margin-bottom: 0; }

/* related cards */
.related-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.related-card {
  border: 1px solid var(--line);
  padding: 28px;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color 0.2s, transform 0.2s;
}
.related-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.related-eyebrow {
  font-size: 11px; font-weight: 600;
  color: var(--orange-deep);
  text-transform: uppercase; letter-spacing: 0.18em;
}
.related-card h4 {
  font-size: 20px; font-weight: 600;
  margin: 4px 0 0; letter-spacing: -0.01em; color: var(--navy);
}
.related-arrow {
  margin-top: auto; padding-top: 14px;
  font-size: 14px; color: var(--muted);
}

/* pull quote */
.pull-quote {
  border-left: 3px solid var(--orange);
  padding: 8px 0 8px 24px;
  margin: 32px 0 0;
  font-size: 22px; line-height: 1.45;
  font-weight: 500; letter-spacing: -0.01em;
  color: var(--ink);
}

/* support page */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  margin-top: 8px;
}
.support-card {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.support-card:last-child { border-right: none; padding-right: 0; }
.support-card:not(:first-child) { padding-left: 32px; }
.support-eyebrow {
  font-size: 11px; font-weight: 600;
  color: var(--orange-deep);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 14px;
}
.support-card h3 {
  font-size: 24px; font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 14px; line-height: 1.25; color: var(--navy);
}
.support-card p {
  font-size: 15px; line-height: 1.65;
  color: var(--muted); margin: 0 0 22px; flex: 1;
}
.support-link {
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}
.support-link:hover { color: var(--orange-deep); border-color: var(--orange-deep); }

.response-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  margin-top: 32px;
}
.response-cell { padding: 36px; border-right: 1px solid var(--line); }
.response-cell:last-child { border-right: none; }
.response-cell-eyebrow {
  font-size: 11px; font-weight: 600;
  color: var(--orange-deep);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 14px;
}
.response-cell h4 {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px; line-height: 1.3; color: var(--navy);
}
.response-cell p { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0; }

.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  margin-top: 40px;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.faq-item h4 {
  font-size: 17px; font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px; line-height: 1.3; color: var(--navy);
}
.faq-item p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }

/* Editor-driven FAQ: Gutenberg outputs raw <h4> + <p> blocks (or <details>).
   Re-style them as the same 2-column FAQ grid. */
.faq-editor-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px 56px;
  margin-top: 40px;
}
@media (max-width: 760px) { .faq-editor-content { grid-template-columns: 1fr; gap: 20px; } }

/* Each H4 + following P pair becomes a card */
.faq-editor-content > h4 {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 17px; font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px; line-height: 1.3; color: var(--navy);
}
.faq-editor-content > p {
  font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0;
}
/* Hide Gutenberg's H2/H3 wrappers if author uses them by mistake */
.faq-editor-content > h2,
.faq-editor-content > h3 {
  grid-column: 1 / -1;
  margin: 16px 0 0;
  font-size: 20px; color: var(--navy);
}

/* Native Details/Summary block support (collapsible FAQ) */
.faq-editor-content details.wp-block-details,
.faq-editor-content details {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin: 0;
}
.faq-editor-content details > summary {
  font-size: 17px; font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3; color: var(--navy);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 28px;
  margin-bottom: 10px;
}
.faq-editor-content details > summary::-webkit-details-marker { display: none; }
.faq-editor-content details > summary::after {
  content: "+";
  position: absolute; right: 0; top: -2px;
  font-weight: 400; color: var(--orange);
  font-size: 22px; line-height: 1;
  transition: transform .2s ease;
}
.faq-editor-content details[open] > summary::after { content: "−"; }
.faq-editor-content details > p,
.faq-editor-content details > div > p {
  font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0 0 8px;
}

/* =============================================================
   .editor-content — generic Gutenberg block styles for prose pages
   Used by page-about, page-contact, all service pages, hub page.
   Also applied (.legal-editor) to legal pages.
   ============================================================= */
.editor-content {
  max-width: 880px;
}
.editor-content > * + * { margin-top: 24px; }

.editor-content h2 {
  font-size: 26px; font-weight: 600;
  color: var(--navy); letter-spacing: -0.01em;
  line-height: 1.25; margin: 48px 0 12px;
}
.editor-content h3 {
  font-size: 20px; font-weight: 600;
  color: var(--navy); letter-spacing: -0.01em;
  margin: 32px 0 10px;
}
.editor-content h4 {
  font-size: 17px; font-weight: 600;
  color: var(--navy); letter-spacing: -0.01em;
  margin: 24px 0 8px;
}
.editor-content p {
  font-size: 16px; line-height: 1.7;
  color: var(--ink); margin: 0;
}
.editor-content p strong { color: var(--navy); font-weight: 600; }
.editor-content a {
  color: var(--orange); text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.editor-content a:hover { color: var(--navy); }
.editor-content ul, .editor-content ol {
  padding-left: 22px; margin: 0;
  font-size: 16px; line-height: 1.7; color: var(--ink);
}
.editor-content li + li { margin-top: 6px; }
.editor-content blockquote,
.editor-content .wp-block-quote {
  border-left: 3px solid var(--orange);
  padding: 4px 0 4px 20px;
  margin: 0;
  font-style: italic;
  color: var(--navy);
}
.editor-content blockquote p { font-size: 18px; line-height: 1.6; }
.editor-content hr,
.editor-content .wp-block-separator {
  border: none; border-top: 1px solid var(--line);
  margin: 32px 0;
}
.editor-content figure { margin: 0; }
.editor-content img,
.editor-content .wp-block-image img {
  max-width: 100%; height: auto;
  border-radius: 4px;
}
.editor-content figcaption {
  font-size: 13px; color: var(--muted);
  margin-top: 8px; text-align: center;
}

/* Two-column layout via core/columns */
.editor-content .wp-block-columns {
  display: grid; grid-template-columns: repeat(var(--cols, 2), 1fr);
  gap: 24px 56px;
}
.editor-content .wp-block-column > * + * { margin-top: 16px; }
@media (max-width: 760px) {
  .editor-content .wp-block-columns { grid-template-columns: 1fr; gap: 24px; }
}

/* Buttons */
.editor-content .wp-block-button { margin: 0; }
.editor-content .wp-block-button__link {
  display: inline-block;
  background: var(--orange); color: #fff;
  padding: 12px 22px; border-radius: 2px;
  font-weight: 500; font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none; border: none;
}
.editor-content .wp-block-button__link:hover {
  background: var(--navy); color: #fff;
}

/* Tables */
.editor-content table,
.editor-content .wp-block-table table {
  width: 100%; border-collapse: collapse;
  font-size: 15px;
}
.editor-content th, .editor-content td {
  text-align: left; padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.editor-content th { color: var(--navy); font-weight: 600; }

/* Code */
.editor-content code {
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 0.92em; background: rgba(0,0,0,0.04);
  padding: 2px 6px; border-radius: 3px;
}
.editor-content pre {
  background: var(--cream, #fbf7ee);
  border: 1px solid var(--line);
  padding: 16px; border-radius: 4px;
  overflow-x: auto; font-size: 14px;
}
.editor-content pre code { background: none; padding: 0; }

/* Reset top spacing for first child */
.editor-content > h2:first-child,
.editor-content > h3:first-child { margin-top: 0; }

/* Legal pages: numbered headings + scroll offset for TOC anchors */
.legal-editor h2 {
  scroll-margin-top: 100px;
}
.legal-editor.legal-editor { /* specificity bump */
  max-width: 740px;
}

/* nav menu reset (WP outputs <ul>) */
.nav .nav-list,
.nav ul.nav-list {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
  margin: 0; padding: 0;
}
.nav .nav-list li { margin: 0; }
.nav .nav-list a {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  text-decoration: none;
}
.nav .nav-list a:hover,
.nav .nav-list .current-menu-item a,
.nav .nav-list .current_page_item a { color: var(--orange-deep); }

.footer-menu {
  list-style: none; padding: 0; margin: 0;
}
.footer-menu li { margin-bottom: 10px; }
.footer-menu a { font-size: 14px; color: var(--muted); text-decoration: none; }
.footer-menu a:hover { color: var(--navy); }

/* skip link */
.skip-link {
  position: absolute;
  top: 0; left: 0;
  background: var(--navy); color: #fff;
  padding: 12px 16px;
  z-index: 100;
  transform: translateY(-100%);
  transition: transform 0.15s;
}
.skip-link:focus {
  transform: translateY(0);
  color: #fff;
}

/* CF7 styling — make it look like our native form */
.wpcf7 form { display: flex; flex-direction: column; gap: 20px; }
.wpcf7 p { margin: 0; }
.wpcf7-form-control-wrap {
  display: block;
}
.wpcf7 label {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--navy);
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpcf7 select {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit; font-size: 15px;
  color: var(--ink); background: var(--bg);
  outline: none; width: 100%;
  transition: border-color 0.15s;
}
.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus { border-color: var(--navy); }
.wpcf7 textarea { resize: vertical; min-height: 140px; }
.wpcf7 input[type="submit"] {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.01em;
  background: var(--orange); color: #fff;
  border: none; cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
  align-self: flex-start;
}
.wpcf7 input[type="submit"]:hover { background: var(--orange-deep); }

.cf7-fallback {
  padding: 24px; border: 1px dashed var(--line);
  border-radius: var(--radius); background: var(--surface);
  font-size: 14.5px; color: var(--muted);
}
.cf7-fallback p { margin: 0 0 10px; }
.cf7-fallback p:last-child { margin: 0; }

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 900px) {
  .hero { padding: 64px 0; }
  .hero h1 { font-size: 40px; }
  .page-header h1 { font-size: 36px; }
  .section-head h2 { font-size: 30px; }
  .grid-3, .grid-2, .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid, .legal-grid { grid-template-columns: 1fr; gap: 32px; }
  .toc { position: static; }
  .nav { display: none; }
  section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .three-pillars, .process, .support-grid, .response-panel, .faq, .services-list, .related-services, .facts {
    grid-template-columns: 1fr;
  }
  .pillar, .step, .support-card, .response-cell {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }
  .pillar:last-child, .step:last-child, .support-card:last-child, .response-cell:last-child { border-bottom: none; }
  .pillar:not(:first-child), .step:not(:first-child), .support-card:not(:first-child) { padding-left: 0; }
  .fact, .fact:nth-child(even) { padding: 28px 0; border-left: none; }
  .svc-row { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .svc-row-arrow { display: none; }
}


/* ─────────────── STAT NUMBER ANIMATION ─────────────── */
.stat .n {
  font-variant-numeric: tabular-nums;
}
.stat .n.is-counting {
  /* hold the layout steady while count is in progress */
  font-feature-settings: "tnum";
}

/* ─────────────── CONTACT FORM (built-in) ─────────────── */
.bbgms-contact-form {
  display: grid;
  gap: 18px;
}
.bbgms-contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bbgms-contact-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.bbgms-contact-form label .optional {
  font-weight: 400;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}
.bbgms-contact-form input[type="text"],
.bbgms-contact-form input[type="email"],
.bbgms-contact-form select,
.bbgms-contact-form textarea {
  font: inherit;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.bbgms-contact-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%), linear-gradient(135deg, var(--navy) 50%, transparent 50%); background-position: calc(100% - 18px) center, calc(100% - 13px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
.bbgms-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.bbgms-contact-form input:focus,
.bbgms-contact-form select:focus,
.bbgms-contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224, 101, 58, 0.12);
}
.bbgms-contact-form .btn-submit {
  justify-self: start;
  cursor: pointer;
  margin-top: 4px;
  padding: 14px 28px;
  font-size: 14px;
  border: none;
}
.bbgms-contact-form .form-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.bbgms-form-success {
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  padding: 28px 32px;
  background: #fff;
  border-radius: 2px;
}
.bbgms-form-success h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}
.bbgms-form-success p { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.6; }
.bbgms-form-error {
  border: 1px solid #f5c6c1;
  background: #fdf3f1;
  color: #8a2a1a;
  padding: 12px 16px;
  border-radius: 2px;
  margin-bottom: 8px;
  font-size: 14px;
}
.bbgms-form-error p { margin: 0; }
