/* My Barrister design system — ported from mybarrister-preview-v11/_build/_styles.html.
   Source of truth for brand tokens and all .mb-* components. Do not hand-edit;
   regenerate from the preview stylesheet if the design changes. */

:root{
  --red:#D15B54;--red-dark:#B75049;--red-tint:#F4DAD9;
  --slate:#41617A;--slate-deep:#324B5F;--slate-dark:#253846;
  --slate-soft:#8DA0AF;--slate-mist:#E4E8EC;--slate-pale:#EEF1F4;
  --graphite:#313232;--paper:#FBF9F7;--mist:#EFEAE4;--line:#DED7CF;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:'Outfit',system-ui,sans-serif;color:var(--graphite);background:var(--paper);line-height:1.6;font-size:16px}
h1,h2,h3,h4{font-family:'Fraunces',Georgia,serif;color:var(--slate-dark);margin:0 0 .5rem;letter-spacing:-.01em}
h1{font-weight:900;font-size:clamp(2rem,5vw,3.25rem);line-height:1.05}
h2{font-weight:600;font-size:clamp(1.5rem,3.2vw,2.1rem);line-height:1.15}
h3{font-weight:600;font-size:1.2rem;line-height:1.25}
p{margin:0 0 1rem}
a{color:var(--slate);text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:3px}
a:hover{color:var(--red-dark)}
img{max-width:100%;display:block}
.mb-container{width:100%;max-width:1180px;margin:0 auto;padding:0 1.25rem}
.mb-section{padding:3rem 0}
@media(min-width:768px){.mb-section{padding:4.5rem 0}}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.85rem 1.4rem;border-radius:8px;font-family:'Outfit',sans-serif;font-weight:600;font-size:1rem;text-decoration:none;border:none;cursor:pointer;transition:all .2s;min-height:44px;line-height:1}
.btn-primary{background:var(--red);color:#fff}
.btn-primary:hover{background:var(--red-dark);color:#fff}
.btn-ghost{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.4)}
.btn-ghost:hover{background:rgba(255,255,255,.1);color:#fff}
.btn-slate{background:var(--slate-dark);color:#fff}
.btn-slate:hover{background:var(--slate-deep);color:#fff}

/* HEADER */
.mb-header{background:#fff;border-bottom:1px solid var(--line);position:sticky;top:0;z-index:30}
.mb-header-row{display:flex;align-items:center;justify-content:space-between;padding:.75rem 0;gap:1rem}
.mb-logo{display:flex;align-items:center;gap:.6rem;text-decoration:none}
.mb-logo-mark{width:38px;height:38px;background:var(--red);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-family:'Fraunces',serif;font-weight:900;font-size:1.35rem;position:relative;flex-shrink:0}
.mb-logo-mark::after{content:"";position:absolute;left:6px;top:50%;width:14px;height:3px;background:#fff;transform:translateY(-50%) rotate(-15deg);border-radius:2px}
.mb-logo-word{font-family:'Fraunces',serif;font-weight:600;font-size:1.15rem;color:var(--slate-dark)}
.mb-nav{display:none;gap:1.6rem;align-items:center}
.mb-nav a{color:var(--slate-dark);text-decoration:none;font-weight:500;font-size:.95rem}
.mb-nav a:hover{color:var(--red)}
.mb-header-cta{display:flex;align-items:center;gap:.5rem}
.mb-header-phone{display:none;color:var(--slate);font-weight:500;text-decoration:none;font-size:.95rem}
@media(min-width:880px){
  .mb-nav{display:flex}
  .mb-header-phone{display:inline}
}

/* CRUMBS */
.mb-crumbs{color:var(--slate-soft);font-size:.875rem;padding:1rem 0 0}
.mb-crumbs a{color:var(--slate);text-decoration:none}
.mb-crumbs a:hover{text-decoration:underline}
.mb-crumbs span{color:var(--slate-soft)}

/* HERO */
.mb-hero{background:var(--slate);color:#fff;padding:2.5rem 0 3rem;position:relative;overflow:hidden}
.mb-hero::before{content:"";position:absolute;inset:0;background:radial-gradient(900px 400px at 85% 20%,rgba(255,255,255,.06),transparent 60%);pointer-events:none}
.mb-hero .mb-container{position:relative}
.mb-hero-grid{display:grid;grid-template-columns:1fr;gap:2rem;align-items:center}
.mb-hero h1{color:#fff;margin-bottom:1rem}
.mb-hero-eyebrow{display:inline-flex;align-items:center;gap:.5rem;font-family:'Outfit',sans-serif;font-weight:500;font-size:.78rem;letter-spacing:.16em;text-transform:uppercase;color:var(--red-tint);margin-bottom:1rem}
.mb-hero-eyebrow::before{content:"";width:24px;height:1px;background:var(--red-tint)}
.mb-hero-lede{font-size:1.15rem;color:rgba(255,255,255,.88);max-width:540px;margin-bottom:1.5rem}
.mb-hero-actions{display:flex;flex-wrap:wrap;gap:.75rem;margin-bottom:1.5rem}
.mb-hero-trust{display:flex;flex-wrap:wrap;gap:1.25rem;font-size:.85rem;color:rgba(255,255,255,.75)}
.mb-hero-trust span{display:inline-flex;align-items:center;gap:.4rem}
.mb-hero-illus{display:flex;justify-content:center;align-items:center;width:100%}
.mb-hero-illus svg{width:100%;max-width:440px;height:auto}
@media(min-width:900px){
  .mb-hero{padding:4rem 0 5rem}
  .mb-hero-grid{grid-template-columns:1.15fr 1fr;gap:3rem}
}

/* AT-A-GLANCE TILES */
.mb-tiles-sec{background:var(--paper)}
.mb-tiles-head{max-width:760px;margin-bottom:2rem}
.mb-tiles-head p{color:var(--slate);font-size:1.05rem}
.mb-tiles{display:grid;grid-template-columns:1fr;gap:1rem}
@media(min-width:600px){.mb-tiles{grid-template-columns:1fr 1fr}}
@media(min-width:960px){.mb-tiles{grid-template-columns:repeat(3,1fr);gap:1.25rem}}
.mb-tile{background:#fff;border:1px solid var(--line);border-radius:14px;padding:1.5rem;position:relative;transition:all .2s;text-decoration:none;color:inherit;display:block}
.mb-tile:hover{border-color:var(--slate-soft);transform:translateY(-2px);box-shadow:0 8px 24px rgba(37,56,70,.08)}
.mb-tile-icon{width:54px;height:54px;border-radius:12px;background:var(--slate-pale);display:flex;align-items:center;justify-content:center;margin-bottom:1rem}
.mb-tile-icon svg{width:30px;height:30px;color:var(--slate)}
.mb-tile h3{color:var(--slate-dark);margin-bottom:.4rem}
.mb-tile p{color:var(--graphite);margin:0;font-size:.95rem;line-height:1.5}
.mb-tile-arrow{position:absolute;top:1.5rem;right:1.5rem;color:var(--slate-soft);transition:transform .2s}
.mb-tile:hover .mb-tile-arrow{color:var(--red);transform:translateX(2px)}

/* MAIN CONTENT TWO-COL */
.mb-main{background:var(--paper)}
.mb-main-grid{display:grid;grid-template-columns:1fr;gap:2.5rem}
@media(min-width:980px){.mb-main-grid{grid-template-columns:1.7fr 1fr;gap:3rem;align-items:start}}
.mb-prose h2{margin-top:2rem;font-size:1.75rem}
.mb-prose h2:first-child{margin-top:0}
.mb-prose p{color:var(--graphite);font-size:1.025rem}
.mb-prose strong{color:var(--slate-dark);font-weight:600}

/* SIDEBAR INQUIRY CARD */
.mb-inq-card{background:var(--slate);color:#fff;border-radius:14px;padding:1.75rem;position:sticky;top:88px}
.mb-inq-card h3{color:#fff;font-family:'Fraunces',serif;font-size:1.4rem;font-weight:600;margin-bottom:.4rem}
.mb-inq-card p{color:rgba(255,255,255,.85);font-size:.95rem;margin-bottom:1.25rem}
.mb-inq-card label{display:block;font-size:.82rem;font-weight:500;color:rgba(255,255,255,.9);margin-bottom:.3rem;margin-top:.85rem}
.mb-inq-card input,.mb-inq-card select,.mb-inq-card textarea{width:100%;background:#fff;color:var(--graphite);border:none;border-radius:8px;padding:.7rem .85rem;font-family:inherit;font-size:16px;line-height:1.4}
.mb-inq-card .mb-inq-row{display:grid;grid-template-columns:1fr 1fr;gap:.6rem}
.mb-inq-card .mb-inq-consent{display:flex;gap:.6rem;align-items:flex-start;font-size:.82rem;color:rgba(255,255,255,.88);margin-top:1rem}
.mb-inq-card .mb-inq-consent input{width:auto;margin-top:.2rem}
.mb-inq-card .mb-inq-consent a{color:var(--red-tint)}
.mb-inq-card .btn{width:100%;margin-top:1.25rem;background:var(--red);color:#fff}
.mb-inq-card .btn:hover{background:var(--red-dark)}
.mb-inq-foot{font-size:.85rem;color:rgba(255,255,255,.7);margin-top:1rem;text-align:center}
.mb-inq-foot a{color:#fff;font-weight:500}
#mb-success a{color:#fff;font-weight:500}

/* SCENARIO PANEL */
.mb-scenarios-sec{background:var(--mist)}
.mb-scenarios-head{max-width:720px;margin-bottom:2.25rem}
.mb-scenarios{display:grid;grid-template-columns:1fr;gap:1.25rem}
@media(min-width:760px){.mb-scenarios{grid-template-columns:repeat(3,1fr);gap:1.5rem}}
.mb-scenario{background:#fff;border-radius:14px;padding:1.75rem;border:1px solid var(--line)}
.mb-scenario-illus{width:100%;height:140px;background:var(--slate-pale);border-radius:10px;margin-bottom:1.25rem;display:flex;align-items:center;justify-content:center;overflow:hidden}
.mb-scenario-illus svg{width:100%;height:100%}
.mb-scenario h3{color:var(--slate-dark);margin-bottom:.5rem}
.mb-scenario p{color:var(--graphite);font-size:.95rem;margin:0}

/* TRIBUNAL FLOW */
.mb-flow-sec{background:var(--slate-deep);color:#fff;padding:3.5rem 0}
.mb-flow-sec h2{color:#fff}
.mb-flow-head{max-width:680px;margin-bottom:2.25rem}
.mb-flow-head p{color:rgba(255,255,255,.82);font-size:1.05rem}
.mb-flow{display:grid;grid-template-columns:1fr;gap:1rem;position:relative}
@media(min-width:780px){.mb-flow{grid-template-columns:repeat(3,1fr);gap:1rem}}
.mb-flow-step{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.12);border-radius:12px;padding:1.5rem;position:relative}
.mb-flow-num{display:inline-flex;width:36px;height:36px;align-items:center;justify-content:center;background:var(--red);color:#fff;border-radius:50%;font-family:'Fraunces',serif;font-weight:600;font-size:1.1rem;margin-bottom:.85rem}
.mb-flow-step h3{color:#fff;font-size:1.05rem;margin-bottom:.4rem}
.mb-flow-step p{color:rgba(255,255,255,.78);font-size:.9rem;margin:0;line-height:1.45}
.mb-flow-foot{margin-top:2rem;color:rgba(255,255,255,.78);font-size:.95rem;padding:1rem 1.25rem;background:rgba(0,0,0,.18);border-left:3px solid var(--red);border-radius:0 8px 8px 0}

/* STATS / TRUST STRIP */
.mb-trust-sec{background:var(--paper);padding:3rem 0}
.mb-trust-grid{display:grid;grid-template-columns:1fr;gap:1.25rem;align-items:center}
@media(min-width:880px){.mb-trust-grid{grid-template-columns:1fr 1.4fr;gap:3rem}}
.mb-trust-illus{display:flex;justify-content:center}
.mb-trust-illus svg{width:100%;max-width:340px;height:auto}
.mb-trust-stats{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem}
.mb-trust-stat{background:#fff;border:1px solid var(--line);border-radius:12px;padding:1.25rem}
.mb-trust-stat-n{font-family:'Fraunces',serif;font-weight:900;font-size:2rem;color:var(--red);line-height:1;margin-bottom:.35rem}
.mb-trust-stat-l{color:var(--slate-dark);font-weight:500;font-size:.92rem;line-height:1.35}

/* BARRISTER GRID */
.mb-barristers-sec{background:var(--paper)}
.mb-barristers-head{display:flex;justify-content:space-between;align-items:end;flex-wrap:wrap;gap:1rem;margin-bottom:2rem}
.mb-barristers-head p{color:var(--slate);max-width:540px;margin:0}
.mb-card-grid{display:grid;grid-template-columns:1fr;gap:1.25rem}
@media(min-width:600px){.mb-card-grid{grid-template-columns:1fr 1fr}}
@media(min-width:960px){.mb-card-grid{grid-template-columns:repeat(3,1fr)}}
.mb-bcard{background:#fff;border:1px solid var(--line);border-radius:14px;padding:1.5rem;text-decoration:none;color:inherit;transition:all .2s;display:block}
.mb-bcard:hover{border-color:var(--slate-soft);transform:translateY(-2px);box-shadow:0 8px 24px rgba(37,56,70,.08)}
.mb-bcard-top{display:flex;gap:1rem;align-items:center;margin-bottom:1rem}
.mb-bcard-photo{width:64px;height:64px;border-radius:50%;background:var(--slate-pale);display:flex;align-items:center;justify-content:center;color:var(--slate);font-family:'Fraunces',serif;font-weight:600;font-size:1.2rem;flex-shrink:0}
.mb-bcard h3{color:var(--slate-dark);margin:0 0 .15rem;font-size:1.1rem}
.mb-bcard-meta{color:var(--slate-soft);font-size:.85rem;margin:0}
.mb-badge{display:inline-block;background:var(--red-tint);color:var(--red-dark);font-weight:600;padding:.2rem .55rem;border-radius:6px;font-size:.78rem;margin-top:.5rem}
.mb-bcard-bio{color:var(--graphite);font-size:.93rem;line-height:1.5;margin:0 0 1rem}
.mb-bcard-tags{display:flex;flex-wrap:wrap;gap:.35rem}
.mb-bcard-tag{background:var(--slate-pale);color:var(--slate-deep);padding:.25rem .6rem;border-radius:6px;font-size:.8rem}

/* FAQ */
.mb-faq-sec{background:var(--slate-pale)}
.mb-faq-head{max-width:680px;margin-bottom:2rem}
.mb-faq-head p{color:var(--slate);font-size:1.05rem}
.mb-faq{display:grid;gap:.6rem}
.mb-faq details{border:1px solid var(--line);border-radius:10px;padding:1.1rem 1.4rem;background:#fff;transition:all .2s}
.mb-faq details[open]{border-color:var(--slate-soft);box-shadow:0 4px 16px rgba(37,56,70,.06)}
.mb-faq summary{font-family:'Fraunces',serif;font-weight:600;color:var(--slate-dark);cursor:pointer;font-size:1.075rem;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:1rem}
.mb-faq summary::-webkit-details-marker{display:none}
.mb-faq summary::after{content:"+";color:var(--red);font-family:'Outfit',sans-serif;font-weight:300;font-size:1.6rem;line-height:1;transition:transform .2s;flex-shrink:0}
.mb-faq details[open] summary::after{content:"−"}
.mb-faq details[open] summary{margin-bottom:.75rem}
.mb-faq details p{color:var(--graphite);margin:0;font-size:.98rem}
.mb-faq details p + p{margin-top:.6rem}

/* FINAL CTA */
.mb-final-cta{background:var(--slate-dark);color:#fff;padding:3.5rem 0;text-align:center}
.mb-final-cta h2{color:#fff;margin-bottom:.5rem}
.mb-final-cta p{color:rgba(255,255,255,.82);max-width:560px;margin:0 auto 1.5rem;font-size:1.05rem}
.mb-final-btns{display:flex;gap:.85rem;justify-content:center;flex-wrap:wrap}

/* FOOTER */
.mb-footer{background:#1A2832;color:rgba(255,255,255,.7);padding:3rem 0 1.5rem;font-size:.9rem}
.mb-footer-grid{display:grid;grid-template-columns:1fr;gap:2rem;margin-bottom:2rem}
@media(min-width:760px){.mb-footer-grid{grid-template-columns:1.4fr 1fr 1fr 1fr}}
.mb-footer h4{color:#fff;font-family:'Outfit',sans-serif;font-weight:600;font-size:.85rem;letter-spacing:.1em;text-transform:uppercase;margin-bottom:1rem}
.mb-footer ul{list-style:none;padding:0;margin:0}
.mb-footer li{margin-bottom:.5rem}
.mb-footer a{color:rgba(255,255,255,.7);text-decoration:none}
.mb-footer a:hover{color:#fff}
.mb-social{display:flex;gap:.6rem;margin-top:1.1rem}
.mb-social-link{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.08);color:rgba(255,255,255,.75)!important}
.mb-social-link:hover{background:var(--red);color:#fff!important}
.mb-footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:1.5rem;display:flex;flex-wrap:wrap;gap:1rem;justify-content:space-between;font-size:.82rem;color:rgba(255,255,255,.5)}
.mb-footer-logo{display:flex;align-items:center;gap:.6rem;margin-bottom:1rem}
.mb-footer-logo .mb-logo-mark{background:#fff;color:var(--red)}
.mb-footer-logo .mb-logo-mark::after{background:var(--red)}
.mb-footer-logo-word{color:#fff;font-family:'Fraunces',serif;font-weight:600;font-size:1.1rem}
/* Clear the fixed mobile "Make an enquiry / Call" bar so footer links (incl.
   Privacy/Terms/Cookies) aren't hidden behind it. Bar is hidden >=880px. */
@media(max-width:879px){.mb-footer{padding-bottom:6.5rem}}
/* "Powered by VENTRiQ" attribution — its own centred line under the legal bar. */
.mb-powered-row{display:flex;justify-content:center;margin-top:1.25rem}
.mb-powered{display:inline-flex;align-items:center;gap:.5rem;color:rgba(255,255,255,.45);font-size:.8rem;text-decoration:none;transition:color .15s}
.mb-powered:hover{color:rgba(255,255,255,.8)}
.mb-powered img{height:22px;width:auto;display:block;opacity:.85;transition:opacity .15s}
.mb-powered:hover img{opacity:1}

.sr-only{position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden}


/* Force canonical header styling — overrides any per-page header CSS */
header.mb-header{background:var(--slate)!important;position:sticky;top:0;z-index:50;
  border-bottom:1px solid rgba(255,255,255,.05);padding:0!important;height:auto!important}
header.mb-header .mb-header-inner{display:flex!important;align-items:center;justify-content:space-between;
  padding:.85rem 1rem;min-height:88px;gap:1rem;background:transparent!important}
header.mb-header .mb-logo{display:inline-flex!important;align-items:center;gap:.7rem;text-decoration:none}
header.mb-header .mb-logo-mark{width:68px!important;height:68px!important;flex-shrink:0;
  background:none!important;border-radius:0!important;display:block!important;
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.25))}
header.mb-header .mb-logo-mark::after{display:none!important;content:none!important}
header.mb-header .mb-logo-word{font-family:'Fraunces',serif!important;font-weight:900!important;
  font-size:1.75rem!important;color:#fff!important;line-height:1!important;letter-spacing:-.015em!important;
  background:transparent!important}
header.mb-header .mb-nav{display:none}
header.mb-header .mb-nav a{color:#fff;font-weight:500;padding:.5rem .25rem;text-decoration:none}
header.mb-header .mb-nav a:hover{color:var(--red-tint,#F4DAD9)}
header.mb-header .mb-header-phone{display:none;color:#fff;font-weight:600;text-decoration:none}
header.mb-header .mb-burger{display:inline-flex;flex-direction:column;gap:5px;background:none;
  border:none;cursor:pointer;padding:10px;min-height:44px;min-width:44px}
header.mb-header .mb-burger span{display:block;width:24px;height:2px;background:#fff;border-radius:1px}
header.mb-header .mb-mobile-nav{display:none;background:var(--slate-dark,#253846);border-top:1px solid rgba(255,255,255,.08);flex-direction:column}
header.mb-header .mb-mobile-nav[hidden]{display:none}
header.mb-header .mb-mobile-nav a{color:#fff;padding:1rem 1.25rem;border-top:1px solid rgba(255,255,255,.08);text-decoration:none;font-weight:500}
header.mb-header .mb-mobile-phone{font-weight:600}
@media(min-width:880px){
  header.mb-header .mb-nav{display:flex!important;gap:1.4rem}
  header.mb-header .mb-header-phone{display:inline-block}
  header.mb-header .mb-burger{display:none}
}


/* New master-detail mega menu (v2) */
.mb-mega{position:absolute;top:100%;left:0;right:0;background:#fff;border-bottom:1px solid var(--line,#DED7CF);
  box-shadow:0 20px 36px rgba(37,56,70,.10);z-index:40;display:none}
.mb-mega:not([hidden]){display:block}
.mb-mega-inner{max-width:1140px;margin:0 auto;display:grid;grid-template-columns:280px 1fr;min-height:380px}
.mb-parents{background:var(--slate-pale,#EEF1F4);padding:16px 0;border-right:1px solid var(--line,#DED7CF)}
.mb-parent-tab{width:100%;background:none;border:none;text-align:left;padding:12px 22px;
  font-family:'Outfit',sans-serif;font-size:14px;font-weight:500;color:var(--slate-deep,#324B5F);cursor:pointer;
  display:flex;align-items:center;justify-content:space-between;gap:10px;border-left:3px solid transparent;
  transition:background-color .12s;min-height:44px}
.mb-parent-tab .label{display:flex;align-items:center;gap:11px}
.mb-parent-tab .count{font-size:11px;color:var(--slate-soft,#8DA0AF);font-weight:500}
.mb-parent-tab:hover{background:#fff;color:var(--slate-dark,#253846)}
.mb-parent-tab.on{background:#fff;color:var(--slate-dark,#253846);border-left-color:var(--red,#D15B54)}
.mb-parent-tab .pico{display:inline-flex;align-items:center;justify-content:center;width:26px;height:26px;
  border-radius:7px;background:var(--slate-mist,#E4E8EC);color:var(--slate,#41617A);font-size:13px;font-weight:600;
  flex:none;font-family:'Fraunces',serif}
.mb-parent-tab.on .pico{background:var(--red-tint,#F4DAD9);color:var(--red-dark,#B75049)}
.mb-children{padding:24px 30px 16px;display:flex;flex-direction:column}
.mb-children-head{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:14px;
  padding-bottom:12px;border-bottom:1px solid var(--slate-pale,#EEF1F4);gap:1rem;flex-wrap:wrap}
.mb-children-head h3{font-family:'Fraunces',serif;font-size:21px;color:var(--slate-dark,#253846);
  font-weight:600;margin:0}
.mb-children-head .view-all{font-size:13px;color:var(--slate,#41617A);font-weight:500;display:inline-flex;
  align-items:center;gap:4px;white-space:nowrap}
.mb-children-head .view-all:hover{color:var(--red,#D15B54)}
.mb-children-grid{display:grid;grid-template-columns:1fr 1fr;gap:2px 30px;flex:1;align-content:start}
.mb-children-grid a{display:flex;align-items:center;justify-content:space-between;padding:10px 8px;
  color:var(--graphite,#313232);font-size:14px;border-radius:6px;line-height:1.3;
  transition:background-color .12s,padding-left .12s;text-decoration:none;min-height:44px}
.mb-children-grid a:hover{background:var(--slate-pale,#EEF1F4);color:var(--slate-deep,#324B5F);padding-left:14px}
.mb-children-grid a .arr{color:var(--slate-soft,#8DA0AF);font-size:13px;opacity:0;transition:opacity .12s}
.mb-children-grid a:hover .arr{opacity:1}
.mb-children-grid .pane{display:none}
.mb-children-grid .pane.on{display:contents}
.mb-mega-foot{background:var(--slate,#41617A);color:#fff;padding:14px 30px;display:flex;align-items:center;
  justify-content:space-between;flex-wrap:wrap;gap:12px}
.mb-mega-foot p{font-size:13px;color:rgba(255,255,255,.85);margin:0}
.mb-mega-foot p strong{color:#fff;font-weight:500}
.mb-mega-foot-actions{display:flex;gap:10px}
.mb-mega-foot a{font-size:13px;font-weight:500;padding:10px 16px;border-radius:6px;text-decoration:none}
.mb-foot-primary{background:var(--red,#D15B54);color:#fff}
.mb-foot-primary:hover{background:var(--red-dark,#B75049)}
.mb-foot-secondary{border:1px solid rgba(255,255,255,.45);color:#fff}
.mb-foot-secondary:hover{border-color:#fff;background:rgba(255,255,255,.08)}
@media(max-width:879px){.mb-mega{display:none!important}}


/* === Mobile UX v3 (definitive) === */

/* Hide desktop nav on mobile (the burger menu becomes the only nav) */
@media (max-width: 879px) {
  header.mb-header .mb-nav,
  header.mb-header .mb-header-wishlist span:not(.mb-wishlist-count),
  header.mb-header .mb-header-phone {
    display: none !important;
  }

  /* Header is NOT sticky on mobile — scrolls away with the page, doesn't obscure content */
  header.mb-header {
    position: static !important;
  }

  /* Slim header */
  header.mb-header .mb-header-inner {
    min-height: 56px !important;
    padding: .35rem 1rem !important;
    gap: .6rem !important;
  }
  header.mb-header .mb-logo-mark {
    width: 38px !important;
    height: 38px !important;
  }
  header.mb-header .mb-logo-word {
    font-size: 1.2rem !important;
  }

  /* Wishlist heart icon stays visible (no text label) */
  header.mb-header .mb-header-wishlist {
    border: none !important;
    padding: .35rem .5rem !important;
    margin-left: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: .3rem !important;
  }
  header.mb-header .mb-header-wishlist svg {
    width: 22px;
    height: 22px;
  }

  /* Burger button */
  header.mb-header .mb-burger {
    display: inline-flex !important;
    padding: 8px !important;
    min-height: 44px !important;
    min-width: 44px !important;
  }

  /* Mobile menu overlay — covers viewport from top, doesn't push content */
  header.mb-header .mb-mobile-nav:not([hidden]) {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    overflow-y: auto !important;
    background: var(--slate-deep, #324B5F) !important;
    z-index: 1000 !important;
    padding-top: 56px !important;
    box-sizing: border-box !important;
  }
  header.mb-header .mb-mobile-nav[hidden] {
    display: none !important;
  }

  /* When mobile menu is open, the burger button should sit ABOVE the overlay */
  header.mb-header .mb-burger[aria-expanded="true"] {
    position: fixed !important;
    top: .5rem !important;
    right: 1rem !important;
    z-index: 1100 !important;
    background: rgba(255,255,255,.12);
    border-radius: 8px;
  }
  header.mb-header .mb-burger[aria-expanded="true"] span {
    background: #fff;
  }

  /* Hide the mega panel on mobile (handled via burger menu) */
  .mb-mega {
    display: none !important;
  }

  /* Mobile areas-of-law panel inside the mobile nav */
  header.mb-header .mb-mobile-nav .mb-mobile-areas-panel {
    background: rgba(0,0,0,.15) !important;
    width: 100% !important;
    padding: 0 !important;
  }
  header.mb-header .mb-mobile-nav .mb-mobile-areas-panel[hidden] {
    display: none !important;
  }
  header.mb-header .mb-mobile-nav .mb-mobile-areas-panel:not([hidden]) {
    display: block !important;
  }
  header.mb-header .mb-mobile-nav .mb-mobile-parent {
    padding: 1rem 1.25rem .35rem !important;
    color: rgba(255,255,255,.55) !important;
    font-size: .72rem !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    background: transparent !important;
    border-top: 1px solid rgba(255,255,255,.06) !important;
    display: block !important;
  }
  header.mb-header .mb-mobile-nav .mb-mobile-areas-panel a {
    padding: .85rem 1.5rem !important;
    font-size: .95rem !important;
    font-weight: 400 !important;
    color: #fff !important;
    display: block !important;
    width: 100% !important;
    min-height: 44px !important;
    line-height: 1.3 !important;
    border-top: none !important;
    background: transparent !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    text-align: left !important;
    justify-content: flex-start !important;
  }
  header.mb-header .mb-mobile-nav .mb-mobile-areas-panel a:hover {
    background: rgba(255,255,255,.06) !important;
  }

}

/* Sticky bottom CTA bar (mobile only) */
.mb-bottom-cta {
  position: fixed;
  left: 0; right: 0;
  bottom: -100px;
  background: #fff;
  border-top: 1px solid var(--line, #DED7CF);
  box-shadow: 0 -6px 16px rgba(37,56,70,.10);
  padding: .6rem .8rem;
  display: flex;
  gap: .6rem;
  z-index: 200;
  transition: bottom .25s ease-out;
}
.mb-bottom-cta.show { bottom: 0; }
.mb-bottom-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem .75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  min-height: 44px;
}
.mb-bottom-cta .mb-bottom-primary {
  background: var(--red, #D15B54);
  color: #fff;
}
.mb-bottom-cta .mb-bottom-secondary {
  border: 1.5px solid var(--slate, #41617A);
  color: var(--slate-dark, #253846);
}
@media (min-width: 880px) {
  .mb-bottom-cta { display: none !important; }
  
}



/* Mobile typography */
@media (max-width: 879px) {
  body { font-size: 16px; }
  h1 { font-size: 1.85rem !important; line-height: 1.12; }
  h2 { font-size: 1.4rem !important; }
  h3 { font-size: 1.15rem !important; }
  /* Tap targets */
  button, a.btn, .mb-choice, .mb-cta-btn { min-height: 44px; }
  /* Reduce horizontal padding on small screens */
  .mb-container { padding-left: 1rem !important; padding-right: 1rem !important; }
}


/* Fix: Areas of Law button should match other nav items (was showing browser-default white box) */
header.mb-header .mb-nav button {
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 500 !important;
  font-size: .95rem !important;
  padding: .5rem .75rem !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: .35rem !important;
  border-radius: 6px !important;
  transition: background-color .15s !important;
  line-height: 1 !important;
}
header.mb-header .mb-nav button:hover,
header.mb-header .mb-nav button:focus-visible {
  background: rgba(255,255,255,.08) !important;
  outline: none !important;
}
header.mb-header .mb-nav button[aria-expanded="true"] {
  background: rgba(255,255,255,.12) !important;
}
header.mb-header .mb-nav button .mb-caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  display: inline-block;
  margin-left: 2px;
  opacity: .7;
}

/* Logo size — crisp at 60px */
header.mb-header .mb-logo-mark {
  width: 60px !important;
  height: 60px !important;
  image-rendering: -webkit-optimize-contrast;
}

/* Red click-to-call phone button in header (desktop) */
header.mb-header .mb-header-phone {
  display: inline-flex !important;
  align-items: center !important;
  gap: .5rem !important;
  padding: .7rem 1.1rem !important;
  background: var(--red, #D15B54) !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: .95rem !important;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(209,91,84,.25) !important;
  transition: transform .15s, box-shadow .15s, background-color .15s !important;
  white-space: nowrap !important;
}
header.mb-header .mb-header-phone:hover {
  background: var(--red-dark, #B75049) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(209,91,84,.35) !important;
}
header.mb-header .mb-header-phone::before {
  content: "";
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* On mobile: phone is hidden in header (it's in the burger menu and bottom CTA) */
@media (max-width: 879px) {
  header.mb-header .mb-header-phone {
    display: none !important;
  }
}


/* Prevent nav items from wrapping ONLY on desktop; mobile keeps the desktop nav hidden via mobile UX rules */
@media (min-width: 880px) {
  header.mb-header .mb-nav {
    display: flex !important;
    align-items: center !important;
    gap: .25rem !important;
    flex-wrap: nowrap !important;
  }
  header.mb-header .mb-nav-item {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
  header.mb-header .mb-nav-item > a,
  header.mb-header .mb-nav-item > button {
    white-space: nowrap !important;
    padding: .5rem .65rem !important;
    font-size: .9rem !important;
  }
  header.mb-header .mb-header-phone {
    padding: .55rem .9rem !important;
    font-size: .9rem !important;
    flex-shrink: 0 !important;
  }
  header.mb-header .mb-header-wishlist {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }
  header.mb-header .mb-header-inner {
    flex-wrap: nowrap !important;
    gap: .5rem !important;
  }
}
/* At intermediate widths (tablet), hide the 'Wish list' text label */
@media (min-width: 880px) and (max-width: 1080px) {
  header.mb-header .mb-header-wishlist span:not(.mb-wishlist-count) {
    display: none !important;
  }
  header.mb-header .mb-header-wishlist {
    padding: .55rem .65rem !important;
  }
}


/* ============ GLOBAL ELEVATION — micro-interactions & trust ============ */

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

html { scroll-behavior: smooth; }

/* --- Cards: gentle lift on hover, consistent shadows --- */
.mb-bcard, .mb-card, .mb-area-card, .mb-help-card, .mb-step, .mb-pillar-card,
.mb-post-card, .mb-benefit-card, .mb-why-card, .mb-explore-card {
  transition: transform .22s cubic-bezier(.2,.6,.3,1), box-shadow .22s cubic-bezier(.2,.6,.3,1) !important;
}
.mb-bcard:hover, .mb-card:hover, .mb-area-card:hover, .mb-help-card:hover,
.mb-post-card:hover, .mb-explore-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37,56,70,.13), 0 2px 6px rgba(37,56,70,.08) !important;
}

/* --- Buttons: press states, focus rings --- */
a.mb-btn, button.mb-btn, .mb-btn-primary, .mb-btn-secondary, .mb-cta-submit,
.mb-hero-actions a, .mb-final-btns a, .mb-bottom-primary, .mb-bottom-secondary {
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease !important;
}
a.mb-btn:active, button.mb-btn:active, .mb-cta-submit:active,
.mb-hero-actions a:active, .mb-final-btns a:active {
  transform: translateY(1px) scale(.99);
}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(209,91,84,.45) !important;
  outline-offset: 2px !important;
  border-radius: 6px;
}

/* --- Form fields: red focus glow (draws the eye through the form) --- */
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus,
textarea:focus, select:focus {
  border-color: var(--red, #D15B54) !important;
  box-shadow: 0 0 0 3px rgba(209,91,84,.16) !important;
  outline: none !important;
}

/* --- Links: underline offset for elegance --- */
.mb-prose a, .mb-pblock a { text-underline-offset: 3px; }

/* --- Header: subtle depth so it reads as a surface --- */
header.mb-header { box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 4px 18px rgba(20,32,42,.25); }

/* --- Eyebrow consistency --- */
.mb-eyebrow, .mb-kicker {
  letter-spacing: .14em !important;
  font-weight: 600 !important;
}

/* --- Reassurance line under CTAs --- */
.mb-reassure {
  display: flex; align-items: center; gap: .45rem;
  color: var(--slate-soft, #8DA0AF); font-size: .88rem; margin-top: .65rem;
}
.mb-reassure svg { flex: 0 0 auto; }

/* --- Section heading rhythm: consistent spacing scale --- */
section h2 { letter-spacing: -0.01em; }

/* --- Image rendering --- */
img { image-rendering: auto; }

/* --- Selection colour: brand moment --- */
::selection { background: rgba(209,91,84,.22); }
