:root {
  --jp-navy: #12233f;
  --jp-blue: #2f6bff;
  --jp-blue-dark: #1f55df;
  --jp-yellow: #f4b400;
  --jp-cool-white: #f7f9fc;
  --jp-pale-blue: #eaf2ff;
  --jp-body: #445066;
  --jp-muted: #6c778b;
  --jp-line: #d7e1ef;
  --jp-white: #ffffff;
  --jp-shadow: 0 22px 55px rgba(18, 35, 63, 0.09);
  --jp-radius: 24px;
  --jp-container: 1200px;
  --jp-section: clamp(5rem, 8vw, 8.5rem);
  --jp-font-display: "Fraunces", Georgia, serif;
  --jp-font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--jp-body);
  background: var(--jp-white);
  font-family: var(--jp-font-body);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.jp-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--jp-blue-dark); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--jp-navy); }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
svg { display: block; width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
h1, h2, h3, h4 { color: var(--jp-navy); font-family: var(--jp-font-display); line-height: 1.04; letter-spacing: -.035em; margin: 0 0 .55em; }
h1 { font-size: clamp(3.5rem, 7vw, 7.15rem); }
h2 { font-size: clamp(2.45rem, 4.6vw, 4.65rem); }
h3 { font-size: clamp(1.35rem, 2.1vw, 1.8rem); }
p { margin: 0 0 1.2em; }
ul { margin: 0 0 1.25em; }
::selection { background: rgba(244, 180, 0, .32); color: var(--jp-navy); }

.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute!important; width: 1px; word-wrap: normal!important;
}
.jp-skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 9999; background: var(--jp-navy); color: #fff; padding: .7rem 1rem; border-radius: .5rem; }
.jp-skip-link:focus { top: 1rem; color: #fff; }
:focus-visible { outline: 3px solid var(--jp-yellow); outline-offset: 4px; }

.jp-container { width: min(calc(100% - 2.5rem), var(--jp-container)); margin-inline: auto; }
.jp-main { overflow: hidden; }
.jp-section { padding-block: var(--jp-section); }
.jp-section--compact { padding-block: clamp(3.5rem, 6vw, 6rem); }
.jp-section--pale { background: linear-gradient(135deg, #f7faff 0%, var(--jp-pale-blue) 100%); }
.jp-section-link { margin: 3rem 0 0; text-align: center; }

.jp-site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000; height: 82px; display: flex; align-items: center; transition: background .25s ease, box-shadow .25s ease, height .25s ease; background: rgba(255, 255, 255, .88); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid rgba(215, 225, 239, .45);
}
.jp-site-header.is-scrolled { height: 68px; background: rgba(255,255,255,.96); box-shadow: 0 10px 28px rgba(18,35,63,.07); }
.jp-header-inner { display: flex; align-items: center; gap: 2rem; min-width: 0; }
.jp-wordmark { color: var(--jp-navy); font-size: 1.22rem; font-weight: 800; letter-spacing: .16em; text-decoration: none; white-space: nowrap; }
.jp-wordmark span { color: var(--jp-yellow); }
.jp-wordmark:hover { color: var(--jp-navy); }
.jp-nav { margin-left: auto; }
.jp-nav__list, .jp-footer-nav__list { display: flex; align-items: center; gap: clamp(1.25rem, 2vw, 2.3rem); padding: 0; margin: 0; list-style: none; }
.jp-nav__list a { position: relative; color: var(--jp-navy); text-decoration: none; font-size: .9rem; font-weight: 650; }
.jp-nav__list a::after { content: ""; position: absolute; left: 0; bottom: -.45rem; width: 100%; height: 2px; background: var(--jp-yellow); transform: scaleX(0); transform-origin: right; transition: transform .22s ease; }
.jp-nav__list a:hover::after, .jp-nav__list .current-menu-item a::after { transform: scaleX(1); transform-origin: left; }
.jp-menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--jp-line); border-radius: 50%; background: #fff; color: var(--jp-navy); align-items: center; justify-content: center; }
.jp-menu-toggle__label { position: absolute; clip: rect(0 0 0 0); }
.jp-menu-toggle__icon { position: relative; width: 20px; height: 14px; }
.jp-menu-toggle__icon span { position: absolute; left: 0; width: 20px; height: 2px; background: currentColor; transition: transform .2s ease, top .2s ease; }
.jp-menu-toggle__icon span:first-child { top: 2px; }
.jp-menu-toggle__icon span:last-child { top: 10px; }
.jp-menu-toggle[aria-expanded="true"] span:first-child { top: 6px; transform: rotate(45deg); }
.jp-menu-toggle[aria-expanded="true"] span:last-child { top: 6px; transform: rotate(-45deg); }

.jp-button { display: inline-flex; align-items: center; justify-content: center; gap: .7rem; min-height: 52px; padding: .85rem 1.45rem; border: 1px solid var(--jp-blue); border-radius: 6px; background: var(--jp-blue); color: #fff; text-decoration: none; font-size: .9rem; font-weight: 750; box-shadow: 0 12px 24px rgba(47,107,255,.16); transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.jp-button:hover { color: #fff; background: var(--jp-blue-dark); transform: translateY(-2px); box-shadow: 0 18px 32px rgba(47,107,255,.2); }
.jp-button--secondary { background: transparent; color: var(--jp-blue-dark); box-shadow: none; }
.jp-button--secondary:hover { color: #fff; }
.jp-button--small { min-height: 42px; padding: .6rem 1rem; }
.jp-button .jp-icon, .jp-text-link .jp-icon { width: 18px; height: 18px; }
.jp-button .jp-icon { flex: 0 0 18px; opacity: 1; margin-left: .05rem; color: currentColor; }
.jp-button .jp-icon path, .jp-text-link .jp-icon path { stroke-width: 2.15; }
.jp-header-cta { margin-left: 1.1rem; }
.jp-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; }
.jp-text-link { display: inline-flex; align-items: center; gap: .45rem; color: var(--jp-blue-dark); font-weight: 750; text-decoration: none; }
.jp-text-link:hover .jp-icon { transform: translateX(4px); }
.jp-text-link .jp-icon { transition: transform .2s ease; }
.jp-icon { display: inline-flex; width: 30px; height: 30px; color: var(--jp-blue); }

.jp-kicker, .jp-eyebrow { color: var(--jp-blue-dark); font-size: .77rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.jp-kicker--script { display: inline-block; position: relative; margin-bottom: 1.25rem; color: var(--jp-blue); font-family: var(--jp-font-display); font-size: clamp(1.1rem, 2vw, 1.45rem); font-style: italic; font-weight: 600; letter-spacing: 0; text-transform: none; }
.jp-kicker--script::after { content: ""; position: absolute; left: 0; right: -8px; bottom: -.15rem; height: 3px; background: var(--jp-yellow); border-radius: 50%; transform: rotate(-1deg); }
.jp-yellow-dot { color: var(--jp-yellow); }
.jp-hand-line { display: block; width: 84px; height: 4px; margin-top: 1rem; background: var(--jp-yellow); border-radius: 60% 40% 50% 45%; transform: rotate(-2deg); }

.jp-hero { padding-top: 82px; min-height: 830px; background: linear-gradient(135deg, #fff 0%, #fff 66%, #f5f9ff 100%); }
.jp-hero__grid { min-height: 748px; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); align-items: center; gap: clamp(2rem, 5vw, 6rem); }
.jp-hero__copy { position: relative; z-index: 2; padding-block: 5rem; }
.jp-hero h1 { max-width: 760px; font-size: clamp(4.2rem, 6.6vw, 7rem); }
.jp-hero h1 em { color: var(--jp-blue); font-weight: 600; }
.jp-hero__lede { max-width: 680px; color: var(--jp-body); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.jp-hero .jp-actions { margin-top: 2rem; }
.jp-credentials { display: flex; flex-wrap: wrap; gap: .7rem 1.25rem; margin-top: 2.2rem; font-size: .79rem; font-weight: 650; color: var(--jp-navy); }
.jp-credentials span { position: relative; }
.jp-credentials span:not(:last-child)::after { content: ""; position: absolute; right: -.75rem; top: 50%; width: 4px; height: 4px; border-radius: 50%; background: var(--jp-yellow); }
.jp-hero__portrait { position: relative; align-self: stretch; min-height: 610px; display: flex; align-items: flex-end; justify-content: center; }
.jp-hero__portrait img { position: relative; z-index: 3; width: min(92%, 550px); height: min(635px, 78vh); object-fit: cover; object-position: center 16%; clip-path: polygon(13% 4%, 92% 0, 100% 91%, 12% 100%, 0 26%); filter: saturate(.92) contrast(1.02); }
.jp-portrait-wash { position: absolute; z-index: 1; inset: 12% 5% 8% 0; background: var(--jp-pale-blue); clip-path: polygon(10% 4%, 100% 0, 94% 100%, 0 93%, 6% 35%); }
.jp-portrait-brush { position: absolute; z-index: 2; right: -7%; bottom: 7%; width: 55%; height: 31%; background: var(--jp-yellow); opacity: .94; clip-path: polygon(0 23%, 100% 0, 89% 24%, 100% 49%, 77% 59%, 94% 85%, 9% 100%, 20% 73%, 0 60%); transform: rotate(-4deg); }
.jp-hand-note { position: absolute; z-index: 5; right: 1rem; top: 31%; width: 120px; margin: 0; color: var(--jp-white); font-family: var(--jp-font-display); font-size: 1.18rem; font-style: italic; font-weight: 650; line-height: 1.05; text-align: left; text-shadow: 0 2px 2px rgba(18,35,63,.9), 0 0 12px rgba(18,35,63,.72); transform: rotate(-2deg); }
.jp-hand-note__arrow { display: block; width: 76px; height: 56px; margin: .2rem 0 0 -1.3rem; overflow: visible; color: var(--jp-white); filter: drop-shadow(0 2px 2px rgba(18,35,63,.9)) drop-shadow(0 0 7px rgba(18,35,63,.55)); }
.jp-hand-note__arrow path { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.jp-dot-grid { position: absolute; z-index: 4; right: -1rem; top: 2rem; width: 80px; height: 100px; background-image: radial-gradient(var(--jp-blue) 1.2px, transparent 1.2px); background-size: 13px 13px; opacity: .65; }

.jp-impact-layout { display: grid; grid-template-columns: minmax(255px, 285px) 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.jp-section-intro h2 { font-size: clamp(2.6rem, 4.3vw, 4.15rem); }
.jp-impact-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.jp-impact-item { min-width: 0; padding: .5rem 1.4rem 1rem; border-left: 1px solid var(--jp-line); }
.jp-impact-item .jp-icon { width: 42px; height: 42px; padding: 9px; border-radius: 50%; background: rgba(255,255,255,.78); box-shadow: 0 8px 22px rgba(18,35,63,.07); }
.jp-impact-item strong { display: block; margin: 1rem 0 .55rem; color: var(--jp-blue-dark); font-family: var(--jp-font-display); font-size: clamp(2.2rem, 2.7vw, 3.25rem); line-height: .98; letter-spacing: -.04em; white-space: nowrap; }
.jp-impact-item p { margin: 0; color: var(--jp-navy); font-size: .88rem; font-weight: 600; line-height: 1.55; max-width: 16ch; }

.jp-centered-heading { width: min(860px, 100%); margin: 0 auto clamp(3rem, 5vw, 5rem); text-align: center; }
.jp-centered-heading h2 { font-size: clamp(2.5rem, 4.3vw, 4.1rem); }
.jp-capability-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.jp-capability-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.jp-capability { padding: .6rem clamp(1.2rem, 2.2vw, 2.3rem); border-left: 1px solid var(--jp-line); }
.jp-capability:first-child { border-left: 0; }
.jp-capability .jp-icon { width: 52px; height: 52px; margin-bottom: 1.3rem; padding: 10px; border-radius: 50%; background: var(--jp-pale-blue); }
.jp-capability:nth-child(even) .jp-icon { background: rgba(244,180,0,.13); }
.jp-capability h3 { font-family: var(--jp-font-body); font-size: 1rem; letter-spacing: -.02em; }
.jp-capability p { margin: 0; font-size: .9rem; }
.jp-number-mark { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 50%; background: var(--jp-pale-blue); color: var(--jp-blue); font-weight: 800; margin-bottom: 1.25rem; }

.jp-feature-story { display: grid; grid-template-columns: .8fr 1fr 1.25fr; gap: 0; border: 1px solid var(--jp-line); border-radius: var(--jp-radius); overflow: hidden; background: linear-gradient(135deg, #fff 0%, #f5f9ff 100%); box-shadow: var(--jp-shadow); }
.jp-feature-story > div { padding: clamp(2rem, 3.8vw, 4rem); }
.jp-feature-story__visual { display: flex; align-items: stretch; padding: 0!important; background: var(--jp-pale-blue); }
.jp-feature-story__visual img { width: 100%; min-height: 100%; object-fit: cover; }
.jp-feature-story__intro { border-right: 1px solid var(--jp-line); }
.jp-feature-story__intro h2 { font-size: clamp(2.3rem, 3.4vw, 3.6rem); }
.jp-feature-story__steps { display: grid; gap: 1.6rem; }
.jp-feature-story__steps > div { position: relative; padding-left: 3.7rem; }
.jp-feature-story__steps > div:not(:last-child)::after { content: ""; position: absolute; left: 1.25rem; top: 2.5rem; bottom: -1.5rem; border-left: 1px dashed var(--jp-blue); }
.jp-feature-story__steps span { position: absolute; left: 0; top: -.2rem; display: flex; width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center; border-radius: 50%; background: var(--jp-blue); color: #fff; font-size: .7rem; font-weight: 800; }
.jp-feature-story__steps h3 { margin-bottom: .35rem; font-family: var(--jp-font-body); font-size: .95rem; }
.jp-feature-story__steps p { margin: 0; font-size: .84rem; line-height: 1.55; }

.jp-career-layout { display: grid; grid-template-columns: 270px 1fr; gap: clamp(3rem, 6vw, 6rem); }
.jp-career-track { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.75rem; }
.jp-career-track::before { content: ""; position: absolute; left: 6%; right: 6%; top: 25px; height: 1px; background: var(--jp-line); }
.jp-career-stop { position: relative; z-index: 1; }
.jp-career-stop__mark { display: flex; width: 52px; height: 52px; align-items: center; justify-content: center; margin-bottom: 1.2rem; border-radius: 50%; background: var(--jp-blue); color: #fff; border: 6px solid #fff; box-shadow: 0 0 0 1px var(--jp-line); font-weight: 850; }
.jp-career-stop__mark--square { border-radius: 10px; background: var(--jp-navy); }
.jp-career-stop__mark--wpe { background: #15c6d0; }
.jp-career-stop__mark--early { background: var(--jp-pale-blue); color: var(--jp-blue); }
.jp-career-stop__date { margin: 0; color: var(--jp-blue-dark); font-size: .72rem; font-weight: 750; }
.jp-career-stop h3 { margin: .3rem 0 .45rem; font-family: var(--jp-font-body); font-size: 1rem; }
.jp-career-stop p:last-child { font-size: .82rem; line-height: 1.55; }

.jp-section-heading-row { display: grid; grid-template-columns: 1fr minmax(280px, .72fr); gap: clamp(2rem, 6vw, 6rem); align-items: end; margin-bottom: clamp(3rem, 5vw, 5rem); }
.jp-section-heading-row h2 { margin: 0; font-size: clamp(2.6rem, 4.4vw, 4.3rem); }
.jp-section-heading-row > p { margin: 0; }
.jp-project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 3.5vw, 3.5rem); }
.jp-project-grid--featured { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.jp-project-card { min-width: 0; background: #fff; border: 1px solid var(--jp-line); border-radius: 18px; overflow: hidden; box-shadow: 0 14px 38px rgba(18,35,63,.06); transition: transform .25s ease, box-shadow .25s ease; }
.jp-project-card:hover { transform: translateY(-6px); box-shadow: 0 24px 55px rgba(18,35,63,.12); }
.jp-project-card__visual { position: relative; overflow: hidden; background: #f2f6fc; aspect-ratio: 16/10; }
.jp-project-card__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.jp-project-card:hover img { transform: scale(1.025); }
.jp-browser-bar { position: absolute; z-index: 2; left: 0; right: 0; top: 0; height: 29px; display: flex; gap: 5px; align-items: center; padding-left: 12px; background: rgba(255,255,255,.92); border-bottom: 1px solid rgba(215,225,239,.8); }
.jp-browser-bar span { width: 7px; height: 7px; border-radius: 50%; background: #d5deea; }
.jp-browser-bar span:first-child { background: var(--jp-yellow); }
.jp-project-placeholder { position: relative; height: 100%; background: linear-gradient(135deg, #132747, #2f6bff); overflow: hidden; }
.jp-project-card:nth-child(2n) .jp-project-placeholder { background: linear-gradient(135deg, #f0f5ff, #a9c7ff); }
.jp-project-card:nth-child(3n) .jp-project-placeholder { background: linear-gradient(135deg, #1f3f61, #22b8c4); }
.jp-project-placeholder::before { content: ""; position: absolute; width: 62%; height: 130%; right: -24%; top: -20%; border: 1px solid rgba(255,255,255,.27); border-radius: 50%; transform: rotate(24deg); }
.jp-project-placeholder__letter { position: absolute; left: 9%; top: 24%; color: #fff; font-family: var(--jp-font-display); font-size: 5rem; opacity: .95; }
.jp-project-card:nth-child(2n) .jp-project-placeholder__letter { color: var(--jp-navy); }
.jp-project-placeholder__line { position: absolute; left: 9%; height: 8px; border-radius: 10px; background: rgba(255,255,255,.7); }
.jp-project-card:nth-child(2n) .jp-project-placeholder__line { background: rgba(18,35,63,.35); }
.jp-project-placeholder__line--one { width: 47%; bottom: 31%; }
.jp-project-placeholder__line--two { width: 31%; bottom: 24%; }
.jp-project-placeholder__card { position: absolute; right: 9%; bottom: 13%; width: 35%; height: 38%; border-radius: 12px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.4); }
.jp-project-card__body { padding: 1.8rem; }
.jp-project-card h3 { margin: .25rem 0 .35rem; font-size: 1.65rem; }
.jp-project-card__role { color: var(--jp-navy); font-size: .75rem; font-weight: 700; }
.jp-project-card__body > p:not(.jp-eyebrow):not(.jp-project-card__role) { font-size: .88rem; }

.jp-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.7rem, 3vw, 3rem); }
.jp-post-grid--archive { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.jp-post-card { min-width: 0; }
.jp-post-card__media { display: block; aspect-ratio: 16/10; overflow: hidden; border-radius: 16px; background: var(--jp-pale-blue); text-decoration: none; }
.jp-post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.jp-post-card:hover .jp-post-card__media img { transform: scale(1.035); }
.jp-post-card__placeholder { display: grid; place-items: center; width: 100%; height: 100%; background: linear-gradient(135deg, var(--jp-pale-blue), #fff); }
.jp-post-card__placeholder span { color: var(--jp-blue); font-family: var(--jp-font-display); font-size: 5rem; opacity: .7; }
.jp-post-card__body { padding-top: 1.4rem; }
.jp-post-card h2 { font-size: clamp(1.45rem, 2.3vw, 2rem); }
.jp-post-card h2 a { color: var(--jp-navy); text-decoration: none; }
.jp-post-meta { margin-bottom: .65rem; color: var(--jp-blue-dark); font-size: .72rem; font-weight: 750; }
.jp-post-meta a { color: inherit; text-decoration: none; }
.jp-post-card__body > p:not(.jp-post-meta) { font-size: .9rem; }

.jp-about-teaser { padding-top: 0; }
.jp-about-teaser__grid { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); padding: clamp(2rem, 4vw, 4rem); border-radius: 30px; background: var(--jp-navy); color: rgba(255,255,255,.78); overflow: hidden; }
.jp-about-teaser__image { position: relative; min-height: 430px; }
.jp-about-teaser__image::before { content: ""; position: absolute; inset: 7% 10% -8% -12%; background: var(--jp-yellow); clip-path: polygon(6% 8%, 100% 0, 92% 100%, 0 91%); transform: rotate(-3deg); }
.jp-about-teaser__image img { position: relative; z-index: 1; width: 100%; height: 450px; object-fit: cover; object-position: center 43%; clip-path: polygon(8% 0, 100% 7%, 93% 100%, 0 91%); }
.jp-about-teaser h2 { color: #fff; }
.jp-about-teaser .jp-eyebrow { color: #8fb5ff; }
.jp-about-teaser .jp-text-link { color: #fff; }

.jp-contact-band { background: var(--jp-cool-white); }
.jp-contact-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.jp-contact-band__inner h2 { max-width: 820px; margin-bottom: 0; font-size: clamp(2.3rem, 4vw, 4rem); }

.jp-page-hero { padding: clamp(10rem, 15vw, 14rem) 0 clamp(5rem, 9vw, 9rem); background: linear-gradient(135deg, #fff 0%, #f4f8ff 100%); }
.jp-page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .65fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.jp-page-hero h1 { font-size: clamp(3.8rem, 7vw, 7rem); }
.jp-page-hero__aside { padding-left: clamp(0rem, 3vw, 3rem); border-left: 1px solid var(--jp-line); font-size: 1.05rem; }
.jp-page-hero__aside p:last-child { margin-bottom: 0; }
.jp-page-hero--simple { padding-bottom: 5rem; }
.jp-page-hero--simple h1 { max-width: 1000px; }
.jp-page-hero__description { max-width: 720px; }

.jp-experience-intro { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.jp-experience-intro__copy > p { font-size: 1.05rem; }
.jp-mini-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.jp-mini-metrics div { padding: 1.35rem; border: 1px solid var(--jp-line); border-radius: 14px; background: rgba(255,255,255,.75); }
.jp-mini-metrics strong { display: block; color: var(--jp-blue); font-family: var(--jp-font-display); font-size: 2rem; }
.jp-mini-metrics span { color: var(--jp-navy); font-size: .76rem; font-weight: 650; line-height: 1.45; }
.jp-role-list { border-top: 1px solid var(--jp-line); }
.jp-role { display: grid; grid-template-columns: 230px 1fr; gap: clamp(2rem, 6vw, 6rem); padding-block: clamp(3rem, 5vw, 5rem); border-bottom: 1px solid var(--jp-line); }
.jp-role__company { color: var(--jp-navy); font-size: 1.05rem; font-weight: 800; }
.jp-role__meta p:last-child { color: var(--jp-muted); font-size: .8rem; }
.jp-role__content { max-width: 800px; }
.jp-role__content h3 { margin-bottom: .25rem; font-size: clamp(2rem, 3.3vw, 3rem); }
.jp-role__sub { color: var(--jp-blue-dark); font-weight: 700; }
.jp-role__content li { margin-bottom: .6rem; padding-left: .35rem; }
.jp-role__content li::marker { color: var(--jp-yellow); }
.jp-principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.jp-principle { padding: 2rem; border-radius: 18px; background: #fff; border: 1px solid var(--jp-line); }
.jp-principle span { display: inline-block; margin-bottom: 1rem; color: var(--jp-blue); font-weight: 800; }
.jp-principle h3 { font-family: var(--jp-font-body); font-size: 1rem; line-height: 1.35; }
.jp-principle p { margin: 0; font-size: .87rem; }
.jp-credentials-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(3rem, 8vw, 8rem); }
.jp-credential-list > div { padding: 1.5rem 0; border-bottom: 1px solid var(--jp-line); }
.jp-credential-list h3 { margin: 0 0 .35rem; font-family: var(--jp-font-body); font-size: 1.02rem; }
.jp-credential-list p { margin: 0; color: var(--jp-muted); }

.jp-about-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.jp-about-hero__portrait { position: relative; min-height: 560px; display: flex; justify-content: center; align-items: flex-end; }
.jp-about-hero__portrait img { position: relative; z-index: 2; width: min(100%, 500px); height: 590px; object-fit: cover; object-position: center 16%; clip-path: polygon(8% 0, 100% 8%, 93% 100%, 0 92%); }
.jp-about-hero__brush { position: absolute; z-index: 1; left: 0; bottom: 2%; width: 95%; height: 35%; background: var(--jp-yellow); clip-path: polygon(0 23%, 98% 0, 87% 28%, 100% 52%, 74% 63%, 92% 88%, 5% 100%, 16% 70%, 0 58%); transform: rotate(-3deg); }
.jp-story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); }
.jp-story-copy { font-size: 1.06rem; }
.jp-personal-layout { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(2rem, 5vw, 5rem); align-items: stretch; }
.jp-personal-photo { position: relative; min-height: 100%; margin: 0; overflow: hidden; border-radius: 22px; background: var(--jp-pale-blue); }
.jp-personal-photo::after { content: ""; position: absolute; right: -6%; bottom: 12%; width: 38%; height: 22%; background: var(--jp-yellow); clip-path: polygon(0 24%, 100% 0, 82% 42%, 100% 78%, 12% 100%); opacity: .9; }
.jp-personal-photo img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: center 38%; }
.jp-personal-photo figcaption { position: absolute; z-index: 2; left: 1rem; right: 1rem; bottom: 1rem; margin: 0; padding: .75rem 1rem; border-radius: 10px; background: rgba(18,35,63,.88); color: #fff; font-size: .78rem; font-weight: 650; backdrop-filter: blur(8px); }
.jp-personal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.jp-personal-card { padding: clamp(2rem, 4vw, 3.2rem); border: 1px solid var(--jp-line); border-radius: 20px; }
.jp-personal-card:nth-child(2), .jp-personal-card:nth-child(3) { background: var(--jp-pale-blue); }
.jp-personal-card span { color: var(--jp-blue); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.jp-personal-card h3 { margin-top: 1rem; font-size: 2rem; }
.jp-fact-list p { display: grid; grid-template-columns: 180px 1fr; gap: 1.5rem; padding: 1.3rem 0; margin: 0; border-bottom: 1px solid var(--jp-line); }
.jp-fact-list strong { color: var(--jp-navy); }

.jp-contact-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(3rem, 8vw, 8rem); }
.jp-contact-method { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--jp-line); color: var(--jp-navy); text-decoration: none; }
.jp-contact-method .jp-icon { flex: 0 0 auto; }
.jp-contact-method span { display: grid; }
.jp-contact-method strong { font-size: .8rem; }
.jp-contact-note { margin-top: 2rem; color: var(--jp-muted); font-size: .8rem; }
.jp-contact-form-wrap { padding: clamp(2rem, 4vw, 4rem); border-radius: 22px; background: #fff; box-shadow: var(--jp-shadow); }
.jp-contact-form p { margin-bottom: 1.3rem; }
.jp-contact-form label { display: block; margin-bottom: .45rem; color: var(--jp-navy); font-size: .78rem; font-weight: 800; }
.jp-contact-form input, .jp-contact-form textarea, .jp-search-form input { width: 100%; border: 1px solid #cbd7e6; border-radius: 8px; padding: .85rem 1rem; color: var(--jp-navy); background: #fff; }
.jp-contact-form textarea { resize: vertical; }
.jp-contact-form input:focus, .jp-contact-form textarea:focus, .jp-search-form input:focus { border-color: var(--jp-blue); outline: 3px solid rgba(47,107,255,.15); }
.jp-form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.jp-honeypot { position: absolute!important; left: -99999px!important; }
.jp-form-notice { margin-bottom: 1.5rem; padding: 1rem 1.2rem; border-radius: 8px; font-weight: 700; }
.jp-form-notice--success { color: #0d5631; background: #e1f6eb; }
.jp-form-notice--error { color: #80252b; background: #fbe6e8; }

.jp-single-header { padding: clamp(10rem, 15vw, 13rem) 0 clamp(4rem, 7vw, 7rem); background: linear-gradient(135deg, #fff 0%, var(--jp-pale-blue) 100%); }
.jp-single-header__inner { max-width: 980px; }
.jp-single-header h1 { font-size: clamp(3.2rem, 6.4vw, 6.4rem); }
.jp-single-meta { color: var(--jp-muted); font-size: .82rem; font-weight: 650; }
.jp-single-featured { margin-top: -3rem; }
.jp-single-featured img { width: 100%; max-height: 650px; object-fit: cover; border-radius: 24px; box-shadow: var(--jp-shadow); }
.jp-article-layout { display: grid; grid-template-columns: minmax(0, 780px) 260px; gap: clamp(3rem, 8vw, 8rem); align-items: start; padding-block: clamp(4rem, 8vw, 8rem); }
.jp-article-aside { position: sticky; top: 110px; padding-left: 1.5rem; border-left: 1px solid var(--jp-line); font-size: .84rem; }
.jp-prose { color: #334057; font-size: 1.06rem; }
.jp-prose > * { max-width: 780px; }
.jp-prose h2, .jp-prose h3, .jp-prose h4 { margin-top: 1.6em; }
.jp-prose h2 { font-size: 2.5rem; }
.jp-prose h3 { font-size: 1.8rem; }
.jp-prose blockquote { margin: 2rem 0; padding: 1.5rem 2rem; border-left: 4px solid var(--jp-yellow); background: var(--jp-cool-white); color: var(--jp-navy); font-family: var(--jp-font-display); font-size: 1.35rem; }
.jp-prose img { border-radius: 14px; }
.jp-post-footer { padding-bottom: var(--jp-section); }
.jp-post-tags a { display: inline-flex; margin: 0 .4rem .4rem 0; padding: .4rem .7rem; border-radius: 99px; background: var(--jp-pale-blue); text-decoration: none; font-size: .72rem; font-weight: 700; }
.jp-post-navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--jp-line); }
.jp-post-navigation div:last-child { text-align: right; }
.jp-post-navigation a { color: var(--jp-navy); font-family: var(--jp-font-display); font-size: 1.25rem; text-decoration: none; }
.jp-pagination { margin-top: 4rem; }
.jp-pagination .nav-links { display: flex; justify-content: center; gap: .5rem; }
.jp-pagination .page-numbers { display: inline-flex; min-width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid var(--jp-line); border-radius: 50%; text-decoration: none; }
.jp-pagination .current { background: var(--jp-blue); border-color: var(--jp-blue); color: #fff; }
.jp-search-form { display: flex; gap: .75rem; max-width: 620px; margin-top: 2rem; }
.jp-empty-state, .jp-404__inner { max-width: 800px; text-align: center; margin-inline: auto; }
.jp-404 { min-height: 80vh; display: flex; align-items: center; padding-top: 140px; }

.jp-site-footer { padding: clamp(4rem, 7vw, 7rem) 0 1.5rem; background: var(--jp-navy); color: rgba(255,255,255,.72); }
.jp-footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 3rem; align-items: start; }
.jp-wordmark--footer { color: #fff; }
.jp-footer-tagline { max-width: 430px; margin-top: 1rem; }
.jp-footer-nav__list { display: grid; grid-template-columns: repeat(2, auto); gap: .7rem 1.5rem; }
.jp-footer-nav__list a, .jp-footer-contact a { color: rgba(255,255,255,.82); text-decoration: none; font-size: .85rem; }
.jp-footer-contact { display: grid; gap: .8rem; }
.jp-footer-contact a { display: flex; align-items: center; gap: .65rem; }
.jp-footer-contact .jp-icon { width: 20px; height: 20px; color: #8fb5ff; }
.jp-footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.13); font-size: .72rem; }
.jp-footer-bottom p { margin: 0; }

.jp-reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.jp-reveal.is-visible { opacity: 1; transform: none; }


@media (max-width: 1280px) {
  .jp-impact-layout { grid-template-columns: 1fr; }
  .jp-impact-grid { margin-top: 1.25rem; }
}

@media (max-width: 1080px) {
  .jp-header-cta { display: none; }
  .jp-nav__list { gap: 1.2rem; }
  .jp-hero__grid { grid-template-columns: 1fr .86fr; }
  .jp-impact-layout, .jp-career-layout { grid-template-columns: 1fr; }
  .jp-impact-grid { margin-top: 1rem; gap: 0; }
  .jp-feature-story { grid-template-columns: .7fr 1.15fr; }
  .jp-feature-story__steps { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--jp-line); }
  .jp-feature-story__steps > div { padding-left: 0; padding-top: 3.2rem; }
  .jp-feature-story__steps span { top: 0; }
  .jp-feature-story__steps > div::after { display: none; }
  .jp-project-grid--featured { grid-template-columns: repeat(2, 1fr); }
  .jp-project-grid--featured .jp-project-card:last-child { grid-column: span 2; max-width: 50%; justify-self: center; }
  .jp-page-hero__grid { grid-template-columns: 1fr .72fr; }
}

@media (max-width: 820px) {
  :root { --jp-section: 5.5rem; }
  .jp-container { width: min(calc(100% - 2rem), var(--jp-container)); }
  .jp-site-header, .jp-site-header.is-scrolled { height: 68px; z-index: 2000; overflow: visible; background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .jp-menu-toggle { display: inline-flex; margin-left: auto; position: relative; z-index: 2002; }
  .jp-nav { position: fixed; inset: 68px 0 0; z-index: 2001; width: 100vw; height: calc(100dvh - 68px); margin: 0; padding: clamp(1rem, 4vh, 2rem) 2rem 1.5rem; overflow: hidden; background: #fff; box-shadow: 0 18px 40px rgba(18,35,63,.08); visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  .jp-nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
  .jp-nav__list { display: flex; flex-direction: column; justify-content: flex-start; gap: 0; width: 100%; height: 100%; padding: 0; margin: 0; background: #fff; }
  .jp-nav__list li { display: block; flex: 0 0 auto; margin: 0; border-bottom: 1px solid var(--jp-line); }
  .jp-nav__list a { display: flex; align-items: center; min-height: clamp(54px, 9.5vh, 68px); padding: .65rem 0; color: var(--jp-navy) !important; font-family: var(--jp-font-display); font-size: clamp(1.35rem, 5.4vw, 1.75rem); font-weight: 650; line-height: 1.08; opacity: 1; visibility: visible; }
  .jp-nav__list a::after { display: none; }
  .jp-hero { padding-top: 68px; }
  .jp-hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .jp-hero__copy { padding: 5.5rem 0 2rem; }
  .jp-hero h1 { font-size: clamp(3.8rem, 13vw, 6rem); }
  .jp-hero__portrait { min-height: 500px; }
  .jp-hero__portrait img { width: min(90%, 500px); height: 520px; }
  .jp-hand-note { right: .5rem; top: 30%; }
  .jp-impact-grid { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; column-gap: 0; }
  .jp-impact-item:nth-child(odd) { border-left: 0; }
  .jp-capability-grid, .jp-capability-grid--three { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
  .jp-capability:nth-child(3) { border-left: 0; }
  .jp-feature-story { grid-template-columns: 1fr; }
  .jp-feature-story__visual { min-height: 310px; }
  .jp-feature-story__intro { border-right: 0; }
  .jp-feature-story__steps { grid-template-columns: 1fr; }
  .jp-career-track { grid-template-columns: repeat(2, 1fr); row-gap: 3rem; }
  .jp-career-track::before { display: none; }
  .jp-section-heading-row { grid-template-columns: 1fr; align-items: start; }
  .jp-project-grid, .jp-project-grid--featured, .jp-post-grid, .jp-post-grid--archive { grid-template-columns: repeat(2, 1fr); }
  .jp-project-grid--featured .jp-project-card:last-child { grid-column: auto; max-width: none; }
  .jp-about-teaser__grid { grid-template-columns: 1fr; }
  .jp-about-teaser__image { min-height: 360px; }
  .jp-contact-band__inner { display: grid; }
  .jp-page-hero__grid, .jp-experience-intro, .jp-credentials-layout, .jp-story-grid, .jp-contact-layout { grid-template-columns: 1fr; }
  .jp-page-hero__aside { border-left: 0; padding-left: 0; }
  .jp-about-hero { grid-template-columns: 1fr; }
  .jp-personal-layout { grid-template-columns: 1fr; }
  .jp-personal-photo img { min-height: 520px; }
  .jp-role { grid-template-columns: 1fr; gap: 1rem; }
  .jp-principle-grid { grid-template-columns: repeat(2, 1fr); }
  .jp-article-layout { grid-template-columns: 1fr; }
  .jp-article-aside { position: static; border-left: 0; border-top: 1px solid var(--jp-line); padding: 2rem 0 0; }
  .jp-footer-grid { grid-template-columns: 1fr 1fr; }
  .jp-footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 820px) and (max-height: 520px) {
  .jp-nav { padding-block: .75rem; overflow-y: auto; }
  .jp-nav__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); height: auto; column-gap: 1.5rem; }
  .jp-nav__list a { min-height: 48px; font-size: 1.25rem; }
}

@media (max-width: 560px) {
  .jp-container { width: min(calc(100% - 1.35rem), var(--jp-container)); }
  .jp-wordmark { font-size: 1rem; }
  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.55rem; }
  .jp-button { width: 100%; }
  .jp-actions { display: grid; width: 100%; }
  .jp-hero__copy { padding-top: 4.5rem; }
  .jp-hero h1 { font-size: 3.75rem; }
  .jp-hero__portrait { min-height: 420px; }
  .jp-hero__portrait img { width: min(94%, 430px); height: 445px; }
  .jp-hand-note { top: 28%; right: .2rem; width: 88px; font-size: .92rem; }
  .jp-hand-note__arrow { width: 54px; height: 42px; margin-left: -.85rem; }
  .jp-dot-grid { display: none; }
  .jp-credentials { display: grid; gap: .5rem; }
  .jp-credentials span::after { display: none; }
  .jp-impact-grid, .jp-capability-grid, .jp-capability-grid--three, .jp-career-track, .jp-project-grid, .jp-project-grid--featured, .jp-post-grid, .jp-post-grid--archive, .jp-principle-grid, .jp-personal-grid, .jp-mini-metrics { grid-template-columns: 1fr; }
  .jp-personal-photo img { min-height: 430px; }
  .jp-impact-item, .jp-capability, .jp-capability:nth-child(3) { border-left: 0; border-top: 1px solid var(--jp-line); padding: 1.5rem 0; }
  .jp-impact-item:first-child, .jp-capability:first-child { border-top: 0; }
  .jp-feature-story > div { padding: 1.6rem; }
  .jp-feature-story__visual { padding: 0; min-height: 250px; }
  .jp-career-stop { padding-left: .2rem; }
  .jp-section-heading-row { gap: 1rem; }
  .jp-about-teaser__grid { padding: 1rem; }
  .jp-about-teaser__image img { height: 360px; }
  .jp-about-teaser__copy { padding: 1rem; }
  .jp-page-hero { padding-top: 8.5rem; }
  .jp-page-hero h1 { font-size: 3.45rem; }
  .jp-about-hero__portrait { min-height: 450px; }
  .jp-about-hero__portrait img { height: 480px; }
  .jp-fact-list p { grid-template-columns: 1fr; gap: .3rem; }
  .jp-form-row { grid-template-columns: 1fr; gap: 0; }
  .jp-contact-form-wrap { padding: 1.25rem; }
  .jp-single-header h1 { font-size: 3.25rem; }
  .jp-post-navigation { grid-template-columns: 1fr; }
  .jp-post-navigation div:last-child { text-align: left; }
  .jp-search-form { display: grid; }
  .jp-footer-grid { grid-template-columns: 1fr; }
  .jp-footer-contact { grid-column: auto; }
  .jp-footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; scroll-behavior: auto!important; }
  .jp-reveal { opacity: 1; transform: none; }
}
