/*
Theme Name:  Blickstein Group
Description: Custom WordPress theme. Built by NTHreeQ. Pixel-matched to blicksteingroup.com.
Version:     3.0.0
Author:      NTHreeQ
Text Domain: blickstein-group
*/

/* â”€â”€â”€ Satoshi â€” exact same files as live blicksteingroup.com â”€â”€â”€ */
@font-face{font-family:'Satoshi';src:url('https://cdn.prod.website-files.com/66b0dd4f1f3a4829e0fc796c/66b0dd4f1f3a4829e0fc7a18_Satoshi-Regular.otf') format('opentype');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Satoshi';src:url('https://cdn.prod.website-files.com/66b0dd4f1f3a4829e0fc796c/66b0dd4f1f3a4829e0fc7a1a_Satoshi-Italic.otf') format('opentype');font-weight:400;font-style:italic;font-display:swap}
@font-face{font-family:'Satoshi';src:url('https://cdn.prod.website-files.com/66b0dd4f1f3a4829e0fc796c/66b0dd4f1f3a4829e0fc7a1e_Satoshi-Medium.otf') format('opentype');font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:'Satoshi';src:url('https://cdn.prod.website-files.com/66b0dd4f1f3a4829e0fc796c/66b0dd4f1f3a4829e0fc79fc_Satoshi-Bold.otf') format('opentype');font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:'Satoshi';src:url('https://cdn.prod.website-files.com/66b0dd4f1f3a4829e0fc796c/66b0dd4f1f3a4829e0fc7a1b_Satoshi-Black.otf') format('opentype');font-weight:900;font-style:normal;font-display:swap}

/* â”€â”€â”€ Design tokens â€” verified from devtools â”€â”€â”€ */
:root{
  --cream:    #FFF0E2; /* rgb(255,240,226) â€” body + hero + most sections */
  --cream-dk: #F4E0CE; /* rgb(244,224,206) â€” offerings bg */
  --black:    #282523; /* rgb(40,37,35)    â€” dark sections + footer */
  --teal:     #007A85; /* rgb(0,122,133)   â€” headings, links */
  --teal-lt:  #02A3A5; /* rgb(2,163,165)   â€” ML heading, stat numbers */
  --teal-dk:  #005F69;
  --muted:    #6B6461;
  --light:    #9A8F89;
  --rule:     rgba(40,37,35,0.12);
  --font:     'Satoshi',-apple-system,'Segoe UI',sans-serif;
  --rad:      24px;
  --ease:     0.18s ease;
  --shadow:   0 8px 40px rgba(40,37,35,.12);
  --max:      1400px;   /* max-width of main containers */
  --pad:      48px;     /* horizontal gutter */
}

/* â”€â”€â”€ Reset â”€â”€â”€ */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body,#page,.site,.site-main,.wp-site-blocks,.content-area,#content,.site-content,
.entry-content-wrap,.is-layout-flow{
  font-family:var(--font)!important;
  background:#FFF0E2!important;
  background-color:#FFF0E2!important;
  color:var(--black);
  -webkit-font-smoothing:antialiased;
}
.entry-content,.wp-block-group,.post-content,article.page{
  padding:0!important;margin:0!important;max-width:none!important;
}
img{max-width:100%;height:auto;display:block}
h1,h2,h3,h4,h5,h6{
  font-family:var(--font)!important;
  color:var(--black)!important;
  line-height:1.1!important;
  font-weight:700!important;
  letter-spacing:-0.02em;
  margin-top:0;
}
p{margin:0 0 1em;line-height:1.7}
p:last-child{margin-bottom:0}
a{color:var(--teal);text-decoration:none;transition:color var(--ease)}
a:hover{color:var(--teal-dk)}

/* â”€â”€â”€ Containers â”€â”€â”€ */
.bg-wrap{max-width:var(--max);margin:0 auto;padding:0 var(--pad)}

/* â”€â”€â”€ Pill CTA button â€” matches live site exactly â”€â”€â”€ */
/* Structure: <a class="bg-cta"><span class="bg-cta__text">Label</span><span class="bg-cta__dot">â†’svg</span></a> */
.bg-cta-btn{
  display:inline-flex;align-items:center;gap:0;
  font-family:var(--font);font-size:14px;font-weight:500;
  text-decoration:none;border-radius:100px;overflow:hidden;
  transition:border-color var(--ease);
}
/* Dark pill (default, on cream bg) */
.bg-cta-btn{border:1.5px solid var(--black);color:var(--black);background:transparent}
.bg-cta-btn:hover{border-color:var(--teal);color:var(--black)}
.bg-cta-btn__text{padding:10px 22px;white-space:nowrap;text-align:center}
.bg-cta-btn__dot{
  width:40px;height:40px;background:var(--black);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin:2px;flex-shrink:0;transition:background var(--ease);
}
.bg-cta-btn:hover .bg-cta-btn__dot{background:var(--teal)}
.bg-cta-btn__dot svg{width:14px;height:14px;color:var(--cream)}
/* Cream pill (on dark bg) */
.bg-cta-btn--light{border-color:var(--cream);color:var(--cream)}
.bg-cta-btn--light .bg-cta-btn__dot{background:rgba(255,255,255,.15)}
.bg-cta-btn--light:hover{border-color:rgba(255,255,255,.6);color:#fff}
.bg-cta-btn--light:hover .bg-cta-btn__dot{background:var(--teal)}
/* Cream-outline on cream-dk bg (offerings section) */
.bg-cta-btn--dk{border-color:var(--cream-dk);color:var(--black);background:var(--cream-dk)}
.bg-cta-btn--dk .bg-cta-btn__dot{background:var(--black)}
.bg-cta-btn--dk:hover{border-color:var(--teal)}

/* â”€â”€â”€ Banner â”€â”€â”€ */
.bg-banner{background:var(--black);padding:10px var(--pad);text-align:center;font-size:13px;font-weight:500;color:rgba(255,255,255,.85);position:relative}
.bg-banner a{color:#fff;text-decoration:underline;text-underline-offset:2px}
.bg-banner__x{position:absolute;right:16px;top:50%;transform:translateY(-50%);background:0;border:0;color:rgba(255,255,255,.4);cursor:pointer;font-size:18px;padding:4px 8px;line-height:1}

/* â”€â”€â”€ Nav â”€â”€â”€ */
.bg-header{background:var(--cream);border-bottom:1px solid var(--rule);position:sticky;top:0;z-index:1000;transition:box-shadow var(--ease)}
.bg-header.scrolled{box-shadow:0 2px 20px rgba(40,37,35,.08)}
.bg-nav{max-width:var(--max);margin:0 auto;padding:0 var(--pad);height:76px;display:flex;align-items:center}
.bg-nav__logo{display:flex;align-items:center;text-decoration:none;flex-shrink:0;margin-right:40px;background:transparent!important}
.bg-nav__logo img{height:56px;width:auto;display:block;background:transparent!important;mix-blend-mode:multiply}
.bg-header .site-branding,.bg-header .custom-logo-link,.bg-header .custom-logo-link img{background:transparent!important}
.bg-nav__links{display:flex;align-items:center;list-style:none;margin:0;padding:0;flex:1;gap:0}
.bg-nav__links>li{position:relative}
.bg-nav__links>li>a{display:flex;align-items:center;gap:4px;padding:26px 16px;font-size:14px;font-weight:500;color:var(--black);white-space:nowrap;transition:color var(--ease)}
.bg-nav__links>li>a svg{width:11px;height:11px;opacity:.4;flex-shrink:0}
.bg-nav__links>li>a:hover,.bg-nav__links>li.current-menu-item>a,.bg-nav__links>li.current-menu-ancestor>a{color:var(--teal)}
.bg-nav__links .sub-menu{position:absolute;top:100%;left:0;background:var(--cream);border:1px solid var(--rule);border-radius:12px;padding:8px;min-width:220px;box-shadow:0 8px 32px rgba(40,37,35,.1);list-style:none;margin:0;opacity:0;visibility:hidden;transform:translateY(4px);transition:all .15s ease;z-index:100}
.bg-nav__links>li:hover>.sub-menu,.bg-nav__links>li:focus-within>.sub-menu{opacity:1;visibility:visible;transform:none}
.bg-nav__links .sub-menu li a{display:block;padding:9px 14px;font-size:14px;color:var(--black);border-radius:8px;transition:all var(--ease)}
.bg-nav__links .sub-menu li a:hover{background:var(--cream-dk);color:var(--teal)}
/* Contact us pill button in nav */
.bg-nav__contact{margin-left:auto;display:inline-flex;align-items:center;gap:0;border:1.5px solid var(--black);border-radius:100px;text-decoration:none;overflow:hidden;transition:border-color var(--ease);flex-shrink:0;background:transparent}
.bg-nav__contact:hover{border-color:var(--teal)}
.bg-nav__contact__text{font-size:14px;font-weight:500;color:var(--black);padding:10px 22px;white-space:nowrap;text-align:center}
.bg-nav__contact__dot{width:40px;height:40px;background:var(--black);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:2px;flex-shrink:0;transition:background var(--ease)}
.bg-nav__contact:hover .bg-nav__contact__dot{background:var(--teal)}
.bg-nav__contact__dot svg{width:14px;height:14px;color:var(--cream)}
.bg-nav__toggle{display:none;flex-direction:column;gap:5px;background:0;border:0;cursor:pointer;padding:6px;margin-left:auto}
.bg-nav__toggle span{display:block;width:22px;height:2px;background:var(--black);border-radius:2px}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOME PAGE SECTIONS
   Each section mapped exactly to its Webflow counterpart
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€â”€ 1. HERO  â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   section.hero-about-b
   bg: cream #FFF0E2, padding: 120px 0
   grid: 622px 622px gap 64px inside max-width container
   left col: text, bottom-aligned, padding-top 40px
   right col: image 494Ã—633px border-radius 24px
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bg-hero{background:var(--cream);padding:120px 0}
.bg-hero__grid{
  max-width:var(--max);margin:0 auto;padding:0 var(--pad) 0;
  display:grid;grid-template-columns:622fr 494fr;gap:64px;
  align-items:center;
}
.bg-hero__left{display:flex;flex-direction:column;padding-top:40px}
.bg-hero__eyebrow{font-size:11px;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);margin-bottom:20px}
.bg-hero__title{font-size:70px!important;font-weight:700!important;color:var(--teal)!important;line-height:1.0!important;letter-spacing:-0.02em!important;margin-bottom:24px!important}
.bg-hero__sub{font-size:18px;color:var(--muted);line-height:1.6;margin-bottom:40px;max-width:480px}
.bg-hero__right{border-radius:var(--rad);overflow:hidden;height:633px}
.bg-hero__right img{width:100%;height:100%;object-fit:cover;object-position:center}

/* â”€â”€â”€ 2. STATS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   section.black-bg
   bg: #282523, padding: 100px 0
   grid: 3 equal cols, gap 40px
   numbers: huge, color var(--teal-lt)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bg-stats{background:var(--black);padding:100px 0}
.bg-stats .bg-wrap{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;align-items:start}
.bg-stats__label{font-size:11px;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.35);display:block;margin-bottom:48px;grid-column:1/-1}
.bg-stat__num{font-size:clamp(80px,11vw,140px);font-weight:700;color:var(--teal-lt);line-height:1;display:block;letter-spacing:-0.03em;margin-bottom:16px}
.bg-stat__body{font-size:14px;color:rgba(255,255,255,.6);line-height:1.7}
.bg-stat__body strong{color:rgba(255,255,255,.88);font-weight:700}
.bg-stat__src{font-size:12px;color:rgba(255,255,255,.28);margin-top:8px;font-style:italic;line-height:1.5;display:block}

/* â”€â”€â”€ 3. RESEARCHÂ·ADVISORYÂ·TRANSFORMATION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   section.home
   bg: cream, padding: 120px 0
   grid: 702px 562px gap 64px 43px
   H2: 60px, color black (NOT teal)
   right side: photo
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bg-intro{background:var(--cream);padding:120px 0}
.bg-intro .bg-wrap{display:grid;grid-template-columns:702fr 562fr;gap:64px;align-items:center}
.bg-intro__eyebrow{font-size:11px;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);display:block;margin-bottom:12px}
.bg-intro__heading{font-size:60px!important;font-weight:700!important;color:var(--black)!important;line-height:1.0!important;margin-bottom:24px!important}
.bg-intro__heading .line{display:block}
.bg-intro__body{font-size:16px;color:var(--muted);line-height:1.8;margin-bottom:32px}
.bg-intro__img{border-radius:var(--rad);overflow:hidden;aspect-ratio:702/562;background:var(--cream-dk)}
.bg-intro__img img{width:100%;height:100%;object-fit:cover;display:block}

/* â”€â”€â”€ 4. OFFERINGS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   section.darker-light
   bg: #F4E0CE, padding: 120px 0
   outer grid: 475px (left) + 712px (right)
   right inner grid: 344px 344px gap 24px
   H2: 60px teal
   Cards: NO bg, NO border, NO radius, 28px dark heading
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bg-offerings{background:var(--cream-dk);padding:120px 0}
.bg-offerings .bg-wrap{display:grid;grid-template-columns:475fr 712fr;gap:120px;align-items:start}
.bg-offerings__left{position:sticky;top:120px}
.bg-offerings__heading{font-size:60px!important;font-weight:700!important;color:var(--teal)!important;line-height:1.0!important;margin-bottom:8px!important}
.bg-offerings__sub{font-size:16px;color:var(--muted);margin-bottom:32px}
.bg-offerings__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:40px 24px}
/* Cards: bare links â€” no box, no border */
.bg-offering{background:transparent;border:none;padding:0;display:block;text-decoration:none;transition:opacity var(--ease)}
.bg-offering:hover{opacity:.78}
.bg-offering h3{font-size:28px!important;font-weight:700!important;color:var(--black)!important;margin-bottom:12px!important;line-height:1.2!important}
.bg-offering p{font-size:15px;color:var(--muted);line-height:1.7;margin:0}

/* â”€â”€â”€ 5. QUOTE / MANIFESTO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   section.dark.manifesto-next-image
   bg: #282523, padding: 120px 0 100px
   quote text big, cream; button cream-outline pill
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bg-quote{background:var(--black);padding:120px 0 100px}
.bg-quote .bg-wrap{max-width:800px}
.bg-quote__icon{width:48px;height:48px;opacity:.5;margin-bottom:24px}
.bg-quote__icon img{width:100%;height:100%}
.bg-quote__text{font-size:clamp(20px,2.4vw,28px);color:rgba(255,255,255,.88);line-height:1.55;margin-bottom:32px;font-weight:400}

/* â”€â”€â”€ 6. PHOTO BAND â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   section.image-after-manifesto-section
   bg: cream, padding: 0 0 40px
   Contains one full-width photo
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bg-photo-band{background:var(--cream);padding:0 0 40px}
.bg-photo-band__img{width:100%;max-height:500px;object-fit:cover;object-position:center}

/* â”€â”€â”€ 7. CLIENT TYPES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   section.no-margin-above-table
   bg: cream, padding: 120px 0
   H2: 60px black centered
   Grid: 420px Ã— 3, gap 10px 24px
   Cards: NO bg, NO border â€” icon + teal heading + text
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bg-clients{background:var(--cream);padding:120px 0}
.bg-clients__hd{text-align:center;margin-bottom:48px}
.bg-clients__hd h2{font-size:60px!important;color:var(--black)!important;margin:0!important}
.bg-clients__grid{
  max-width:var(--max);margin:0 auto;padding:0 var(--pad);
  display:grid;grid-template-columns:repeat(3,1fr);gap:10px 24px;
}
/* Client card â€” no bg, no border, just icon+heading+text */
.bg-client{background:transparent;border:none;padding:0;display:flex;flex-direction:column;gap:12px}
.bg-client__icon{width:44px;height:44px;display:flex;align-items:center;justify-content:center}
.bg-client__icon img{width:36px;height:36px;object-fit:contain}
.bg-client h4{font-size:22px!important;font-weight:700!important;color:var(--teal)!important;margin:0!important}
.bg-client p{font-size:15px;color:var(--muted);line-height:1.65;margin:0}

/* â”€â”€â”€ 8. MARKET LEADERSHIP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   section.black-bg (second one)
   bg: #282523, padding: 50px 0
   H2: 60px color var(--teal-lt)
   Layout: 3-col 425px each
   Col 1: big "Market\nLeadership" + subtitle text
   Col 2: In the News list
   Col 3: Events & Speaking list
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bg-ml{background:var(--black);padding:50px 0}
.bg-ml .bg-wrap{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:start}
/* Col 1 â€” title */
.bg-ml__title{font-size:clamp(40px,5vw,60px)!important;font-weight:700!important;color:var(--teal-lt)!important;line-height:1.0!important;letter-spacing:-0.02em!important;margin-bottom:0!important}
.bg-ml__title span{display:block}
/* Col 2+3 headers */
.bg-ml__col h3{font-size:22px!important;font-weight:700!important;color:#fff!important;margin-bottom:6px!important}
.bg-ml__col p.sub{font-size:14px;color:rgba(255,255,255,.78);font-style:italic;margin-bottom:20px;line-height:1.55}
/* News items */
.bg-news-item{display:block;padding:14px 0;border-bottom:1px solid rgba(255,255,255,.08);text-decoration:none;transition:opacity var(--ease)}
.bg-news-item:last-child{border-bottom:0}
.bg-news-item:hover{opacity:.72}
.bg-news-item__date{font-size:11px;color:rgba(255,255,255,.3);display:block;margin-bottom:2px}
.bg-news-item__src{font-size:11px;font-weight:600;color:rgba(255,255,255,.45);display:block;margin-bottom:5px;text-transform:uppercase;letter-spacing:.04em}
.bg-news-item__title{font-size:14px;font-weight:500;color:rgba(255,255,255,.85);line-height:1.45;display:block}
/* Event rows */
.bg-event{padding:14px 0;border-bottom:1px solid rgba(255,255,255,.08)}
.bg-event:last-child{border-bottom:0}
.bg-event__name{font-size:14px;font-weight:500;color:rgba(255,255,255,.85);display:block;margin-bottom:4px;line-height:1.4}
.bg-event__date{font-size:12px;color:rgba(255,255,255,.35);display:block;margin-bottom:8px}
.bg-event__link{font-size:12px;font-weight:600;color:var(--teal-lt);text-decoration:none}

/* â”€â”€â”€ 9. PUBLISHED RESEARCH â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   section.blog-page-section
   bg: cream, padding: 0 (heading has its own padding above)
   H2: 60px teal, centered
   grid: 420px Ã— 3, gap 48px 24px
   Cards: COMPLETELY bare â€” no bg, no border, no radius
   Just image â†’ teal title â†’ body text
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bg-research{background:var(--cream);padding:120px 0 80px}
.bg-research__hd{text-align:center;margin-bottom:64px}
.bg-research__hd h2{font-size:60px!important;color:var(--teal)!important;font-weight:700!important;margin-bottom:14px!important;line-height:1.0!important}
.bg-research__hd p{font-size:18px;color:var(--muted);margin:0 auto;max-width:560px}
.bg-research__hd .bg-cta-btn{margin-top:28px}
.bg-research__grid{
  max-width:var(--max);margin:0 auto;padding:0 var(--pad);
  display:grid;grid-template-columns:repeat(3,1fr);gap:48px 24px;
}
/* Research header also needs padding */
.bg-research__hd{padding:0 var(--pad)}
/* Research card â€” completely bare */
.bg-rcard{background:transparent;border:none;border-radius:0;display:flex;flex-direction:column;text-decoration:none;transition:opacity var(--ease)}
.bg-rcard:hover{opacity:.82}
.bg-rcard__img{width:100%;aspect-ratio:1/1;overflow:hidden;background:var(--cream-dk);margin-bottom:20px}
.bg-rcard__img img{width:100%;height:100%;object-fit:cover;object-position:center;display:block}
.bg-rcard__placeholder{width:100%;height:100%;background:#004A52;display:flex;align-items:center;justify-content:center}
.bg-rcard__placeholder svg{opacity:.3}
.bg-rcard h3{font-size:22px!important;font-weight:700!important;color:var(--teal)!important;line-height:1.2!important;margin:0 0 10px!important}
.bg-rcard p{font-size:15px;color:var(--muted);line-height:1.7;margin:0}

/* â”€â”€â”€ 10. CTA / IMAGE BG â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   section.image-bg
   Full-width background image with dark overlay
   H1: cream, centered
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bg-cta-section{
  position:relative;
  overflow:hidden;
  min-height:400px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  /* background-attachment:fixed creates the parallax effect */
  background-image:url('https://cdn.prod.website-files.com/66b0dd4f1f3a4829e0fc796c/66b4de18a4c85924048c8d6e_dark-to-light-water.jpg');
  background-size:cover;
  background-position:60% 20%;
  background-attachment:fixed;
}
.bg-cta-section__overlay{position:absolute;inset:0;background:rgba(30,25,20,.5);z-index:1}
.bg-cta-section__inner{position:relative;z-index:2;max-width:700px;padding:80px var(--pad)}
.bg-cta-section__inner h2{font-size:clamp(28px,4vw,48px)!important;color:#fff!important;margin-bottom:32px!important;line-height:1.15!important}

/* â”€â”€â”€ PAGE HERO (inner pages â€” water photo) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   section.hero-contact-c._200-mg-bottom.water
   bg: #282523 with water bg-image, padding: 80px 0 50px
   H1: 70px cream
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bg-page-hero{
  position:relative;
  overflow:hidden;
  background:var(--black);
  padding:80px 0 50px;
  min-height:271px;
  display:flex;
  align-items:center;
}
/* Water photo â€” background-attachment:scroll matches live site */
.bg-page-hero__bg{
  position:absolute;
  inset:0;
  background-image:url('https://cdn.prod.website-files.com/66b0dd4f1f3a4829e0fc796c/66d87c597a3731c1c17f5ca8_just-water-header.jpg');
  background-size:cover;
  background-position:center center;
  background-attachment:scroll;
  opacity:1;
}
.bg-page-hero__overlay{position:absolute;inset:0;background:rgba(0,30,40,.35)}
.bg-page-hero__inner{position:relative;z-index:2;max-width:var(--max);margin:0 auto;padding:0 var(--pad);width:100%}
.bg-page-hero__inner h1{font-size:70px!important;color:var(--cream)!important;margin-bottom:0!important;text-align:center}
.bg-page-hero__inner p{font-size:18px;color:rgba(255,255,255,.75);max-width:520px;line-height:1.6;margin:12px auto 0;text-align:center}

/* â”€â”€â”€ ABOUT â€” unique sections â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€  */
/* About Us + Our Mission: 702fr 562fr same as intro */
.bg-about-split{background:var(--cream);padding:120px 0 0}
.bg-about-split--dk{background:var(--cream-dk)}
.bg-about-split .bg-wrap{display:grid;grid-template-columns:702fr 562fr;gap:64px;align-items:center}
.bg-about-split__img{border-radius:var(--rad);overflow:hidden;background:var(--cream-dk)}
.bg-about-split__img img{width:100%;height:auto;object-fit:contain;display:block}
.bg-about-split h2{font-size:60px!important;color:var(--teal)!important;margin-bottom:24px!important}
.bg-about-split h2 em{font-style:normal;color:var(--black)}
.bg-about-split p{font-size:16px;color:var(--muted);line-height:1.8;margin-bottom:16px}

/* Featured in â€” logos strip */
.bg-featured{background:var(--cream);padding:40px 0}
.bg-featured .bg-wrap{display:flex;align-items:center;gap:40px;flex-wrap:wrap;opacity:.55;filter:grayscale(100%)}
.bg-featured img{height:26px;width:auto}
.bg-featured span{font-size:14px;font-weight:700;color:var(--black)}

/* Team grid */
.bg-team-section{background:var(--cream);padding:120px 0}
.bg-team__hd{text-align:center;margin-bottom:48px}
.bg-team__hd h2{font-size:60px!important;color:var(--teal)!important;margin:0!important}
.bg-team-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px;max-width:var(--max);margin:0 auto;padding:0 var(--pad)}
.bg-team-card{background:var(--cream-dk);border-radius:var(--rad);overflow:hidden}
.bg-team-card__photo{background:var(--teal);aspect-ratio:1/1.15;overflow:hidden}
.bg-team-card__photo img{width:100%;height:100%;object-fit:cover;object-position:top center}
.bg-team-card__body{padding:24px;text-align:center}
.bg-team-card__name{font-size:22px!important;font-weight:700!important;color:var(--black)!important;margin-bottom:6px!important}
.bg-team-card__role{font-size:13px;color:var(--muted);margin-bottom:20px;line-height:1.4}
.bg-team-card__links{display:flex;gap:12px;justify-content:center;align-items:center}
.bg-team-card__links a{display:flex;align-items:center;justify-content:center;width:32px;height:32px;color:var(--muted);transition:color var(--ease)}
.bg-team-card__links a:hover{color:var(--teal)}
.bg-team-card__links svg{width:18px;height:18px}

/* About quote â€” green bg */
.bg-about-quote{background:var(--teal);padding:120px 0 100px}
.bg-about-quote__text{font-size:clamp(22px,2.8vw,32px);color:#fff;line-height:1.5;max-width:720px;font-weight:400;margin-bottom:32px}

/* Core values grid â€” 622px 622px gap 16px 64px */
.bg-values{background:var(--cream);padding:120px 0}
.bg-values .bg-wrap{display:grid;grid-template-columns:1fr 1fr;gap:16px 64px}
.bg-value{padding:0}
.bg-value h4{font-size:22px!important;font-weight:700!important;color:var(--black)!important;margin-bottom:12px!important}
.bg-value p{font-size:15px;color:var(--muted);line-height:1.7;margin:0}

/* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   bg: #282523, padding: 120px 0 64px
   grid: 1fr 1fr 1fr 1fr, gap 16px 32px
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bg-footer{background:var(--black);padding:120px 0 0}
.bg-footer .bg-wrap{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;gap:16px 32px}
.bg-footer__logo img,.bg-footer .bg-footer__top>div>img{height:44px;width:auto;margin-bottom:20px;display:block}
.bg-footer__tagline{font-size:14px;color:rgba(255,255,255,.65);line-height:1.7;margin-bottom:16px}
.bg-footer__contact{font-size:14px;color:rgba(255,255,255,.55);line-height:2.2}
.bg-footer__contact a{color:rgba(255,255,255,.7)}
.bg-footer__contact a:hover{color:#fff}
.bg-footer__col h5{font-size:12px!important;font-weight:600!important;letter-spacing:.06em!important;text-transform:uppercase!important;color:rgba(255,255,255,.55)!important;margin:0 0 16px!important}
.bg-footer__col ul,.bg-footer__col .menu{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px}
.bg-footer__col li a,.bg-footer__col a{font-size:14px;color:rgba(255,255,255,.72);display:block;transition:color var(--ease)}
.bg-footer__col li a:hover,.bg-footer__col a:hover{color:#fff}
.bg-footer__bottom{border-top:1px solid rgba(255,255,255,.12);margin-top:64px;padding:20px var(--pad);display:flex;align-items:center;justify-content:space-between;gap:20px;font-size:13px;color:rgba(255,255,255,.5);flex-wrap:wrap}
.bg-footer__bottom a{color:rgba(255,255,255,.6)}
.bg-footer__bottom a:hover{color:rgba(255,255,255,.9)}

/* â”€â”€â”€ BLOG â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bg-blog{background:var(--cream);padding:80px 0}
.bg-blog-row{display:grid;grid-template-columns:1fr 200px;gap:32px;align-items:start;padding:32px 0;border-bottom:1px solid var(--rule);text-decoration:none;color:inherit;transition:opacity var(--ease)}
.bg-blog-row:hover{opacity:.75}
.bg-blog-row__meta{display:flex;align-items:center;gap:12px;margin-bottom:10px}
.bg-blog-row__cat{font-size:10px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--teal);background:rgba(0,122,133,.1);padding:3px 9px;border-radius:20px}
.bg-blog-row__date{font-size:11px;color:var(--light)}
.bg-blog-row__title{font-size:22px;font-weight:700;line-height:1.25;margin-bottom:10px;color:var(--black);transition:color var(--ease)}
.bg-blog-row:hover .bg-blog-row__title{color:var(--teal)}
.bg-blog-row__excerpt{font-size:14px;color:var(--muted);line-height:1.7;margin:0}
.bg-blog-row__thumb{border-radius:12px;overflow:hidden;aspect-ratio:4/3}
.bg-blog-row__thumb img{width:100%;height:100%;object-fit:cover}

/* â”€â”€â”€ SINGLE POST â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bg-post-hero{background:#004A52;padding:80px 0 60px;position:relative;overflow:hidden}
.bg-post-hero__bg{position:absolute;inset:-40px 0;background-size:cover;background-position:center;opacity:.2}
.bg-post-hero__inner{position:relative;z-index:2;max-width:860px;margin:0 auto;padding:0 var(--pad)}
.bg-post-hero__cat{display:inline-block;font-size:10px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--teal-lt);border:1px solid rgba(255,255,255,.2);padding:4px 12px;border-radius:20px;margin-bottom:20px}
.bg-post-hero__title{font-size:clamp(28px,4.5vw,52px)!important;font-weight:700!important;color:#fff!important;line-height:1.12!important;margin-bottom:0!important}
.bg-post-body{max-width:860px;margin:0 auto;padding:72px var(--pad)}
.bg-post-body .entry-content,.bg-post-body .wp-block-post-content{font-size:17px;line-height:1.82;color:var(--muted)}
.bg-post-body h2{font-size:clamp(22px,3vw,30px);margin:48px 0 16px}
.bg-post-body h3{font-size:18px;margin:36px 0 12px}
.bg-post-body p{margin-bottom:24px}
.bg-post-body a{color:var(--teal-dk);text-decoration:underline}
.bg-post-body blockquote{border-left:3px solid var(--teal);margin:36px 0;padding:4px 0 4px 28px;font-size:clamp(18px,2vw,24px);color:#004A52;line-height:1.5}

/* â”€â”€â”€ NINJA FORMS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nf-form-content label,.nf-form-content .nf-label-span{display:block!important;font-size:11px!important;font-weight:500!important;letter-spacing:.05em!important;text-transform:uppercase!important;color:var(--muted)!important;margin-bottom:6px!important;font-family:var(--font)!important}
.nf-form-content input[type=text],.nf-form-content input[type=email],.nf-form-content input[type=tel],.nf-form-content select,.nf-form-content textarea{width:100%!important;padding:12px 15px!important;border:1.5px solid var(--rule)!important;border-radius:12px!important;font-size:15px!important;color:var(--black)!important;background:var(--cream)!important;font-family:var(--font)!important;outline:none!important;box-shadow:none!important;-webkit-appearance:none!important;transition:border-color var(--ease)!important}
.nf-form-content input:focus,.nf-form-content select:focus,.nf-form-content textarea:focus{border-color:var(--teal)!important}
.nf-form-content textarea{height:100px!important;resize:vertical!important}
.nf-form-content .nf-field-container{margin-bottom:16px!important}
.nf-form-content input[type=submit],.nf-form-content .submit-container input{width:100%!important;padding:13px 28px!important;background:var(--teal)!important;color:#fff!important;font-size:14px!important;font-weight:500!important;border:none!important;border-radius:100px!important;cursor:pointer!important;font-family:var(--font)!important;-webkit-appearance:none!important}
.nf-form-content input[type=submit]:hover{background:var(--teal-dk)!important}
.nf-response-msg{font-size:15px!important;color:var(--teal)!important;font-weight:600!important;padding:16px 0!important}
.nf-form-fields-required,.ninja-forms-req-symbol{display:none!important}

/* â”€â”€â”€ UTILS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bg-label{font-size:11px;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);display:block;margin-bottom:12px}
.bg-mt{margin-top:32px}
.bg-center{text-align:center}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Breakpoints measured from live site behavior
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media(max-width:1100px){
  .bg-hero__grid{grid-template-columns:1fr 380px;gap:48px}
  .bg-hero__title{font-size:56px!important}
  .bg-intro .bg-wrap{grid-template-columns:1fr;gap:48px}
  .bg-about-split .bg-wrap{grid-template-columns:1fr;gap:48px}
  .bg-offerings .bg-wrap{grid-template-columns:1fr;gap:48px}
  .bg-offerings__left{position:static}
  .bg-offerings__grid{grid-template-columns:1fr}
  .bg-ml .bg-wrap{grid-template-columns:1fr 1fr;gap:40px}
  .bg-ml__title{font-size:48px!important;grid-column:1/-1}
  .bg-stats .bg-wrap{grid-template-columns:1fr;gap:48px}
  .bg-values .bg-wrap{grid-template-columns:1fr}
  .bg-footer .bg-wrap{grid-template-columns:1fr 1fr;gap:32px}
}
@media(max-width:768px){
  :root{--pad:24px}
  .bg-hero{padding:60px 0}
  .bg-hero__grid{grid-template-columns:1fr;gap:32px}
  .bg-hero__right{height:280px;border-radius:16px}
  .bg-hero__title{font-size:44px!important}
  .bg-nav__links,.bg-nav__contact{display:none}
  .bg-nav__toggle{display:flex}
  .bg-nav.open .bg-nav__links{display:flex;flex-direction:column;position:fixed;top:76px;left:0;right:0;background:var(--cream);padding:16px 24px 28px;border-top:1px solid var(--rule);box-shadow:0 8px 24px rgba(40,37,35,.1);max-height:calc(100vh - 76px);overflow-y:auto;z-index:999}
  .bg-nav.open .bg-nav__links>li>a{padding:12px 0;font-size:16px}
  .bg-nav.open .bg-nav__contact{display:flex;margin:12px 24px 0}
  .bg-nav.open .sub-menu{position:static;box-shadow:none;border:0;opacity:1;visibility:visible;transform:none;background:var(--cream-dk);margin:4px 0 4px 12px}
  .bg-clients__grid,.bg-research__grid,.bg-ml .bg-wrap{grid-template-columns:1fr}
  .bg-team-grid{grid-template-columns:repeat(2,1fr)}
  .bg-footer .bg-wrap{grid-template-columns:1fr}
  .bg-blog-row{grid-template-columns:1fr}
  .bg-blog-row__thumb{order:-1}
  .bg-intro__heading,.bg-about-split h2,.bg-offerings__heading,.bg-research__hd h2,.bg-clients__hd h2,.bg-ml__title{font-size:40px!important}
  .bg-stats__label{font-size:11px;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.35);display:block;margin-bottom:48px;grid-column:1/-1}
.bg-stat__num{font-size:72px}
  .bg-values .bg-wrap{grid-template-columns:1fr;gap:24px}
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SCROLL ANIMATIONS
   Elements start invisible/offset, animate in
   when they enter the viewport (via JS IntersectionObserver)
   Matches Webflow's scroll-triggered fade pattern
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Default: elements that will animate in */
[data-anim]{
  opacity:0;
  transform:translateY(40px);
  transition:opacity .7s ease, transform .7s ease;
}
[data-anim].in-view{
  opacity:1;
  transform:none;
}
/* Stagger delays for grid children */
[data-anim-delay="1"]{transition-delay:.1s}
[data-anim-delay="2"]{transition-delay:.2s}
[data-anim-delay="3"]{transition-delay:.3s}
[data-anim-delay="4"]{transition-delay:.4s}
[data-anim-delay="5"]{transition-delay:.5s}

/* Hero entrance â€” left slides up, right scales in */
.bg-hero__left{
  animation:heroLeft .9s cubic-bezier(.16,1,.3,1) both;
  animation-delay:.1s;
}
.bg-hero__right{
  animation:heroRight .9s cubic-bezier(.16,1,.3,1) both;
  animation-delay:.25s;
}
@keyframes heroLeft{
  from{opacity:0;transform:translateY(60px)}
  to{opacity:1;transform:none}
}
@keyframes heroRight{
  from{opacity:0;transform:scale(.85)}
  to{opacity:1;transform:none}
}

/* Stat numbers count-up visual treatment */
.bg-stat{transition:opacity .6s ease,transform .6s ease}

/* Photo band subtle parallax feel via scale */
.bg-photo-band__img{
  transform:scale(1.04);
  transition:transform 8s ease;
}
.bg-photo-band:hover .bg-photo-band__img{
  transform:scale(1.0);
}

/* Hero right column â€” if image fails, show cream-dk */
.bg-hero__right{background:var(--cream-dk)}

/* Offerings sticky left col â€” visual separator */
.bg-offerings__left::after{
  content:'';display:block;width:48px;height:3px;
  background:var(--teal);margin-top:24px;border-radius:2px;
}

/* Research card image hover zoom */
.bg-rcard__img img{transition:transform .4s ease}
.bg-rcard:hover .bg-rcard__img img{transform:scale(1.04)}

/* News item â€” add date/source separator */
.bg-news-item__src::before{content:'';display:none}

/* Team card photo hover */
.bg-team-card__photo img{transition:transform .4s ease}
.bg-team-card:hover .bg-team-card__photo img{transform:scale(1.04)}

/* Client card hover â€” subtle lift */
.bg-client{transition:transform .25s ease}
.bg-client:hover{transform:translateY(-4px)}

/* About green quote section link icon */
.bg-about-quote .bg-cta-btn--light .bg-cta-btn__dot{background:rgba(255,255,255,.2)}
.bg-about-quote .bg-cta-btn--light:hover .bg-cta-btn__dot{background:rgba(0,0,0,.3)}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PATCH FIXES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Team: 3 columns matching live site */
.bg-team-grid{grid-template-columns:repeat(3,1fr)!important}

/* Team photo â€” broken image: hide alt text, keep teal bg */
.bg-team-card__photo img{
  min-height:100%;
  font-size:0; /* hides alt text on broken images */
  color:transparent;
}

/* About split photo â€” broken image fallback */
.bg-about-split__img img{
  font-size:0;
  color:transparent;
  background:var(--cream-dk);
}

/* Remove bottom teal bar from offerings left col (distracting) */
.bg-offerings__left::after{display:none}

/* Hero: ensure Work With Us button has correct spacing */
.bg-hero__actions{margin-top:0}
.bg-hero__sub{margin-bottom:36px}

/* Offerings heading â€” match live: "Our Offerings" on left is 60px teal */  
.bg-offerings__heading{font-size:60px!important}

/* Stats label â€” add the small caps label above numbers */
.bg-stats .bg-wrap::before{
  content:'Critical Data from Our Proprietary Research';
  font-size:11px;font-weight:500;letter-spacing:.08em;text-transform:uppercase;
  color:rgba(255,255,255,.35);display:block;grid-column:1/-1;margin-bottom:40px;
}

/* Research cards â€” ensure no border appears */
.bg-rcard{border:none!important;background:transparent!important}
.bg-rcard__img{border-radius:0!important}

/* Market leadership title â€” ensure "Market" and "Leadership" stack */
.bg-ml__title{display:block}
.bg-ml__title span{display:block}

/* Offerings page â€” make each offering section look better */
.bg-offerings-page .bg-offering-detail{
  padding:56px 0;
  border-bottom:1px solid var(--rule);
}
.bg-offerings-page .bg-offering-detail:last-child{border-bottom:none}
.bg-offerings-page h3{font-size:36px!important;color:var(--teal)!important;margin-bottom:16px!important}

/* Page hero h1 â€” ensure centered */
.bg-page-hero__inner h1{text-align:center!important}
.bg-page-hero__inner p{text-align:center}

/* About split heading â€” teal "Us" / "Mission" etc */
.bg-about-split h2{font-size:60px!important;color:var(--teal)!important;margin-bottom:24px!important}

/* Featured in logos â€” hide section if no logos */
.bg-featured:empty{display:none}
.bg-featured .bg-wrap:empty{display:none}

/* Team card body â€” fix role text running together */
.bg-team-card__name{margin-bottom:8px!important}
.bg-team-card__role{color:var(--muted);font-size:13px;line-height:1.4;margin-bottom:20px}

/* Read Bio button â€” center in card */
.bg-team-card__body{display:flex;flex-direction:column;align-items:center}
.bg-team-card__body>.bg-cta-btn{margin-bottom:12px}

/* Core values grid â€” 2-col */
.bg-values .bg-wrap{display:grid;grid-template-columns:1fr 1fr;gap:40px 80px;align-items:start}
.bg-values .bg-wrap h2{grid-column:1/-1}

/* Green about quote */
.bg-about-quote{background:var(--teal);padding:100px 0}
.bg-about-quote .bg-wrap{max-width:800px;margin:0 auto;padding:0 var(--pad)}

/* Responsive team grid */
@media(max-width:900px){.bg-team-grid{grid-template-columns:repeat(2,1fr)!important}}
@media(max-width:600px){.bg-team-grid{grid-template-columns:1fr!important}}