/* ============================================================
   BroadOak Capital Partners — site stylesheet
   Rebuilt from the WordPress/Elementor site's design tokens:
   primary navy #17497C · slate #8BA5BE · text #3B3B3B ·
   green #37BD79 · teal #308FAC · deep navy #014489 ·
   blue #3E8ABB · light bg #F7F7F7
   Headings: Montserrat 400 · Body: Nunito Sans · UI: Roboto
   ============================================================ */

:root {
  --c-primary: #17497C;
  --c-slate: #8BA5BE;
  --c-text: #3B3B3B;
  --c-green: #37BD79;
  --c-green-btn: #5EBC67;
  --c-teal: #308FAC;
  --c-navy: #014489;
  --c-blue: #3E8ABB;
  --c-bg-light: #F7F7F7;
  --c-footer: #1E3F6E;
  --c-hero-top: #1E3F6E;
  --c-hero-bottom: #5C7CA6;
  --f-head: "Montserrat", sans-serif;
  --f-body: "Nunito Sans", sans-serif;
  --f-ui: "Roboto", sans-serif;
  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--c-text);
  background: #fff;
}
img { max-width: 100%; height: auto; }
a { color: var(--c-blue); text-decoration: none; }
a:hover { color: var(--c-primary); }

h1, h2, h3, h4 { font-family: var(--f-head); font-weight: 400; margin: 0 0 .5em; color: #000; }
h1 { font-size: 50px; line-height: 1.16; }
h2 { font-size: 40px; line-height: 1.15; }
h3 { font-size: 25px; line-height: 1.2; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 98px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 64px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; font-family: var(--f-body); font-size: 18px; }
.nav a { color: var(--c-primary); }
.nav a:hover, .nav .current > a { color: #9aa7b5; }
.nav .has-sub { position: relative; }
.nav .has-sub > a::after { content: " \25BE"; font-size: 12px; }
.nav .sub {
  display: none; position: absolute; top: 100%; left: -12px;
  background: #fff; border: 1px solid #e5e5e5; border-radius: 4px;
  min-width: 220px; padding: 8px 0; box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.nav .has-sub:hover .sub, .nav .has-sub:focus-within .sub { display: block; }
.nav .sub a { display: block; padding: 9px 18px; }
.nav .login { display: flex; align-items: center; gap: 8px; }
.nav .login svg { width: 26px; height: 26px; fill: var(--c-primary); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--c-primary); margin: 5px 0; border-radius: 2px; }

/* ---------- hero ---------- */
.hero {
  background: var(--c-hero-top) url('/wp-content/uploads/2021/12/image-gradientheader.png') center/cover no-repeat;
  color: #fff;
  padding: 90px 0 100px;
}
.hero h1 { color: #fff; margin-bottom: 12px; }
.hero p { font-size: 20px; max-width: 640px; margin: 0; }
.hero.has-image {
  background-size: cover; background-position: center;
  position: relative;
}
.hero.has-image::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(23,55,102,.85) 0%, rgba(38,88,152,.55) 55%, rgba(64,120,190,.35) 100%);
}
.hero.has-image .wrap { position: relative; z-index: 1; }
.hero.home { padding: 140px 0 150px; }
.hero .btn { margin-top: 34px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--f-ui);
  font-size: 15px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 999px;
  border: 0; cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-green { background: var(--c-green-btn); color: #fff; }
.btn-green:hover { background: #4aa953; color: #fff; }
.btn-sky { background: #A8DCF0; color: var(--c-primary); }
.btn-sky:hover { background: #8fd0ea; color: var(--c-primary); }

/* ---------- sections ---------- */
.section { padding: 84px 0; }
.section.light { background: var(--c-bg-light); }
.section-head { text-align: center; margin-bottom: 48px; }
.dash { display: block; width: 48px; height: 3px; background: var(--c-green); margin: 0 auto 34px; }
.dash.left { margin: 0 0 30px; }

.lead-center { max-width: 980px; margin: 0 auto; text-align: center; }

/* two-column text/image */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .img img { border-radius: 10px; display: block; }

/* ---------- stat tiles ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 22px; max-width: 1160px; margin: 0 auto; }
.stat {
  border-radius: 14px; color: #fff; padding: 28px 24px 22px;
  min-height: 230px; display: flex; flex-direction: column;
}
.stat .icon { margin-bottom: 34px; }
.stat .icon svg { width: 56px; height: 56px; stroke: #fff; fill: none; stroke-width: 1.4; }
.stat .label { font-size: 20px; line-height: 1.3; flex: 1; }
.stat .value { font-family: var(--f-head); font-size: 52px; font-weight: 600; line-height: 1; margin-top: 14px; }
.stat.teal { background: #4A93A8; }
.stat.blue { background: #2E96D3; }
.stat.deepteal { background: #2E7286; }
.stat.dark { background: #3B3B3B; }
.stat.slate { background: var(--c-slate); }

/* ---------- icon features (What Makes Us Unique) ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 46px 40px; text-align: center; max-width: 1100px; margin: 0 auto; }
.feature .bubble {
  width: 118px; height: 118px; border-radius: 50%;
  margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
}
.feature .bubble svg { width: 54px; height: 54px; stroke: #fff; fill: none; stroke-width: 1.4; }
.feature p { font-size: 19px; margin: 0; }
.bubble.b1 { background: #2E5F72; }
.bubble.b2 { background: #4A93A8; }
.bubble.b3 { background: #2E96D3; }

/* green icon cards (advisory services) */
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.svc-card {
  background: #fff; border: 1px solid #e7e7e7; border-radius: 10px;
  padding: 34px 30px; text-align: right;
}
.svc-card .bubble {
  width: 68px; height: 68px; border-radius: 50%; background: var(--c-green-btn);
  margin-left: auto; margin-bottom: 46px;
  display: flex; align-items: center; justify-content: center;
}
.svc-card .bubble svg { width: 34px; height: 34px; stroke: #fff; fill: none; stroke-width: 1.6; }
.svc-card h3 { font-size: 24px; color: var(--c-text); margin: 0; }

/* ---------- logo grid ---------- */
.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.logo-grid a, .logo-grid .cell {
  background: #fff; border: 1px solid #e3e3e3; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 26px; min-height: 165px;
}
.logo-grid img { max-height: 105px; width: auto; max-width: 100%; object-fit: contain; }
.logo-grid a:hover { box-shadow: 0 6px 18px rgba(0,0,0,.08); }

/* filter tabs */
.filters { display: flex; justify-content: center; gap: 10px; margin-bottom: 44px; flex-wrap: wrap; }
.filters button {
  font-family: var(--f-ui); font-size: 14px; letter-spacing: .1em; text-transform: uppercase;
  background: none; border: 0; cursor: pointer; color: var(--c-primary);
  padding: 10px 18px;
}
.filters button.active { background: var(--c-primary); color: #fff; }

/* ---------- tombstones (transactions) ---------- */
.tombstones { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.tombstone {
  background: #fff; border: 1px solid #e3e3e3; border-radius: 10px;
  padding: 30px 26px; text-align: center;
  display: flex; flex-direction: column; gap: 18px; min-height: 300px;
}
.tombstone .tlogos { display: flex; flex-direction: column; align-items: center; gap: 16px; margin: auto 0; }
/* fixed logo box keeps wide wordmarks and square marks at comparable visual weight */
.tombstone .tlogo { display: flex; align-items: center; justify-content: center; width: 100%; height: 72px; }
.tombstone .tlogo img { max-height: 100%; max-width: 190px; width: auto; height: auto; object-fit: contain; }
.tombstone .tdiv { width: 44px; height: 1px; background: #dcdcdc; flex: none; }
.tombstone img { max-height: 120px; object-fit: contain; margin: auto; }
.tombstone .caption { font-size: 17px; }

/* ---------- quote / teaser split band ---------- */
.band { display: grid; grid-template-columns: 1fr 1fr; }
.band-quote {
  background: linear-gradient(120deg, #2f7ba6, #4a9fc4);
  background-size: cover; color: #fff;
  padding: 80px 60px; text-align: center;
  display: flex; flex-direction: column; justify-content: center;
}
.band-quote .qmark {
  width: 58px; height: 58px; border-radius: 50%; background: #fff;
  color: #2f7ba6; font-size: 30px; line-height: 58px; margin: 0 auto 28px;
  font-family: Georgia, serif;
}
.band-quote blockquote { margin: 0 0 22px; font-size: 20px; }
.band-quote .who { font-weight: 700; }
.band-quote .role { opacity: .95; }
.band-teaser {
  background: #EDF6FA; padding: 80px 60px; text-align: center;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.band-teaser .mark { width: 72px; margin-bottom: 18px; opacity: .9; }
.band-teaser h2 { color: var(--c-primary); }
.band-teaser p { max-width: 560px; }

/* ---------- accordion (expertise) ---------- */
.accordion .item { border-bottom: 1px solid #e2e2e2; background: #fff; }
.accordion .item > button {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--f-head); font-size: 20px; font-weight: 700; color: var(--c-text);
  padding: 22px 56px 22px 24px; position: relative;
}
.accordion .item > button .mkt { display: block; font-weight: 600; }
.accordion .item > button::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  color: var(--c-green); font-size: 26px; font-weight: 400;
}
.accordion .item.open > button { background: var(--c-primary); color: #fff; }
.accordion .item.open > button::after { content: "\2013"; color: #fff; }
.accordion .panel { display: none; padding: 18px 24px 26px; background: var(--c-primary); color: #fff; }
.accordion .item.open .panel { display: block; }

.expertise-band { display: grid; grid-template-columns: 460px 1fr; gap: 60px; align-items: start; }
.expertise-band .panel-img {
  background: linear-gradient(160deg, rgba(20,45,80,.88), rgba(30,63,110,.75)), url(../img/texture-cells.jpg) center/cover;
  background-color: #1E3F6E;
  color: #fff; border-radius: 0; padding: 56px 44px;
}
.expertise-band .panel-img h2 { color: #fff; }

/* ---------- team grid ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 28px; }
.member img { display: block; width: 100%; border-radius: 4px; }
.member h3 { font-family: var(--f-body); font-weight: 700; font-size: 19px; color: var(--c-primary); margin: 16px 0 2px; }
.member .title { font-weight: 700; font-size: 17px; margin: 0 0 8px; }
.member p { font-size: 16px; margin: 0 0 10px; }
.member .more { font-family: var(--f-ui); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--c-green); border-bottom: 1px solid var(--c-green); padding-bottom: 2px; }

/* ---------- bio page ---------- */
.bio-hero { background: var(--c-hero-top) url('/wp-content/uploads/2021/12/image-gradientheader.png') center/cover no-repeat; height: 110px; }
.bio-body { padding: 56px 0 80px; }
.back-link { font-family: var(--f-ui); font-size: 14px; letter-spacing: .06em; color: var(--c-primary); text-transform: uppercase; font-weight: 500; }
.back-link::before { content: "\2039  "; font-size: 18px; }
.bio-cols { display: grid; grid-template-columns: 1.6fr 1fr; gap: 70px; margin-top: 46px; }
.badge {
  display: inline-block; background: #2E96D3; color: #fff;
  font-family: var(--f-ui); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 3px; margin-bottom: 18px;
}
.badge.advisory { background: var(--c-green); }
.bio-cols h1 { font-size: 44px; }
.bio-cols .role { color: var(--c-blue); font-weight: 700; font-size: 21px; margin: 0 0 24px; }
.connect { display: flex; align-items: center; gap: 16px; font-family: var(--f-head); font-size: 24px; color: var(--c-primary); flex-wrap: wrap; }
.connect a {
  width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--c-primary);
  display: inline-flex; align-items: center; justify-content: center;
}
.connect a svg { width: 24px; height: 24px; fill: var(--c-primary); }
.bio-photo { border-radius: 6px; margin-top: 34px; }

/* ---------- news ---------- */
.news-search {
  background: #fff; border: 1px solid #e3e3e3; border-radius: 8px;
  display: flex; align-items: center; padding: 8px 8px 8px 20px; margin-bottom: 40px;
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
}
.news-search input {
  flex: 1; border: 0; outline: none; font-family: var(--f-body); font-size: 18px; color: var(--c-text);
}
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card {
  border: 1px solid #e3e3e3; border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column; background: #fff;
}
.news-card .thumb { background: #fff; display: flex; align-items: center; justify-content: center; height: 210px; padding: 24px; border-bottom: 1px solid #eee; }
.news-card .thumb img { max-height: 160px; object-fit: contain; }
.news-card .body { padding: 24px 26px 28px; background: var(--c-bg-light); flex: 1; display: flex; flex-direction: column; gap: 10px; }
.news-card h3 { font-family: var(--f-body); font-weight: 700; font-size: 21px; line-height: 1.3; margin: 0; }
.news-card h3 a { color: var(--c-primary); }
.news-card .date { color: var(--c-blue); font-size: 15px; }
.news-card .excerpt { font-size: 16px; margin: 0; flex: 1; }
.news-card .more { font-family: var(--f-ui); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--c-green); font-weight: 500; border-bottom: 1px solid var(--c-green); align-self: flex-start; padding-bottom: 2px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; font-family: var(--f-ui); }
.pagination button {
  min-width: 40px; padding: 9px 12px; border: 1px solid #d9d9d9; background: #fff;
  border-radius: 4px; cursor: pointer; font-size: 15px; color: var(--c-primary);
}
.pagination button.active { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

/* news post */
.post-cols { display: grid; grid-template-columns: 1.7fr 1fr; gap: 70px; padding: 56px 0 80px; }
.post-cols .date { color: var(--c-blue); margin-bottom: 26px; }
.post-cols article p { margin: 0 0 1.2em; }
.post-cols article h2 { font-size: 26px; font-family: var(--f-body); font-weight: 700; margin-top: 1.4em; }
.post-side img { max-width: 320px; }

/* ---------- contact ---------- */
.contact-cols { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.contact-cols h3 { font-family: var(--f-body); font-weight: 700; font-size: 22px; color: var(--c-primary); }
.offices h3 { margin-top: 34px; }
form .field { margin-bottom: 22px; }
form label { display: block; font-weight: 700; margin-bottom: 6px; }
form .req { color: #c02b0a; }
form input[type=text], form input[type=email], form textarea, form select {
  width: 100%; padding: 12px 14px; border: 1px solid #ccc; border-radius: 4px;
  font-family: var(--f-body); font-size: 17px; color: var(--c-text); background: #fff;
}
form textarea { min-height: 170px; }
.name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.name-row small { color: #777; }
.radios label { font-weight: 400; display: flex; gap: 10px; align-items: center; margin: 6px 0; }
.form-note { font-size: 13px; color: #888; margin-top: 14px; }

/* ---------- footer ---------- */
.site-footer { background: var(--c-footer); color: #fff; padding: 64px 0 0; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: #A8DCF0; }
.footer-cols { display: grid; grid-template-columns: 1.2fr 1.4fr; gap: 50px; align-items: center; }
.footer-brand img { width: 270px; margin-bottom: 34px; }
.footer-brand .frow { display: flex; align-items: center; gap: 14px; margin: 20px 0; font-weight: 700; font-size: 19px; }
.footer-brand .frow .ic {
  width: 34px; height: 34px; border-radius: 6px; background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.footer-brand .frow .ic svg { width: 20px; height: 20px; fill: var(--c-footer); }
.footer-links { display: grid; grid-template-columns: repeat(3, auto); gap: 22px 46px; font-weight: 700; font-size: 18px; align-self: center; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.25); margin-top: 46px; padding: 20px 0 26px;
  font-size: 15px;
}
.footer-bottom .wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom .right { text-align: right; }

/* ---------- inquiry blocks (contact) ---------- */
.inq h3 { margin-bottom: 4px; }
.inq p { margin-top: 0; }

/* ---------- careers etc ---------- */
.callout { background: var(--c-bg-light); border-radius: 10px; padding: 34px 38px; }

/* ---------- legal pages ---------- */
.prose { max-width: 900px; margin: 0 auto; padding: 64px 24px 90px; }
.prose h1 { font-size: 42px; margin-bottom: .8em; }
.prose h2 { font-size: 28px; margin-top: 1.6em; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  h1 { font-size: 38px; } h2 { font-size: 32px; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: flex-start;
    padding: 18px 24px 26px; gap: 14px; border-bottom: 1px solid #e5e5e5; }
  .nav.open { display: flex; }
  .nav .sub { position: static; display: block; border: 0; box-shadow: none; padding: 4px 0 0 16px; }
  .nav-toggle { display: block; }
  .split, .band, .bio-cols, .post-cols, .contact-cols, .expertise-band { grid-template-columns: 1fr; }
  .news-grid, .svc-cards, .tombstones, .features { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom .right { text-align: left; }
}
@media (max-width: 560px) {
  .news-grid, .svc-cards, .tombstones, .features, .team-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 64px 0 72px; }
  .hero.home { padding: 90px 0 100px; }
}

/* ============================================================
   2026 refresh — modernization layer (same palette & fonts,
   softer surfaces, subtle depth & motion). Remove this block
   to restore the original faithful-replica styling.
   ============================================================ */
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
:focus-visible { outline: 2px solid var(--c-blue); outline-offset: 2px; border-radius: 4px; }
::selection { background: #A8DCF0; color: var(--c-primary); }

/* typography: a touch more presence, tighter headlines */
h1 { letter-spacing: -0.5px; line-height: 1.1; }
h2 { font-weight: 500; letter-spacing: -0.3px; }
.hero p { line-height: 1.65; opacity: .95; }

/* header: floating feel + animated link underline */
.site-header { box-shadow: 0 1px 14px rgba(23, 73, 124, .07); border-bottom: 0; }
.nav > div > a, .nav .login > a:first-child {
  background: linear-gradient(currentColor, currentColor) left bottom / 0% 2px no-repeat;
  transition: background-size .25s ease, color .2s;
  padding-bottom: 3px;
}
.nav > div > a:hover { background-size: 100% 2px; }

/* buttons: gentle lift */
.btn { transition: background .2s, color .2s, transform .18s ease, box-shadow .18s ease; }
.btn-green { box-shadow: 0 4px 14px rgba(94, 188, 103, .28); }
.btn-green:hover, .btn-sky:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(23, 73, 124, .22); }

/* cards & grids: borderless, soft elevation, larger radii */
.logo-grid a, .logo-grid .cell, .news-card, .tombstone, .svc-card, .news-search {
  border: 1px solid rgba(23, 73, 124, .07);
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(16, 42, 74, .05), 0 8px 24px rgba(16, 42, 74, .04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.logo-grid a:hover, .news-card:hover, .tombstone:hover, .svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(16, 42, 74, .08), 0 18px 38px rgba(16, 42, 74, .10);
}
.news-card { overflow: hidden; }
.news-card .more, .member .more { border-bottom: 0; }
.news-card .more::after, .member .more::after { content: " \2192"; transition: margin-left .2s; }
.news-card:hover .more::after, .member .more:hover::after { margin-left: 4px; }

/* stat tiles: soft gradients + bigger radius */
.stat { border-radius: 18px; box-shadow: 0 10px 26px rgba(16, 42, 74, .12); }
.stat.teal { background: linear-gradient(160deg, #55a2b7, #3d7f93); }
.stat.blue { background: linear-gradient(160deg, #3ba4de, #2379ad); }
.stat.deepteal { background: linear-gradient(160deg, #37859b, #245d6e); }
.stat.dark { background: linear-gradient(160deg, #4a4a4a, #2e2e2e); }
.stat.slate { background: linear-gradient(160deg, #97b0c8, #7e99b3); }

/* imagery: consistent rounding */
.split .img img, .bio-photo, .member img { border-radius: 14px; }
.member a img { transition: transform .25s ease, box-shadow .25s ease; }
.member a:hover img { transform: scale(1.02); box-shadow: 0 12px 28px rgba(16, 42, 74, .14); }

/* filter tabs: pill style */
.filters button { border-radius: 999px; border: 1px solid rgba(23, 73, 124, .18); padding: 10px 22px; transition: all .2s; }
.filters button:hover { background: rgba(23, 73, 124, .06); }
.filters button.active { border-color: var(--c-primary); }

/* accordion: rounded, softer */
.accordion { border-radius: 14px; overflow: hidden; box-shadow: 0 1px 3px rgba(16,42,74,.06); }
.expertise-band .panel-img { border-radius: 14px; }

/* sections: more air */
.section { padding: 96px 0; }
.band-quote, .band-teaser { padding: 96px 64px; }

/* footer: square rounded icon tiles (fixed), modern form controls */
.footer-brand .frow .ic {
  width: 44px; height: 44px; flex: 0 0 44px;
  background: #fff; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
}
.footer-brand .frow .ic svg { width: 22px; height: 22px; fill: var(--c-footer); }
/* forms: rounder fields */
form input[type=text], form input[type=email], form textarea { border-radius: 10px; transition: border-color .2s, box-shadow .2s; }
form input:focus, form textarea:focus { border-color: var(--c-blue); box-shadow: 0 0 0 3px rgba(62,138,187,.15); outline: none; }

/* pagination pills */
.pagination button { border-radius: 999px; min-width: 42px; }

@media (prefers-reduced-motion: reduce) {
  .btn, .logo-grid a, .news-card, .tombstone, .svc-card, .member a img { transition: none; }
}

/* ============================================================
   Site-wide new navigation (matches homepage) + hero restyle
   ============================================================ */
.nav2 {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  transition: background .35s, box-shadow .35s, padding .35s;
}
.nav2.solid { background: rgba(255,255,255,.97); box-shadow: 0 2px 20px rgba(18,47,82,.10); padding: 13px 40px; }
.nav2 .logo img { height: 52px; transition: filter .35s; display: block; }
.nav2:not(.solid) .logo img { filter: brightness(0) invert(1); }
.nav2 .links { display: flex; align-items: center; gap: 30px; font-size: 16px; font-weight: 700; color: #fff; }
.nav2.solid .links { color: var(--c-primary); }
.nav2 .links a {
  color: inherit;
  background: linear-gradient(currentColor, currentColor) left bottom / 0% 2px no-repeat;
  transition: background-size .25s; padding-bottom: 3px;
}
.nav2 .links > a:hover, .nav2 .nitem > a:hover { background-size: 100% 2px; }
.nav2 .nitem { position: relative; display: inline-block; }
.nav2 .nitem > a::after { content: " \25BE"; font-size: 10px; opacity: .7; }
.nav2 .drop {
  visibility: hidden; opacity: 0; transform: translateY(6px);
  transition: opacity .2s, transform .2s;
  position: absolute; top: 100%; left: -14px; padding-top: 14px;
  display: flex; flex-direction: column; min-width: 230px; z-index: 120;
}
.nav2 .drop a { background: #fff; color: var(--c-primary); font-weight: 700; font-size: 15px; padding: 12px 18px; border-bottom: 1px solid #eef2f6; }
.nav2 .drop a:first-child { border-radius: 12px 12px 0 0; }
.nav2 .drop a:last-child { border-radius: 0 0 12px 12px; border-bottom: 0; box-shadow: 0 18px 36px rgba(18,47,82,.18); }
.nav2 .drop a:hover { background: #f2f7fb; }
.nav2 .nitem:hover .drop, .nav2 .nitem:focus-within .drop { visibility: visible; opacity: 1; transform: translateY(0); }
.nav2 .burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 110; }
.nav2 .burger span { display: block; width: 26px; height: 3px; background: #fff; margin: 5px 0; border-radius: 2px; transition: background .3s; }
.nav2.solid .burger span { background: var(--c-primary); }

/* pages without a hero (bio pages): keep space for the solid nav */
body.solid-nav { padding-top: 78px; }

/* interior heroes: clear the fixed nav, match homepage typography */
.hero { padding: 160px 0 96px; }
.hero h1 { font-size: clamp(34px, 4.4vw, 58px); font-weight: 300; letter-spacing: -0.5px; line-height: 1.12; }
.hero h1 b, .hero h1 strong { font-weight: 600; }
.hero p { font-size: clamp(17px, 1.3vw, 20px); line-height: 1.65; opacity: .95; }
.bio-hero { height: 120px; }

@media (max-width: 900px) {
  .nav2 { padding: 14px 20px; }
  .nav2 .burger { display: block; }
  .nav2 .links { display: none; }
  .nav2 .links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; color: var(--c-primary);
    padding: 18px 24px 26px; gap: 14px;
    box-shadow: 0 14px 30px rgba(18,47,82,.15);
  }
  .nav2 .nitem { display: contents; }
  .nav2 .nitem > a::after { content: ""; }
  .nav2 .drop { position: static; visibility: visible; opacity: 1; transform: none; padding: 0 0 0 16px; min-width: 0; }
  .nav2 .drop a, .nav2 .drop a:first-child, .nav2 .drop a:last-child { background: none; border: 0; padding: 5px 0; font-weight: 400; box-shadow: none; border-radius: 0; }
  .hero { padding: 120px 0 72px; }
}

/* responsive stat/feature grids (desktop column counts, mobile stacks) */
@media (min-width: 901px) {
  .stats-4 { grid-template-columns: repeat(4, 1fr); }
  .stats-5 { grid-template-columns: repeat(5, 1fr); }
  .features-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .stats-4, .stats-5 { grid-template-columns: repeat(2, 1fr); }
  .features-4 { grid-template-columns: repeat(2, 1fr); }
  .nav2 .drop a { border-radius: 0; }
}
@media (max-width: 560px) {
  .stats-4, .stats-5 { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat { min-height: 190px; padding: 20px 18px 16px; }
  .stat .value { font-size: 40px; }
  .features-4 { grid-template-columns: 1fr; }
}

/* ---------- contact page without form (2026-08) ---------- */
.office-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.office-card {
  background: #fff; border: 1px solid #e7e7e7; border-radius: 10px;
  padding: 36px 32px; text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.office-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(23, 73, 124, .12); }
.office-card h3 { font-family: var(--f-body); font-weight: 700; font-size: 22px; color: var(--c-primary); margin: 0 0 14px; }
.office-card p { margin: 0; line-height: 1.7; }
.office-card .ophone { margin-top: 14px; font-weight: 700; }
.office-card .ophone a { color: var(--c-primary); }
.inquiry-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.inquiry-card { background: #fff; border: 1px solid #e7e7e7; border-radius: 10px; padding: 30px 30px 26px; }
.inquiry-card h3 { font-family: var(--f-body); font-weight: 700; font-size: 21px; color: var(--c-primary); margin: 0 0 10px; }
.inquiry-card p { margin: 0; }
.contact-ctas { text-align: center; margin-top: 46px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 900px) {
  .office-cards { grid-template-columns: 1fr; max-width: 480px; }
  .inquiry-cards { grid-template-columns: 1fr; max-width: 560px; }
}
