@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --paper: #f3f1ea;
    --paper-2: #e8e6dd;
    --ink: #19282b;
    --ink-soft: #44575a;
    --blue: #315f68;
    --blue-light: #99c8c1;
    --orange: #cc7445;
    --orange-deep: #a5562c;
    --orange-soft: #fbcda8;
    --line: #c9cec7;
    --white: #fbfaf6;
    --mono: 'Courier New', Courier, monospace;
    --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-tap-highlight-color: transparent; }
::selection { background: var(--blue); color: var(--white); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 17px; line-height: 1.62; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 10px 14px; transform: translateY(-180%); background: var(--ink); color: var(--white); font: 700 11px var(--mono); text-transform: uppercase; transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); outline: 3px solid var(--orange); outline-offset: 3px; }
.noscript-notice { margin: 0; padding: 12px 18px; background: var(--ink); color: var(--white); font: 12px/1.4 var(--mono); text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--orange); }
abbr[title] { text-decoration: underline dotted; text-underline-offset: 3px; cursor: help; }
.container { width: min(1160px, calc(100% - 64px)); margin: 0 auto; }

.site-header { position: sticky; top: 0; z-index: 10; background: rgba(243, 241, 234, .92); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; }
.wordmark { display: inline-flex; align-items: center; gap: 11px; min-height: 44px; padding: 6px 0; font-size: 14px; font-weight: 700; letter-spacing: -.03em; }
.wordmark-initials { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--blue); color: var(--blue); font: 11px var(--mono); letter-spacing: -.1em; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.wordmark:hover .wordmark-initials { background: var(--blue); border-color: var(--blue); color: var(--white); }
.site-nav { display: flex; gap: 28px; color: var(--ink-soft); font: 10px var(--mono); text-transform: uppercase; }
.site-nav a { min-height: 40px; display: inline-flex; align-items: center; padding: 8px 0; border-bottom: 1px solid transparent; transition: color .2s ease, border-color .2s ease; }
.site-nav a:hover, .site-nav a.active { color: var(--ink); border-color: var(--orange); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--blue); font: 10px var(--mono); text-transform: uppercase; cursor: pointer; transition: color .2s ease; }
.menu-toggle:hover { color: var(--ink); }

.hero { min-height: 620px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 96px; align-items: center; padding-top: 78px; padding-bottom: 78px; }
.eyebrow, .section-label, .signal-inner, .chart-top, .chart-readout, .work-card-head, .tag-row, .profile-links, .form-heading, .site-footer { font-family: var(--mono); }
.eyebrow { display: flex; align-items: center; gap: 8px; margin: 0; color: var(--blue); font: 10px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(204, 116, 69, .13); }
@keyframes statusPulse { 0% { box-shadow: 0 0 0 4px rgba(204, 116, 69, .13); } 70% { box-shadow: 0 0 0 10px rgba(204, 116, 69, 0); } 100% { box-shadow: 0 0 0 4px rgba(204, 116, 69, 0); } }
@media (prefers-reduced-motion: no-preference) { .status-dot { animation: statusPulse 2.6s ease-out infinite; } }
.hero h1 { max-width: 710px; margin: 25px 0 26px; color: var(--ink); font-size: clamp(52px, 6.4vw, 78px); font-weight: 400; line-height: .96; letter-spacing: -.085em; overflow-wrap: anywhere; text-wrap: balance; }
.hero h1 em { white-space: normal; }
.hero h1 em, h2 em, h3 em { color: var(--blue); font-style: italic; }
.hero-lead { max-width: 430px; margin: 0; color: var(--ink-soft); font-size: 20px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 36px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 48px; padding: 0 18px; border: 1px solid transparent; cursor: pointer; font: 700 11px var(--mono); letter-spacing: .045em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease; }
@media (hover: hover) { .button:hover { transform: translateY(-2px); } }
.button-solid { background: var(--ink); color: var(--white); }
.button-solid:hover { background: var(--blue); color: var(--white); }
.quiet-link, .card-link { display: inline-flex; align-items: center; min-height: 44px; color: var(--blue); font: 11px var(--mono); text-transform: uppercase; }
.quiet-link:focus-visible, .card-link:focus-visible, .site-nav a:focus-visible, .profile-links a:focus-visible, .contact-email:focus-visible, .button:focus-visible, .menu-toggle:focus-visible, .wordmark:focus-visible, .certificate-list a:focus-visible, .contact-card-links a:focus-visible, .footer-inner a:focus-visible, .skip-link:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }
.quiet-link span, .card-link span, .contact-email span, .profile-links span { padding-left: 6px; color: inherit; font-size: 15px; display: inline-block; transition: transform .2s ease; }
.quiet-link:hover span, .card-link:hover span, .contact-email:hover span, .profile-links a:hover span, .button:hover span { transform: translateX(3px); }
.quiet-link:hover, .card-link:hover { color: var(--orange); }

.hero-visual { align-self: center; }
.chart-card { padding: 20px; background: var(--ink); color: var(--white); box-shadow: 13px 13px 0 var(--blue-light); }
.chart-top { display: flex; justify-content: space-between; padding-bottom: 19px; border-bottom: 1px solid rgba(251, 250, 246, .2); color: var(--blue-light); font-size: 10px; letter-spacing: .08em; }
.chart-title { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 0 9px; }
.chart-title strong { font-size: 22px; font-weight: 400; letter-spacing: -.05em; }
.chart-title span { color: var(--blue-light); font: 10px var(--mono); }
.wave-chart { display: block; width: 100%; height: auto; }
.chart-grid path { fill: none; stroke: rgba(251, 250, 246, .12); stroke-width: 1; }
.chart-area { fill: url(#areaFill); }
.chart-line { fill: none; stroke-width: 2; }
.chart-line-main { stroke: var(--blue-light); }
.chart-line-secondary { stroke: var(--orange); stroke-width: 1.2; stroke-dasharray: 5 5; }
.chart-point { fill: var(--orange); }
.chart-marker { stroke: rgba(245, 250, 246, .35); stroke-width: 1; stroke-dasharray: 3 4; }
.wave-chart text { fill: #b8cbc6; font: 10px var(--mono); letter-spacing: .02em; }
.chart-readout { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 10px; border-top: 1px solid rgba(251, 250, 246, .2); }
.chart-readout div { padding: 13px 7px 4px; border-right: 1px solid rgba(251, 250, 246, .2); }
.chart-readout div:last-child { border: 0; }
.chart-readout span { display: block; color: var(--blue-light); font-size: 9px; }
.chart-readout b { display: block; margin-top: 3px; color: var(--white); font-size: 10px; font-weight: 400; }
.visual-caption { margin: 17px 0 0 14px; color: #526568; font: italic 12px var(--mono); }

.signal-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.signal-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); padding: 15px 0; color: #4f6162; font-size: 9px; letter-spacing: .04em; text-transform: uppercase; }
.signal-inner span { padding: 0 18px; border-right: 1px solid var(--line); }
.signal-inner span:first-child { padding-left: 0; }
.signal-inner span:last-child { border: 0; }
.signal-inner b { display: block; margin-top: 5px; color: var(--ink); font-size: 10px; line-height: 1.25; font-weight: 400; }

.section { padding-top: 94px; padding-bottom: 110px; }
.practice-section { background: var(--paper); }
.section-label { padding-bottom: 17px; border-bottom: 1px solid var(--line); color: var(--orange-deep); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
h2 { margin: 0; color: var(--ink); font-size: clamp(46px, 6vw, 78px); font-weight: 400; line-height: .94; letter-spacing: -.08em; text-wrap: balance; }
.practice-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 105px; padding-top: 55px; }
.practice-copy { max-width: 440px; color: var(--ink-soft); }
.practice-copy p { margin: 0 0 20px; font-size: 17px; line-height: 1.7; }
.practice-copy p:first-child { color: var(--ink); font-size: 20px; line-height: 1.58; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 84px; border-top: 1px solid var(--line); }
.principles div { display: flex; flex-direction: column; gap: 24px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.principles span { color: var(--orange-deep); font: 11px var(--mono); }
.principles strong { max-width: 155px; color: var(--blue); font-size: 16px; font-weight: 400; line-height: 1.2; }

.work-section { background: var(--ink); color: var(--white); }
.work-section .section-label { border-color: rgba(251, 250, 246, .22); color: var(--blue-light); }
.work-section h2 { color: var(--white); }
.work-section h2 em, .work-card h3 em { color: var(--blue-light); }
.work-intro { display: flex; justify-content: space-between; align-items: end; gap: 40px; padding-top: 55px; margin-bottom: 54px; }
.work-intro > p { max-width: 360px; margin: 0 0 4px; color: #a7b7b5; font-size: 16px; line-height: 1.6; }
.work-grid { display: grid; grid-template-columns: 1.17fr .83fr; gap: 1px; background: rgba(251, 250, 246, .25); }
.work-card { position: relative; min-height: 440px; padding: 28px; background: #263d42; }
.work-card-feature { grid-row: span 2; min-height: 700px; display: flex; flex-direction: column; background: var(--blue); }
.work-card-light { background: #d8e4dd; color: var(--ink); }
.work-card-head { display: flex; justify-content: space-between; gap: 15px; color: var(--blue-light); font-size: 10px; line-height: 1.35; letter-spacing: .035em; text-transform: uppercase; }
.work-card-feature .work-card-head, .work-card-feature .tag-row span, .work-card-feature .flow-node small, .work-card-feature .chart-readout span { color: #c3dfdc; }
.work-card-light .work-card-head { color: var(--blue); }
.work-card h3 { margin: 58px 0 22px; color: var(--white); font-size: clamp(38px, 5vw, 67px); font-weight: 400; line-height: .9; letter-spacing: -.08em; text-wrap: balance; }
.work-card:not(.work-card-feature) h3 { margin-top: 75px; font-size: 42px; }
.work-card-light h3 { color: var(--ink); }
.work-card p { max-width: 520px; margin: 0; color: #ccd8d6; font-size: 16px; line-height: 1.68; }
.work-card p strong { color: var(--white); font-weight: 700; }
.work-card-light p { color: var(--ink-soft); }
.work-card-light p strong { color: var(--ink); }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 25px; }
.tag-row span { padding: 5px 7px; border: 1px solid rgba(153, 200, 193, .5); color: var(--blue-light); font-size: 9px; text-transform: uppercase; }
.work-card-light .tag-row span { border-color: var(--blue); color: var(--blue); }
.card-link { display: block; margin-top: auto; padding-top: 40px; color: var(--white); }
.flow-diagram { display: flex; align-items: center; justify-content: center; margin-top: 72px; padding: 29px 8px; border-top: 1px solid rgba(251, 250, 246, .2); border-bottom: 1px solid rgba(251, 250, 246, .2); }
.flow-node { min-width: 75px; padding: 13px 8px; border: 1px solid var(--blue-light); color: var(--white); text-align: center; font: 10px var(--mono); }
.flow-node small { color: var(--blue-light); font-size: 8px; }
.flow-node-alert { border-color: var(--orange); color: var(--orange-soft); }
.flow-node-alert small { color: var(--orange-soft); }
.flow-line { width: 35px; height: 1px; background: var(--orange); }
.mini-chart { display: flex; align-items: center; gap: 6px; height: 80px; margin-top: 55px; padding: 8px 0; border-top: 1px solid rgba(251, 250, 246, .2); border-bottom: 1px solid rgba(251, 250, 246, .2); }
.mini-chart span { flex: 1; background: var(--blue-light); }
.mini-chart span:nth-child(1) { height: 18%; }.mini-chart span:nth-child(2) { height: 36%; }.mini-chart span:nth-child(3) { height: 29%; }.mini-chart span:nth-child(4) { height: 54%; }.mini-chart span:nth-child(5) { height: 45%; }.mini-chart span:nth-child(6) { height: 78%; }.mini-chart span:nth-child(7) { height: 67%; }.mini-chart span:nth-child(8) { height: 88%; }
.accuracy { display: flex; align-items: center; gap: 9px; margin-top: 55px; color: var(--orange); }
.accuracy strong { font-size: 70px; font-weight: 400; line-height: .8; letter-spacing: -.08em; }
.accuracy span { color: var(--blue); font: 10px var(--mono); line-height: 1.2; }

.profile-section { background: var(--paper-2); }
.profile-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; padding-top: 56px; }
.profile-copy h2 { margin-bottom: 36px; }
.profile-copy > p:not(.section-label) { max-width: 470px; margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.68; }
.profile-links { display: flex; flex-wrap: wrap; gap: 17px; margin-top: 38px; font-size: 11px; text-transform: uppercase; }
.profile-links a { display: inline-flex; align-items: center; min-height: 44px; padding-bottom: 6px; border-bottom: 1px solid var(--line); }
.facts { border-top: 1px solid var(--line); }
.fact-row { display: grid; grid-template-columns: .7fr 1.3fr; gap: 22px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.fact-row span { color: var(--blue); font: 10px var(--mono); text-transform: uppercase; }
.fact-row b { color: var(--ink); overflow-wrap: anywhere; font: 13px/1.6 var(--mono); font-weight: 400; }
.certificate-list { display: grid; gap: 5px; min-width: 0; }
.certificate-list a { display: inline-flex; align-items: center; min-height: 44px; padding: 10px 0; color: var(--ink); font: 13px/1.35 var(--mono); text-decoration: underline; text-decoration-color: rgba(26, 78, 84, .35); text-underline-offset: 4px; }
.certificate-list a:hover { color: var(--blue); text-decoration-color: var(--orange); }
.certificate-list a span { padding-left: 4px; color: inherit; }
.certificate-list small { color: #546767; overflow-wrap: anywhere; font: 10px/1.45 var(--mono); }
.certificate-entry { display: grid; gap: 4px; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); }
.certificate-entry b { color: var(--ink); font: 13px/1.35 var(--mono); font-weight: 400; }

.contact-section { padding: 125px 0; background: var(--blue); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; }
.contact-section .section-label { border-color: rgba(251, 250, 246, .35); color: #c3dfdc; }
.contact-section h2 { margin-top: 42px; color: var(--white); }
.contact-section h2 em { color: var(--blue-light); }
.contact-copy > p:not(.section-label) { max-width: 430px; margin: 33px 0; color: #d6e1dd; font-size: 18px; line-height: 1.65; }
.contact-email { display: inline-flex; align-items: center; min-height: 44px; max-width: 100%; overflow-wrap: anywhere; padding: 8px 0; border-bottom: 1px solid var(--blue-light); color: var(--white); font: 14px var(--mono); }
.contact-email:hover { color: var(--orange-soft); border-color: var(--orange-soft); }
.contact-card { padding: 30px; background: var(--ink); }
.contact-card-label { margin: 0 0 15px; color: var(--blue-light); font: 10px var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.contact-card-copy { max-width: 390px; margin: 0; color: #d6e1dd; font-size: 17px; line-height: 1.65; }
.contact-card-links { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; margin-top: 25px; }
.contact-card-links a:not(.button) { display: inline-flex; align-items: center; min-height: 44px; color: var(--blue-light); font: 11px var(--mono); text-transform: uppercase; }
.contact-card-links a:not(.button):hover { color: var(--orange); }
.contact-card-links a span { padding-left: 6px; color: var(--orange); font-size: 15px; }
.site-footer { background: var(--ink); color: #7b8d8d; font-size: 10px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; }
.footer-inner a { color: var(--blue-light); padding: 6px 0; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }.delay-2 { transition-delay: .2s; }
html.no-js .reveal { opacity: 1; transform: none; }

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; gap: 65px; }
    .hero-visual { width: min(100%, 600px); justify-self: end; }
    .practice-grid, .profile-grid, .contact-grid { gap: 60px; }
    .work-grid { grid-template-columns: 1fr; }
    .work-card-feature { grid-row: auto; min-height: 570px; }
}

@media (max-width: 650px) {
    .container { width: min(100% - 36px, 560px); }
    .nav-wrap { min-height: 68px; }
    .js-enabled .menu-toggle { display: block; min-width: 44px; min-height: 44px; }
    .site-nav { position: absolute; top: 68px; left: 0; right: 0; display: grid; padding: 9px 18px 18px; background: var(--paper); border-bottom: 1px solid var(--line); }
    .js-enabled .site-nav { display: none; }
    .js-enabled .site-nav.open { display: grid; }
    .site-nav a { min-height: 44px; padding: 12px 0; border-bottom: 1px solid var(--line); }
    html { scroll-padding-top: 72px; }
    .hero { min-height: auto; padding-top: 64px; padding-bottom: 64px; }
    .hero h1 { font-size: clamp(52px, 14vw, 78px); letter-spacing: -.075em; }
    .hero h1 em { white-space: normal; }
    .hero-lead { font-size: 17px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
    .chart-card { padding: 14px; box-shadow: 8px 8px 0 var(--blue-light); }
    .signal-inner { grid-template-columns: 1fr; gap: 12px; padding: 14px 0; }
    .signal-inner b { overflow-wrap: anywhere; }
    .signal-inner span, .signal-inner span:first-child { padding: 0; border: 0; }
    .section { padding-top: 70px; padding-bottom: 80px; }
    .practice-grid, .profile-grid, .contact-grid { grid-template-columns: 1fr; gap: 42px; padding-top: 40px; }
    h2 { font-size: 50px; }
    .principles { grid-template-columns: 1fr; gap: 0; margin-top: 55px; }
    .principles div { gap: 12px; }
    .work-intro { align-items: flex-start; flex-direction: column; padding-top: 40px; margin-bottom: 38px; }
    .work-intro > p { max-width: 100%; font-size: 16px; }
    .work-card { min-height: 390px; padding: 21px; }
    .work-card-feature { min-height: 520px; }
    .work-card h3, .work-card:not(.work-card-feature) h3 { margin-top: 54px; font-size: 44px; }
    .flow-diagram { margin-top: 55px; }
    .flow-node { min-width: 62px; font-size: 8px; }.flow-line { width: 19px; }
    .fact-row { grid-template-columns: 1fr; gap: 8px; }
    .certificate-list { max-width: 100%; }
    .contact-section { padding: 85px 0; }
    .contact-section h2 { margin-top: 30px; }
    .contact-card { padding: 22px; }
    .contact-copy > p:not(.section-label) { font-size: 17px; }
    .footer-inner { align-items: flex-start; flex-direction: column; }
}

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

@media print {
    .site-header, .hero-actions, .signal-strip, .site-footer { display: none; }
    .reveal { opacity: 1 !important; transform: none !important; }
    body, .work-section, .profile-section, .contact-section { background: #fff; color: #000; }
    .contact-section { display: block; padding: 30px 0; }
    .contact-section h2, .contact-section h2 em, .contact-section .section-label, .contact-copy > p:not(.section-label), .contact-email, .contact-card, .contact-card-copy, .contact-card-links a:not(.button) { color: #000; }
    .contact-card { border: 1px solid #bbb; }
    .container { width: 100%; }
    .hero { min-height: auto; grid-template-columns: 1fr 1fr; padding: 30px 0; }
    .hero h1, h2, .work-card h3 { color: #000; }
    .work-card-feature, .work-card, .work-card-light { break-inside: avoid; }
}
