/* ==========================================================================
   BluePoint Advisory — Design "4c"
   Quiet, institutional system: white + blue-tinted structure, hairline rules,
   square corners, Lora display + Hanken Grotesk. No gradients, glows, or
   shadows. All tokens as --bp-* custom properties.
   ========================================================================== */

:root {
    /* Brand blues */
    --bp-blue: #2f48a8;          /* accents, buttons, numbers, links */
    --bp-blue-dark: #24397e;     /* button hover */
    --bp-blue-light: #a9c8f5;    /* logo dot; CTA button on navy */
    --bp-blue-lighter: #c8ddf9;  /* light button hover */
    --bp-navy: #0d1b2e;          /* headings, CTA band */

    /* Blue-tinted surfaces */
    --bp-blue-pale: #eef3fb;     /* firm band, row hover */
    --bp-blue-wash: #f0f5fc;     /* stats strip, footer, inputs */

    /* Hairlines */
    --bp-line: #dbe5f3;
    --bp-line-strong: #cdddf5;
    --bp-line-soft: #d9e4f5;
    --bp-line-band: #c9d9f2;

    /* Text */
    --bp-text: #1e2939;
    --bp-text-muted: #46536a;
    --bp-text-secondary: #647082;
    --bp-white: #ffffff;

    /* Type */
    --bp-font: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --bp-display: 'Lora', Georgia, 'Times New Roman', serif;

    /* Rhythm */
    --bp-radius: 0;
    /* Full-bleed: no fixed content cap; the gutter grows with the viewport so
       big screens fill the width but content never hugs the edges. At 1440px
       the gutter is 72px, matching the original reference exactly. */
    --bp-gutter: clamp(20px, 5vw, 128px);
    --bp-maxw: 100%;
    --bp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--bp-font);
    color: var(--bp-text);
    background: var(--bp-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;   /* clip the off-canvas mobile menu; prevents sideways scroll */
}

img { display: block; max-width: 100%; }

h1, h2, h3, h4 { font-family: var(--bp-display); font-weight: 500; color: var(--bp-navy); line-height: 1.15; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--bp-blue); color: #fff; }

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

/* --------------------------------------------------------------------------
   Shared: eyebrow (square mark + label), text-link, buttons
   -------------------------------------------------------------------------- */
.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bp-blue);
    font-weight: 700;
}
.eyebrow::before { content: ''; width: 8px; height: 8px; background: var(--bp-blue); flex-shrink: 0; }

.text-link {
    display: inline-block;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--bp-blue);
    border-bottom: 1px solid var(--bp-blue);
    padding-bottom: 3px;
    transition: color 0.25s ease, border-color 0.25s ease;
}
.text-link:hover { color: var(--bp-blue-dark); border-color: var(--bp-blue-dark); }

.btn {
    display: inline-block;
    border: 0;
    border-radius: var(--bp-radius);
    font-family: var(--bp-font);
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
}
.btn--primary { background: var(--bp-blue); color: #fff; padding: 16px 32px; font-size: 14.5px; }
.btn--primary:hover { background: var(--bp-blue-dark); }
.btn--accent { background: var(--bp-blue-light); color: var(--bp-navy); padding: 17px 36px; font-size: 14.5px; }
.btn--accent:hover { background: var(--bp-blue-lighter); }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bp-white);
    border-bottom: 1px solid var(--bp-line);
    transition: padding 0.25s ease;
}
.nav-inner {
    max-width: var(--bp-maxw);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px var(--bp-gutter);
    transition: padding 0.25s ease;
}
.site-header.scrolled .nav-inner { padding-top: 14px; padding-bottom: 14px; }

.nav-logo img { height: 36px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 36px; font-size: 16px; font-weight: 500; }
.nav-links > a, .nav-item > a {
    position: relative;
    color: var(--bp-text-muted);
    transition: color 0.2s ease;
}
/* Underline drawn as a pseudo-element so it never shifts the text vertically */
.nav-links > a::after, .nav-item > a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    background: var(--bp-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}
.nav-links > a:hover, .nav-item > a:hover { color: var(--bp-blue); }
.nav-links a.active { color: var(--bp-blue); font-weight: 700; }
.nav-links a.active::after { transform: scaleX(1); }

/* Services dropdown */
.nav-item { position: relative; }
.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 260px;
    background: var(--bp-white);
    border: 1px solid var(--bp-line);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--bp-text-muted);
    transition: color 0.2s ease, background 0.2s ease;
}
.nav-dropdown a:hover { color: var(--bp-blue); background: var(--bp-blue-pale); }

.nav-cta { margin-left: 8px; padding: 12px 24px; font-size: 13.5px; }

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 6px;
    z-index: 101;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--bp-navy); transition: transform 0.3s ease, opacity 0.3s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 80vw);
    background: var(--bp-white);
    border-left: 1px solid var(--bp-line);
    padding: 96px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.3s var(--bp-ease);
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu a { padding: 14px 4px; font-size: 17px; color: var(--bp-navy); border-bottom: 1px solid var(--bp-line); }
.mobile-menu a:hover { color: var(--bp-blue); }
.mobile-menu .btn { margin-top: 20px; text-align: center; border-bottom: 0; }
.mobile-menu a.btn--primary { color: #fff; }
.mobile-menu a.btn--primary:hover { color: #fff; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { padding: 140px 0 clamp(76px, 8vw, 120px); }
/* Two-column hero: headline left, supporting copy + actions right. Fills wide
   screens; stacks on narrow. */
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(48px, 6vw, 130px);
    align-items: start;
}
.hero-lead .eyebrow { margin-bottom: clamp(26px, 2.4vw, 40px); }
.hero h1 {
    font-size: clamp(44px, 5.2vw, 104px);
    line-height: 1.04;
    letter-spacing: -0.02em;
    max-width: 20ch;
    margin: 0;
}
.hero h1 .accent { color: var(--bp-blue); font-style: italic; }
.hero-sub {
    font-size: clamp(18px, 1.25vw, 22px);
    line-height: 1.7;
    color: var(--bp-text-muted);
    max-width: 48ch;
    border-top: 1px solid var(--bp-line-strong);
    padding-top: 28px;
    margin-bottom: 34px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

/* Hero proof panel (soft blue-wash block anchoring the right column) */
.hero-panel {
    background: var(--bp-blue-wash);
    border: 1px solid var(--bp-line);
    padding: clamp(30px, 3vw, 46px);
}
.hero-panel .hero-sub {
    border-top: 0;
    padding-top: 0;
    margin-bottom: 24px;
    max-width: none;
}
.hero-pillars {
    list-style: none;
    border-top: 1px solid var(--bp-line-soft);
    margin: 0 0 28px;
}
.hero-pillars li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--bp-line-soft);
    font-size: 15px;
    font-weight: 500;
    color: var(--bp-navy);
}
.hero-pillars li:last-child { border-bottom: 0; }
.hero-pillars li::before { content: ''; width: 7px; height: 7px; background: var(--bp-blue); flex-shrink: 0; }

/* Hero entrance animation */
.hero .eyebrow, .hero h1, .hero-aside { animation: bpFadeUp 0.8s var(--bp-ease) both; }
.hero .eyebrow { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.15s; }
.hero-aside { animation-delay: 0.32s; }
@keyframes bpFadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* --------------------------------------------------------------------------
   Stats strip
   -------------------------------------------------------------------------- */
.stats-strip { background: var(--bp-blue-wash); border-top: 1px solid var(--bp-line-soft); border-bottom: 1px solid var(--bp-line-soft); }
.stats-inner { max-width: var(--bp-maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 28px 0 28px 32px;
    border-left: 1px solid var(--bp-line-soft);
}
.stat-cell:first-child { padding-left: var(--bp-gutter); border-left: 0; }
.stat-cell:last-child { padding-right: var(--bp-gutter); }
.stat-cell .num { font-family: var(--bp-display); font-size: clamp(28px, 1.9vw, 44px); font-weight: 500; color: var(--bp-blue); white-space: nowrap; }
.stat-cell .lbl { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bp-text-secondary); }

/* --------------------------------------------------------------------------
   Services (numbered editorial list)
   -------------------------------------------------------------------------- */
.services { padding: clamp(72px, 7vw, 120px) 0; }
.services-grid { display: grid; grid-template-columns: minmax(320px, 480px) minmax(0, 1fr); gap: clamp(48px, 5vw, 120px); align-items: start; }
.services-intro { position: sticky; top: 108px; }
.services-intro .eyebrow { margin-bottom: 22px; }
.services-intro h2 { font-size: clamp(28px, 3vw, 46px); line-height: 1.16; letter-spacing: -0.01em; margin-bottom: 22px; }

/* List sits at a readable width and hugs the right edge, so on wide screens the
   intro (left) and list (right) fill the section instead of clustering. */
.svc-list { border-top: 1px solid var(--bp-line-strong); width: 100%; max-width: 1040px; margin-left: auto; }
.svc-row {
    display: grid;
    grid-template-columns: 56px 1fr 40px;
    gap: 24px;
    align-items: center;
    padding: 22px 8px;
    border-bottom: 1px solid var(--bp-line);
    transition: background 0.25s ease;
}
.svc-row:hover { background: var(--bp-blue-pale); }
.svc-row .svc-num { font-size: 13px; font-weight: 600; color: var(--bp-blue); }
.svc-row .svc-title { font-family: var(--bp-display); font-size: clamp(20px, 1.4vw, 27px); font-weight: 500; color: var(--bp-navy); }
.svc-row .svc-desc { font-size: 14px; line-height: 1.55; color: var(--bp-text-secondary); margin-top: 4px; }
.svc-row .svc-arrow { font-size: 20px; color: var(--bp-blue); text-align: right; }

/* --------------------------------------------------------------------------
   Firm band
   -------------------------------------------------------------------------- */
.firm-band { background: var(--bp-blue-pale); border-top: 1px solid var(--bp-line-soft); border-bottom: 1px solid var(--bp-line-soft); padding: 96px 0; }
.firm-statement {
    font-family: var(--bp-display);
    font-weight: 500;
    font-size: clamp(28px, 3vw, 50px);
    line-height: 1.28;
    letter-spacing: -0.01em;
    color: var(--bp-navy);
    max-width: 24ch;
    margin-bottom: clamp(36px, 3vw, 48px);
}
.firm-statement .accent { color: var(--bp-blue); }
.firm-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(48px, 6vw, 110px); align-items: start; }
.firm-pillars { display: grid; gap: 26px; }
.firm-col { border-top: 1px solid var(--bp-line-band); padding-top: 20px; }
.firm-col h3 { font-family: var(--bp-font); font-size: 15px; font-weight: 700; color: var(--bp-navy); margin-bottom: 8px; }
.firm-col p { font-size: 14.5px; line-height: 1.7; color: var(--bp-text-muted); }

/* --------------------------------------------------------------------------
   Leadership (inside the firm band)
   -------------------------------------------------------------------------- */
.firm-leaders { width: 100%; max-width: 520px; justify-self: end; }
.firm-leaders-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
.firm-leaders-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--bp-text-secondary); }
.firm-leaders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 22px; }
.leader-photo { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--bp-navy); }
.leader-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; filter: grayscale(100%) contrast(1.05); }
.leader-photo::after { content: ''; position: absolute; inset: 0; background: rgba(47, 72, 168, 0.18); mix-blend-mode: multiply; }
.leader-meta { border-top: 2px solid var(--bp-blue); margin-top: 10px; padding-top: 9px; }
.leader-name { font-family: var(--bp-display); font-size: 16px; font-weight: 500; color: var(--bp-navy); }
.leader-role { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bp-text-secondary); margin-top: 3px; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band { background: var(--bp-navy); }
.cta-inner {
    max-width: var(--bp-maxw); margin: 0 auto;
    padding: 84px var(--bp-gutter);
    display: flex; justify-content: space-between; align-items: center; gap: 64px;
}
.cta-band h2 { font-size: clamp(28px, 3vw, 52px); line-height: 1.15; color: #fff; margin-bottom: 14px; max-width: 20ch; }
.cta-band p { font-size: 16px; color: rgba(255, 255, 255, 0.6); }
.cta-band .btn { flex-shrink: 0; }

/* --------------------------------------------------------------------------
   Slim footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--bp-blue-wash); border-top: 1px solid var(--bp-line-soft); }
.footer-inner {
    max-width: var(--bp-maxw); margin: 0 auto;
    padding: 24px var(--bp-gutter);
    display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
}
.footer-inner > a, .footer-inner > span { font-size: 13px; color: var(--bp-text-secondary); }
.footer-inner > a:hover { color: var(--bp-blue); }

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--bp-ease), transform 0.8s var(--bp-ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.d1 { transition-delay: 0.06s; }
.fade-in.d2 { transition-delay: 0.12s; }
.fade-in.d3 { transition-delay: 0.18s; }
.fade-in.d4 { transition-delay: 0.24s; }
.fade-in.d5 { transition-delay: 0.30s; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .fade-in { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   Interior pages: page hero + shared bits
   -------------------------------------------------------------------------- */
.page-hero { padding: 140px 0 80px; }
.page-hero .eyebrow { margin-bottom: 28px; }
.page-hero h1 { font-size: clamp(36px, 5vw, 76px); line-height: 1.08; letter-spacing: -0.02em; max-width: 20ch; margin-bottom: 24px; }
.page-hero .dek { font-size: clamp(18px, 1.25vw, 22px); line-height: 1.7; color: var(--bp-text-muted); max-width: 60ch; }

.section { padding: 96px 0; }
.section--wash { background: var(--bp-blue-wash); border-top: 1px solid var(--bp-line-soft); border-bottom: 1px solid var(--bp-line-soft); }
.section--pale { background: var(--bp-blue-pale); border-top: 1px solid var(--bp-line-soft); border-bottom: 1px solid var(--bp-line-soft); }
.section-eyebrow { margin-bottom: 22px; }
.section-title { font-size: clamp(28px, 3vw, 46px); line-height: 1.18; letter-spacing: -0.01em; margin-bottom: 20px; }
.section-intro { font-size: 17px; line-height: 1.7; color: var(--bp-text-muted); max-width: 640px; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; align-items: start; }
    .hero-aside { padding-bottom: 0; }
    .hero-sub { max-width: 60ch; }
    .services-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-intro { position: static; }
    .svc-list { max-width: none; }
    .firm-grid { grid-template-columns: 1fr; gap: 52px; }
    .firm-leaders { justify-self: start; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .menu-toggle { display: flex; }
    .nav-inner { padding: 12px var(--bp-gutter); }
    .site-header.scrolled .nav-inner { padding-top: 10px; padding-bottom: 10px; }
    .nav-logo img { height: 28px; }

    .hero { padding: 64px 0 48px; }
    .hero-lead .eyebrow { margin-bottom: 18px; }
    .hero-actions { gap: 20px; }

    .stats-inner { grid-template-columns: 1fr 1fr; }
    .stat-cell { padding: 20px 0 20px 24px; }
    .stat-cell:nth-child(3) { border-left: 0; }
    .stat-cell:nth-child(odd) { padding-left: var(--bp-gutter); border-left: 0; }
    .stat-cell:nth-child(3), .stat-cell:nth-child(4) { border-top: 1px solid var(--bp-line-soft); }

    .services { padding: 52px 0; }
    .services-intro .eyebrow { margin-bottom: 14px; }
    .firm-band { padding: 52px 0; }
    .firm-statement { margin-bottom: 28px; }
    .section { padding: 52px 0; }
    .section-eyebrow { margin-bottom: 14px; }

    .cta-inner { flex-direction: column; align-items: flex-start; gap: 28px; padding: 48px var(--bp-gutter); }

}

@media (max-width: 480px) {
    .stats-inner { grid-template-columns: 1fr; }
    .stat-cell, .stat-cell:nth-child(odd) { padding-left: var(--bp-gutter); border-left: 0; border-top: 1px solid var(--bp-line-soft); }
    .stat-cell:first-child { border-top: 0; }
    .firm-leaders-grid { gap: 22px 16px; }
    .svc-row { grid-template-columns: 40px 1fr 24px; gap: 14px; }
}

/* ==========================================================================
   Interior pages (Services / Leadership / Contact) — 4c system
   ========================================================================== */

/* ---- Services: detail sections ---- */
.svc-detail { padding: 96px 0; }
.svc-detail--pale { background: var(--bp-blue-pale); border-top: 1px solid var(--bp-line-soft); border-bottom: 1px solid var(--bp-line-soft); }
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.svc-detail-grid.reverse .svc-copy { order: 2; }
.svc-detail-grid.reverse .svc-aside { order: 1; }
.svc-label { display: block; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bp-blue); font-weight: 700; margin-bottom: 18px; }
.svc-copy h2 { font-size: clamp(26px, 3vw, 34px); line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 20px; }
.svc-copy p { font-size: 16px; line-height: 1.75; color: var(--bp-text-muted); margin-bottom: 16px; max-width: 560px; }

/* "What's included" bordered list */
.incl-card { border: 1px solid var(--bp-line); padding: 32px 34px; background: var(--bp-white); }
.incl-card h3 { font-family: var(--bp-font); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bp-text-secondary); font-weight: 700; margin-bottom: 20px; }
.incl-list { list-style: none; }
.incl-list li { display: flex; align-items: flex-start; gap: 14px; padding: 13px 0; border-top: 1px solid var(--bp-line); font-size: 15px; color: var(--bp-text); }
.incl-list li:first-child { border-top: 0; }
.incl-list li::before { content: ''; width: 7px; height: 7px; background: var(--bp-blue); margin-top: 7px; flex-shrink: 0; }

/* ---- Process (How we work) ---- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 52px; }
.process-step { border-top: 1px solid var(--bp-line-band); padding-top: 22px; }
.process-step .step-num { font-family: var(--bp-display); font-size: 30px; font-weight: 500; color: var(--bp-blue); display: block; margin-bottom: 12px; }
.process-step h3 { font-family: var(--bp-display); font-size: 20px; font-weight: 500; color: var(--bp-navy); margin-bottom: 8px; }
.process-step p { font-size: 14.5px; line-height: 1.7; color: var(--bp-text-muted); }

/* ---- Leadership bios ---- */
.bio-list { display: flex; flex-direction: column; gap: 24px; }
.bio-card { display: grid; grid-template-columns: 300px 1fr; gap: 0; border: 1px solid var(--bp-line); background: var(--bp-white); }
.bio-photo { position: relative; overflow: hidden; background: var(--bp-navy); min-height: 340px; }
.bio-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.05); }
.bio-photo::after { content: ''; position: absolute; inset: 0; background: rgba(47, 72, 168, 0.18); mix-blend-mode: multiply; }
.bio-photo .initials-lg {
    display: flex; align-items: center; justify-content: center; height: 100%; min-height: 340px;
    background: linear-gradient(150deg, var(--bp-blue) 0%, var(--bp-navy) 100%);
    font-family: var(--bp-display); font-size: 64px; font-weight: 500; color: var(--bp-blue-light);
}
.bio-body { padding: 40px 44px; }
.bio-body h2 { font-size: 28px; font-weight: 500; margin-bottom: 4px; }
.bio-role { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bp-blue); font-weight: 700; margin-bottom: 20px; }
.bio-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.tag { font-size: 12px; font-weight: 600; color: var(--bp-text-muted); border: 1px solid var(--bp-line); padding: 5px 11px; }
.tag--accent { color: var(--bp-blue); border-color: var(--bp-blue); }
.bio-body p { font-size: 15px; line-height: 1.75; color: var(--bp-text-muted); margin-bottom: 14px; }
.bio-body p:last-child { margin-bottom: 0; }

/* ---- Values columns (hairline tops) ---- */
.values-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 52px; }
.value-col { border-top: 1px solid var(--bp-line-band); padding-top: 22px; }
.value-col h3 { font-family: var(--bp-display); font-size: 20px; font-weight: 500; color: var(--bp-navy); margin-bottom: 10px; }
.value-col p { font-size: 14.5px; line-height: 1.7; color: var(--bp-text-muted); }

/* ---- Contact ---- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.contact-info h2 { font-size: 28px; margin-bottom: 16px; }
.contact-info > p { font-size: 16px; line-height: 1.75; color: var(--bp-text-muted); max-width: 420px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; padding: 22px 0; border-top: 1px solid var(--bp-line); }
.contact-item .ico { width: 20px; height: 20px; color: var(--bp-blue); flex-shrink: 0; margin-top: 2px; }
.contact-item h4 { font-family: var(--bp-font); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bp-text-secondary); font-weight: 700; margin-bottom: 4px; }
.contact-item a, .contact-item .val { font-size: 16px; color: var(--bp-navy); }
.contact-item a:hover { color: var(--bp-blue); }

.contact-form-card { border: 1px solid var(--bp-line); background: var(--bp-white); padding: 40px 44px; }
.contact-form-card h2 { font-size: 24px; margin-bottom: 8px; }
.contact-form-card > p { font-size: 15px; color: var(--bp-text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; display: flex; flex-direction: column; }
.form-group label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bp-text-secondary); font-weight: 700; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
    font-family: var(--bp-font); font-size: 15px; color: var(--bp-text);
    background: var(--bp-blue-wash); border: 1px solid var(--bp-line); border-radius: 0;
    padding: 13px 15px; width: 100%; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--bp-blue); box-shadow: 0 0 0 4px rgba(47, 72, 168, 0.1);
}
.contact-form-card .btn { margin-top: 6px; }

@media (max-width: 1024px) {
    .process-grid, .values-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .contact-wrap { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 768px) {
    .page-hero { padding: 64px 0 40px; }
    .page-hero .eyebrow { margin-bottom: 16px; }
    .svc-detail { padding: 52px 0; }
    .svc-detail-grid { grid-template-columns: 1fr; gap: 36px; }
    .svc-detail-grid.reverse .svc-copy { order: 1; }
    .svc-detail-grid.reverse .svc-aside { order: 2; }
    .process-grid, .values-cols { grid-template-columns: 1fr; }
    .bio-card { grid-template-columns: 1fr; }
    .bio-photo { min-height: 320px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
}
