:root {
  --ink: #171719;
  --ink-soft: #201f22;
  --paper: #f1ede5;
  --paper-muted: #d8d4cf;
  --red: #a91218;
  --line: rgba(241, 237, 229, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--paper); font-family: Arial, Helvetica, sans-serif; font-size: 16px; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
svg { width: 1.05em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: square; stroke-linejoin: miter; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 10; height: 96px; display: flex; align-items: center; justify-content: space-between; width: min(1360px, calc(100% - 72px)); margin: 0 auto; border-bottom: 1px solid var(--line); }
.brand, .footer-brand { display: flex; align-items: center; gap: 14px; }
.mark { display: grid; place-items: center; width: 44px; aspect-ratio: 1; border: 1px solid rgba(241, 237, 229, .8); transform: rotate(45deg); }
.mark span { transform: rotate(-45deg); font-size: 11px; font-weight: 900; letter-spacing: -.05em; }
.brand-name { display: flex; flex-direction: column; font-size: 14px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.brand-name small { color: var(--paper-muted); font-size: 9px; letter-spacing: .32em; margin-top: 4px; }
nav { display: flex; align-items: center; gap: 34px; }
nav a { font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; transition: color .2s ease; }
nav a:hover, nav a:focus-visible { color: #fff; }
.nav-contact { border: 1px solid rgba(241, 237, 229, .55); padding: 13px 18px; }

.hero { position: relative; min-height: 820px; display: flex; align-items: center; overflow: hidden; background: radial-gradient(circle at 75% 48%, rgba(169, 18, 24, .18), transparent 32%), linear-gradient(135deg, #29272a 0%, #171719 70%); }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .22; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.23'/%3E%3C/svg%3E"); }
.hero-art { position: absolute; inset: 0 0 0 44%; opacity: .7; background-image: linear-gradient(90deg, var(--ink) 0%, transparent 34%), url('/author-site-hero.webp'); background-size: cover; background-position: center; mix-blend-mode: screen; }
.hero-grid { position: absolute; inset: 96px 0 0 50%; border-left: 1px solid rgba(241, 237, 229, .12); background-image: linear-gradient(rgba(241, 237, 229, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(241, 237, 229, .055) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, #000, transparent 88%); }
.hero-copy { position: relative; z-index: 2; width: min(1360px, calc(100% - 72px)); margin: 90px auto 0; }
.eyebrow { margin: 0 0 24px; color: var(--paper-muted); font-size: 10px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; }
.eyebrow span { color: #d74247; margin-right: 15px; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 880px; margin-bottom: 30px; font-family: Impact, "Arial Narrow", sans-serif; font-size: clamp(4.5rem, 8.8vw, 9rem); font-weight: 900; letter-spacing: -.035em; line-height: .82; text-transform: uppercase; }
h1 em { display: block; color: #c3292f; font: italic 500 .42em/1.15 Georgia, serif; letter-spacing: -.045em; text-transform: none; transform: translateX(15%); margin-top: 22px; }
.hero-intro { max-width: 575px; margin-bottom: 34px; color: var(--paper-muted); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 52px; padding: 0 23px; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button.primary { background: var(--red); color: #fff; }
.button.primary:hover { background: #c3292f; }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 5px; border-bottom: 1px solid rgba(241, 237, 229, .42); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.hero-index { position: absolute; z-index: 2; right: 26px; bottom: 125px; display: flex; gap: 34px; color: rgba(241, 237, 229, .5); font-size: 8px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; transform: rotate(-90deg) translateX(100%); transform-origin: right bottom; }

.status-strip { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 72px; background: var(--red); }
.status-strip p { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 0; border-right: 1px solid rgba(255,255,255,.22); font-size: 9px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.pulse { width: 7px; aspect-ratio: 1; border-radius: 50%; background: #fff; box-shadow: 0 0 0 5px rgba(255,255,255,.13); }

.section { padding: 118px max(36px, calc((100vw - 1288px) / 2)); }
.section-heading { margin-bottom: 56px; }
.section-heading h2, .about-copy h2, .contact-section h2 { margin: 0; font-family: Impact, "Arial Narrow", sans-serif; font-size: clamp(3.5rem, 6vw, 6.8rem); font-weight: 900; letter-spacing: -.025em; line-height: .9; text-transform: uppercase; }
.writing-section { background: var(--paper); color: var(--ink); }
.writing-section .eyebrow { color: #686468; }
.projects-list { border-top: 1px solid #aaa49d; }
.project-card { position: relative; display: grid; grid-template-columns: .65fr 2.2fr 1fr; min-height: 340px; border-bottom: 1px solid #aaa49d; }
.project-card:nth-child(even) { background: rgba(23, 23, 25, .025); }
.project-number { padding-top: 34px; color: #726e6a; font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.project-main { display: flex; flex-direction: column; justify-content: center; padding: 54px 9% 54px 0; border-right: 1px solid #aaa49d; }
.project-state { width: fit-content; padding: 7px 9px; background: var(--red); color: #fff; font-size: 8px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.project-main h3 { margin: 12px 0 22px; max-width: 650px; font-family: Impact, "Arial Narrow", sans-serif; font-size: clamp(2.7rem, 4.5vw, 5rem); font-weight: 900; letter-spacing: -.02em; line-height: .9; text-transform: uppercase; }
.project-main > p:last-child { max-width: 590px; margin-bottom: 0; color: #5d5956; line-height: 1.7; }
.project-main h3 a:hover, .project-main h3 a:focus-visible { color: var(--red); }
.project-link { width: fit-content; margin-top: 24px; padding-bottom: 5px; border-bottom: 1px solid #8c8781; color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.project-link:hover, .project-link:focus-visible { border-color: var(--red); }
.project-meta { display: flex; flex-direction: column; justify-content: center; }
.project-meta div { display: flex; justify-content: space-between; gap: 24px; padding: 23px 0 23px 34px; border-bottom: 1px solid #c9c3bc; }
.project-meta div:last-child { border-bottom: 0; }
.project-meta span { color: #77716c; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.project-meta strong { font-size: 10px; letter-spacing: .08em; text-align: right; text-transform: uppercase; }

.notes-section { position: relative; overflow: hidden; background: var(--ink-soft); }
.notes-section::before { content: ""; position: absolute; width: 560px; aspect-ratio: 1; right: -250px; top: -250px; border: 1px solid rgba(169, 18, 24, .42); border-radius: 50%; box-shadow: 0 0 0 80px rgba(169,18,24,.03), 0 0 0 160px rgba(169,18,24,.025); }
.split-heading { position: relative; display: flex; align-items: end; justify-content: space-between; }
.feed-label { color: #817d78; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.notes-grid { position: relative; border: 1px solid var(--line); }
.note-card { min-height: 340px; padding: 44px; }
.note-topline { color: #8d8984; font-size: 8px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.note-card h3 { max-width: 620px; margin: 52px 0 20px; font-size: clamp(2rem, 3.3vw, 3.8rem); font-weight: 800; letter-spacing: -.04em; line-height: .98; }
.note-card p { max-width: 610px; color: #aaa6a0; line-height: 1.65; }
.card-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; color: #e03a40; font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.feed-note { display: flex; flex-direction: column; justify-content: center; background: rgba(255,255,255,.018); }
.feed-note h3 { margin: 30px 0 18px; font-size: 29px; line-height: 1.05; }
.feed-mark { width: fit-content; padding: 8px 9px; border: 1px solid #7b7773; color: #aaa6a0; font-size: 9px; font-weight: 900; letter-spacing: .14em; }

.about-section { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 680px; background: var(--paper); color: var(--ink); }
.about-rule { display: flex; align-items: center; color: var(--red); font-family: Impact, "Arial Narrow", sans-serif; font-size: clamp(10rem, 20vw, 22rem); letter-spacing: -.12em; line-height: .7; opacity: .08; overflow: hidden; }
.about-copy { align-self: center; max-width: 680px; padding-left: 10%; border-left: 1px solid #bbb5ae; }
.about-copy .eyebrow { color: #686468; }
.about-lead { margin: 34px 0 20px; font-size: clamp(1.45rem, 2.4vw, 2.2rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.25; }
.about-copy > p:last-child { max-width: 590px; color: #5d5956; line-height: 1.7; }

.contact-section { padding: 120px max(36px, calc((100vw - 1288px) / 2)); background: var(--red); }
.contact-section .eyebrow { color: rgba(255,255,255,.68); }
.contact-section .eyebrow span { color: #fff; }
.contact-section h2 { font-size: clamp(5rem, 10vw, 11rem); }
.contact-section > p:not(.eyebrow) { max-width: 580px; margin: 26px 0 36px; font-size: 18px; line-height: 1.6; }
.button.light { background: var(--paper); color: var(--ink); }
.button.light.disabled { opacity: .72; cursor: default; }
.button.light.disabled:hover { transform: none; }

footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 150px; padding: 0 max(36px, calc((100vw - 1288px) / 2)); background: #111113; }
.footer-brand p { margin: 0; font-size: 11px; font-weight: 900; letter-spacing: .1em; line-height: 1.5; text-transform: uppercase; }
.footer-brand p span { color: #817d78; font-size: 8px; letter-spacing: .22em; }
.footer-brand .mark { width: 35px; }
.social-links { display: flex; gap: 25px; color: #aaa6a0; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.social-links a:hover { color: #fff; }
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid #4f4c49; color: #aaa6a0; }
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }
.social-icon svg.instagram-icon { fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-icon:hover { border-color: var(--red); background: var(--red); color: #fff; }
.copyright { justify-self: end; margin: 0; color: #696661; font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }

.project-page { min-height: 100vh; background: var(--paper); color: var(--ink); }
.project-page .site-header { position: relative; color: var(--paper); background: var(--ink); width: 100%; height: 96px; padding: 0 max(36px, calc((100vw - 1288px) / 2)); }
.project-page .brand { color: var(--paper); }
.project-page .project-hero { position: relative; overflow: hidden; padding: 110px max(36px, calc((100vw - 1288px) / 2)) 100px; background: var(--ink); color: var(--paper); }
.project-page .project-hero::after { content: "BOOK—01"; position: absolute; right: -20px; bottom: -38px; color: rgba(241,237,229,.035); font-family: Impact, "Arial Narrow", sans-serif; font-size: clamp(7rem, 19vw, 18rem); letter-spacing: -.04em; white-space: nowrap; }
.project-page .project-hero > * { position: relative; z-index: 1; }
.project-page .project-hero h1 { max-width: 1050px; margin-bottom: 26px; font-size: clamp(4.4rem, 9vw, 9rem); }
.project-page .project-hero h1 span { display: block; color: var(--red); }
.project-page .project-kicker { max-width: 600px; margin: 0; color: var(--paper-muted); font: italic 500 clamp(1.3rem, 2.3vw, 2rem)/1.35 Georgia, serif; }
.project-page .project-content { display: grid; grid-template-columns: 1fr 2fr; gap: 8%; padding: 110px max(36px, calc((100vw - 1288px) / 2)); }
.project-page .project-facts { border-top: 1px solid #aaa49d; }
.project-page .project-facts div { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; border-bottom: 1px solid #c9c3bc; }
.project-page .project-facts span { color: #77716c; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.project-page .project-facts strong { font-size: 10px; letter-spacing: .08em; text-align: right; text-transform: uppercase; }
.project-page .project-copy { max-width: 720px; }
.project-page .project-copy .intro { font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -.025em; line-height: 1.25; }
.project-page .project-copy p:not(.intro) { color: #5d5956; font-size: 17px; line-height: 1.8; }
.project-page .project-copy h2 { margin: 60px 0 24px; font-family: Impact, "Arial Narrow", sans-serif; font-size: clamp(2.7rem, 5vw, 5rem); line-height: .9; text-transform: uppercase; }
.project-page .project-follow { margin-top: 55px; padding-top: 35px; border-top: 1px solid #aaa49d; }
.project-page footer { color: var(--paper); }

@media (max-width: 900px) {
  .site-header { width: calc(100% - 40px); height: 82px; }
  nav a:not(.nav-contact) { display: none; }
  .hero { min-height: 760px; }
  .hero-copy { width: calc(100% - 40px); margin-top: 80px; }
  .hero-art { inset: 0 0 0 20%; opacity: .4; }
  h1 { font-size: clamp(4rem, 14vw, 7rem); }
  h1 em { transform: none; font-size: .38em; }
  .project-card { grid-template-columns: 1fr; }
  .project-number { padding-bottom: 0; }
  .project-main { border-right: 0; border-bottom: 1px solid #aaa49d; }
  .project-meta div { padding-left: 0; }
  .about-section { grid-template-columns: 1fr; }
  .project-page .project-content { grid-template-columns: 1fr; }
  .project-page .project-facts { margin-bottom: 60px; }
  .about-rule { display: none; }
  .about-copy { padding: 0; border-left: 0; }
  footer { grid-template-columns: 1fr; gap: 30px; padding-top: 45px; padding-bottom: 45px; }
  .copyright { justify-self: start; }
}

@media (max-width: 600px) {
  .site-header { height: 74px; }
  .brand-name { font-size: 11px; }
  .mark { width: 37px; }
  .nav-contact { padding: 11px 13px; }
  .hero { min-height: 700px; }
  .hero-grid, .hero-index { display: none; }
  .hero-copy { margin-top: 70px; }
  .hero-intro { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .status-strip { grid-template-columns: 1fr; padding: 18px 0; }
  .status-strip p { min-height: 36px; border-right: 0; }
  .section { padding: 86px 20px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .about-copy h2 { font-size: 3.7rem; }
  .project-main { padding-right: 0; }
  .project-main h3 { font-size: 3.7rem; }
  .split-heading { align-items: flex-start; flex-direction: column; gap: 25px; }
  .note-card { min-height: 300px; padding: 28px; }
  .note-card h3 { margin-top: 38px; }
  .contact-section { padding: 90px 20px; }
  .contact-section h2 { font-size: 5rem; }
  footer { padding-left: 20px; padding-right: 20px; }
  .project-page .site-header { height: 74px; padding: 0 20px; }
  .project-page .project-hero, .project-page .project-content { padding-left: 20px; padding-right: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
