:root {
      --scroll-progress: 0;
      --black: #0a0a08;
      --black-soft: #14130f;
      --beige: #e8dfd0;
      --beige-light: #f4eee5;
      --paper: #faf7f1;
      --gold: #b99658;
      --gold-bright: #d3b06f;
      --ink: #171612;
      --muted-dark: #6b655c;
      --muted-light: #b9b1a5;
      --rule-dark: rgba(23,22,18,.17);
      --rule-light: rgba(232,223,208,.2);
      --serif: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, serif;
      --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
      --content: 1320px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; background: var(--black); }
    body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.65 var(--sans); text-rendering: optimizeLegibility; }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button, input, textarea, select { font: inherit; }
    ::selection { background: var(--gold); color: var(--black); }
    .skip-link { position: fixed; z-index: 200; left: 14px; top: -100px; padding: 10px 14px; background: var(--gold); color: var(--black); }
    .skip-link:focus { top: 14px; }
    .shell { min-height: 100vh; overflow-x: clip; padding-top: 104px; }
    .container { width: min(var(--content), calc(100% - 96px)); margin: 0 auto; }
    .site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: 104px; background: rgba(10,10,8,.97); color: var(--beige); border-bottom: 1px solid var(--rule-light); backdrop-filter: blur(14px); }
    .header-inner { height: 100%; display: grid; grid-template-columns: 300px 1fr auto; align-items: center; gap: 36px; }
    .brand { display: inline-flex; align-items: center; gap: 16px; width: fit-content; }
    .brand-mark { width: 46px; height: 46px; border: 1px solid var(--gold); display: grid; place-items: center; color: var(--gold-bright); font: 20px/1 var(--serif); letter-spacing: -.08em; }
    .brand-name { display: grid; gap: 1px; line-height: 1; }
    .brand-name small { color: var(--gold-bright); font-size: 9px; letter-spacing: .26em; text-transform: uppercase; }
    .brand-name strong { font: 400 21px/1 var(--serif); letter-spacing: .08em; }
    .primary-nav { display: flex; align-items: center; justify-content: center; gap: 26px; }
    .primary-nav a { color: rgba(244,238,229,.72); font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; transition: color .2s ease; }
    .primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--gold-bright); }
    .header-cta, .button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 20px; padding: 0 24px; border: 1px solid var(--gold); background: transparent; color: var(--beige-light); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: background .25s ease, color .25s ease, border-color .25s ease; }
    .header-cta:hover, .button:hover { background: var(--gold); color: var(--black); }
    .button::after, .text-link::after { content: ""; width: 19px; height: 1px; background: currentColor; box-shadow: 5px -3px 0 -.2px currentColor; transform: skewX(-38deg); }
    .mobile-nav { display: none; }
    main { opacity: 1; transform: none; }
    .eyebrow { display: block; color: var(--gold); font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
    .display { margin: 0; font: 400 clamp(64px,7vw,112px)/.88 var(--serif); letter-spacing: -.055em; }
    .section-title { margin: 0; font: 400 clamp(44px,5vw,76px)/.98 var(--serif); letter-spacing: -.045em; }
    .body-large { font: clamp(23px,2.2vw,34px)/1.3 var(--serif); letter-spacing: -.015em; }
    .fine-label { color: var(--muted-light); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
    .text-link { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; max-width: 100%; font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; overflow-wrap: anywhere; word-break: break-word; }
    .home-hero { min-height: calc(100svh - 104px); background: var(--black); color: var(--beige-light); }
    .home-hero-grid { min-height: calc(100svh - 104px); display: grid; grid-template-columns: minmax(0,1.04fr) minmax(430px,.96fr); }
    .hero-copy { min-height: 710px; display: flex; flex-direction: column; justify-content: center; padding: 84px 8vw 72px max(0px,calc((100vw - var(--content))/2)); }
    .hero-copy .eyebrow { margin-bottom: 36px; }
    .hero-copy .display { max-width: 790px; }
    .hero-copy > p { max-width: 590px; margin: 36px 0 38px; color: #c9c2b8; font-size: 17px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
    .hero-scroll-cue { display: flex; align-items: center; gap: 16px; margin-top: 54px; color: #8e887f; font-size: 8px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
    .hero-scroll-cue i { position: relative; width: 76px; height: 1px; overflow: hidden; background: rgba(232,223,208,.16); }
    .hero-scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--gold); transform: translateX(-100%); animation: scrollCue 2.6s cubic-bezier(.22,.61,.36,1) infinite; }
    .button.secondary { border-color: var(--rule-light); color: var(--beige); }
    .button.secondary:hover { border-color: var(--gold); background: transparent; color: var(--gold-bright); }
    .hero-visual { position: relative; min-height: 710px; background: var(--beige); overflow: hidden; }
    .hero-visual::before { content: "PT"; position: absolute; right: -2vw; top: 4%; color: rgba(10,10,8,.055); font: clamp(210px,27vw,480px)/.8 var(--serif); letter-spacing: -.12em; }
    .portrait-frame { position: absolute; inset: 8% 7% 0 8%; border: 1px solid rgba(10,10,8,.2); display: flex; align-items: flex-end; justify-content: center; transform: translate3d(0,var(--hero-shift,0),0); will-change: transform; }
    .portrait-frame::before { content: ""; position: absolute; inset: 20px; border: 1px solid rgba(185,150,88,.55); }
    .portrait-frame img {
      position: relative;
      z-index: 2;
      width: auto;
      height: auto;
      max-width: 92%;
      max-height: 92%;
      aspect-ratio: auto;
      object-fit: contain;
      object-position: center bottom;
      flex: 0 0 auto;
      filter: saturate(.82) contrast(1.04);
    }
    .portrait-caption { position: absolute; z-index: 3; right: 7%; bottom: 5%; width: 210px; padding: 18px 20px; background: var(--black); color: var(--beige); border-left: 2px solid var(--gold); }
    .portrait-caption span { display: block; font-size: 9px; letter-spacing: .14em; line-height: 1.8; text-transform: uppercase; }
    .credential-strip { background: var(--black-soft); color: var(--beige); border-block: 1px solid var(--rule-light); }
    .credential-grid { min-height: 92px; display: grid; grid-template-columns: repeat(3,1fr); }
    .credential-grid span { display: grid; place-items: center; padding: 20px; border-right: 1px solid var(--rule-light); color: #c9c2b8; font-size: 10px; letter-spacing: .17em; text-align: center; text-transform: uppercase; }
    .credential-grid span:first-child { border-left: 1px solid var(--rule-light); }
    .section { padding: 128px 0; }
    .section.beige { background: var(--beige); }
    .section.paper { background: var(--paper); }
    .section.dark { background: var(--black); color: var(--beige-light); }
    .section-head { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; margin-bottom: 72px; }
    .section-head .section-title { max-width: 760px; }
    .section-head p { max-width: 610px; margin: 0; color: var(--muted-dark); }
    .section.dark .section-head p { color: var(--muted-light); }
    .discipline-list, .step-list, .article-list { border-top: 1px solid var(--rule-dark); }
    .discipline-row { display: grid; grid-template-columns: 90px 1.15fr 1fr auto; gap: 28px; align-items: center; min-height: 142px; border-bottom: 1px solid var(--rule-dark); }
    .number { color: var(--gold); font: 21px/1 var(--serif); }
    .discipline-row h3, .step h3 { margin: 0; font-family: var(--serif); font-weight: 400; }
    .discipline-row h3 { font-size: clamp(28px,3vw,45px); letter-spacing: -.025em; }
    .discipline-row p { max-width: 430px; margin: 0; color: var(--muted-dark); font-size: 14px; }
    .row-arrow { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--rule-dark); color: var(--gold); }
    .row-arrow::before { content: ""; width: 17px; height: 1px; background: currentColor; box-shadow: 5px -3px 0 -.2px currentColor; transform: skewX(-38deg); }
    .manifesto { display: grid; grid-template-columns: 1fr 1fr; min-height: 690px; }
    .manifesto-image { background: linear-gradient(rgba(10,10,8,.25),rgba(10,10,8,.8)),url('assets/manifesto-pen.jpg') center calc(50% + var(--image-shift,0px))/cover no-repeat; will-change: background-position; }
    .office-image { background-image: linear-gradient(rgba(10,10,8,.15),rgba(10,10,8,.72)),url('assets/office-detail.jpg'); }
    .manifesto-copy { display: flex; flex-direction: column; justify-content: center; padding: 9vw; background: var(--black-soft); color: var(--beige); }
    .manifesto-copy blockquote { margin: 28px 0 36px; font: clamp(40px,4.5vw,72px)/.98 var(--serif); letter-spacing: -.045em; }
    .manifesto-copy p { max-width: 520px; color: var(--muted-light); }
    .approach-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
    .approach-intro { position: sticky; top: 136px; align-self: start; }
    .approach-intro .section-title { margin: 18px 0 28px; }
    .approach-intro p, .step p { color: var(--muted-dark); }
    .step { display: grid; grid-template-columns: 74px 1fr; gap: 26px; padding: 34px 0 42px; border-bottom: 1px solid var(--rule-dark); }
    .step h3 { margin-bottom: 12px; font-size: 34px; }
    .step p { max-width: 610px; margin: 0; }
    .insight-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--rule-light); border-left: 1px solid var(--rule-light); }
    .insight-card { min-height: 390px; display: flex; flex-direction: column; justify-content: space-between; padding: 38px; border-right: 1px solid var(--rule-light); border-bottom: 1px solid var(--rule-light); transition: background .2s ease; }
    .insight-card:hover { background: rgba(232,223,208,.06); }
    .insight-card h3 { margin: 30px 0 16px; font: 400 clamp(30px,3vw,44px)/1.03 var(--serif); letter-spacing: -.03em; }
    .insight-card p { color: var(--muted-light); font-size: 14px; }
    .insight-card .text-link { color: var(--gold-bright); }
    .cta-band { background: var(--gold); color: var(--black); }
    .cta-band .container { min-height: 300px; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
    .cta-band h2 { max-width: 800px; margin: 10px 0 0; font: 400 clamp(44px,5vw,75px)/.96 var(--serif); letter-spacing: -.045em; }
    .cta-band .button { border-color: var(--black); color: var(--black); }
    .cta-band .button:hover { background: var(--black); color: var(--beige); }
    .page-hero { padding: 120px 0 100px; background: var(--black); color: var(--beige-light); border-bottom: 1px solid var(--rule-light); }
    .page-index { margin-bottom: 70px; color: var(--muted-light); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
    .page-hero-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: end; }
    .page-hero .display { font-size: clamp(60px,7vw,106px); }
    .page-hero .intro { max-width: 550px; margin: 0 0 4px; color: #c8c1b6; font: clamp(21px,2vw,30px)/1.4 var(--serif); }
    .editorial-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
    .editorial-aside { align-self: start; }
    .editorial-aside .eyebrow { margin-bottom: 20px; }
    .editorial-aside h2 { margin: 0; font: 400 clamp(40px,4vw,63px)/1 var(--serif); letter-spacing: -.035em; }
    .editorial-body { max-width: 780px; }
    .editorial-body > p:first-child { margin-top: 0; font: clamp(24px,2.5vw,38px)/1.35 var(--serif); }
    .editorial-body p { color: #49453e; }
    .profile-portrait { width: 100%; height: auto; object-fit: contain; background: var(--beige); border: 1px solid var(--rule-dark); }
    .fact-grid { margin-top: 54px; border-top: 1px solid var(--rule-dark); }
    .fact { display: grid; grid-template-columns: 180px 1fr; gap: 30px; padding: 24px 0; border-bottom: 1px solid var(--rule-dark); }
    .fact strong { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
    .fact span { color: var(--muted-dark); }
    .service-stack { border-top: 1px solid var(--rule-light); }
    .service-block { display: grid; grid-template-columns: 90px 1fr 1fr; gap: 40px; padding: 58px 0; border-bottom: 1px solid var(--rule-light); }
    .service-block h2 { margin: 0; font: 400 clamp(34px,4vw,56px)/1 var(--serif); letter-spacing: -.035em; }
    .service-block p { margin: 0; color: var(--muted-light); }
    .article-item { display: grid; grid-template-columns: 180px 1fr 180px; gap: 40px; padding: 44px 0; border-bottom: 1px solid var(--rule-dark); }
    .article-item .meta { color: var(--gold); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
    .article-item h2 { margin: 0; font: 400 clamp(31px,3.5vw,50px)/1.05 var(--serif); letter-spacing: -.03em; }
    .article-item p { margin: 12px 0 0; color: var(--muted-dark); }
    .article-item .status { color: var(--muted-dark); font-size: 10px; letter-spacing: .12em; text-align: right; text-transform: uppercase; }
    .contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 110px; }
    .contact-details h2 { margin: 18px 0 26px; font: 400 clamp(43px,4.5vw,70px)/.98 var(--serif); letter-spacing: -.04em; }
    .contact-details > p { color: var(--muted-dark); }
    .contact-lines { margin-top: 46px; border-top: 1px solid var(--rule-dark); }
    .contact-line { display: grid; grid-template-columns: 115px minmax(0,1fr); gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--rule-dark); }
    .contact-line strong { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
    .contact-line span { color: var(--muted-dark); }
    .contact-line a.text-link, .contact-line span { min-width: 0; }
    .contact-actions { display: grid; gap: 26px; align-content: start; }
    .contact-actions .contact-lines { margin-top: 0; }
    .contact-actions .button { width: fit-content; background: var(--black); color: var(--beige); }
    .form-note { margin: 0; color: var(--muted-dark); font-size: 12px; }
    .practice-split { display: grid; gap: 26px; }
    .practice-card { padding: 32px; border: 1px solid var(--rule-dark); background: var(--paper); }
    .practice-card h3 { margin: 0 0 8px; font: 400 26px/1.1 var(--serif); letter-spacing: -.02em; }
    .practice-card > p { margin: 0; color: var(--muted-dark); font-size: 14px; }
    .practice-card .contact-lines { margin-top: 26px; }
    .practice-card .button { margin-top: 22px; width: fit-content; background: var(--black); color: var(--beige); }
    .site-footer { padding: 86px 0 28px; background: var(--black); color: var(--beige); }
    .footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr .8fr; gap: 70px; padding-bottom: 70px; }
    .footer-intro p { max-width: 360px; margin: 28px 0 0; color: var(--muted-light); font-size: 13px; }
    .footer-col { display: grid; align-content: start; gap: 13px; }
    .footer-col h3 { margin: 0 0 12px; color: var(--gold-bright); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
    .footer-col a, .footer-col p { margin: 0; color: var(--muted-light); font-size: 12px; }
    .footer-col a:hover { color: var(--beige-light); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-top: 26px; border-top: 1px solid var(--rule-light); color: #7f7a72; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
    .footer-legal { display: flex; gap: 24px; }
    .scroll-progress { position: fixed; z-index: 60; right: 18px; top: 50%; display: grid; justify-items: center; gap: 12px; color: var(--gold); transform: translateY(-50%); pointer-events: none; }
    .scroll-progress-label { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 7px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
    .scroll-progress-track { position: relative; width: 1px; height: 84px; overflow: hidden; background: rgba(185,150,88,.24); }
    .scroll-progress-track i { position: absolute; inset: 0; background: var(--gold); transform: scaleY(var(--scroll-progress)); transform-origin: top; }
    .motion-ready .motion-reveal { opacity: 0; transform: translate3d(0,26px,0); transition: opacity .72s cubic-bezier(.22,.61,.36,1), transform .86s cubic-bezier(.22,.61,.36,1); transition-delay: calc(var(--reveal-order,0)*55ms); }
    .motion-ready .motion-reveal.is-visible { opacity: 1; transform: none; }
    @keyframes scrollCue { 0% { transform: translateX(-100%); } 45%,55% { transform: translateX(0); } 100% { transform: translateX(100%); } }
    @media (max-width: 1120px) {
      .container { width: min(100% - 56px,var(--content)); }
      .shell { padding-top: 88px; }
      .site-header { height: 88px; }
      .header-inner { grid-template-columns: 1fr auto; }
      .primary-nav, .header-cta { display: none; }
      .mobile-nav { display: block; position: relative; }
      .mobile-nav summary { list-style: none; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--rule-light); cursor: pointer; }
      .mobile-nav summary::-webkit-details-marker { display: none; }
      .menu-lines, .menu-lines::before, .menu-lines::after { width: 20px; height: 1px; background: var(--beige); display: block; content: ""; }
      .menu-lines { position: relative; }
      .menu-lines::before { position: absolute; top: -6px; }
      .menu-lines::after { position: absolute; top: 6px; }
      .mobile-panel { position: absolute; right: 0; top: 56px; width: min(330px,calc(100vw - 32px)); padding: 28px; background: var(--black-soft); border: 1px solid var(--rule-light); display: grid; gap: 18px; box-shadow: 0 25px 70px rgba(0,0,0,.35); }
      .mobile-panel a { color: var(--beige); font: 25px/1.2 var(--serif); }
      .home-hero-grid { grid-template-columns: 1fr 44%; }
      .hero-copy { padding-left: 28px; }
      .section-head, .approach-grid, .editorial-grid, .page-hero-grid, .contact-grid { gap: 60px; }
      .discipline-row { grid-template-columns: 60px 1fr 1fr auto; }
      .footer-grid { grid-template-columns: 1.3fr repeat(3,1fr); gap: 32px; }
    }
    @media (max-width: 820px) {
      .container { width: min(100% - 36px,var(--content)); }
      .home-hero-grid { grid-template-columns: 1fr; }
      .hero-copy { min-height: auto; padding: 92px 18px 76px; }
      .hero-copy .display { font-size: clamp(56px,15vw,82px); }
      .hero-visual { min-height: 620px; }
      .portrait-frame { inset: 7% 7% 0; }
      .portrait-caption { right: 7%; bottom: 4%; }
      .credential-grid { grid-template-columns: 1fr; }
      .credential-grid span, .credential-grid span:first-child { min-height: 66px; border-left: 1px solid var(--rule-light); border-bottom: 1px solid var(--rule-light); }
      .section { padding: 90px 0; }
      .section-head, .approach-grid, .editorial-grid, .page-hero-grid, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
      .section-head { margin-bottom: 50px; }
      .discipline-row { grid-template-columns: 48px 1fr auto; gap: 18px; padding: 30px 0; }
      .discipline-row p { grid-column: 2/-1; }
      .manifesto { grid-template-columns: 1fr; }
      .manifesto-image { min-height: 430px; }
      .manifesto-copy { padding: 82px 28px; }
      .approach-intro { position: sticky; top: 88px; z-index: 3; margin: 0 -18px; padding: 22px 18px 24px; background: var(--paper); border-bottom: 1px solid var(--rule-dark); }
      .approach-intro .section-title { font-size: 38px; margin: 12px 0 10px; }
      .approach-intro p { margin: 0; font-size: 13px; }
      .insight-grid { grid-template-columns: 1fr; }
      .insight-card { min-height: 320px; }
      .cta-band .container { grid-template-columns: 1fr; padding-block: 70px; }
      .page-hero { padding: 90px 0 75px; }
      .page-index { margin-bottom: 48px; }
      .service-block { grid-template-columns: 54px 1fr; gap: 22px; }
      .service-block p { grid-column: 2; }
      .article-item { grid-template-columns: 1fr; gap: 14px; }
      .article-item .status { text-align: left; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px 28px; }
      .footer-intro { grid-column: 1/-1; }
      .footer-bottom { align-items: flex-start; flex-direction: column; }
      .scroll-progress { display: none; }
      .portrait-frame, .manifesto-image { will-change: auto; }
    }
    @media (max-width: 480px) {
      .shell { padding-top: 78px; }
      .site-header { height: 78px; }
      .brand-mark { width: 40px; height: 40px; }
      .brand-name small { font-size: 8px; }
      .brand-name strong { font-size: 17px; }
      .hero-copy { padding-top: 72px; }
      .hero-copy > p { font-size: 15px; }
      .hero-actions .button { width: 100%; }
      .hero-visual { min-height: 500px; }
      .portrait-frame { inset: 7% 3% 0; }
      .portrait-caption { width: 176px; right: 3%; }
      .section { padding: 72px 0; }
      .display { font-size: 52px; }
      .section-title { font-size: 42px; }
      .discipline-row { grid-template-columns: 35px 1fr; }
      .row-arrow { display: none; }
      .discipline-row p { grid-column: 2; }
      .step { grid-template-columns: 42px 1fr; }
      .fact, .contact-line { grid-template-columns: 1fr; gap: 8px; }
      .practice-card { padding: 26px 22px; }
      .service-block { grid-template-columns: 38px 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-intro { grid-column: auto; }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
      .scroll-progress { display: none; }
      .portrait-frame { transform: none !important; }
      .manifesto-image { background-position: center !important; }
    }
