/* Editorial refinement: deliberate type, restrained motion, full approved copy. */
:root {
  color-scheme: light;
  --paper: #fafafc;
  --ink: #1d1d1f;
  --light: #fafafc;
  --muted: #51545a;
  --muted-light: #d5d7dc;
  --graphite: #202124;
  --pale: #f2f3f5;
  --blue: #245aa5;
  --blue-hover: #1d4987;
  --link-light: #8ab4f8;
  --rule: #d6d8dd;
  --dark-rule: #696d75;
  --gutter: clamp(24px, 4.5vw, 64px);
  --radius: 14px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: 'Segoe UI Variable', 'Segoe UI', -apple-system, BlinkMacSystemFont, system-ui, sans-serif; font-size: 19px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
::selection { color: #fff; background: var(--blue); }
a { color: var(--blue); text-underline-offset: .28em; text-decoration-thickness: 1px; transition: color 160ms ease, background-color 160ms ease; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible { outline: 3px solid var(--blue); outline-offset: 6px; border-radius: 2px; }
.dark a:focus-visible { outline-color: var(--link-light); }
a:active { opacity: .8; }
.wrap { width: min(100%, 1408px); margin-inline: auto; padding-inline: var(--gutter); }
p { margin: 0 0 24px; color: var(--muted); text-wrap: pretty; }
h1,h2,h3 { margin: 0; text-wrap: balance; }
h1 { font-size: clamp(96px, 8.6vw, 124px); font-weight: 620; letter-spacing: -.068em; line-height: .98; }
h1 span { display: block; }
h2 { max-width: 23ch; font-size: clamp(44px, 4.1vw, 60px); font-weight: 560; letter-spacing: -.047em; line-height: 1.1; }
h3 { font-size: 28px; font-weight: 590; letter-spacing: -.03em; line-height: 1.2; }
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 80px; padding-block: 16px; }
.identity { display: inline-flex; align-items: center; min-height: 44px; color: var(--ink); font: 700 24px/1.2 Arial,Helvetica,sans-serif; letter-spacing: -1px; white-space: nowrap; text-decoration: none; }
.site-header nav { display: flex; flex-wrap: wrap; align-items: center; gap: 32px; }
.site-header nav a { position: relative; display: flex; align-items: center; min-height: 44px; color: var(--ink); font-size: 15px; font-weight: 500; text-decoration: none; }
.site-header nav a::after { position: absolute; bottom: 7px; left: 0; right: 0; height: 1px; background: currentColor; content: ''; transform: scaleX(0); transform-origin: left; transition: transform 220ms var(--ease); }
.site-header nav a:hover::after,.site-header nav a:focus-visible::after { transform: scaleX(1); }
.skip { position: absolute; top: -100px; left: 24px; z-index: 5; padding: 12px 20px; background: var(--ink); color: var(--light); }
.skip:focus { top: 12px; }
main:focus { outline: none; }
.hero { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: center; gap: 72px; padding-top: 24px; padding-bottom: 96px; }
.hero-copy { padding-block: 8px; }
.eyebrow { margin: 0 0 22px; font-size: 15px; font-weight: 600; letter-spacing: .01em; line-height: 1.4; color: var(--ink); }
.hero .eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: 12px; margin-bottom: 20px; }
.statement { margin: 24px 0; font-size: clamp(29px,2.65vw,38px); font-weight: 550; letter-spacing: -.04em; line-height: 1.16; color: var(--ink); }
.statement span { display: block; }
.intro { font-size: 18px; line-height: 1.65; max-width: 54ch; }
.intro p:last-child { margin-bottom: 0; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 52px; padding: 13px 24px; font-size: 16px; font-weight: 550; white-space: nowrap; }
.primary { background: var(--blue); color: #fff; border-radius: 100px; text-decoration: none; }
.primary:hover { background: var(--blue-hover); }
.primary span,.contact-links span { display: inline-block; transition: transform 220ms var(--ease); }
.primary:hover span,.contact-links a:hover span { transform: translate(2px,-2px); }
.secondary { padding-inline: 0; }
.photo { margin: 0; min-width: 0; overflow: hidden; border-radius: var(--radius); background: #e5e6e9; }
.photo picture,.photo img { display: block; width: 100%; height: 100%; }
.photo img { object-fit: cover; }
.photo-a01 { aspect-ratio: 4/5; }
.photo-a01 img { object-position: center; }
.section { padding-block: 112px; }
.section-heading { margin-bottom: 56px; }
.story { border-top: 1px solid var(--rule); }
.story h2 { max-width: 22ch; }
.story-layout { display: grid; grid-template-columns: minmax(0,5fr) minmax(0,6fr); gap: clamp(48px,6.8vw,96px); align-items: start; }
.story-prose { grid-column: 2; grid-row: 1; max-width: 61ch; }
.story-layout .photo { grid-column: 1; grid-row: 1; aspect-ratio: 4/3; margin-top: 7px; }
.credentials { border-top: 1px solid var(--rule); padding-top: 24px; margin: 32px 0 0; font-size: 15px; line-height: 1.7; }
.dark { background: var(--graphite); color: var(--light); }
.dark p { color: var(--muted-light); }
.dark .eyebrow { color: var(--muted-light); }
.dark a { color: var(--link-light); }
.approach h2 { max-width: 23ch; }
.approach-layout { display: grid; grid-template-columns: minmax(0,4fr) minmax(0,7fr); gap: clamp(48px,6.8vw,96px); margin-top: 64px; }
.approach-intro { max-width: 42ch; font-size: 18px; }
.sequence { margin: 0; }
.sequence ol { margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.sequence li { position: relative; counter-increment: steps; padding: 25px 0 27px 64px; border-top: 1px solid var(--dark-rule); }
.sequence li:first-child { padding-top: 0; border-top: 0; }
.sequence li::before { content: counter(steps,decimal-leading-zero); position: absolute; left: 0; top: 23px; font-size: 18px; line-height: 1.5; font-weight: 400; font-variant-numeric: tabular-nums; color: var(--muted-light); }
.sequence li:first-child::before { top: 0; }
.sequence h3 { font-size: 23px; line-height: 1.3; letter-spacing: -.02em; margin-bottom: 10px; }
.sequence p { font-size: 18px; line-height: 1.65; margin: 0; }
.sequence figcaption { border-top: 1px solid var(--dark-rule); padding-top: 24px; font-size: 14px; color: var(--muted-light); }
.pale { background: var(--pale); }
.white { background: #fff; }
.photo-a07 { aspect-ratio: 2/1; }
.photo-a07 img { object-position: 50% 25%; }
.theme-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 44px; margin-top: 48px; }
.theme-grid article { padding-top: 20px; border-top: 1px solid var(--rule); }
.theme-grid h3 { max-width: 16ch; margin-bottom: 20px; font-size: 27px; }
.theme-grid p { margin-bottom: 0; font-size: 18px; line-height: 1.65; }
.work h2 { max-width: 26ch; }
.work .photo { aspect-ratio: 2/1; }
.work .photo img { object-position: center top; }
.work-prose { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); column-gap: 96px; margin-top: 48px; }
.work-prose p:first-child { grid-column: 1; grid-row: 1/3; font-size: 24px; line-height: 1.45; letter-spacing: -.02em; color: var(--ink); max-width: 33ch; }
.work-prose p:not(:first-child) { grid-column: 2; }
.work-prose p:last-child { margin-bottom: 0; }
.supporting { padding-top: 24px; border-top: 1px solid var(--rule); margin: 36px 0 0; font-size: 14px; letter-spacing: .01em; }
.contact { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 0 96px; }
.contact h2 { max-width: 13ch; font-size: clamp(48px,4.8vw,68px); line-height: 1.08; }
.contact-body { padding-top: 4px; }
.contact-links { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.contact-links a { display: flex; justify-content: space-between; align-items: center; gap: 24px; min-height: 60px; border-top: 1px solid var(--dark-rule); padding: 14px 0; font-size: 19px; overflow-wrap: anywhere; }
.values { grid-column: 1/-1; max-width: none; margin: 72px 0 0; padding-top: 28px; border-top: 1px solid var(--dark-rule); font-size: 15px; }
.not-found { font-size: 56px; margin-bottom: 24px; }
@media (min-width: 1100px) and (max-width: 1279px) {
  .hero { gap: 48px; }
  h1 { font-size: 98px; }
  .intro { font-size: 18px; }
  .statement { font-size: 30px; }
  .actions { gap: 20px; }
}
@media (max-width: 1099px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 32px; padding-bottom: 80px; }
  .hero-copy { max-width: 720px; }
  h1 { font-size: clamp(72px,12vw,110px); }
  .hero .photo { width: 100%; max-width: 720px; aspect-ratio: 4/5; }
  .intro { max-width: 60ch; }
  .section { padding-block: 80px; }
  .story-layout { grid-template-columns: 1fr; gap: 40px; }
  .story-prose { grid-column: 1; grid-row: 1; max-width: 62ch; }
  .story-layout .photo { grid-column: 1; grid-row: 2; margin-top: 0; aspect-ratio: 4/3; }
  .approach-layout { grid-template-columns: 1fr; gap: 32px; margin-top: 40px; }
  .approach-intro { max-width: 62ch; }
  .theme-grid { grid-template-columns: 1fr; gap: 32px; }
  .theme-grid h3 { max-width: none; }
  .theme-grid p { max-width: 62ch; }
  .work-prose { column-gap: 48px; }
  .contact { grid-template-columns: 1fr; gap: 32px; }
  .contact h2 { max-width: 18ch; }
  .contact-body { max-width: 62ch; }
  .values { margin-top: 24px; }
}
@media (max-width: 699px) {
  :root { --gutter: 24px; }
  body { font-size: 17px; line-height: 1.65; }
  .site-header { flex-direction: column; align-items: flex-start; gap: 4px; padding-block: 16px 8px; }
  .site-header nav { gap: 0 22px; }
  .site-header nav a { font-size: 14px; }
  .hero { padding-top: 32px; padding-bottom: 64px; gap: 36px; }
  .hero-copy { padding: 0; }
  h1 { font-size: clamp(56px,17vw,66px); letter-spacing: -.06em; }
  .hero .eyebrow { margin-bottom: 16px; }
  .statement { margin-block: 24px; font-size: 28px; line-height: 1.16; }
  .intro { font-size: 17px; }
  .actions { margin-top: 28px; gap: 12px 24px; }
  .button { padding-inline: 20px; font-size: 15px; gap: 20px; }
  .secondary { padding-inline: 0; }
  .section { padding-block: 64px; }
  .section-heading { margin-bottom: 32px; }
  .eyebrow { font-size: 14px; margin-bottom: 18px; }
  h2 { font-size: 34px; line-height: 1.12; }
  .story-layout { gap: 32px; }
  .credentials { font-size: 14px; margin-top: 28px; }
  .approach-layout { gap: 20px; margin-top: 32px; }
  .approach-intro,.sequence p { font-size: 17px; }
  .sequence li { padding-left: 46px; padding-block: 24px; }
  .sequence h3 { font-size: 22px; }
  .sequence li::before { font-size: 16px; }
  .photo-a07,.work .photo { aspect-ratio: 3/2; }
  .theme-grid { margin-top: 32px; gap: 28px; }
  .theme-grid h3 { font-size: 26px; margin-bottom: 16px; }
  .theme-grid p { font-size: 17px; }
  .work-prose { display: block; margin-top: 32px; }
  .work-prose p:first-child { font-size: 22px; line-height: 1.5; margin-bottom: 28px; }
  .supporting { margin-top: 28px; line-height: 1.8; }
  .contact { gap: 32px; }
  .contact h2 { font-size: 42px; max-width: 14ch; }
  .contact-links { margin-top: 32px; }
  .contact-links a { font-size: 17px; }
  .values { font-size: 14px; margin-top: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .primary:hover span,.contact-links a:hover span { transform: none; }
}

