:root {
  --paper: #efede5;
  --paper-2: #e7e3d9;
  --ink: #181917;
  --muted: #62625d;
  --line: #d4d2ca;
  --red: #bf382c;
  --blue: #4355bc;
  --white: #faf8f2;
  --accent-on-dark: #f38d79;
  --max: 1440px;
  --pad: clamp(24px, 5.5vw, 80px);
  --space: clamp(76px, 8vw, 116px);
  --header-height: 88px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif; font-size: 1rem; line-height: 1.75; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: .25em; }
button, input, summary { font: inherit; }
button, a { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 6px; }
::selection { color: var(--white); background: var(--red); }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 100; padding: 12px 18px; background: var(--ink); color: var(--white); }
.skip-link:focus { top: 12px; }

/* The signature and the navigation share one consistent baseline. */
.site-header { position: sticky; top: 0; z-index: 30; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px; min-height: 88px; padding: 18px max(var(--pad), calc((100vw - 1280px) / 2)); background: rgb(239 237 229 / 96%); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.brand { display: inline-flex; width: max-content; text-decoration: none; }
.brand img { width: 84px; height: auto; }
.site-header nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 44px); }
.site-header nav a, .header-contact { position: relative; display: inline-flex; align-items: center; min-height: 44px; color: var(--ink); font-size: .875rem; font-weight: 500; letter-spacing: .015em; text-decoration: none; }
.site-header nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 5px; height: 1px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.site-header nav a:hover::after, .site-header nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-contact { justify-self: end; gap: 26px; border-bottom: 1px solid var(--line); }
.header-contact span { color: var(--red); font-size: 1.2rem; }
.header-contact:hover { color: var(--red); border-color: var(--red); }

/* An open record-sleeve composition, with a restrained live signal. */
.hero { position: relative; isolation: isolate; overflow: hidden; max-width: var(--max); min-height: min(640px, calc(100svh - 88px)); margin: 0 auto; padding: 44px var(--pad) 64px; }
.hero-copy { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); align-items: center; gap: 72px clamp(64px, 9vw, 130px); }
.eyebrow, .section-index, .hero-since { font-size: .75rem; font-weight: 500; letter-spacing: .095em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0; color: var(--muted); }
.eyebrow > span { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; background: var(--red); }
.hero-since { justify-self: end; color: var(--muted); }
.hero-logo { margin: 0; padding: 26px 0; }
.hero-logo img { width: 100%; max-width: 590px; height: auto; }
.hero-bottom { display: flex; flex-direction: column; align-items: flex-start; gap: 36px; padding: 26px 0; }
.manifesto { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.8vw, 3.5rem); font-weight: 400; line-height: 1.14; letter-spacing: -.04em; }
.manifesto em { color: var(--red); font-weight: 400; }
.round-link { display: inline-flex; align-items: center; gap: 28px; min-height: 52px; font-size: .875rem; text-decoration: none; }
.round-link > span { border-bottom: 1px solid var(--line); padding-block: 5px; transition: border-color .2s ease; }
.round-link b { display: grid; place-items: center; width: 50px; height: 50px; border: 1px solid var(--line); border-radius: 50%; color: var(--red); font-size: 1.45rem; font-weight: 400; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.round-link:hover > span { border-color: var(--red); }
.round-link:hover b { border-color: var(--red); background: var(--red); color: var(--white); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; }
.listen-link { display: inline-flex; align-items: center; gap: 14px; min-height: 48px; color: var(--muted); font-size: .875rem; text-decoration-color: var(--line); text-underline-offset: 6px; }
.listen-link span { color: var(--red); }
.listen-link:hover { color: var(--red); text-decoration-color: var(--red); }
.hero-stage { position: absolute; inset: 39% -12% -12% 28%; z-index: 0; pointer-events: none; mask-image: linear-gradient(180deg, transparent, #000 35%, #000 82%, transparent); }
#signal { width: 100%; height: 100%; display: block; opacity: .42; }
.ticker { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.ticker > div { display: flex; justify-content: space-between; flex-wrap: wrap; align-items: center; gap: 14px 22px; padding: 22px 0; border-block: 1px solid var(--line); color: var(--muted); font-size: .75rem; letter-spacing: .045em; }
.ticker i { color: var(--red); font-size: 5px; font-style: normal; }
.proof { max-width: var(--max); margin: 0 auto; padding: 36px var(--pad); display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); }
.proof > div { display: flex; flex-direction: column; justify-content: center; gap: 16px; min-width: 0; padding: 4px 32px; border-left: 1px solid var(--line); }
.proof > div:first-child { padding-left: 0; border: 0; }
.proof-intro > span, .proof-item span { font-size: .75rem; font-weight: 400; letter-spacing: .06em; color: var(--muted); }
.proof-intro > span { color: var(--red); }
.proof-intro p { margin: 0; font-size: 1.125rem; line-height: 1.5; letter-spacing: -.025em; }
.proof-item strong { font-size: clamp(2rem, 3.8vw, 3.5rem); font-weight: 400; line-height: 1; letter-spacing: -.065em; }

/* Type and space carry the rest of the page. */
.statement, .works, .practice, .profile, .contact { max-width: var(--max); margin: 0 auto; padding: var(--space) var(--pad); }
#works, #profile, #contact { scroll-margin-top: calc(-1 * var(--space)); }
.section-index { margin: 0 0 32px; color: var(--muted); }
.section-index::before { content: ""; display: inline-block; width: 18px; height: 1px; margin-right: 12px; vertical-align: middle; background: var(--red); }
.statement { padding-block: 60px 72px; border-bottom: 1px solid var(--line); }
.statement .section-index { margin-bottom: 24px; }
.statement-grid, .section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); align-items: end; gap: clamp(40px, 7vw, 100px); }
.statement h2, .section-heading h2, .practice > h2, .profile h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.6rem, 4.8vw, 4.7rem); font-weight: 400; line-height: 1.1; letter-spacing: -.045em; }
.statement h2 em { color: var(--red); font-weight: 400; }
.statement h2 { font-size: clamp(2rem, 3.35vw, 3.2rem); line-height: 1.2; }
.statement-grid p, .section-heading p { max-width: 34rem; margin: 0; padding-bottom: 4px; color: var(--muted); font-size: 1.0625rem; line-height: 1.9; }
.section-heading { margin-bottom: 48px; }
/* Artwork has its own format; credits sit on the paper beneath it. */
.featured-grid { display: grid; grid-template-columns: minmax(0, 1.14fr) minmax(0, 1fr); align-items: center; gap: 60px clamp(32px, 5vw, 72px); }
.feature { min-width: 0; }
.feature-visual { position: relative; isolation: isolate; display: flex; flex-direction: column; aspect-ratio: 16/11; overflow: hidden; padding: 28px; color: var(--white); background: var(--ink); text-decoration: none; }
.feature-visual::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgb(10 12 17 / 62%) 0%, rgb(10 12 17 / 0%) 26%, rgb(10 12 17 / 4%) 45%, rgb(10 12 17 / 96%) 100%); }
.feature-art { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 36%; transition: transform .7s cubic-bezier(.2,.65,.3,1); }
.feature-red .feature-visual { aspect-ratio: 1280/1410; }
.feature-paper .feature-visual { aspect-ratio: 680/800; }
.feature-red .feature-art { object-position: 50% 40%; }
.feature-blue .feature-art { object-position: 57% 50%; }
.feature-paper .feature-art { object-position: 50% 38%; }
.feature-visual:focus-visible { outline-offset: 6px; }
.feature-top { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 18px; font-size: .75rem; letter-spacing: .07em; }
.feature-open { display: inline-flex; align-items: center; gap: 12px; font-size: .8125rem; letter-spacing: .01em; }
.feature-open b { font-weight: 400; font-size: 1.35rem; transition: transform .25s ease; }
.feature-body { position: relative; z-index: 2; margin-top: auto; padding-top: 80px; }
.feature-body > p { margin: 0 0 12px; color: #e4e2de; font-size: .75rem; font-weight: 400; letter-spacing: .065em; }
.feature-body h3 { margin: 0; font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 500; line-height: 1.06; letter-spacing: -.045em; }
.feature-caption { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .75rem; letter-spacing: .035em; }
.feature-caption > div { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.feature-caption > span { flex-shrink: 0; font-variant-numeric: tabular-nums; }
@media (hover: hover) {
  .feature-visual:hover .feature-art { transform: scale(1.035); }
  .feature-visual:hover .feature-open b { transform: translate(3px, -3px); }
}
.artwork-note { margin: 24px 0 0; color: var(--muted); font-size: .75rem; line-height: 1.7; }
.archive { margin-top: 40px; border-block: 1px solid var(--line); }
.archive summary { display: grid; grid-template-columns: 1fr auto 24px; align-items: center; gap: 24px; min-height: 80px; list-style: none; font-size: 1rem; font-weight: 500; cursor: pointer; }
.archive summary::-webkit-details-marker { display: none; }
.archive summary b { color: var(--muted); font-size: .75rem; font-weight: 400; letter-spacing: .06em; }
.archive summary i { color: var(--red); font-size: 1.5rem; font-weight: 400; font-style: normal; transition: transform .2s; }
.archive[open] summary i { transform: rotate(45deg); }
.archive-list { border-top: 1px solid var(--line); }
.archive-list article { display: grid; grid-template-columns: 100px 1.3fr 1fr 70px; align-items: center; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.archive-list article:last-child { border: 0; }
.archive-list span, .archive-list b { color: var(--muted); font-size: .75rem; font-weight: 400; }
.archive-list h3 { margin: 0; font-size: 1rem; font-weight: 500; line-height: 1.6; }
.archive-list p { margin: 0; color: var(--muted); font-size: .875rem; }
.archive-list b { color: var(--red); }
.complete-index-link { display: grid; grid-template-columns: 1fr auto 30px; align-items: center; gap: 28px; padding: 30px 0; text-decoration: none; border-bottom: 1px solid var(--line); }
.complete-index-link span { font-size: clamp(1.25rem, 2.4vw, 2rem); font-weight: 400; letter-spacing: -.03em; line-height: 1.4; }
.complete-index-link b { color: var(--muted); font-size: .75rem; font-weight: 400; letter-spacing: .06em; }
.complete-index-link i { color: var(--red); font-size: 1.75rem; font-style: normal; }
.complete-index-link:hover { color: var(--red); }

.practice { color: var(--white); background: var(--ink); }
.practice .section-index { color: #bdbcba; }
.practice .section-index::before { background: var(--accent-on-dark); }
.practice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px; margin-top: 56px; }
.practice-grid article { display: flex; flex-direction: column; padding-top: 24px; border-top: 1px solid #4b4c48; }
.practice-grid span { margin-bottom: 36px; color: var(--accent-on-dark); font-size: .75rem; }
.practice-grid h3 { margin: 0 0 18px; font-size: clamp(1.45rem, 2.4vw, 2.25rem); font-weight: 400; line-height: 1.3; letter-spacing: -.035em; }
.practice-grid p { margin: 0; max-width: 32rem; color: #c6c5bf; font-size: 1rem; line-height: 1.85; }
.profile-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(48px, 7vw, 100px); }
.profile-lead { min-width: 0; }
.portrait { position: relative; margin: 0; aspect-ratio: 5/6; overflow: hidden; background: var(--ink); }
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 77% 48%; }
.portrait figcaption { position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; gap: 20px; padding: 36px 20px 16px; color: var(--white); background: linear-gradient(transparent, rgb(8 9 12 / 80%)); font-size: .75rem; letter-spacing: .05em; }
.profile h2 { margin-bottom: 32px; font-size: clamp(2rem, 3.5vw, 3.4rem); }
.profile-copy > p { margin: 0 0 1.5em; color: var(--muted); font-size: 1.0625rem; line-height: 1.9; }
.profile-copy > p:first-of-type { color: var(--ink); }
.profile-copy dl { margin: 36px 0; border-top: 1px solid var(--line); }
.profile-copy dl > div { display: grid; grid-template-columns: 110px minmax(0, 1fr); align-items: baseline; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.profile-copy dt { color: var(--muted); font-size: .875rem; }
.profile-copy dd { margin: 0; font-size: 1rem; }
.text-link { display: inline-block; padding: 10px 0; font-size: .875rem; text-underline-offset: 7px; }
.text-link span { margin-left: 24px; color: var(--red); }
.domestic { display: flex; justify-content: space-between; align-items: center; gap: 28px; max-width: var(--max); margin: 0 auto; padding: 32px var(--pad); border-top: 1px solid var(--line); }
.domestic > span { color: var(--muted); font-size: .75rem; letter-spacing: .055em; }
.domestic a { font-size: clamp(1.5rem, 2.6vw, 2.5rem); line-height: 1.3; letter-spacing: -.035em; text-decoration: none; }
.domestic a:hover { color: var(--red); }
.domestic b { margin-left: 30px; color: var(--red); font-weight: 400; }
.contact { color: var(--white); background: var(--ink); }
.contact .section-index { color: #bdbcba; }
.contact .section-index::before { background: var(--accent-on-dark); }
.contact h2 { margin: 0; font-size: clamp(3rem, 7.5vw, 7rem); font-weight: 400; line-height: 1.07; letter-spacing: -.055em; }
.contact h2 a { text-decoration: none; }
.contact h2 span { color: var(--accent-on-dark); font-size: .65em; margin-left: .3em; }
.contact a:focus-visible { outline-color: var(--accent-on-dark); }
.socials { display: flex; flex-wrap: wrap; gap: 12px 36px; margin-top: 48px; padding-top: 26px; border-top: 1px solid #4b4c48; }
.socials a { display: inline-block; padding-block: 8px; color: #e1dfd8; font-size: .875rem; text-decoration: none; }
.socials a:hover { color: var(--accent-on-dark); }
footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; max-width: var(--max); margin: 0 auto; padding: 30px var(--pad); color: var(--muted); font-size: .75rem; letter-spacing: .055em; }
footer a { justify-self: end; padding-block: 8px; font-size: .8125rem; text-decoration: none; }
footer a:hover { color: var(--red); }

@media (max-width: 1100px) {
  .hero-copy { gap: 56px 48px; }
  .hero { min-height: 0; padding-block: 40px 64px; }
  .eyebrow { font-size: .75rem; letter-spacing: .025em; }
  .hero-bottom { padding-block: 24px; }
  .proof > div { padding-inline: 22px; }
  .feature-visual { padding: 24px; }
}
@media (max-width: 850px) {
  .site-header { gap: 20px; grid-template-columns: 1fr auto; padding-block: 12px 0; }
  .site-header nav { grid-column: 1/-1; grid-row: 2; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); }
  .header-contact { grid-column: 2; grid-row: 1; }
  :root { --header-height: 124px; }
  .hero-copy { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 36px; }
  .eyebrow { grid-column: 1/-1; }
  .hero-since { position: absolute; right: 0; bottom: -26px; font-size: .75rem; }
  .hero-logo { padding-block: 20px; }
  .manifesto { font-size: clamp(1.8rem, 4.1vw, 2.6rem); }
  .round-link { gap: 30px; }
  .proof { grid-template-columns: repeat(3, 1fr); gap: 28px 0; }
  .proof-intro { grid-column: 1/-1; }
  .proof .proof-item:nth-child(2) { padding-left: 0; border-left: 0; }
  .proof-intro p br { display: none; }
  .ticker > div { justify-content: flex-start; }
  .ticker i { display: none; }
  .statement-grid, .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .statement-grid p, .section-heading p { max-width: 38rem; }
  .featured-grid { gap: 40px 28px; }
  .feature-visual { padding: 20px; aspect-ratio: 4/5; }
  .feature-body h3 { font-size: clamp(1.65rem, 3.6vw, 2rem); }
  .feature-caption { align-items: flex-start; }
  .feature-caption > div { flex-direction: column; gap: 2px; }
  .archive-list article { grid-template-columns: 90px minmax(0, 1fr); gap: 8px 20px; }
  .archive-list p { grid-column: 2; }
  .archive-list b { grid-column: 1; grid-row: 2; }
  .profile-grid { gap: 36px; align-items: start; }
  .profile-copy dl > div { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 600px) {
  :root { --pad: 24px; --space: 72px; }
  :root { --header-height: 112px; }
  .brand img { width: 66px; }
  .site-header { row-gap: 12px; }
  .site-header nav a, .header-contact { font-size: .875rem; }
  .hero { padding-top: 32px; padding-bottom: 48px; }
  .hero-copy { grid-template-columns: 1fr; gap: 28px; }
  .eyebrow { align-items: baseline; max-width: 23rem; line-height: 1.8; font-size: .75rem; }
  .hero-logo { padding: 0; max-width: 430px; }
  .hero-bottom { gap: 24px; padding: 0; }
  .manifesto { font-size: clamp(2rem, 8.1vw, 2.8rem); line-height: 1.12; }
  .manifesto br:first-child { display: none; }
  .round-link { gap: 24px; font-size: .875rem; }
  .round-link b { width: 44px; height: 44px; }
  .hero-since { display: none; }
  .hero-stage { inset: 36% -30% -4% 0; opacity: .7; }
  .ticker > div { gap: 10px 20px; font-size: .75rem; line-height: 1.7; }
  .proof { padding-block: 28px; }
  .proof > div { padding-inline: 14px; gap: 12px; }
  .proof-item strong { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .proof-item span { font-size: .75rem; letter-spacing: .01em; }
  .proof-intro p { font-size: 1rem; }
  .section-index { margin-bottom: 28px; letter-spacing: .075em; }
  .statement { padding-block: 44px 56px; }
  .statement h2 { font-size: clamp(1.9rem, 7vw, 2.5rem); }
  .section-heading h2, .practice > h2 { font-size: clamp(2.15rem, 8vw, 3.2rem); }
  .statement-grid p, .section-heading p, .profile-copy > p { font-size: 1rem; }
  .section-heading { margin-bottom: 32px; }
  .featured-grid { grid-template-columns: 1fr; gap: 36px; }
  .feature-visual { aspect-ratio: 1; padding: 22px; }
  .feature-body h3 { font-size: clamp(1.75rem, 7.5vw, 2.5rem); }
  .feature-caption { padding-block: 16px; }
  .feature-caption > div { flex-direction: row; gap: 4px 14px; }
  .archive summary { grid-template-columns: 1fr auto; gap: 16px; }
  .archive summary b { display: none; }
  .archive-list article { grid-template-columns: 78px minmax(0, 1fr); gap: 8px 16px; }
  .complete-index-link { grid-template-columns: 1fr 24px; gap: 24px; }
  .complete-index-link b { display: none; }
  .practice-grid { grid-template-columns: 1fr; gap: 30px; margin-top: 38px; }
  .practice-grid span { margin-bottom: 22px; }
  .practice-grid h3 { font-size: 1.75rem; }
  .profile-grid { grid-template-columns: 1fr; gap: 32px; }
  .portrait { max-width: 480px; }
  .profile h2 { font-size: 2.3rem; }
  .profile-copy dl > div { grid-template-columns: 92px minmax(0, 1fr); gap: 20px; }
  .domestic { flex-direction: column; align-items: flex-start; gap: 20px; }
  .domestic a { font-size: 1.75rem; }
  .contact h2 { font-size: clamp(2.5rem, 12vw, 4.5rem); }
  .socials { gap: 12px 28px; margin-top: 36px; }
  footer { grid-template-columns: 1fr auto; gap: 16px; }
  footer > span:nth-child(2) { display: none; }
}
@media (max-width: 380px) {
  :root { --pad: 20px; }
  .hero-bottom { gap: 24px; }
  .manifesto br:first-child { display: initial; }
  .proof > div { padding-inline: 10px; }
  .proof-item strong { font-size: 1.8rem; }
  .feature-visual { padding: 18px; }
  .feature-caption > div { flex-direction: column; gap: 2px; }
  .portrait figcaption { padding-inline: 16px; gap: 12px; font-size: .75rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
@media print {
  .site-header, .hero-stage, .skip-link, footer { display: none; }
  .statement, .works, .practice, .profile, .contact { padding: 24px 0; }
  .practice, .contact { color: black; background: white; }
  .practice *, .contact * { color: black; }
}
