/*
Theme Name: BrightFoundry Editable v12
Theme URI: https://brightfoundry.io
Author: BrightFoundry
Description: Editable BrightFoundry growth agency theme. Homepage content lives in Pages > Home and uses native WordPress blocks.
Version: 12.0.0
Requires at least: 6.5
Requires PHP: 8.0
Text Domain: brightfoundry
*/

:root {
  --bf-navy: #031a35;
  --bf-navy-2: #082542;
  --bf-red: #ff434f;
  --bf-red-dark: #e92d3d;
  --bf-gold: #ffc400;
  --bf-white: #ffffff;
  --bf-ink: #08102c;
  --bf-muted: #596075;
  --bf-border: #e5e7ee;
  --bf-max: 1180px;
  --bf-body: "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --bf-display: "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--bf-ink);
  background: #fff;
  font-family: var(--bf-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
main { overflow: hidden; }

.bf-container,
.bf-home > .wp-block-group > .wp-block-group__inner-container {
  width: min(var(--bf-max), calc(100% - 44px));
  margin-left: auto;
  margin-right: auto;
}

/* Header */
.bf-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bf-navy);
  border-bottom: 0;
  backdrop-filter: none;
}
.bf-header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.bf-brand {
  display: inline-flex;
  flex-direction: column;
  line-height: .9;
}
.bf-brand-main {
  color: var(--bf-red);
  font-family: var(--bf-display);
  font-weight: 900;
  letter-spacing: -1.1px;
  font-size: 22px;
}
.bf-brand-sub {
  color: #fff;
  font-size: 10px;
  letter-spacing: 5px;
  margin-top: 8px;
  text-align: center;
  font-weight: 700;
}

.bf-brand-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.bf-brand-logo img {
  display: block;
  width: 236px;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
}
.bf-footer .bf-brand-logo img {
  width: 220px;
  max-height: 58px;
}

.bf-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.bf-nav a { opacity: .9; }
.bf-nav a:hover { opacity: 1; color: var(--bf-gold); }

/* Shared buttons */
.bf-btn,
.bf-home .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 3px;
  font-family: var(--bf-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .1px;
  transition: transform .15s ease, background .15s ease;
  text-decoration: none;
  box-shadow: none;
}
.bf-btn:hover,
.bf-home .wp-block-button__link:hover { transform: translateY(-1px); }
.bf-btn-red,
.bf-home .bf-btn-red .wp-block-button__link {
  color: #fff;
  background: var(--bf-red);
  border: 1px solid var(--bf-red);
}
.bf-btn-red:hover,
.bf-home .bf-btn-red .wp-block-button__link:hover { background: var(--bf-red-dark); }
.bf-btn-outline,
.bf-home .bf-btn-outline .wp-block-button__link {
  color: var(--bf-gold);
  border: 1px solid var(--bf-gold);
  background: transparent;
}
.bf-btn-dark,
.bf-home .bf-btn-dark .wp-block-button__link {
  color: #fff;
  background: var(--bf-navy);
  min-width: 230px;
}
.bf-btn-small {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--bf-red);
  color: var(--bf-red);
  background: transparent;
}

/* Keep the display type the user liked */
.bf-home h1,
.bf-home h2,
.bf-home .bf-display,
.bf-footer .bf-display {
  font-family: var(--bf-display);
  font-weight: 800;
}

/* Manrope for supporting type */
.bf-home p,
.bf-home h3,
.bf-home h4,
.bf-home .bf-eyebrow,
.bf-home .bf-kicker,
.bf-home .bf-step-num,
.bf-home .wp-block-button__link,
.bf-footer,
.bf-header {
  font-family: var(--bf-body);
}

/* Homepage blocks: remove default block spacing that can fight the design */
.bf-home > * { margin-block-start: 0 !important; margin-block-end: 0 !important; }
.bf-home .wp-block-group,
.bf-home .wp-block-columns,
.bf-home .wp-block-buttons,
.bf-home .wp-block-heading,
.bf-home p { margin-top: 0; }

/* Hero */
.bf-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 0 !important;
  background-color: var(--bf-navy);
  background-image:
    linear-gradient(90deg,
      rgba(3,26,53,1) 0%,
      rgba(3,26,53,1) 32%,
      rgba(3,26,53,.96) 39%,
      rgba(3,26,53,.72) 47%,
      rgba(3,26,53,.28) 58%,
      rgba(3,26,53,.04) 70%,
      rgba(3,26,53,0) 100%),
    url("assets/forge-hero-art.jpg");
  background-size: 100% 100%, 67% 100%;
  background-position: center, right center;
  background-repeat: no-repeat;
}
.bf-hero-grid {
  min-height: 650px;
  display: grid !important;
  grid-template-columns: 1.02fr .98fr;
  width: 100%;
  max-width: none !important;
}
.bf-hero-copy {
  padding: 72px 44px 72px max(22px, calc((100vw - var(--bf-max))/2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.bf-eyebrow {
  color: var(--bf-gold);
  font-weight: 800;
  letter-spacing: 1.45px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.bf-hero h1 {
  font-size: clamp(52px, 5.4vw, 76px);
  line-height: .99;
  letter-spacing: -3.2px;
  margin: 17px 0 14px;
  max-width: 670px;
}
.bf-hero .bf-hero-accent {
  color: var(--bf-red);
  font-family: var(--bf-display);
  font-weight: 800;
  font-size: clamp(27px, 2.55vw, 38px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin: 0 0 25px;
  max-width: 620px;
}
.bf-rule {
  width: 45px;
  height: 3px;
  background: var(--bf-gold);
  margin: 0 0 22px;
}
.bf-rule p { display:none; }
.bf-hero .bf-hero-body {
  max-width: 610px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,.88);
  margin: 0 0 29px;
}
.bf-actions {
  display: flex !important;
  gap: 16px !important;
  flex-wrap: wrap;
}
.bf-hero-art {
  min-height: 650px;
  background: transparent !important;
}

/* Proof row */
.bf-proof {
  background: var(--bf-navy);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 0 !important;
}
.bf-proof-grid {
  width: min(var(--bf-max), calc(100% - 44px));
  margin: 0 auto;
  display:grid !important;
  grid-template-columns: repeat(4, 1fr);
}
.bf-proof-item {
  padding: 28px 28px 30px;
  border-right: 1px solid rgba(255,255,255,.15);
  min-height: 142px;
}
.bf-proof-item:last-child { border-right: 0; }
.bf-proof-item h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 750;
  letter-spacing: -.25px;
}
.bf-proof-item p {
  margin:0;
  color:rgba(255,255,255,.75);
  font-size:14px;
  line-height:1.58;
  font-weight: 400;
}
.bf-mini-rule {
  width: 24px;
  height: 3px;
  background: var(--bf-gold);
  margin: 14px 0;
}
.bf-mini-rule p { display:none; }

/* Main sections */
.bf-section { padding: 88px 0 !important; }
.bf-section > .wp-block-group__inner-container,
.bf-section-inner {
  width: min(var(--bf-max), calc(100% - 44px));
  margin: 0 auto;
}
.bf-section-head {
  display:grid !important;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items:end;
  margin-bottom: 46px !important;
}
.bf-kicker {
  color: var(--bf-red);
  text-transform:uppercase;
  font-weight:800;
  letter-spacing:1.55px;
  font-size:12px;
  margin-bottom: 0;
}
.bf-section h2,
.bf-process h2,
.bf-legal h2 {
  font-size: clamp(38px, 4vw, 56px);
  line-height:1.03;
  letter-spacing:-2px;
  margin:10px 0 0;
}
.bf-section-head > .wp-block-group:last-child > p,
.bf-section-head .bf-section-intro {
  margin:0;
  color: var(--bf-muted);
  line-height:1.65;
  font-size:16px;
  font-weight: 400;
}

/* Services */
.bf-services {
  display:grid !important;
  grid-template-columns: repeat(5, 1fr);
  border-top:1px solid var(--bf-border);
  border-bottom:1px solid var(--bf-border);
}
.bf-service {
  padding: 30px 26px 34px;
  border-right:1px solid var(--bf-border);
}
.bf-service:last-child { border-right:0; }
.bf-service h3 {
  font-size:17px;
  line-height: 1.3;
  margin:0 0 12px;
  font-weight: 750;
  letter-spacing: -.3px;
}
.bf-service p {
  font-size:14px;
  line-height:1.6;
  color:var(--bf-muted);
  min-height:92px;
  font-weight: 400;
}
.bf-service .bf-service-link {
  color:var(--bf-red);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing: .2px;
}
.bf-service-mark {
  width:28px;
  height:3px;
  background:linear-gradient(90deg,var(--bf-gold),var(--bf-red));
  margin:0 0 18px;
}
.bf-service-mark p { display:none; }



/* Engagement models */
.bf-engagement {
  background:#fff;
  padding: 78px 0 84px !important;
}
.bf-engagement-inner {
  width: min(var(--bf-max), calc(100% - 44px));
  margin: 0 auto;
}
.bf-engagement-head {
  max-width: 760px;
  margin-bottom: 34px !important;
}
.bf-engagement-head h2 {
  font-size: clamp(38px, 4.2vw, 58px);
  line-height:1.04;
  letter-spacing:-2px;
  color: var(--bf-navy);
  margin: 10px 0 0;
}
.bf-engagement-head .bf-engagement-intro {
  max-width: 680px;
  color: var(--bf-ink);
  font-size: 17px;
  line-height: 1.68;
  margin: 0;
}
.bf-engagement-grid {
  display:grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bf-plan {
  background:#fff;
  border:1px solid #e5e7ee;
  border-radius: 8px;
  padding: 34px 34px 28px;
  display:flex !important;
  flex-direction:column;
  min-height: 100%;
}
.bf-plan h3 {
  color: var(--bf-navy);
  font-size: 24px;
  line-height:1.2;
  margin:0 0 14px;
  font-family: var(--bf-display);
  font-weight: 800;
}
.bf-plan-price {
  color: var(--bf-red);
  font-size: 28px;
  line-height:1.15;
  letter-spacing:-.6px;
  font-weight: 800;
  margin: 0 0 18px;
}
.bf-plan-desc {
  color: #242b46;
  font-size: 15px;
  line-height: 1.68;
  margin: 0 0 22px;
}
.bf-plan-rule {
  width: 100%;
  height: 1px;
  background: #e5e7ee;
  margin: 0 0 18px;
}
.bf-plan-rule p { display:none; }
.bf-plan-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.bf-plan-list li {
  position: relative;
  padding-left: 22px;
  margin: 0 0 13px;
  color: #24304e;
  font-size: 15px;
  line-height: 1.5;
}
.bf-plan-list li:last-child { margin-bottom:0; }
.bf-plan-list li:before {
  content: '–';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--bf-red);
  font-weight: 800;
}
.bf-plan-note {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid #e5e7ee;
  color: #24304e;
  font-size: 15px;
  line-height: 1.6;
}
.bf-engagement-cta {
  margin-top: 28px !important;
  justify-content:center;
}
.bf-engagement-cta .wp-block-button__link {
  min-width: 420px;
}

/* Process */
.bf-process {
  background: var(--bf-navy);
  color:#fff;
}
.bf-process-inner {
  width: min(var(--bf-max), calc(100% - 44px));
  margin: 0 auto;
  display:grid !important;
  grid-template-columns: .95fr 1.45fr;
  gap:65px;
  align-items:start;
}
.bf-process h2 { color:#fff; }
.bf-process-steps {
  display:grid !important;
  grid-template-columns:repeat(4,1fr);
}
.bf-step {
  padding: 4px 24px 20px;
  border-left:1px solid rgba(255,255,255,.15);
}
.bf-step-num {
  color:var(--bf-red);
  font-size:28px;
  font-weight:800;
  margin-bottom:13px;
}
.bf-step h3 {
  margin:0 0 10px;
  font-size:15px;
  line-height: 1.3;
  font-weight: 750;
}
.bf-step p {
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:13px;
  line-height:1.58;
}

/* Legal specialty */
.bf-legal { background:#fff; }
.bf-legal-inner {
  width: min(var(--bf-max), calc(100% - 44px));
  margin: 0 auto;
  display:grid !important;
  grid-template-columns:1fr 1fr;
  gap:72px;
  align-items:center;
}
.bf-legal-copy .bf-legal-body {
  color:var(--bf-muted);
  line-height:1.7;
  font-size:15px;
}
.bf-checks {
  background:var(--bf-navy);
  color:#fff;
  padding:34px 38px;
  border-right:4px solid var(--bf-red);
  border-bottom:4px solid var(--bf-gold);
}
.bf-check {
  position: relative;
  padding:14px 0 14px 33px;
  border-bottom:1px solid rgba(255,255,255,.13);
  font-weight:650;
  font-size:14px;
  line-height: 1.45;
  margin:0;
}
.bf-check:last-child { border-bottom:0; }
.bf-check:before {
  content:'✓';
  position: absolute;
  left: 0;
  top: 13px;
  color:var(--bf-gold);
  border:1px solid var(--bf-gold);
  border-radius:50%;
  width:21px;
  height:21px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}

/* CTA */
.bf-cta {
  background: linear-gradient(100deg, #241052 0%, #ef3345 55%, #ffae13 100%);
  color:#fff;
  padding: 0 !important;
}
.bf-cta-inner {
  width: min(var(--bf-max), calc(100% - 44px));
  margin: 0 auto;
  min-height:175px;
  display:flex !important;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}
.bf-cta h2 {
  color:#fff;
  margin:0 0 10px;
  font-size:38px;
  letter-spacing:-1px;
}
.bf-cta p {
  margin:0;
  color:rgba(255,255,255,.88);
  font-size:15px;
  line-height: 1.55;
}

/* Contact */
.bf-contact { background:#f7f8fb; }
.bf-contact-inner {
  width: min(var(--bf-max), calc(100% - 44px));
  margin: 0 auto;
  display:grid !important;
  grid-template-columns:.8fr 1.2fr;
  gap:70px;
  align-items:start;
}
.bf-contact-copy .bf-contact-body {
  color:var(--bf-muted);
  line-height:1.68;
  font-size:15px;
}
.bf-form {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.bf-form input,
.bf-form textarea {
  width:100%;
  border:1px solid #d9dde7;
  background:#fff;
  padding:15px 16px;
  font-family: var(--bf-body);
  font-size: 14px;
  color:var(--bf-ink);
  border-radius:3px;
}
.bf-form textarea {
  min-height:130px;
  resize:vertical;
  grid-column:1/-1;
}
.bf-form .bf-full { grid-column:1/-1; }
.bf-form button { border:0; cursor:pointer; }
.bf-notice {
  grid-column:1/-1;
  font-size:12px;
  line-height: 1.5;
  color:var(--bf-muted);
}
.bf-success,
.bf-error {
  padding:12px 15px;
  margin-bottom:20px;
  font-size: 14px;
}
.bf-success { background:#eef9f0; border:1px solid #b6e3bd; }
.bf-error { background:#fff1f2; border:1px solid #fecdd3; }

/* Footer */
.bf-footer {
  background:#04113f;
  color:#fff;
  padding:46px 0 28px;
}
.bf-footer-grid {
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr .9fr;
  gap:42px;
}
.bf-footer h4 {
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:1px;
  margin:0 0 16px;
  color:#fff;
  font-weight: 800;
}
.bf-footer p,
.bf-footer a {
  font-size:13px;
  line-height:1.75;
  color:rgba(255,255,255,.68);
}
.bf-footer a:hover { color:#fff; }
.bf-footer-bottom {
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:34px;
  padding-top:22px;
  font-size:12px;
  color:rgba(255,255,255,.45);
  display:flex;
  justify-content:space-between;
  gap:20px;
}

/* Normal pages */
.bf-standard-page {
  width: min(900px, calc(100% - 44px));
  margin: 0 auto;
  padding: 70px 0 100px;
}
.bf-standard-page h1,
.bf-standard-page h2,
.bf-standard-page h3 { font-family: var(--bf-display); }
.bf-standard-page p,
.bf-standard-page li { line-height: 1.75; }

@media (max-width: 980px) {
  
.bf-brand-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.bf-brand-logo img {
  display: block;
  width: 236px;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
}
.bf-footer .bf-brand-logo img {
  width: 220px;
  max-height: 58px;
}

.bf-nav { display:none; }
  .bf-hero-grid { grid-template-columns:1fr; }
  .bf-hero-copy { padding:66px 28px; }
  .bf-hero-art { min-height:330px; background-position:center 55%; }
  .bf-proof-grid { grid-template-columns:1fr 1fr; }
  .bf-proof-item:nth-child(2) { border-right:0; }
  .bf-proof-item:nth-child(-n+2) { border-bottom:1px solid rgba(255,255,255,.15); }
  .bf-section-head,
  .bf-process-inner,
  .bf-legal-inner,
  .bf-contact-inner { grid-template-columns:1fr; gap:34px; }
  .bf-services { grid-template-columns:1fr 1fr; }
  .bf-service:nth-child(2n) { border-right:0; }
  .bf-service { border-bottom:1px solid var(--bf-border); }
  .bf-process-steps { grid-template-columns:1fr 1fr; gap:28px 0; }
  .bf-footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 640px) {
  .bf-container,
  .bf-proof-grid,
  .bf-section-inner,
  .bf-process-inner,
  .bf-legal-inner,
  .bf-cta-inner,
  .bf-contact-inner {
    width:min(calc(100% - 30px), var(--bf-max));
  }
  .bf-header-inner { min-height:68px; }
  .bf-brand-logo img { width: 190px; max-height: 48px; }
  .bf-footer .bf-brand-logo img { width: 205px; }
  .bf-btn-small { font-size:11px; padding:0 11px; min-height:38px; }
  .bf-hero h1 { font-size:46px; letter-spacing:-2px; }
  .bf-hero .bf-hero-accent { font-size:40px; letter-spacing:-1.8px; }
  .bf-hero .bf-hero-body { font-size:16px; }
  .bf-hero-art { min-height:260px; }
  .bf-proof-grid,
  .bf-services,
  .bf-process-steps,
  .bf-footer-grid { grid-template-columns:1fr; }
  .bf-proof-item,
  .bf-proof-item:nth-child(2) { border-right:0; border-bottom:1px solid rgba(255,255,255,.15); }
  .bf-service { border-right:0; }
  .bf-section { padding:68px 0 !important; }
  .bf-section h2,
  .bf-process h2,
  .bf-legal h2 { font-size:38px; letter-spacing:-1.4px; }
  .bf-process-steps { gap: 0; }
  .bf-step { padding:22px 0; border-left:0; border-top:1px solid rgba(255,255,255,.15); }
  .bf-cta-inner { min-height:0; padding:38px 0; display:block !important; }
  .bf-cta h2 { font-size:32px; }
  .bf-cta .wp-block-buttons { margin-top:24px !important; }
  .bf-form { grid-template-columns:1fr; }
  .bf-form textarea,
  .bf-form .bf-full { grid-column:1; }
  .bf-footer-bottom { flex-direction:column; }
}


/* v5 responsive integrated hero */
@media (max-width: 980px) {
  .bf-brand-logo img { width: 208px; max-height: 52px; }
  .bf-nav { display:none; }
  .bf-hero {
    background-image:
      linear-gradient(180deg,
        rgba(3,26,53,1) 0%,
        rgba(3,26,53,1) 48%,
        rgba(3,26,53,.96) 57%,
        rgba(3,26,53,.72) 67%,
        rgba(3,26,53,.18) 84%,
        rgba(3,26,53,0) 100%),
      url("assets/forge-hero-art.jpg");
    background-size: 100% 100%, auto 55%;
    background-position: center, 66% 100%;
    background-repeat: no-repeat;
  }
  .bf-hero-grid { display:block !important; min-height: 980px; }
  .bf-hero-copy { padding: 58px 28px 410px; }
  .bf-hero h1 { font-size: clamp(48px, 12.5vw, 64px); line-height: 1.01; letter-spacing: -2.5px; max-width: 700px; }
  .bf-hero .bf-hero-accent { font-size: clamp(26px, 6.4vw, 34px); line-height:1.08; letter-spacing:-1px; max-width: 620px; }
  .bf-hero .bf-hero-body { font-size: 17px; max-width: 650px; }
  .bf-hero-art { display:none !important; }
  .bf-proof-grid { grid-template-columns:1fr 1fr; }
  .bf-proof-item:nth-child(2) { border-right:0; }
  .bf-proof-item:nth-child(-n+2) { border-bottom:1px solid rgba(255,255,255,.15); }
  .bf-section-head,
  .bf-process-inner,
  .bf-legal-inner,
  .bf-contact-inner { grid-template-columns:1fr; gap:34px; }
  .bf-services { grid-template-columns:1fr 1fr; }
  .bf-service:nth-child(2n) { border-right:0; }
  .bf-service { border-bottom:1px solid var(--bf-border); }
  .bf-process-steps { grid-template-columns:1fr 1fr; gap:28px 0; }
  .bf-footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 640px) {
  .bf-container,
  .bf-proof-grid,
  .bf-section-inner,
  .bf-process-inner,
  .bf-legal-inner,
  .bf-cta-inner,
  .bf-contact-inner { width:min(calc(100% - 30px), var(--bf-max)); }
  .bf-header { position: relative; }
  .bf-header-inner { min-height:76px; gap:10px; }
  .bf-brand-logo img { width: 180px; max-height: 48px; }
  .bf-footer .bf-brand-logo img { width:205px; }
  .bf-btn-small { font-size:10.5px; padding:0 10px; min-height:38px; white-space:nowrap; }
  .bf-hero {
    background-image:
      linear-gradient(180deg,
        rgba(3,26,53,1) 0%,
        rgba(3,26,53,1) 50%,
        rgba(3,26,53,.94) 59%,
        rgba(3,26,53,.62) 70%,
        rgba(3,26,53,.10) 88%,
        rgba(3,26,53,0) 100%),
      url("assets/forge-hero-art.jpg");
    background-size: 100% 100%, auto 51%;
    background-position: center, 62% 100%;
  }
  .bf-hero-grid { min-height: 920px; }
  .bf-hero-copy { padding: 48px 22px 360px; }
  .bf-eyebrow { font-size:11px; letter-spacing:1.25px; }
  .bf-hero h1 { font-size: clamp(44px, 12.7vw, 58px); line-height:1.01; letter-spacing:-2.2px; margin-top:14px; }
  .bf-hero .bf-hero-accent { font-size: clamp(25px, 7vw, 31px); letter-spacing:-.9px; margin-bottom:20px; }
  .bf-hero .bf-hero-body { font-size:16px; line-height:1.55; }
  .bf-actions { gap:12px !important; }
  .bf-actions .wp-block-button { width:100%; }
  .bf-actions .wp-block-button__link { width:100%; }
  .bf-proof-grid,
  .bf-services,
  .bf-process-steps,
  .bf-footer-grid { grid-template-columns:1fr; }
  .bf-proof-item,
  .bf-proof-item:nth-child(2) { border-right:0; border-bottom:1px solid rgba(255,255,255,.15); }
  .bf-service { border-right:0; }
  .bf-section { padding:68px 0 !important; }
  .bf-section h2,
  .bf-process h2,
  .bf-legal h2 { font-size:38px; letter-spacing:-1.4px; }
  .bf-process-steps { gap:0; }
  .bf-step { padding:22px 0; border-left:0; border-top:1px solid rgba(255,255,255,.15); }
  .bf-cta-inner { min-height:0; padding:38px 0; display:block !important; }
  .bf-cta h2 { font-size:32px; }
  .bf-cta .wp-block-buttons { margin-top:24px !important; }
  .bf-form { grid-template-columns:1fr; }
  .bf-form textarea,
  .bf-form .bf-full { grid-column:1; }
  .bf-footer-bottom { flex-direction:column; }
}


@media (max-width: 980px) {
  .bf-engagement-grid { grid-template-columns: 1fr; gap:18px; }
  .bf-engagement-head { max-width:none; }
  .bf-engagement-cta .wp-block-button__link { min-width: 0; width: 100%; }
  .bf-hero {
    background-image:
      linear-gradient(180deg,
        rgba(3,26,53,1) 0%,
        rgba(3,26,53,1) 48%,
        rgba(3,26,53,.95) 60%,
        rgba(3,26,53,.64) 72%,
        rgba(3,26,53,.16) 88%,
        rgba(3,26,53,0) 100%),
      url("assets/forge-hero-art.jpg");
    background-size: 100% 100%, auto 50%;
    background-position: center, 66% 100%;
    background-repeat: no-repeat;
  }
  .bf-hero-grid { display:block !important; min-height: 930px; }
  .bf-hero-copy { padding: 58px 28px 385px; }
  .bf-hero-art { display:none !important; }
}
@media (max-width: 640px) {
  .bf-engagement { padding: 64px 0 68px !important; }
  .bf-engagement-head h2 { font-size: 42px; letter-spacing: -1.5px; }
  .bf-engagement-head .bf-engagement-intro,
  .bf-plan-desc,
  .bf-plan-note,
  .bf-plan-list li { font-size: 14px; }
  .bf-plan { padding: 28px 24px 24px; }
  .bf-plan h3 { font-size: 22px; }
  .bf-plan-price { font-size: 24px; }
  .bf-hero {
    background-image:
      linear-gradient(180deg,
        rgba(3,26,53,1) 0%,
        rgba(3,26,53,1) 50%,
        rgba(3,26,53,.95) 60%,
        rgba(3,26,53,.70) 73%,
        rgba(3,26,53,.18) 90%,
        rgba(3,26,53,0) 100%),
      url("assets/forge-hero-art.jpg");
    background-size: 100% 100%, auto 45%;
    background-position: center, 60% 100%;
  }
  .bf-hero-grid { min-height: 860px; }
  .bf-hero-copy { padding: 46px 22px 315px; }
}


/* v9 cleanup: remove decorative dashes/lines and place engagement lower in flow */
.bf-home .wp-block-separator.bf-rule,
.bf-home .wp-block-separator.bf-mini-rule,
.bf-home .wp-block-separator.bf-service-mark,
.bf-home .wp-block-separator.bf-plan-rule,
.bf-home .bf-rule,
.bf-home .bf-mini-rule,
.bf-home .bf-service-mark,
.bf-home .bf-plan-rule {
  display: none !important;
}
.bf-proof-grid,
.bf-services,
.bf-process-steps,
.bf-footer-grid {
  gap: 0 28px;
}
.bf-services { row-gap: 18px; }
.bf-process-steps { row-gap: 24px; }
.bf-plan-list li { padding-left: 0; }
.bf-plan-list li:before { content: none; }
.bf-engagement { padding-top: 56px !important; }
.bf-contact { padding-bottom: 34px !important; }
@media (max-width: 980px) {
  .bf-proof-grid,
  .bf-services,
  .bf-process-steps,
  .bf-footer-grid { gap: 18px; }
}
@media (max-width: 640px) {
  .bf-proof-grid,
  .bf-services,
  .bf-process-steps,
  .bf-footer-grid { gap: 14px; }
  .bf-contact { padding-bottom: 20px !important; }
}


/* v10: keep structural dividers, remove only decorative accent rules */
.bf-proof-item {
  border-right: 1px solid rgba(255,255,255,.15) !important;
}
.bf-proof-item:last-child { border-right: 0 !important; }
.bf-services {
  border-top:1px solid var(--bf-border) !important;
  border-bottom:1px solid var(--bf-border) !important;
}
.bf-service {
  border-right:1px solid var(--bf-border) !important;
}
.bf-service:last-child { border-right:0 !important; }
.bf-step {
  border-left:1px solid rgba(255,255,255,.15) !important;
}
.bf-check {
  border-bottom:1px solid rgba(255,255,255,.13) !important;
}
.bf-check:last-child { border-bottom:0 !important; }
.bf-plan {
  border:1px solid #e5e7ee !important;
}
.bf-plan-note {
  border-top:1px solid #e5e7ee !important;
}
@media (max-width: 980px) {
  .bf-proof-item:nth-child(2) { border-right:0 !important; }
  .bf-proof-item:nth-child(-n+2) { border-bottom:1px solid rgba(255,255,255,.15) !important; }
  .bf-service:nth-child(2n) { border-right:0 !important; }
  .bf-service { border-bottom:1px solid var(--bf-border) !important; }
}
@media (max-width: 640px) {
  .bf-proof-item,
  .bf-proof-item:nth-child(2) {
    border-right:0 !important;
    border-bottom:1px solid rgba(255,255,255,.15) !important;
  }
  .bf-service { border-right:0 !important; border-bottom:1px solid var(--bf-border) !important; }
  .bf-step { border-left:0 !important; border-top:1px solid rgba(255,255,255,.15) !important; }
}


/* v11: restore decorative accent lines with cleaner colors */
.bf-home .wp-block-separator.bf-rule,
.bf-home .wp-block-separator.bf-mini-rule,
.bf-home .wp-block-separator.bf-service-mark,
.bf-home .bf-rule,
.bf-home .bf-mini-rule,
.bf-home .bf-service-mark {
  display: block !important;
  border: 0 !important;
  opacity: 1 !important;
}
.bf-rule {
  background: #f2b544 !important;
  border-radius: 999px;
  height: 3px;
}
.bf-mini-rule,
.bf-service-mark {
  background: #ff4b57 !important;
  border-radius: 999px;
  height: 3px;
}
.bf-service-mark {
  width: 26px;
  margin: 0 0 18px;
}
.bf-mini-rule {
  width: 24px;
  margin: 14px 0;
}

/* v11: contact form anti-spam helpers */
.bf-hp-wrap {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}


/* v12 mobile hero: artwork is integrated into the hero, never stacked below it */
@media (max-width: 980px) {
  .bf-hero-art {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .bf-hero {
    background-color: var(--bf-navy) !important;
    background-image:
      linear-gradient(180deg,
        rgba(3,26,53,.99) 0%,
        rgba(3,26,53,.94) 20%,
        rgba(3,26,53,.82) 42%,
        rgba(3,26,53,.58) 66%,
        rgba(3,26,53,.30) 100%),
      linear-gradient(90deg,
        rgba(3,26,53,.96) 0%,
        rgba(3,26,53,.80) 48%,
        rgba(3,26,53,.28) 100%),
      url("assets/forge-hero-art.jpg") !important;
    background-size: 100% 100%, 100% 100%, cover !important;
    background-position: center, center, 66% center !important;
    background-repeat: no-repeat !important;
  }
  .bf-hero-grid {
    display: block !important;
    min-height: 0 !important;
  }
  .bf-hero-copy {
    min-height: 760px;
    padding: 60px 28px 74px !important;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .bf-hero {
    background-image:
      linear-gradient(180deg,
        rgba(3,26,53,.99) 0%,
        rgba(3,26,53,.94) 18%,
        rgba(3,26,53,.82) 39%,
        rgba(3,26,53,.58) 62%,
        rgba(3,26,53,.28) 100%),
      linear-gradient(90deg,
        rgba(3,26,53,.95) 0%,
        rgba(3,26,53,.76) 50%,
        rgba(3,26,53,.20) 100%),
      url("assets/forge-hero-art.jpg") !important;
    background-size: 100% 100%, 100% 100%, auto 100% !important;
    background-position: center, center, 61% center !important;
  }
  .bf-hero-copy {
    min-height: 790px;
    padding: 48px 22px 58px !important;
  }
}
