/* ================================================================
   BOWYARD PARTNERS – Design System
   Premium Corporate Law · Consulting Aesthetic
   ================================================================ */

/* ---- TOKENS ------------------------------------------------------- */
:root {
  --navy:        #0D1B2A;
  --navy-mid:    #152335;
  --navy-light:  #1E3450;
  --gold:        #B8962E;
  --gold-mid:    #C9A84C;
  --gold-light:  #E2C97E;
  --white:       #FFFFFF;
  --off-white:   #F5F3EF;
  --border:      #E2DED6;
  --grey-light:  #D6D2C9;
  --grey-mid:    #8C8880;
  --grey-dark:   #3E3C39;
  --text:        #1A1918;

  --font-head:  'Josefin Sans', sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(.25,.46,.45,.94);
  --nav-h: 76px;
}

/* ---- RESET --------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ---- TYPOGRAPHY ---------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 300;
  letter-spacing: .06em;
  line-height: 1.08;
  color: var(--navy);
  text-transform: uppercase;
}
h1 { font-size: clamp(36px,5.5vw,78px); }
h2 { font-size: clamp(26px,4vw,54px); }
h3 { font-size: clamp(16px,2vw,24px); font-weight: 400; text-transform: none; letter-spacing: .02em; }
h4 { font-size: 17px; font-weight: 600; text-transform: none; font-family: var(--font-body); letter-spacing: 0; }
h5 { font-size: 14px; font-weight: 600; text-transform: none; font-family: var(--font-body); letter-spacing: 0; }
p { line-height: 1.75; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.kicker::before { content:''; display:block; width:28px; height:1px; background:var(--gold); flex-shrink:0; }

/* ---- LAYOUT -------------------------------------------------------- */
.bp-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.section     { padding: 120px 0; }
.section-sm  { padding:  80px 0; }
.section-xs  { padding:  56px 0; }
.dark        { background: var(--navy); color: var(--white); }
.dark h1,.dark h2,.dark h3,.dark h4 { color: var(--white); }
.offwhite    { background: var(--off-white); }

/* ---- NAV ----------------------------------------------------------- */
.bp-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.bp-nav.is-scrolled { background: var(--navy); box-shadow: 0 1px 24px rgba(0,0,0,.32); }

.bp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.bp-nav-logo img { height: 36px; width: auto; }

.bp-nav-links { display: flex; align-items: center; gap: 36px; }
.bp-nav-item  { position: relative; }

.bp-nav-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 0;
  white-space: nowrap;
  transition: color .2s;
}
.bp-nav-link:hover { color: var(--gold-light); }
.bp-nav-link .ch { font-size: 9px; transition: transform .2s; }
.bp-nav-item:hover .ch { transform: rotate(180deg); }

.bp-subnav {
  position: absolute;
  top: calc(100% + 16px);
  left: -16px;
  background: var(--white);
  min-width: 240px;
  border-top: 2px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .25s var(--ease);
  box-shadow: 0 20px 48px rgba(0,0,0,.14);
}
.bp-nav-item:hover .bp-subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.bp-subnav a {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--navy-mid);
  padding: 11px 20px;
  border-bottom: 1px solid var(--border);
  transition: all .2s;
}
.bp-subnav a:last-child { border-bottom: none; }
.bp-subnav a:hover { background: var(--off-white); color: var(--gold); padding-left: 28px; }

.bp-nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
  padding: 10px 24px;
  transition: all .25s;
}
.bp-nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* Hamburger */
.bp-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.bp-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all .3s; }
.bp-hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.bp-hamburger.active span:nth-child(2) { opacity: 0; }
.bp-hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile overlay */
.bp-mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 899;
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 32px) 36px 40px;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.76,0,.24,1);
  overflow-y: auto;
}
.bp-mobile-nav.open { transform: translateX(0); }

.m-link, .m-toggle {
  display: block;
  width: 100%;
  text-align: left;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 200;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 15px 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: none;
  cursor: pointer;
  transition: color .2s;
}
.m-link:first-child { border-top: 1px solid rgba(255,255,255,.08); }
.m-link:hover, .m-toggle:hover { color: var(--gold-light); }
.m-sub { display: none; padding-left: 20px; }
.m-sub.open { display: block; }
.m-sub a {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: none;
  color: rgba(255,255,255,.55);
  padding: 9px 0;
  border: none;
  transition: color .2s;
}
.m-sub a:hover { color: var(--gold-light); }

/* ---- HERO ---------------------------------------------------------- */
.bp-hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.bp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bp-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.bp-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,27,42,.8) 0%,
    rgba(13,27,42,.4) 50%,
    rgba(13,27,42,.88) 100%
  );
}
.bp-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 48px 96px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.bp-hero-pre {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.bp-hero-pre::before { content:''; display:block; width:32px; height:1px; background:var(--gold); }

.bp-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(42px,6.5vw,88px);
  font-weight: 200;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.02;
  max-width: 840px;
  margin-bottom: 24px;
}
.bp-hero h1 span { color: var(--gold-light); }

.bp-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.bp-hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.bp-scroll-cue {
  position: absolute;
  right: 48px;
  bottom: 40px;
  z-index: 1;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.bp-scroll-cue::after {
  content: '';
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.35));
}

/* ---- BUTTONS ------------------------------------------------------- */
.btn-gold {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 14px 32px;
  transition: background .25s;
}
.btn-gold:hover { background: var(--gold-mid); color: var(--navy); }

.btn-outline-w {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.42);
  padding: 14px 32px;
  transition: all .25s;
}
.btn-outline-w:hover { border-color: var(--white); background: rgba(255,255,255,.08); color: var(--white); }

.btn-outline-d {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 14px 32px;
  transition: all .25s;
}
.btn-outline-d:hover { background: var(--navy); color: var(--white); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .2s, color .2s;
}
.link-arrow::after { content: '→'; }
.link-arrow:hover { gap: 14px; color: var(--gold-mid); }
.link-arrow.white { color: rgba(255,255,255,.75); }
.link-arrow.white:hover { color: var(--white); }

/* ---- INTRO STRIP --------------------------------------------------- */
.bp-intro { background: var(--off-white); padding: 80px 0; }
.bp-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 80px;
  align-items: center;
}
.bp-intro-quote {
  font-family: var(--font-head);
  font-size: clamp(22px,2.8vw,38px);
  font-weight: 200;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.2;
}
.bp-intro-body {
  font-size: 17px;
  color: var(--grey-dark);
  line-height: 1.8;
  border-left: 2px solid var(--gold);
  padding-left: 32px;
}

/* ---- PRACTICE GRID ------------------------------------------------- */
.bp-practice-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.bp-pcard {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background .25s;
}
.bp-pcard::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.bp-pcard:hover { background: var(--off-white); }
.bp-pcard:hover::after { transform: scaleX(1); }

.bp-pcard-n {
  font-family: var(--font-head);
  font-size: 54px;
  font-weight: 100;
  color: var(--grey-light);
  line-height: 1;
  margin-bottom: 20px;
  transition: color .25s;
}
.bp-pcard:hover .bp-pcard-n { color: var(--gold); }
.bp-pcard-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.bp-pcard-desc {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ---- SPLIT SECTION ------------------------------------------------- */
.bp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.bp-split-img { position: relative; overflow: hidden; }
.bp-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.bp-split:hover .bp-split-img img { transform: scale(1.03); }
.bp-split-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}
.bp-split-body.navy  { background: var(--navy); }
.bp-split-body.navy h2, .bp-split-body.navy h3 { color: var(--white); }
.bp-split-body.navy p { color: rgba(255,255,255,.7); }
.bp-split-body.light { background: var(--off-white); }
.bp-split-body h2    { margin-bottom: 16px; }
.bp-split-body p     { font-size: 17px; line-height: 1.75; margin-bottom: 28px; }

/* ---- STATS BAND ---------------------------------------------------- */
.bp-stats { background: var(--gold); }
.bp-stats-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.bp-stat {
  padding: 56px 40px;
  border-right: 1px solid rgba(0,0,0,.1);
  text-align: center;
}
.bp-stat:last-child { border-right: none; }
.bp-stat-n {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(38px,4.5vw,64px);
  font-weight: 100;
  letter-spacing: .04em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
}
.bp-stat-l {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy-mid);
}

/* ---- TEAM CARDS ---------------------------------------------------- */
.bp-team-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.bp-team-grid.col-3 { grid-template-columns: repeat(3,1fr); }

.bp-person { overflow: hidden; background: var(--white); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.bp-person:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(13,27,42,.12); }

.bp-person-img { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--off-white); }
.bp-person-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%);
  transition: filter .4s, transform .5s var(--ease);
}
.bp-person:hover .bp-person-img img { filter: grayscale(0%); transform: scale(1.04); }

.bp-person-foot {
  padding: 20px 20px 24px;
  border-top: 2px solid var(--grey-light);
  transition: border-color .25s;
}
.bp-person:hover .bp-person-foot { border-color: var(--gold); }
.bp-person-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.bp-person-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 14px;
}
.bp-person-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .2s;
}
.bp-person-link::after { content:'→'; }
.bp-person:hover .bp-person-link { gap: 10px; }

/* ---- CTA SECTION --------------------------------------------------- */
.bp-cta {
  position: relative;
  padding: 120px 0;
  background: var(--navy);
  text-align: center;
  overflow: hidden;
}
.bp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 52px,
      rgba(184, 150, 46, 0.09) 52px,
      rgba(184, 150, 46, 0.09) 53px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 52px,
      rgba(184, 150, 46, 0.09) 52px,
      rgba(184, 150, 46, 0.09) 53px
    );
}
.bp-cta-inner { position: relative; z-index: 1; }
.bp-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(28px,4vw,56px);
  font-weight: 200;
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: 16px;
}
.bp-cta p {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.bp-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER -------------------------------------------------------- */
.bp-footer {
  background: #080F1A;
  color: rgba(255,255,255,.5);
  padding: 80px 0 0;
}
.bp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 40px;
}
.bp-footer-brand img { height: 34px; width: auto; opacity: .85; margin-bottom: 18px; }
.bp-footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }

.bp-footer-col h6 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.bp-footer-col li { margin-bottom: 10px; }
.bp-footer-col li a { font-size: 14px; color: rgba(255,255,255,.48); transition: all .2s; }
.bp-footer-col li a:hover { color: var(--white); padding-left: 4px; }

.bp-footer-offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 24px;
}
.bp-footer-office h6 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.bp-footer-office address { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.42); }

.bp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  padding-bottom: 28px;
}
.bp-footer-social { display: flex; gap: 20px; }
.bp-footer-social a { font-size: 14px; color: rgba(255,255,255,.32); transition: color .2s; }
.bp-footer-social a:hover { color: var(--gold); }

/* ---- PAGE HERO ----------------------------------------------------- */
.bp-page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 72px;
  background: var(--navy);
  overflow: hidden;
}
.bp-page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bp-page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .13; }
.bp-page-hero-inner { position: relative; z-index: 1; }

.bp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.bp-breadcrumb a { color: rgba(255,255,255,.35); transition: color .2s; }
.bp-breadcrumb a:hover { color: var(--gold); }
.bp-breadcrumb span { color: rgba(255,255,255,.18); }

.bp-page-hero h1 {
  font-size: clamp(32px,5vw,68px);
  font-weight: 200;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 16px;
}
.bp-page-hero .pg-sub {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  line-height: 1.7;
}

/* ---- EXPERTISE / SERVICE PAGE ------------------------------------- */
.bp-exp-rows { border-top: 1px solid var(--border); }
.bp-exp-row {
  display: grid;
  grid-template-columns: 88px 1fr 40px;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  transition: all .2s var(--ease);
  cursor: pointer;
  text-decoration: none;
}
.bp-exp-row:hover { background: var(--off-white); padding-left: 20px; }
.bp-exp-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 100;
  color: var(--grey-light);
  line-height: 1;
  transition: color .25s;
}
.bp-exp-row:hover .bp-exp-num { color: var(--gold); }
.bp-exp-title { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 8px; font-family: var(--font-body); }
.bp-exp-desc  { font-size: 14px; color: var(--grey-mid); line-height: 1.6; }
.bp-exp-arr   { font-size: 18px; color: var(--grey-light); transition: all .25s; text-align: right; }
.bp-exp-row:hover .bp-exp-arr { color: var(--gold); transform: translateX(6px); }

/* ---- PARTNER PROFILE ---------------------------------------------- */
.bp-partner-hero {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 620px;
}
.bp-partner-photo { position: relative; overflow: hidden; }
.bp-partner-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.bp-partner-detail {
  background: var(--navy);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bp-partner-detail h1 { font-size: clamp(32px,3.5vw,52px); font-weight: 200; color: var(--white); margin-bottom: 6px; }
.bp-partner-pos {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.bp-partner-bio { font-size: 16px; color: rgba(255,255,255,.68); line-height: 1.8; margin-bottom: 28px; }
.bp-area-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.bp-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.bp-tag {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.16);
  padding: 6px 14px;
  transition: all .2s;
}
.bp-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ---- HISTORY TIMELINE --------------------------------------------- */
.bp-timeline { padding-left: 100px; position: relative; }
.bp-timeline::before {
  content: '';
  position: absolute;
  left: 28px; top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}
.bp-tl-item { position: relative; padding-bottom: 64px; }
.bp-tl-item::before {
  content: '';
  position: absolute;
  left: -80px; top: 14px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184,150,46,.2);
}
.bp-tl-year { font-family: var(--font-head); font-size: 48px; font-weight: 100; color: var(--grey-light); line-height: 1; margin-bottom: 8px; }
.bp-tl-title { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.bp-tl-text  { font-size: 15px; color: var(--grey-dark); line-height: 1.75; }

/* ---- QUOTE --------------------------------------------------------- */
.bp-quote { background: var(--navy-mid); padding: 96px 0; text-align: center; }
.bp-quote-mark { font-family: var(--font-head); font-size: 72px; line-height: .8; color: var(--gold); margin-bottom: 20px; }
.bp-quote blockquote {
  font-family: var(--font-head);
  font-size: clamp(20px,3vw,38px);
  font-weight: 200;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.3;
}
.bp-quote-attr { margin-top: 28px; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }

/* ---- RESPONSIBLE BUSINESS ----------------------------------------- */
.bp-pillar-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.bp-pillar {
  padding: 44px 36px;
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow .25s, border-color .25s;
}
.bp-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.bp-pillar:hover { border-color: transparent; box-shadow: 0 12px 40px rgba(13,27,42,.1); }
.bp-pillar:hover::before { transform: scaleX(1); }
.bp-pillar-icon  { font-size: 26px; color: var(--gold); margin-bottom: 18px; }
.bp-pillar-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.bp-pillar-text  { font-size: 14px; color: var(--grey-dark); line-height: 1.7; }

/* ---- VALUES -------------------------------------------------------- */
.bp-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.bp-value {
  padding: 44px 36px;
  border-top: 2px solid var(--gold);
  background: var(--white);
}
.bp-value-n { font-family: var(--font-head); font-size: 42px; font-weight: 100; color: var(--grey-light); margin-bottom: 14px; }
.bp-value-title { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.bp-value-text  { font-size: 14px; color: var(--grey-dark); line-height: 1.7; }

/* ---- BIO HERO (person profile pages) ------------------------------ */
.bp-bio-hero {
  background: var(--navy);
  padding-top: var(--nav-h);
  overflow: hidden;
  position: relative;
}
.bp-bio-hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: 540px;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 48px;
}
.bp-bio-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px 48px 72px 0;
}
.bp-bio-pos {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.bp-bio-text h1 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 200;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.04;
  margin-bottom: 20px;
}
.bp-bio-divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}
.bp-bio-summary {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}
.bp-bio-tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.bp-bio-tag {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.15);
  padding: 5px 14px;
  letter-spacing: .04em;
}

.bp-bio-photo {
  position: relative;
  overflow: hidden;
}
.bp-bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.bp-bio-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, rgba(13,27,42,.15) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Bio content section */
.bp-bio-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}
.bp-bio-sidebar { position: sticky; top: 100px; }
.bp-bio-sidebar-item {
  padding: 18px 20px;
  border-left: 2px solid var(--border);
  margin-bottom: 12px;
  background: var(--off-white);
}
.bp-bio-sidebar-item.gold { border-left-color: var(--gold); }
.bp-sidebar-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 5px;
}
.bp-sidebar-label.gold { color: var(--gold); }
.bp-sidebar-value { font-size: 14px; color: var(--grey-dark); font-weight: 500; }
.bp-sidebar-value a { color: var(--gold); }

.bp-bio-main p { font-size: 17px; line-height: 1.8; color: var(--grey-dark); margin-bottom: 20px; }
.bp-bio-main p:first-child { font-size: 19px; color: var(--text); }
.bp-bio-main p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .bp-bio-hero-inner { grid-template-columns: 1fr; padding-left: 0; }
  .bp-bio-photo { height: 400px; order: -1; }
  .bp-bio-photo::before { background: linear-gradient(to top, var(--navy) 0%, transparent 60%); }
  .bp-bio-text { padding: 32px 28px 52px; }
  .bp-bio-body { grid-template-columns: 1fr; gap: 40px; }
  .bp-bio-sidebar { position: static; }
}

/* ---- UTILITY ------------------------------------------------------- */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.mt-lg { margin-top: 40px; }
.mb-lg { margin-bottom: 40px; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.two-col-text { columns: 2; gap: 48px; }

/* ---- RESPONSIVE ---------------------------------------------------- */
@media (max-width: 1100px) {
  .bp-container, .bp-nav-inner, .bp-hero-content { padding-left: 32px; padding-right: 32px; }
  .bp-intro-grid { gap: 48px; }
  .bp-split-body { padding: 64px 48px; }
  .bp-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .bp-partner-hero { grid-template-columns: 360px 1fr; }
}

@media (max-width: 900px) {
  .bp-practice-grid { grid-template-columns: repeat(2,1fr); }
  .bp-team-grid { grid-template-columns: repeat(2,1fr); }
  .bp-team-grid.col-3 { grid-template-columns: repeat(2,1fr); }
  .bp-values { grid-template-columns: repeat(2,1fr); }
  .bp-pillar-grid { grid-template-columns: repeat(2,1fr); }
  .bp-stats-inner { grid-template-columns: repeat(2,1fr); }
  .bp-stat { border-right: 1px solid rgba(0,0,0,.1); border-bottom: 1px solid rgba(0,0,0,.1); }
  .bp-stat:nth-child(even) { border-right: none; }
  .bp-stat:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
  .bp-nav-links, .bp-nav-cta { display: none; }
  .bp-hamburger { display: flex; }

  .bp-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .bp-intro-body { border-left: none; padding-left: 0; border-top: 2px solid var(--gold); padding-top: 24px; }

  .bp-split { grid-template-columns: 1fr; }
  .bp-split-img { height: 320px; }
  .bp-split-body { padding: 56px 28px; }

  .bp-partner-hero { grid-template-columns: 1fr; }
  .bp-partner-photo { height: 420px; }
  .bp-partner-detail { padding: 56px 28px; }

  .bp-exp-row {
    grid-template-columns: 60px 1fr auto;
    gap: 16px;
    padding: 28px 0;
    align-items: center;
  }
  .bp-exp-arr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 15px;
    flex-shrink: 0;
    transform: none;
  }
  .bp-exp-row:hover { padding-left: 0; background: none; }

  .bp-timeline { padding-left: 56px; }
  .bp-timeline::before { left: 16px; }
  .bp-tl-item::before { left: -46px; }
  .two-col-text { columns: 1; }

  .bp-values { grid-template-columns: 1fr; }
  .bp-pillar-grid { grid-template-columns: 1fr; }
  .bp-footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .bp-footer-offices { grid-template-columns: 1fr; gap: 28px; }
  .bp-footer-bottom { flex-direction: column; gap: 16px; text-align: center; padding-bottom: 40px; }
  .bp-cta-btns { flex-direction: column; align-items: center; }
  .bp-scroll-cue { display: none; }
  .section { padding: 80px 0; }
  .section-sm { padding: 56px 0; }
}

@media (max-width: 480px) {
  .bp-team-grid, .bp-team-grid.col-3 { grid-template-columns: 1fr; }
  .bp-practice-grid { grid-template-columns: 1fr; }
  .bp-stats-inner { grid-template-columns: 1fr; }
  .bp-stat { border-right: none; }
  .bp-container, .bp-hero-content, .bp-nav-inner { padding-left: 20px; padding-right: 20px; }
  .bp-hero-actions { flex-direction: column; align-items: flex-start; }
}
