@charset "UTF-8";

:root {
  color-scheme: light;
  --paper: #f7f5ee;
  --white: #fffef9;
  --ink: #192c2b;
  --muted: #54635e;
  --teal: #166458;
  --teal-dark: #124a42;
  --mint: #e5ede3;
  --line: #d4d9ce;
  --sand: #eae3d4;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --mono: "Cascadia Code", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-padding-top: 7rem; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
::selection { background: #c9ddcd; color: var(--ink); }
a { color: inherit; text-underline-offset: .23em; }
a:hover { color: var(--teal); }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
button, [href] { touch-action: manipulation; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 5px; }
img, svg { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; font-weight: 500; }
h1, h2 { font-family: var(--serif); letter-spacing: -.045em; }
p { margin-bottom: 1.15rem; }
ul { padding-left: 1.25rem; }
li + li { margin-top: .45rem; }
.container { width: min(1240px, calc(100% - 112px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -6rem;
  z-index: 100;
  padding: .75rem 1.2rem;
  background: var(--ink);
  color: var(--white);
}
.skip-link:focus { top: 1rem; color: var(--white); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 88px; gap: 2rem; }
.brand { display: inline-flex; align-items: center; min-height: 44px; text-decoration: none; flex-shrink: 0; font: 1.55rem/1.2 var(--serif); letter-spacing: -.035em; }
.nav-links { display: flex; align-items: center; gap: 2rem; padding: 0; margin: 0; list-style: none; }
.nav-links li + li { margin: 0; }
.nav-links a { display: block; padding: .6rem 0; text-decoration: none; font-size: .875rem; }
.nav-links a:hover { text-decoration: underline; }
.nav-links .nav-resume { padding: .55rem 1rem; border: 1px solid var(--ink); border-radius: 3px; }
.nav-toggle { display: none; }
.eyebrow { font: .71rem/1.6 var(--mono); text-transform: uppercase; letter-spacing: .12em; }
.eyebrow-line { display: flex; align-items: center; gap: .6rem; }
.dot { width: 7px; height: 7px; display: inline-block; background: var(--teal); border-radius: 50%; flex-shrink: 0; }
.hero { padding-top: 3.8rem; }
.hero-meta { display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); margin-bottom: 3rem; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-areas: "name portrait" "copy portrait"; grid-template-rows: auto 1fr; align-items: start; gap: 1.4rem 4.5rem; }
.hero-name { grid-area: name; font-size: clamp(5rem, 8vw, 7.3rem); line-height: .9; margin: 0; letter-spacing: -.07em; }
.hero-name span { display: block; }
.hero-name .name-last { color: var(--teal); font-style: italic; padding-bottom: .12em; }
.hero-statement { font: 500 clamp(1.8rem, 2.5vw, 2.2rem)/1.17 var(--serif); letter-spacing: -.035em; margin-bottom: 1rem; }
.hero-copy { grid-area: copy; max-width: 520px; }
.hero-copy > p:not(.hero-statement) { color: var(--muted); font-size: 1.03rem; }
.hero-portrait { grid-area: portrait; width: 100%; max-width: 420px; align-self: center; justify-self: end; margin: 0; }
.hero-portrait img { width: 100%; height: auto; aspect-ratio: 3 / 4; border-radius: 5px; background: var(--sand); }
.hero-portrait figcaption { display: flex; justify-content: space-between; gap: 1rem; padding-top: .75rem; color: var(--muted); font-size: .72rem; }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1.1rem;
  min-height: 48px;
  padding: .7rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: 3px;
  font-size: .87rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.5;
}
.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); }
.button-secondary:hover { background: var(--mint); }
.button-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.contact-panel .button-light:hover { background: var(--mint); color: var(--ink); }
.arrow { font-family: var(--sans); font-weight: 400; }
.hero-baseline { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 3.5rem; padding-bottom: 1.3rem; color: var(--muted); }
.hero-baseline a { font-size: .78rem; text-decoration: none; }
.hero-baseline a:hover { text-decoration: underline; }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); padding: 1.8rem 0; border-block: 1px solid var(--line); margin: 0; }
.metric { padding: 0 2rem; border-left: 1px solid var(--line); }
.metric:first-child { padding-left: 0; border-left: 0; }
.metric:last-child { padding-right: 0; }
.metric dt { font: 500 2.6rem/1.1 var(--serif); letter-spacing: -.045em; margin-bottom: .45rem; }
.metric dd { margin: 0; font-size: .78rem; line-height: 1.55; color: var(--muted); max-width: 190px; }
.section { padding-block: 5.5rem; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 3rem; margin-bottom: 2.4rem; }
.section-heading .eyebrow { color: var(--teal); margin-bottom: .8rem; }
.section-heading h2 { font-size: clamp(2.5rem, 4.7vw, 4rem); margin: 0; }
.section-intro { color: var(--muted); max-width: 360px; font-size: .91rem; margin: 0 0 .15rem; }
.work-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.project-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 5px; overflow: hidden; background: var(--white); }
.card-banner {
  position: relative;
  min-height: 184px;
  padding: 1.6rem 1.8rem;
  background: var(--mint);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.card-banner::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -40px;
  top: 50px;
  border: 1px solid currentColor;
  box-shadow: 0 0 0 24px var(--banner-ring, #d6e3d6), 0 0 0 25px currentColor;
  border-radius: 50%;
  opacity: .15;
}
.card-banner > * { position: relative; z-index: 1; }
.banner-label { display: flex; justify-content: space-between; gap: 1rem; font: .65rem/1.5 var(--mono); text-transform: uppercase; letter-spacing: .09em; }
.banner-value { font: 3.75rem/1 var(--serif); letter-spacing: -.055em; margin: 1.3rem 0 .35rem; }
.banner-value.words { font-size: clamp(2.3rem, 3.8vw, 3.15rem); }
.banner-caption { font-size: .77rem; margin: 0; }
.banner-reporting { background: #e8ece9; --banner-ring: #d8e0dc; }
.banner-trials { background: #eae4d5; --banner-ring: #ded5bd; }
.banner-migration { background: #dde9e7; --banner-ring: #cadbd6; }
.card-content { display: flex; flex-direction: column; flex-grow: 1; padding: 1.8rem; }
.card-content h3 { font: 500 2rem/1.15 var(--serif); letter-spacing: -.035em; margin-bottom: 1.2rem; }
.card-content h3 a { text-decoration: none; }
.card-content h3 a:hover { text-decoration: underline; text-decoration-thickness: 1px; }
.card-description { margin: 0 0 1.3rem; font-size: .88rem; color: var(--muted); }
.card-description dt { display: inline; font-weight: 600; color: var(--ink); }
.card-description dd { display: inline; margin: 0; }
.card-description div + div { margin-top: .7rem; }
.tags { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: auto 0 0; padding: 0; }
.tags li { font: .63rem/1.5 var(--mono); padding: .25rem .5rem; border: 1px solid var(--line); border-radius: 2px; margin: 0; color: var(--muted); }
.card-link { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .82rem; font-weight: 600; text-decoration: none; }
.card-link:hover { text-decoration: underline; }
.section-bordered { border-top: 1px solid var(--line); }
.experience-layout { display: grid; grid-template-columns: .8fr 1.5fr; gap: 5rem; }
.section-aside .eyebrow { color: var(--teal); }
.section-aside h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 1.2rem; }
.section-aside > p:not(.eyebrow) { color: var(--muted); font-size: .91rem; max-width: 290px; }
.timeline { list-style: none; padding: 0; margin: 0; }
.timeline-item { display: grid; grid-template-columns: 40px 1fr; gap: 1rem; padding-bottom: 2.3rem; position: relative; margin: 0; }
.timeline-item:not(:last-child)::before { content: ""; position: absolute; left: 19px; top: 40px; bottom: 0; width: 1px; background: var(--line); }
.company-monogram { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; color: var(--teal); background: var(--paper); font: .75rem var(--mono); }
.role-header { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: .2rem; }
.role-header h3 { font-size: 1.3rem; font-weight: 600; margin: 0; letter-spacing: -.025em; }
.role-header time, .role-date { color: var(--muted); font: .67rem/1.6 var(--mono); white-space: nowrap; }
.role-title { margin-bottom: .9rem; font-size: .83rem; color: var(--teal); }
.timeline p:not(.role-title) { color: var(--muted); font-size: .9rem; }
.timeline-item:last-child { padding-bottom: 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.about-copy { font-size: 1.08rem; color: var(--muted); }
.about-copy .lead { font: 1.65rem/1.4 var(--serif); color: var(--ink); letter-spacing: -.025em; }
.about-portrait { margin: 0; }
.about-portrait img { width: 100%; height: auto; aspect-ratio: 4 / 3; border-radius: 5px; background: var(--sand); }
.about-skills { margin-top: 1.8rem; }
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.4rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.details-grid h3, .skill-group h3 { font: .67rem/1.5 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: .75rem; }
.details-grid p { font-size: .82rem; color: var(--muted); }
.details-grid strong { color: var(--ink); font-weight: 600; }
.skill-group { padding-bottom: 1.25rem; margin-bottom: 1.25rem; border-bottom: 1px solid var(--line); }
.skill-group:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.skill-group p { font-size: .88rem; margin-bottom: 0; color: var(--muted); }
.mentorship-overview { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
.mentorship-intro .lead { font: 1.8rem/1.3 var(--serif); letter-spacing: -.025em; color: var(--ink); }
.mentorship-intro > p { max-width: 490px; color: var(--muted); font-size: .95rem; }
.mentorship-profile { font-size: .83rem; }
.mentorship-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; border: 1px solid var(--line); border-radius: 4px; background: var(--mint); }
.mentorship-stats > div { padding: 1.4rem 1.8rem; }
.mentorship-stats > div:nth-child(even) { border-left: 1px solid var(--line); }
.mentorship-stats > div:nth-child(n+3) { border-top: 1px solid var(--line); }
.mentorship-stats dt { font: 3rem/1.1 var(--serif); letter-spacing: -.04em; color: var(--teal-dark); margin-bottom: .5rem; }
.mentorship-stats .stat-unit { font-size: 1.35rem; letter-spacing: -.02em; }
.mentorship-stats dd { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }
.mentorship-stats dd strong { font-weight: 600; }
.mentorship-services { margin-top: 2.8rem; }
.mentorship-services h3, .mentorship-badges h3 { font: .68rem/1.5 var(--mono); text-transform: uppercase; letter-spacing: .1em; color: var(--teal); margin-bottom: 1rem; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 2rem; list-style: none; padding: 0; margin: 0; }
.service-grid li { margin: 0; border-block-start: 1px solid var(--line); }
.service-grid a { display: flex; justify-content: space-between; align-items: center; gap: 1.4rem; padding: 1.2rem 0; text-decoration: none; }
.service-grid strong { display: block; font-size: .98rem; font-weight: 600; }
.service-grid strong + span { display: block; font-size: .8rem; color: var(--muted); margin-top: .2rem; }
.service-grid a:hover strong { text-decoration: underline; text-underline-offset: .2em; }
.mentorship-badges { border-top: 1px solid var(--line); padding-top: 1.5rem; margin-top: .2rem; }
.badge-list { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; padding: 0; margin: 0 0 .8rem; }
.badge-list li { padding: .4rem .8rem; border: 1px solid var(--line); border-radius: 3px; background: var(--white); font-size: .75rem; margin: 0; }
.badge-list .badge-featured { color: var(--teal-dark); border-color: var(--teal); background: var(--mint); font-weight: 600; }
.source-note { color: var(--muted); font-size: .73rem; line-height: 1.65; }
.times-square-feature { display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; gap: 2.5rem; margin-top: 2.4rem; padding-block: 2rem; border-block: 1px solid var(--line); }
.feature-image { margin: 0; }
.feature-image a { display: block; }
.feature-image img { width: 100%; height: auto; aspect-ratio: 768 / 445; border-radius: 4px; background: var(--sand); }
.feature-image figcaption { margin-top: .65rem; color: var(--muted); font-size: .72rem; }
.feature-copy .eyebrow { color: var(--teal); margin-bottom: .7rem; }
.feature-copy h3 { font: clamp(1.8rem, 2.8vw, 2.5rem)/1.15 var(--serif); letter-spacing: -.035em; margin-bottom: 1.2rem; }
.feature-copy > p:not(.eyebrow) { font-size: .9rem; color: var(--muted); }
.feature-copy .button { margin-top: .3rem; }
.testimonial-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem; margin-top: 2.4rem; margin-bottom: 1.2rem; }
.testimonial-heading h3 { font: 2rem/1.2 var(--serif); letter-spacing: -.035em; margin: 0; }
.testimonial-heading > a { font-size: .8rem; }
.carousel-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; margin-bottom: .8rem; }
.carousel-hint { font-size: .78rem; color: var(--muted); margin: 0; }
.carousel-controls { display: flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.carousel-controls[hidden] { display: none; }
.carousel-button { display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 1px solid var(--ink); border-radius: 50%; background: transparent; color: var(--ink); font-size: 1.3rem; cursor: pointer; }
.carousel-button:hover:not(:disabled) { background: var(--mint); }
.carousel-button:disabled { border-color: var(--line); color: var(--muted); opacity: .5; cursor: default; }
.carousel-status { min-width: 85px; text-align: center; color: var(--muted); font: .73rem/1.4 var(--mono); }
.testimonial-track { display: flex; gap: 1rem; overflow-x: auto; padding: .35rem .25rem 1rem; scroll-snap-type: x mandatory; scroll-padding-inline: .25rem; scrollbar-width: thin; scrollbar-color: var(--teal) var(--mint); overscroll-behavior-inline: contain; }
.testimonial { display: flex; flex: 0 0 calc((100% - 2rem) / 3); flex-direction: column; min-width: 0; min-height: 260px; scroll-snap-align: start; padding: 1.5rem; margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: 4px; }
.testimonial:nth-child(3n+1) { background: var(--mint); }
.testimonial:nth-child(3n+2) { background: #f1eee5; }
.testimonial-topic { font: .6rem/1.5 var(--mono); text-transform: uppercase; letter-spacing: .08em; color: var(--teal); margin-bottom: 1rem; }
.testimonial blockquote { margin: 0 0 1.4rem; }
.testimonial blockquote p { font: 1.45rem/1.4 var(--serif); letter-spacing: -.02em; margin: 0; }
.testimonial figcaption { display: flex; flex-direction: column; gap: .1rem; margin-top: auto; }
.testimonial figcaption a { font-size: .82rem; font-weight: 600; text-decoration: none; }
.testimonial figcaption a:hover { text-decoration: underline; }
.testimonial figcaption span { font-size: .7rem; color: var(--muted); }
.mentorship-source { margin-top: 1.2rem; margin-bottom: 0; max-width: 820px; }
.resume-strip { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding: 2rem 2.4rem; margin-bottom: 5.5rem; border: 1px solid var(--line); border-radius: 4px; background: var(--sand); }
.resume-strip h2 { font-size: 2rem; margin-bottom: .4rem; }
.resume-strip p { font-size: .88rem; color: var(--muted); margin-bottom: 0; }
.resume-strip .actions { margin-top: 0; flex-shrink: 0; }
.contact-panel { background: var(--ink); color: var(--paper); padding-block: 4.5rem; }
.contact-inner { display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; gap: 4rem; }
.contact-panel .eyebrow { color: #aecdc0; margin-bottom: 1.4rem; }
.contact-panel h2 { font-size: clamp(2.6rem, 4.6vw, 4rem); margin: 0; }
.contact-panel p:not(.eyebrow) { color: #c5d0c6; font-size: .95rem; }
.contact-panel a:hover { color: #d0e9d5; }
.contact-panel :focus-visible { outline-color: #d0e9d5; }
.contact-email { display: inline-block; font-size: clamp(1rem, 1.8vw, 1.3rem); overflow-wrap: anywhere; margin-bottom: 1rem; }
.contact-booking { margin-bottom: 1.3rem; margin-right: 1rem; }
.contact-links { display: flex; flex-wrap: wrap; align-items: center; gap: 1.8rem; font-size: .82rem; }
.site-footer { border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: 1.5rem; }
.footer-inner p { color: var(--muted); font-size: .72rem; margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-links a { font-size: .72rem; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

/* Case studies share the same typographic and navigation system as the home page. */
.case-hero { padding-block: 2.4rem 3rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .65rem; color: var(--muted); font-size: .78rem; margin-bottom: 3rem; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.case-hero .eyebrow { color: var(--teal); margin-bottom: 1rem; }
.case-hero h1 { font-size: clamp(3rem, 6.3vw, 5.6rem); max-width: 1060px; margin-bottom: 1.5rem; }
.case-deck { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 760px; line-height: 1.6; margin-bottom: 2.2rem; }
.case-facts { display: grid; grid-template-columns: 1fr 1.5fr 1.3fr; gap: 2rem; border-top: 1px solid var(--line); padding-top: 1.5rem; margin: 0; }
.case-facts dt { font: .66rem/1.5 var(--mono); text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .5rem; }
.case-facts dd { font-size: .87rem; margin: 0; }
.case-highlight { background: var(--mint); border-block: 1px solid var(--line); padding: 2.5rem 0; }
.highlight-inner { display: flex; align-items: center; gap: 3rem; }
.highlight-number { flex-shrink: 0; font: clamp(3.3rem, 6vw, 5rem)/1 var(--serif); letter-spacing: -.06em; margin: 0; color: var(--teal-dark); }
.highlight-copy { max-width: 650px; }
.highlight-copy h2 { font-family: var(--sans); font-size: 1.15rem; font-weight: 600; letter-spacing: -.015em; margin-bottom: .45rem; }
.highlight-copy p { margin: 0; color: var(--muted); font-size: .9rem; }
.case-layout { display: grid; grid-template-columns: 215px minmax(0, 1fr); gap: 5rem; padding-block: 4rem 5rem; align-items: start; }
.case-toc { position: sticky; top: 120px; }
.case-toc p { font: .65rem/1.5 var(--mono); text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.case-toc ol { list-style: none; counter-reset: contents; margin: 0; padding: 0; }
.case-toc li { counter-increment: contents; border-bottom: 1px solid var(--line); margin: 0; }
.case-toc a { display: flex; gap: .75rem; padding: .8rem 0; text-decoration: none; font-size: .8rem; }
.case-toc a::before { content: "0" counter(contents); color: var(--teal); font: .65rem/1.9 var(--mono); }
.case-toc a:hover { text-decoration: underline; }
.case-body { max-width: 800px; min-width: 0; }
.case-section + .case-section { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.case-section h2 { font-size: clamp(2rem, 3.1vw, 2.8rem); margin-bottom: 1.3rem; }
.case-section h3 { font-size: 1.12rem; line-height: 1.3; margin-bottom: .7rem; font-weight: 600; letter-spacing: -.02em; }
.case-section p, .case-section li { color: var(--muted); font-size: 1rem; }
.case-section strong { color: var(--ink); font-weight: 600; }
.case-section p:last-child { margin-bottom: 0; }
.scope-note { padding: 1.25rem 1.5rem; margin-block: 1.7rem; border-left: 3px solid var(--teal); background: var(--mint); }
.scope-note p { font-size: .88rem; margin: 0; }
.principles { list-style: none; padding: 0; margin-block: 1.8rem 0; counter-reset: principles; }
.principles li { counter-increment: principles; display: grid; grid-template-columns: 36px 1fr; gap: 1rem; padding-block: 1.25rem; border-top: 1px solid var(--line); margin: 0; }
.principles li::before { content: "0" counter(principles); color: var(--teal); font: .75rem/1.8 var(--mono); }
.principles p { font-size: .95rem; margin: 0; }
.result-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-block: 1.7rem; }
.result { padding: 1.5rem; background: var(--white); border: 1px solid var(--line); border-radius: 3px; }
.result dt { font: 2.5rem/1.1 var(--serif); letter-spacing: -.04em; margin-bottom: .65rem; }
.result dd { font-size: .83rem; line-height: 1.5; color: var(--muted); margin: 0; }
.takeaway { margin-top: 2rem; font: 1.65rem/1.4 var(--serif) !important; color: var(--ink) !important; letter-spacing: -.025em; }
.source-links { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.case-bottom { padding-block: 2.7rem; border-top: 1px solid var(--line); background: var(--sand); }
.case-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.case-bottom .eyebrow { color: var(--muted); margin-bottom: .4rem; }
.next-project { font: clamp(1.5rem, 3vw, 2.3rem)/1.2 var(--serif); letter-spacing: -.03em; text-decoration: none; }
.next-project:hover { text-decoration: underline; }
.back-to-work { font-size: .82rem; flex-shrink: 0; }
.case-contact { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding-block: 2rem; }
.case-contact p { margin: 0; font-size: .9rem; color: var(--muted); }
.case-contact a { font-size: .9rem; overflow-wrap: anywhere; }

@media (min-width: 1600px) {
  .hero { padding-top: 4.8rem; }
  .hero-baseline { margin-top: 4.5rem; }
}
@media (max-width: 1050px) {
  .container { width: calc(100% - 64px); }
  .hero-grid { column-gap: 3rem; }
  .hero-name { font-size: 9vw; }
  .nav-links { gap: 1.3rem; }
  .experience-layout, .about-grid { gap: 3rem; }
  .mentorship-overview { gap: 2.5rem; }
  .mentorship-stats > div { padding: 1.3rem; }
  .testimonial { flex-basis: calc((100% - 1rem) / 2); padding: 1.25rem; }
  .metric { padding-inline: 1.3rem; }
  .case-layout { grid-template-columns: 165px minmax(0, 1fr); gap: 3rem; }
  .role-header { display: block; }
  .role-header h3 { margin-bottom: .35rem; }
}
@media (max-width: 760px) {
  html { scroll-padding-top: 6rem; }
  .container { width: calc(100% - 40px); }
  .header-inner { min-height: 72px; flex-wrap: wrap; gap: 0; position: relative; padding-block: .85rem; }
  .site-nav { width: 100%; }
  .nav-links { flex-wrap: wrap; gap: .25rem 1.15rem; margin-top: .7rem; }
  .nav-links a { font-size: .84rem; }
  .nav-ready .nav-toggle { display: flex; align-items: center; gap: .6rem; position: absolute; top: 13px; right: 0; min-height: 44px; padding: .5rem .7rem; background: none; border: 1px solid var(--line); border-radius: 3px; font-size: .8rem; color: var(--ink); }
  .menu-icon { position: relative; width: 15px; height: 10px; border-block: 1px solid currentColor; }
  .menu-icon::after { content: ""; position: absolute; left: 0; top: 4px; width: 15px; height: 1px; background: currentColor; }
  .nav-ready .site-nav[data-open="false"] .nav-links { display: none; }
  .nav-ready .nav-links { display: grid; gap: .1rem; border-top: 1px solid var(--line); padding-top: .7rem; }
  .nav-ready .nav-links a { padding: .65rem; }
  .nav-ready .nav-links .nav-resume { margin-top: .2rem; text-align: center; }
  .hero { padding-top: 2rem; }
  .hero-meta { flex-direction: column; gap: .35rem; margin-bottom: 2rem; }
  .hero-meta .eyebrow { margin: 0; font-size: .65rem; }
  .hero-grid { grid-template-columns: 1fr; grid-template-areas: "name" "portrait" "copy"; grid-template-rows: auto; gap: 1.7rem; }
  .hero-name { font-size: clamp(4.5rem, 18vw, 8rem); }
  .hero-name span { display: inline; }
  .hero-copy { max-width: 540px; }
  .hero-portrait { justify-self: center; margin-top: .5rem; }
  .hero-statement { font-size: 2rem; margin-bottom: .8rem; }
  .hero-copy > p:not(.hero-statement) { font-size: .95rem; }
  .actions { margin-top: 1.3rem; }
  .hero-baseline { margin-top: 2rem; }
  .hero-baseline .eyebrow { font-size: .6rem; max-width: 245px; }
  .hero-baseline a { display: none; }
  .metrics { grid-template-columns: repeat(2, 1fr); row-gap: 1.5rem; padding-block: 1.5rem; }
  .metric { padding-inline: 1.1rem; }
  .metric:nth-child(3) { padding-left: 0; border-left: 0; }
  .metric:nth-child(2) { padding-right: 0; }
  .metric dt { font-size: 2.3rem; }
  .metric dd { font-size: .73rem; }
  .section { padding-block: 3.5rem; }
  .section-heading { display: block; margin-bottom: 1.8rem; }
  .section-heading h2 { font-size: 2.6rem; }
  .section-intro { margin-top: 1rem; max-width: 500px; }
  .work-grid { grid-template-columns: 1fr; }
  .card-banner { min-height: 168px; }
  .banner-value.words { font-size: 3rem; }
  .card-content, .card-banner { padding: 1.5rem; }
  .experience-layout, .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section-aside h2 { font-size: 2.6rem; }
  .section-aside > p:not(.eyebrow) { max-width: 500px; }
  .role-header { display: flex; }
  .details-grid { gap: 1.25rem; }
  .mentorship-overview { grid-template-columns: 1fr; gap: 1.8rem; }
  .mentorship-intro .lead { font-size: 1.6rem; }
  .mentorship-intro > p { max-width: 540px; }
  .mentorship-stats dt { font-size: 2.6rem; }
  .mentorship-stats dd { font-size: .77rem; }
  .service-grid { grid-template-columns: 1fr; }
  .mentorship-services { margin-top: 2rem; }
  .times-square-feature { grid-template-columns: 1fr; gap: 1.5rem; }
  .testimonial-heading { display: block; }
  .testimonial-heading h3 { margin-bottom: .7rem; }
  .carousel-toolbar { flex-wrap: wrap; gap: .8rem; }
  .testimonial { flex-basis: calc(100% - 1.5rem); padding: 1.5rem; }
  .testimonial blockquote p { font-size: 1.4rem; }
  .resume-strip { flex-direction: column; align-items: flex-start; gap: 1.3rem; padding: 1.7rem; margin-bottom: 3.5rem; }
  .contact-panel { padding-block: 3rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 1.7rem; }
  .contact-panel h2 { font-size: 3rem; }
  .contact-email { font-size: 1.18rem; }
  .footer-inner { align-items: flex-start; flex-direction: column; gap: .7rem; }
  .case-hero { padding-block: 1.8rem 2rem; }
  .breadcrumb { margin-bottom: 2rem; }
  .case-hero h1 { font-size: clamp(2.8rem, 9vw, 4rem); overflow-wrap: break-word; }
  .case-deck { font-size: 1.05rem; }
  .case-facts { grid-template-columns: 1fr; gap: 1rem; }
  .case-facts dt { margin-bottom: .25rem; }
  .case-highlight { padding-block: 2rem; }
  .highlight-inner { align-items: flex-start; gap: 1.4rem; flex-direction: column; }
  .highlight-number { font-size: 3.6rem; }
  .case-layout { grid-template-columns: 1fr; gap: 2.5rem; padding-block: 2rem 3rem; }
  .case-toc { position: static; }
  .case-toc ol { display: grid; grid-template-columns: 1fr 1fr; column-gap: 1.5rem; }
  .case-toc a { font-size: .75rem; gap: .5rem; }
  .case-section + .case-section { margin-top: 2.2rem; padding-top: 2rem; }
  .case-section h2 { font-size: 2.2rem; }
  .case-section p, .case-section li { font-size: .95rem; }
  .scope-note { padding: 1.1rem; }
  .result { padding: 1.1rem; }
  .result dt { font-size: 2.15rem; }
  .result dt.result-comparison { font-size: 1.65rem; white-space: nowrap; }
  .result dd { font-size: .78rem; }
  .case-bottom-inner, .case-contact { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
}
@media (max-width: 380px) {
  .brand { font-size: 1.4rem; }
  .hero-name span { display: block; }
  .hero-name { font-size: 5.6rem; }
  .role-header { display: block; }
  .details-grid, .result-grid { grid-template-columns: 1fr; }
  .banner-label { font-size: .57rem; }
  .contact-email { font-size: 1rem; }
  .resume-strip { padding: 1.2rem; }
  .resume-strip .actions { gap: .5rem; }
  .resume-strip .button { padding: .65rem .85rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
@media print {
  .site-header, .skip-link, .case-toc, .case-bottom, .nav-toggle, .hero-baseline, .site-footer { display: none; }
  body { background: white; color: black; font-size: 11pt; }
  .container { width: 100%; }
  .section { padding-block: 1.5rem; }
  .case-layout { display: block; padding-block: 1.5rem; }
  .project-card, .case-section, .timeline-item, .testimonial { break-inside: avoid; }
  .carousel-toolbar { display: none; }
  .testimonial-track { display: block; overflow: visible; }
  .testimonial { min-height: 0; margin-bottom: 1rem; }
  .contact-panel { background: white; color: black; padding-block: 1.5rem; border-top: 1px solid #aaa; }
  .contact-panel p:not(.eyebrow), .contact-panel .eyebrow { color: black; }
  .hero-name { font-size: 5rem; }
}
