/* =====================================================================
   BuildTrust Consulting LLC — Site Styles
   Palette is driven entirely by the CSS variables in :root below.
   To rebrand from the BTC logo, change only the --brand-* values.
   ===================================================================== */

:root {
  /* ---- BRAND PALETTE (derived from the BuildTrust Consulting logo) ---- */
  --brand-navy:      #37454F;   /* primary slate (wordmark / nav / hero) */
  --brand-navy-deep: #232E37;   /* darker sections / footer / shield base */
  --brand-navy-soft: #46545F;   /* hover / borders on dark */
  --brand-accent:    #6E9098;   /* steel-teal accent (buttons, highlights) */
  --brand-accent-2:  #8FAFB5;   /* accent hover / lighter teal */
  --brand-sage:      #9DA893;   /* sage green from shield (secondary tint) */

  /* ---- NEUTRALS ---- */
  --ink:        #26313a;   /* body text on light */
  --ink-soft:   #5a6772;   /* secondary text */
  --line:       #e3e7ea;   /* hairlines on light */
  --bg:         #ffffff;
  --bg-alt:     #f4f6f7;   /* alternating light section */
  --white:      #ffffff;

  /* ---- TYPE ---- */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* ---- LAYOUT ---- */
  --max:      1440px;
  --gutter:   clamp(20px, 2.2vw, 32px);
  --radius:   14px;
  --radius-lg: 22px;
  --shadow:   0 18px 45px -20px rgba(20, 37, 52, .35);
  --shadow-sm: 0 8px 24px -14px rgba(20, 37, 52, .30);
  --ease:     cubic-bezier(.22,.61,.36,1);
}

/* ---------------------------------------------------------------- reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; color: var(--brand-navy); }

/* ---------------------------------------------------------------- utils */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand-accent); margin-bottom: 18px;
}
.eyebrow::before { content: ""; display:inline-block; width:26px; height:2px; background: var(--brand-accent);
  vertical-align: middle; margin-right: 12px; transform: translateY(-3px); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--alt { background: var(--bg-alt); }
.lead { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--ink-soft); max-width: 640px; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.center .eyebrow::before { display:none; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: .96rem; padding: 14px 26px; border-radius: 100px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  cursor: pointer; border: none;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--accent { background: var(--brand-accent); color: var(--brand-navy-deep); }
.btn--accent:hover { background: var(--brand-accent-2); color: var(--brand-navy-deep); transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(110,144,152,.65); }
.btn--light { background: var(--white); color: var(--brand-navy); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.btn--outline { background: transparent; color: var(--brand-navy); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--brand-navy); transform: translateY(-2px); }

/* ---------------------------------------------------------------- header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0; transition: background .3s var(--ease), padding .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { background: rgba(20,37,52,.92); backdrop-filter: blur(12px); padding: 10px 0; box-shadow: 0 10px 30px -18px rgba(0,0,0,.6); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 16px; color: var(--white); font-weight: 800; letter-spacing: -.01em; font-size: 1.45rem; line-height:1; }
.brand .mark { width: 64px; height: 64px; flex:none; display: grid; place-items: center; }
.brand .mark svg { width: 100%; height: 100%; }
.brand .wm b { font-weight: 800; }
.brand small { display:block; font-size:.72rem; font-weight:600; letter-spacing:.28em; text-transform:uppercase; opacity:.62; margin-top:5px; }
/* larger lockup in the header, with a slightly trimmed shield */
.site-header .brand { font-size: 1.9rem; gap: 14px; }
.site-header .brand .mark { width: 58px; height: 58px; }
.site-header .brand small { font-size: .82rem; margin-top: 7px; }
.site-footer .brand .mark { filter: none; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.82); font-weight: 500; font-size: .95rem; position: relative; padding: 6px 0; transition: color .2s; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:0; height:2px; width:0; background: var(--brand-accent); transition: width .25s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display:block; width:24px; height:2px; background:#fff; margin:5px 0; transition: .3s var(--ease); }

/* ---------------------------------------------------------------- hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: var(--white); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background: var(--brand-navy); }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
/* crossfading background slideshow */
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s var(--ease); will-change: opacity; }
.hero__slide.is-active { opacity: 1; }
.hero__slide img { transform: scale(1.06); transition: transform 1.6s var(--ease); }
.hero__slide.is-active img { animation: kenburns 9s linear forwards; }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.13); } }
.hero__dots { position: absolute; right: clamp(18px, 4vw, 46px); bottom: 34px; display: flex; gap: 10px; z-index: 2; }
.hero__dots button {
  width: 30px; height: 3px; padding: 0; border: none; cursor: pointer; border-radius: 2px;
  background: rgba(255,255,255,.28); transition: background .3s var(--ease), transform .3s var(--ease);
}
.hero__dots button:hover { background: rgba(255,255,255,.55); }
.hero__dots button.is-active { background: var(--brand-accent); transform: scaleY(1.6); }
.hero__dots button:focus-visible { outline: 2px solid var(--brand-accent); outline-offset: 4px; }
/* lightened scrim: enough contrast for the white copy, still lets the photo read through */
.hero__bg::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(105deg, rgba(20,37,52,.72) 0%, rgba(20,37,52,.5) 45%, rgba(20,37,52,.18) 100%);
}
.hero__inner { padding: 140px 0 90px; max-width: 860px; }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 6vw, 4.4rem); font-weight: 800; letter-spacing: -.03em; text-shadow: 0 2px 18px rgba(11,22,33,.5); }
.hero p { font-size: clamp(1.08rem, 1.7vw, 1.35rem); color: rgba(255,255,255,.9); max-width: 660px; margin: 26px 0 38px; text-shadow: 0 1px 12px rgba(11,22,33,.5); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__stats { display:flex; gap: clamp(24px,4vw,54px); margin-top: 64px; flex-wrap: wrap; }
.hero__stats .num { font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; color: var(--brand-accent); text-shadow: 0 1px 12px rgba(11,22,33,.55); }
.hero__stats .lbl { font-size: .82rem; letter-spacing:.06em; color: rgba(255,255,255,.8); text-transform: uppercase; text-shadow: 0 1px 10px rgba(11,22,33,.55); }
.scroll-hint { position:absolute; bottom:28px; left:50%; transform:translateX(-50%); color:rgba(255,255,255,.5); font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; display:flex; flex-direction:column; align-items:center; gap:8px; }
.scroll-hint .line { width:1px; height:40px; background:linear-gradient(rgba(255,255,255,.5), transparent); animation: pulse 2s var(--ease) infinite; }
@keyframes pulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* page hero (inner pages) */
.page-hero { position: relative; color:#fff; padding: 170px 0 80px; background: var(--brand-navy); overflow:hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background:
  radial-gradient(60% 120% at 90% 0%, rgba(201,162,75,.16), transparent 60%); }
.page-hero h1 { color:#fff; font-size: clamp(2.2rem,5vw,3.4rem); }
.page-hero p { color: rgba(255,255,255,.8); max-width: 620px; margin-top: 18px; font-size:1.1rem; }
/* inner-page hero carrying the same crossfading background carousel as the home hero */
.page-hero--media { padding: 190px 0 96px; }
.page-hero--media h1 { text-shadow: 0 2px 18px rgba(11,22,33,.5); }
.page-hero--media p { color: rgba(255,255,255,.9); text-shadow: 0 1px 12px rgba(11,22,33,.5); }
.page-hero--media .crumbs { color: rgba(255,255,255,.75); text-shadow: 0 1px 10px rgba(11,22,33,.55); }
.page-hero--media .hero__bg { z-index: 0; }
.page-hero--media::before { z-index: 1; }
.page-hero--media > .container { position: relative; z-index: 2; }
.page-hero--media .hero__dots { z-index: 3; bottom: 26px; }
.crumbs { font-size:.82rem; letter-spacing:.05em; color: rgba(255,255,255,.6); margin-bottom: 20px; text-transform:uppercase; }
.crumbs a:hover { color: var(--brand-accent); }

/* ---------------------------------------------------------------- section head */
.sec-head { max-width: 680px; margin-bottom: 54px; }
.sec-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
.sec-head p { margin-top: 18px; }
.sec-head.center { margin-inline: auto; }

/* ---------------------------------------------------------------- services grid */
.grid { display: grid; gap: clamp(24px, 2vw, 34px); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative; overflow: hidden;
}
.card::before { content:""; position:absolute; left:0; top:0; height:3px; width:0; background: var(--brand-accent); transition: width .35s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { width: 100%; }
.card .ico {
  width: 54px; height: 54px; border-radius: 12px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--brand-navy) 8%, white); color: var(--brand-navy); margin-bottom: 22px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.card:hover .ico { background: var(--brand-navy); color: var(--brand-accent); }
.card .ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.24rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: .97rem; }
.card .more { margin-top: 18px; font-weight:600; font-size:.9rem; color: var(--brand-navy); display:inline-flex; align-items:center; gap:6px; }
.card .more svg { width:15px; height:15px; transition: transform .25s var(--ease); }
.card:hover .more svg { transform: translateX(4px); }

/* ---------------------------------------------------------------- about split */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width:100%; height: 100%; object-fit: cover; }
.split__media .badge {
  position:absolute; bottom: -26px; left: -26px; background: var(--brand-navy); color:#fff;
  padding: 24px 30px; border-radius: var(--radius); box-shadow: var(--shadow);
}
.split__media .badge .num { font-size: 2.2rem; font-weight: 800; color: var(--brand-accent); line-height:1; }
.split__media .badge .lbl { font-size:.82rem; color: rgba(255,255,255,.8); margin-top:6px; }
.check-list { list-style:none; margin-top: 26px; display:grid; gap:14px; }
.check-list li { display:flex; gap:12px; align-items:flex-start; color: var(--ink); font-weight:500; }
.check-list svg { width:22px; height:22px; flex:none; color: var(--brand-accent); margin-top:1px; }

/* ---------------------------------------------------------------- stats band */
.stats { background: var(--brand-navy); color:#fff; }
.stats .grid { grid-template-columns: repeat(3,1fr); gap: 40px; text-align:center; }
.stats .num { font-size: clamp(2.4rem,5vw,3.6rem); font-weight: 800; color: var(--brand-accent); line-height:1; }
.stats .lbl { margin-top: 12px; color: rgba(255,255,255,.75); letter-spacing:.04em; }
.stats .divider { }

/* ---------------------------------------------------------------- projects */
.proj-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: clamp(24px, 2vw, 34px); }
.proj {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 340px;
  display:flex; align-items:flex-end; color:#fff; box-shadow: var(--shadow-sm);
}
.proj img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.proj::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(20,37,52,.92) 0%, rgba(20,37,52,.15) 60%, transparent 100%); }
.proj:hover img { transform: scale(1.07); }
.proj__body { position: relative; z-index:2; padding: 30px; }
.proj__body .tag { font-size:.74rem; letter-spacing:.14em; text-transform:uppercase; color: var(--brand-accent); font-weight:700; }
.proj__body h3 { color:#fff; font-size:1.4rem; margin: 8px 0 4px; }
.proj__body .loc { color: rgba(255,255,255,.8); font-size:.92rem; }
.proj--tall { min-height: 100%; }

/* ---------------------------------------------------------------- testimonials */
.quotes { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(24px, 2vw, 34px); }
.quote { background:var(--white); border:1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; display:flex; flex-direction:column; }
.quote .stars { color: var(--brand-accent); letter-spacing:3px; margin-bottom:16px; }
.quote p { color: var(--ink); font-size: 1.02rem; font-style: italic; }
.quote .who { margin-top: 22px; padding-top:20px; border-top:1px solid var(--line); display:flex; align-items:center; gap:14px; }
.quote .avatar { width:46px; height:46px; border-radius:50%; background: var(--brand-navy); color: var(--brand-accent); display:grid; place-items:center; font-weight:700; }
.quote .who b { display:block; color: var(--brand-navy); font-size:.98rem; }
.quote .who span { font-size:.85rem; color: var(--ink-soft); }

/* ---------------------------------------------------------------- process */
.steps { display:grid; grid-template-columns: repeat(4,1fr); gap: clamp(24px, 2vw, 34px); counter-reset: step; }
.step { position:relative; padding-top: 8px; }
.step .n { font-size:.95rem; font-weight:800; color: var(--brand-accent); letter-spacing:.1em; }
.step h3 { font-size:1.12rem; margin: 12px 0 8px; }
.step p { color: var(--ink-soft); font-size:.94rem; }
.step::before { content:""; position:absolute; top:0; left:0; width:44px; height:3px; background: var(--brand-accent); }

/* ---------------------------------------------------------------- CTA band */
.cta-band { position: relative; background: var(--brand-navy-deep); color:#fff; overflow:hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background:
  radial-gradient(50% 120% at 15% 20%, rgba(201,162,75,.18), transparent 55%),
  radial-gradient(60% 120% at 100% 100%, rgba(36,66,92,.9), transparent 55%); }
.cta-band .inner { position:relative; text-align:center; max-width: 720px; margin-inline:auto; padding: clamp(56px,8vw,96px) 0; }
.cta-band h2 { color:#fff; font-size: clamp(2rem,4vw,3rem); }
.cta-band p { color: rgba(255,255,255,.82); margin: 18px auto 34px; font-size: 1.1rem; max-width: 560px; }
.cta-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ---------------------------------------------------------------- contact */
.contact-grid { display:grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px,6vw,70px); }
.info-block { display:flex; gap:18px; margin-bottom: 28px; }
.info-block .ico { width:50px; height:50px; border-radius:12px; background: color-mix(in srgb, var(--brand-navy) 8%, white); color: var(--brand-navy); display:grid; place-items:center; flex:none; }
.info-block .ico svg { width:22px; height:22px; }
.info-block h4 { font-size:1.02rem; margin-bottom:3px; }
.info-block p, .info-block a { color: var(--ink-soft); }
.info-block a:hover { color: var(--brand-navy); }
.form { background: var(--white); border:1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px,4vw,40px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; }
.field label { display:block; font-weight:600; font-size:.9rem; margin-bottom:8px; color: var(--brand-navy); }
.field input, .field textarea, .field select {
  width:100%; padding: 13px 16px; border:1px solid var(--line); border-radius: 10px; font-family:inherit; font-size:.98rem; color: var(--ink);
  transition: border-color .2s, box-shadow .2s; background: var(--bg-alt);
}
.field input:focus, .field textarea:focus, .field select:focus { outline:none; border-color: var(--brand-navy); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-navy) 12%, transparent); background:#fff; }
.field textarea { min-height: 130px; resize: vertical; }
.form .row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border:1px solid var(--line); min-height: 300px; }
.map-embed iframe { width:100%; height:100%; min-height:300px; border:0; display:block; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--brand-navy-deep); color: rgba(255,255,255,.7); padding: 72px 0 30px; }
.footer-top { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom:1px solid rgba(255,255,255,.1); }
.site-footer .brand { margin-bottom: 18px; }
.site-footer .about { max-width: 300px; font-size:.95rem; }
.footer-col h5 { color:#fff; font-size:.82rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom:18px; }
.footer-col ul { list-style:none; display:grid; gap:11px; }
.footer-col a:hover { color: var(--brand-accent); }
.footer-col p { font-size:.94rem; margin-bottom:11px; }
.socials { display:flex; gap:12px; margin-top:18px; }
.socials a { width:38px; height:38px; border-radius:10px; background: rgba(255,255,255,.08); display:grid; place-items:center; transition: background .25s, transform .25s; }
.socials a:hover { background: var(--brand-accent); color: var(--brand-navy-deep); transform: translateY(-2px); }
.socials svg { width:18px; height:18px; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; gap:16px; padding-top:26px; font-size:.86rem; flex-wrap:wrap; }
.footer-bottom a:hover { color:#fff; }

/* ---------------------------------------------------------------- reveal anim */
/* progressive enhancement: content is visible by default; only hidden when JS runs */
.js [data-reveal] { opacity:0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal].in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity:1 !important; transform:none !important; transition:none; }
  .hero__slide { transition: none; }
  .hero__slide img, .hero__slide.is-active img { animation: none; transform: scale(1); transition: none; }
}

/* ---------------------------------------------------------------- responsive */
@media (max-width: 960px) {
  .grid--3, .quotes, .steps { grid-template-columns: repeat(2,1fr); }
  .stats .grid { grid-template-columns: repeat(3,1fr); gap:24px; }
  .split { grid-template-columns: 1fr; }
  .split__media { order:-1; }
  .split__media .badge { left: 20px; bottom: -20px; }
  .contact-grid, .proj-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap:32px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav-links {
    display:flex; position:absolute; top:100%; left:0; right:0; flex-direction:column; gap:0;
    background: var(--brand-navy-deep); padding: 10px var(--gutter) 24px;
  }
  .site-header.open .nav-links a { padding:14px 0; width:100%; border-bottom:1px solid rgba(255,255,255,.08); }
  .grid--3, .grid--2, .quotes, .steps { grid-template-columns: 1fr; }
  .stats .grid { grid-template-columns: 1fr; gap:34px; }
  .form .row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero__inner { padding-top: 120px; }
  /* copy spans the full width on phones, so keep a touch more scrim on the light end */
  .hero__bg::after { background: linear-gradient(160deg, rgba(20,37,52,.72) 0%, rgba(20,37,52,.56) 50%, rgba(20,37,52,.34) 100%); }
  /* keep the indicators clear of the centered scroll hint */
  .hero__dots { gap: 8px; }
  .hero__dots button { width: 18px; }
  /* slightly smaller mark on phones so the wordmark still fits */
  .brand { font-size: 1.24rem; gap: 12px; }
  .brand .mark { width: 54px; height: 54px; }
  .site-header .brand { font-size: 1.42rem; gap: 11px; }
  .site-header .brand .mark { width: 48px; height: 48px; }
  .site-header .brand small { font-size: .68rem; margin-top: 5px; }
}

/* ---------------------------------------------------------------- leadership */
.leader { display: grid; grid-template-columns: 320px 1fr; gap: clamp(34px, 5vw, 72px); align-items: start; }
.leader__card {
  position: sticky; top: 116px; text-align: center; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 28px 30px; box-shadow: var(--shadow-sm);
}
.leader__photo {
  width: 184px; height: 184px; margin: 0 auto 24px; border-radius: 50%;
  padding: 6px; background: linear-gradient(150deg, var(--brand-accent), var(--brand-sage));
}
.leader__photo img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; background: var(--white); }
.leader__card h2 { font-size: 1.5rem; }
.leader__role { margin-top: 8px; font-size: .82rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand-accent); }
.leader__meta { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line);
  display: grid; gap: 10px; font-size: .92rem; color: var(--ink-soft); }
.leader__meta a:hover { color: var(--brand-accent); }
.leader__links { display: flex; justify-content: center; gap: 10px; margin-top: 22px; }
.leader__links a {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line); color: var(--brand-navy); transition: all .25s var(--ease);
}
.leader__links a:hover { background: var(--brand-navy); border-color: var(--brand-navy); color: var(--brand-accent); transform: translateY(-2px); }
.leader__links svg { width: 18px; height: 18px; }

.bio > * + * { margin-top: 20px; }
.bio p { color: var(--ink-soft); font-size: 1.02rem; }
.bio p.bio__opener { font-size: clamp(1.08rem, 1.5vw, 1.24rem); color: var(--ink); font-weight: 500; }
.bio h3 { font-size: 1.15rem; margin-top: 38px; }

@media (max-width: 960px) {
  .leader { grid-template-columns: 1fr; }
  .leader__card { position: static; max-width: 420px; margin-inline: auto; }
}
