/* Editorial site design — unified base + page-scoped layouts */
:root {
  --bg: #fbfaf6;
  --ink: #0a0a0a;
  --ink-mute: #5a5a55;
  --line: #d8d6cf;
  --warm: #efece3;
  --rule: #0a0a0a;
  --max: 67.5rem;
  --gutter: 2rem;
}
@media (prefers-color-scheme: dark) {
  :root { --bg: #0c0c0a; --ink: #f4f2eb; --ink-mute: #9c9b94; --line: #2a2925; --warm: #1a1815; --rule: #f4f2eb; }
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body { font: 1.0625rem/1.65 system-ui, sans-serif; color: var(--ink); -webkit-font-smoothing: antialiased; }
.serif { font-family: Georgia, serif; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }

/* shared site nav (overrides main.css's site-nav so it takes editorial palette) */
.site-nav { position: sticky; top: 0; z-index: 50; padding: 1.25rem 2rem; display: flex; justify-content: space-between; align-items: center; font: 500 0.875rem/1 system-ui, sans-serif; letter-spacing: 0.01em; border-bottom: 1px solid var(--line); background: var(--bg); }
.site-nav-inner { max-width: none; padding: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; }
.site-nav-brand { font-weight: 600; font-size: 1rem; letter-spacing: -0.01em; color: var(--ink); text-decoration: none; }
.site-nav-brand { display: inline-flex; align-items: center; gap: 0.625rem; }
.site-nav-avatar { width: 1.75rem; height: 1.75rem; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); flex-shrink: 0; display: block; }
.site-nav-wordmark { line-height: 1; }

.site-nav-links { display: flex; gap: 1.75rem; color: var(--ink-mute); flex-wrap: wrap; }
.site-nav-links a { text-decoration: none; }
.site-nav-links a:hover { color: var(--ink); }
@media (max-width: 37.5rem) {
  .site-nav { flex-direction: column; align-items: flex-start; gap: 0.875rem; padding: 1.25rem 1.5rem; }
  .site-nav-links { gap: 1.125rem; font-size: 0.8125rem; }
}

/* shared site footer */
.site-footer { padding: 2rem; border-top: 1px solid var(--line); font: 0.8125rem/1.4 system-ui, sans-serif; color: var(--ink-mute); background: var(--bg); }
.site-footer-inner { max-width: none; padding: 0; display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* skip-link override (matches editorial palette) */
.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: fixed; top: 0.75rem; left: 0.75rem; width: auto; height: auto; padding: 0.625rem 0.875rem; background: var(--ink); color: var(--bg); text-decoration: none; z-index: 9999; border-radius: 4px; font: 0.875rem/1.4 system-ui, sans-serif; }

/* shared editorial primitives */
.section-head { font: 400 0.875rem/1 system-ui, sans-serif; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 3.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--line); }
.btn-pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.625rem; border-radius: 999px; font: 500 0.875rem/1 system-ui, sans-serif; text-decoration: none; background: var(--ink); color: var(--bg); border: 1px solid var(--ink); transition: background .15s, color .15s; }
.btn-pill:hover { background: transparent; color: var(--ink); }
.btn-arrow { display: inline-block; transition: transform .15s; }
.btn-pill:hover .btn-arrow { transform: translateX(2px); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ========== HOMEPAGE ========== */
.editorial-home .masthead { padding: 5rem 2rem 3.5rem; max-width: var(--max); margin: 0 auto; }
.editorial-home .masthead .meta { font: 500 0.75rem/1 system-ui, sans-serif; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 1.75rem; }
.editorial-home .masthead h1 { font: 400 clamp(4rem, 12vw, 9rem)/0.94 Georgia, serif; letter-spacing: -0.025em; margin: 0 0 2rem; }
.editorial-home .masthead .standfirst { font-family: Georgia, serif; font-size: 1.75rem; line-height: 1.4; max-width: 50rem; color: var(--ink); margin: 0; font-style: italic; }

@media (max-width: 43.75rem) { .editorial-home .masthead { padding: 3.5rem 1.5rem 2.25rem; } .editorial-home .masthead .standfirst { font-size: 1.3125rem; } }

.editorial-home .about { max-width: 45rem; margin: 0 auto; padding: 6rem 2rem 5rem; font-size: 1.25rem; line-height: 1.75; }
.editorial-home .about .label { font: 400 0.875rem/1 system-ui, sans-serif; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 2rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--line); }
.editorial-home .about p { margin: 0 0 1.75rem; }
.editorial-home .about-lede { font-family: Georgia, serif; font-size: 1.625rem; line-height: 1.4; font-style: italic; color: var(--ink); margin: 0 0 2rem; }

.editorial-home .about p:first-of-type { font-family: Georgia, serif; }
.editorial-home .about p:first-of-type::first-letter { font-family: Georgia, serif; font-size: 5rem; float: left; line-height: 0.9; padding: 0.375rem 0.875rem 0 0; font-weight: 400; }
.editorial-home .about .closer { font: 400 2.25rem/1.2 Georgia, serif; font-style: italic; letter-spacing: -0.012em; margin-top: 3rem; color: var(--ink); }

.editorial-home .recs { max-width: var(--max); margin: 0 auto; padding: 3.5rem 2rem 6rem; }
.editorial-home .recs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 62.5rem) { .editorial-home .recs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 43.75rem) { .editorial-home .recs-grid { grid-template-columns: 1fr; gap: 1.75rem; } }
.editorial-home .rec { display: flex; flex-direction: column; gap: 0.875rem; padding: 1.75rem 0; }
.editorial-home .rec-head { display: flex; gap: 0.875rem; align-items: center; }
.editorial-home .rec-photo { width: 3rem; height: 3rem; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); flex-shrink: 0; background: var(--warm); }
.editorial-home .rec-meta { display: flex; flex-direction: column; gap: 2px; }
.editorial-home .rec-name { font: 400 1.125rem/1.2 Georgia, serif; letter-spacing: -0.005em; }
.editorial-home .rec-role { font: 500 0.6875rem/1.2 system-ui, sans-serif; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
.editorial-home .rec blockquote { margin: 0; font-size: 0.9375rem; line-height: 1.6; }
.editorial-home .recs-link { margin-top: 3rem; font: 500 0.8125rem/1.4 system-ui, sans-serif; text-align: left; }

.editorial-home .work-section { max-width: var(--max); margin: 0 auto; padding: 0 2rem 6rem; }
.editorial-home .work-spread { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; padding: 4rem 0; border-bottom: 1px solid var(--line); text-decoration: none; color: inherit; }
.editorial-home .work-spread:last-child { border-bottom: none; }
.editorial-home .work-spread:nth-child(even) { grid-template-columns: 1fr 1fr; direction: rtl; }
.editorial-home .work-spread:nth-child(even) > * { direction: ltr; }
@media (max-width: 50rem) { .editorial-home .work-spread, .editorial-home .work-spread:nth-child(even) { grid-template-columns: 1fr; gap: 1.75rem; padding: 2.25rem 0; direction: ltr; } }
.editorial-home .work-spread .img { aspect-ratio: 4/3; overflow: hidden; border: 1px solid var(--line); }
.editorial-home .work-spread .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.editorial-home .work-spread:hover .img img { transform: scale(1.04); }
.editorial-home .work-spread .num { font: 500 0.75rem/1 system-ui, sans-serif; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 1rem; }
.editorial-home .work-spread .title { font: 400 clamp(1.75rem, 4vw, 2.75rem)/1.1 Georgia, serif; letter-spacing: -0.012em; margin: 0 0 1rem; }
.editorial-home .work-spread .blurb { font-size: 1.0625rem; line-height: 1.55; margin: 0 0 1.25rem; max-width: 28.75rem; }
.editorial-home .work-spread .meta-line { font: 500 0.75rem/1.4 system-ui, sans-serif; letter-spacing: 0.04em; color: var(--ink-mute); display: flex; gap: 0.5rem; flex-wrap: wrap; }

.editorial-home .writing-section { background: var(--warm); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 6rem 0; }
.editorial-home .writing-inner { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.editorial-home .writing-list { display: grid; gap: 0; }
.editorial-home .writing-row { display: grid; grid-template-columns: 5rem 1fr auto; gap: 2rem; padding: 1.75rem 0; border-bottom: 1px solid var(--line); align-items: baseline; text-decoration: none; color: inherit; }
.editorial-home .writing-row:last-child { border-bottom: none; }
.editorial-home .writing-row .num { font: 400 1rem/1 Georgia, serif; color: var(--ink-mute); }
.editorial-home .writing-row .title { font: 400 1.375rem/1.3 Georgia, serif; letter-spacing: -0.01em; }
.editorial-home .writing-row .tag { font: 500 0.6875rem/1 system-ui, sans-serif; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }

.editorial-home .close-cta { padding: 6rem 2rem; text-align: center; max-width: var(--max); margin: 0 auto; }
.editorial-home .close-cta h2 { font: 400 clamp(2.5rem, 6vw, 4rem)/1.05 Georgia, serif; margin: 0 0 1.25rem; letter-spacing: -0.02em; }
.editorial-home .close-cta p { font-size: 1.1875rem; color: var(--ink-mute); max-width: 37.5rem; margin: 0 auto 2rem; line-height: 1.55; font-family: system-ui, sans-serif; }

/* ========== PROJECT PAGE ========== */
.editorial-project .breadcrumb { padding: 2rem 2rem 0; max-width: var(--max); margin: 0 auto; font: 500 0.75rem/1 system-ui, sans-serif; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); display: flex; gap: 0.75rem; align-items: center; }
.editorial-project .breadcrumb a { text-decoration: none; }
.editorial-project .breadcrumb a:hover { color: var(--ink); }
.editorial-project .breadcrumb-sep { opacity: 0.4; }

.editorial-project .lede-block { max-width: var(--max); margin: 0 auto; padding: 3.5rem 2rem 3.5rem; }
.editorial-project .lede-meta { font: 500 0.75rem/1 system-ui, sans-serif; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 1.5rem; }
.editorial-project .lede-block h1 { font: 400 clamp(3rem, 8vw, 6rem)/1.02 Georgia, serif; letter-spacing: -0.02em; margin: 0 0 2rem; }
.editorial-project .lede-block .standfirst { font-family: Georgia, serif; font-size: 1.625rem; line-height: 1.4; max-width: 45rem; color: var(--ink); margin: 0; font-style: italic; }
@media (max-width: 43.75rem) { .editorial-project .lede-block .standfirst { font-size: 1.3125rem; } }

.editorial-project .facts { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 1.75rem 0; max-width: var(--max); margin: 0 auto 5rem; }
.editorial-project .facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding: 0 2rem; font: 500 0.8125rem/1.4 system-ui, sans-serif; }
@media (max-width: 43.75rem) { .editorial-project .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
.editorial-project .fact .label { font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 0.25rem; }
.editorial-project .fact .value { font-weight: 500; font-size: 0.875rem; }

.editorial-project article { max-width: 45rem; margin: 0 auto; padding: 0 2rem 4rem; font-size: 1.1875rem; line-height: 1.7; }
.editorial-project article p { margin: 0 0 1.5rem; }
.editorial-project article p:first-of-type { font-family: Georgia, serif; }
.editorial-project article p:first-of-type::first-letter { font-family: Georgia, serif; font-size: 4rem; float: left; line-height: 0.9; padding: 0.25rem 0.75rem 0 0; font-weight: 400; }
.editorial-project article p strong { font-weight: 500; }
.editorial-project article h2 { font: 400 2rem/1.2 Georgia, serif; letter-spacing: -0.012em; margin: 3.5rem 0 1.25rem; }

.editorial-project .spread { max-width: var(--max); margin: 4rem auto; padding: 0 2rem; }
.editorial-project .spread img, .editorial-project .spread video { width: 100%; aspect-ratio: 16/9; object-fit: cover; border: 1px solid var(--line); display: block; }
.editorial-project .spread .caption { font: italic 0.875rem/1.4 Georgia, serif; color: var(--ink-mute); padding: 0.75rem 0 0; max-width: 45rem; margin: 0 auto; text-align: center; }
.editorial-project .pair { max-width: var(--max); margin: 4rem auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 43.75rem) { .editorial-project .pair { grid-template-columns: 1fr; } }
.editorial-project .pair img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--line); }

.editorial-project blockquote.testimonial { max-width: 50rem; margin: 5rem auto; padding: 0 2rem; font: 400 clamp(1.625rem, 4vw, 2.375rem)/1.3 Georgia, serif; letter-spacing: -0.01em; }
.editorial-project blockquote.testimonial cite { display: block; margin-top: 1.5rem; font: 400 0.875rem/1.4 system-ui, sans-serif; font-style: normal; color: var(--ink-mute); }

.editorial-project .end-matter { padding: 6rem 2rem; text-align: center; max-width: var(--max); margin: 0 auto; }
.editorial-project .end-matter h3 { font: 400 clamp(2.25rem, 5vw, 3.5rem)/1.05 Georgia, serif; margin: 0 0 1.5rem; letter-spacing: -0.018em; }

.editorial-project .other-section { max-width: var(--max); margin: 0 auto; padding: 6rem 2rem; border-top: 1px solid var(--line); }
.editorial-project .other-section h3 { font: 400 0.875rem/1 system-ui, sans-serif; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 2.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--line); }
.editorial-project .other-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 56.25rem) { .editorial-project .other-grid { grid-template-columns: 1fr; } }
.editorial-project .other-card { display: block; text-decoration: none; color: inherit; }
.editorial-project .other-card .img { aspect-ratio: 4/3; overflow: hidden; margin-bottom: 0.875rem; border: 1px solid var(--line); }
.editorial-project .other-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.editorial-project .other-card:hover .img img { transform: scale(1.03); }
.editorial-project .other-card .meta { font: 500 0.6875rem/1 system-ui, sans-serif; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 0.375rem; }
.editorial-project .other-card .name { font: 400 1.375rem/1.2 Georgia, serif; }

/* ========== BLOG INDEX ========== */
.editorial-blog-index .masthead { max-width: var(--max); margin: 0 auto; padding: 5rem 2rem 3.5rem; }
.editorial-blog-index .masthead .meta { font: 500 0.75rem/1 system-ui, sans-serif; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 1.75rem; }
.editorial-blog-index .masthead h1 { font: 400 clamp(3.5rem, 9vw, 6rem)/1 Georgia, serif; letter-spacing: -0.025em; margin: 0 0 2rem; }
.editorial-blog-index .masthead .standfirst { font-family: Georgia, serif; font-size: 1.5rem; line-height: 1.4; max-width: 45rem; color: var(--ink-mute); margin: 0; font-style: italic; }

.editorial-blog-index .post-list { max-width: var(--max); margin: 0 auto; padding: 4rem 2rem 6rem; }
.editorial-blog-index .post-row { display: grid; grid-template-columns: 5rem 1fr; gap: 2rem; padding: 2.25rem 0; border-top: 1px solid var(--line); text-decoration: none; color: inherit; }
.editorial-blog-index .post-row:last-child { border-bottom: 1px solid var(--line); }
.editorial-blog-index .post-row .num { font: 400 1rem/1 Georgia, serif; color: var(--ink-mute); padding-top: 0.375rem; }
.editorial-blog-index .post-row .body { display: flex; flex-direction: column; gap: 0.5rem; }
.editorial-blog-index .post-row .title { font: 400 1.75rem/1.25 Georgia, serif; letter-spacing: -0.01em; max-width: 45rem; }
.editorial-blog-index .post-row .blurb { font-size: 1.0625rem; line-height: 1.55; color: var(--ink-mute); max-width: 45rem; margin: 0; }
.editorial-blog-index .post-row .meta { font: 500 0.6875rem/1 system-ui, sans-serif; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); display: flex; gap: 0.75rem; }
.editorial-blog-index .post-row:hover .title { text-decoration: underline; text-underline-offset: 6px; }
@media (max-width: 43.75rem) { .editorial-blog-index .post-row { grid-template-columns: 1fr; gap: 0.75rem; } .editorial-blog-index .post-row .num { padding-top: 0; } }

/* ========== BLOG POST ========== */
.editorial-blog-post .post-head { max-width: 55rem; margin: 0 auto; padding: 5rem 2rem 3rem; text-align: center; }
.editorial-blog-post .post-head .meta { font: 500 0.75rem/1 system-ui, sans-serif; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 1.75rem; display: flex; gap: 0.875rem; flex-wrap: wrap; justify-content: center; }
.editorial-blog-post .post-head .meta a { text-decoration: none; color: var(--ink-mute); }
.editorial-blog-post .post-head .meta a:hover { color: var(--ink); }
.editorial-blog-post .post-head h1 { font: 400 clamp(2.5rem, 7vw, 4.5rem)/1.05 Georgia, serif; letter-spacing: -0.02em; margin: 0 auto 1.75rem; max-width: 50rem; }
.editorial-blog-post .post-head .author-line { font: 500 0.8125rem/1.4 system-ui, sans-serif; color: var(--ink-mute); margin: 1.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--line); max-width: 30rem; }

.editorial-blog-post article { max-width: 45rem; margin: 0 auto; padding: 2rem 2rem 6rem; font-size: 1.1875rem; line-height: 1.7; }
.editorial-blog-post article p { margin: 0 0 1.5rem; }
.editorial-blog-post article p:first-of-type { font-family: Georgia, serif; }
.editorial-blog-post article p:first-of-type::first-letter { font-family: Georgia, serif; font-size: 4rem; float: left; line-height: 0.9; padding: 0.25rem 0.75rem 0 0; font-weight: 400; }
.editorial-blog-post article p strong { font-weight: 500; }
.editorial-blog-post article em { font-style: italic; }
.editorial-blog-post article h2 { font: 400 2rem/1.22 Georgia, serif; letter-spacing: -0.012em; margin: 3.5rem 0 1.125rem; }
.editorial-blog-post article h3 { font: 400 1.375rem/1.3 Georgia, serif; letter-spacing: -0.005em; margin: 2.25rem 0 0.875rem; }
.editorial-blog-post article ul, .editorial-blog-post article ol { padding-left: 1.5rem; margin: 0 0 1.5rem; }
.editorial-blog-post article li { margin: 0 0 0.5rem; line-height: 1.6; }
.editorial-blog-post article blockquote { border-left: 0; padding: 1rem 0 1rem 1.75rem; margin: 1.75rem 0; font-style: italic; color: var(--ink); border-left: 2px solid var(--ink); }
.editorial-blog-post article code { font: 0.92em ui-monospace, monospace; background: var(--warm); padding: 2px 0.375rem; border-radius: 3px; }
.editorial-blog-post article pre { background: var(--warm); border: 1px solid var(--line); border-radius: 4px; padding: 1rem 1.25rem; overflow-x: auto; margin: 1.5rem 0; font: 0.9em/1.55 ui-monospace, monospace; }
.editorial-blog-post article pre code { background: transparent; padding: 0; }
.editorial-blog-post article a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.editorial-blog-post article hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

.editorial-blog-post .next-up { max-width: var(--max); margin: 0 auto; padding: 4rem 2rem 6rem; border-top: 1px solid var(--line); }
.editorial-blog-post .next-up h3 { font: 400 0.875rem/1 system-ui, sans-serif; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 2rem; }
.editorial-blog-post .next-up .next-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 43.75rem) { .editorial-blog-post .next-up .next-grid { grid-template-columns: 1fr; } }
.editorial-blog-post .next-up .next-card { display: block; text-decoration: none; color: inherit; padding: 1.5rem 0; border-top: 1px solid var(--line); }
.editorial-blog-post .next-up .next-card .meta { font: 500 0.6875rem/1 system-ui, sans-serif; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 0.5rem; }
.editorial-blog-post .next-up .next-card .name { font: 400 1.375rem/1.25 Georgia, serif; letter-spacing: -0.005em; }
.editorial-blog-post .next-up .next-card:hover .name { text-decoration: underline; text-underline-offset: 4px; }

/* ========== PROJECTS INDEX ========== */
.editorial-projects-index .masthead { max-width: var(--max); margin: 0 auto; padding: 5rem 2rem 3rem; }
.editorial-projects-index .masthead .meta { font: 500 0.75rem/1 system-ui, sans-serif; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 1.75rem; }
.editorial-projects-index .masthead h1 { font: 400 clamp(3.5rem, 9vw, 6rem)/1 Georgia, serif; letter-spacing: -0.025em; margin: 0 0 2rem; }
.editorial-projects-index .masthead .standfirst { font-family: Georgia, serif; font-size: 1.5rem; line-height: 1.4; max-width: 45rem; color: var(--ink-mute); margin: 0; font-style: italic; }

.editorial-projects-index .work-section { max-width: var(--max); margin: 0 auto; padding: 2rem 2rem 6rem; }
.editorial-projects-index .work-spread { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; padding: 4rem 0; border-bottom: 1px solid var(--line); text-decoration: none; color: inherit; }
.editorial-projects-index .work-spread:first-child { border-top: 1px solid var(--line); }
.editorial-projects-index .work-spread:nth-child(even) { grid-template-columns: 1fr 1fr; direction: rtl; }
.editorial-projects-index .work-spread:nth-child(even) > * { direction: ltr; }
@media (max-width: 50rem) { .editorial-projects-index .work-spread, .editorial-projects-index .work-spread:nth-child(even) { grid-template-columns: 1fr; gap: 1.75rem; padding: 2.25rem 0; direction: ltr; } }
.editorial-projects-index .work-spread .img { aspect-ratio: 4/3; overflow: hidden; border: 1px solid var(--line); }
.editorial-projects-index .work-spread .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.editorial-projects-index .work-spread:hover .img img { transform: scale(1.04); }
.editorial-projects-index .work-spread .num { font: 500 0.75rem/1 system-ui, sans-serif; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 1rem; }
.editorial-projects-index .work-spread .title { font: 400 clamp(1.75rem, 4vw, 2.75rem)/1.1 Georgia, serif; letter-spacing: -0.012em; margin: 0 0 1rem; }
.editorial-projects-index .work-spread .blurb { font-size: 1.0625rem; line-height: 1.55; margin: 0 0 1.25rem; max-width: 28.75rem; }
.editorial-projects-index .work-spread .meta-line { font: 500 0.75rem/1.4 system-ui, sans-serif; letter-spacing: 0.04em; color: var(--ink-mute); display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* ========== CONTACT ========== */
.editorial-contact { padding: 5rem 2rem 7.5rem; }
.editorial-contact .frame { max-width: 45rem; margin: 0 auto; }
.editorial-contact .meta { font: 500 0.75rem/1 system-ui, sans-serif; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 1.75rem; }
.editorial-contact h1 { font: 400 clamp(3.5rem, 9vw, 6rem)/1 Georgia, serif; letter-spacing: -0.025em; margin: 0 0 2rem; }
.editorial-contact .standfirst { font-family: Georgia, serif; font-size: 1.625rem; line-height: 1.4; color: var(--ink); margin: 0 0 3.5rem; font-style: italic; }
.editorial-contact .invite { font-size: 1.125rem; line-height: 1.7; margin: 0 0 1.5rem; }
.editorial-contact .invite p { margin: 0 0 1.125rem; }
.editorial-contact .invite p:first-of-type { font-family: Georgia, serif; }
.editorial-contact .invite p:first-of-type::first-letter { font-family: Georgia, serif; font-size: 4rem; float: left; line-height: 0.9; padding: 0.25rem 0.75rem 0 0; font-weight: 400; }
.editorial-contact .channels { display: grid; gap: 0; margin: 3.5rem 0 0; }
.editorial-contact .channel { display: grid; grid-template-columns: 7.5rem 1fr auto; gap: 1.5rem; padding: 1.375rem 0; border-top: 1px solid var(--line); align-items: baseline; text-decoration: none; color: inherit; }
.editorial-contact .channel:last-child { border-bottom: 1px solid var(--line); }
.editorial-contact .channel .label { font: 500 0.6875rem/1.2 system-ui, sans-serif; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.editorial-contact .channel .value { font: 400 1.375rem/1.3 Georgia, serif; letter-spacing: -0.005em; }
.editorial-contact .channel .arrow { font: 400 1.125rem/1 system-ui, sans-serif; color: var(--ink-mute); transition: transform .15s; }
.editorial-contact .channel:hover .value { text-decoration: underline; text-underline-offset: 4px; }
.editorial-contact .channel:hover .arrow { transform: translateX(3px); color: var(--ink); }
@media (max-width: 37.5rem) { .editorial-contact .channel { grid-template-columns: 1fr auto; } .editorial-contact .channel .label { grid-column: 1 / -1; padding-bottom: 0.25rem; } }

.editorial-contact .availability { margin-top: 3.5rem; padding: 1.5rem 1.75rem; background: var(--warm); border-radius: 6px; font-size: 0.9375rem; line-height: 1.6; color: var(--ink-mute); }
.editorial-contact .availability strong { color: var(--ink); font-weight: 500; }

/* ========== RECOMMENDATIONS PAGE ========== */
.editorial-recs-page .masthead { max-width: var(--max); margin: 0 auto; padding: 5rem 2rem 3rem; }
.editorial-recs-page .masthead .meta { font: 500 0.75rem/1 system-ui, sans-serif; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 1.75rem; }
.editorial-recs-page .masthead h1 { font: 400 clamp(3.5rem, 9vw, 6rem)/1 Georgia, serif; letter-spacing: -0.025em; margin: 0 0 2rem; }
.editorial-recs-page .masthead .standfirst { font-family: Georgia, serif; font-size: 1.5rem; line-height: 1.4; max-width: 45rem; color: var(--ink-mute); margin: 0; font-style: italic; }

.editorial-recs-page .recs-summary { max-width: 45rem; margin: 0 auto; padding: 2.5rem 2rem 3.5rem; font-size: 1.125rem; line-height: 1.65; color: var(--ink); border-bottom: 1px solid var(--line); }
.editorial-recs-page .recs-summary p { margin: 0; }
.editorial-recs-page .recs-summary strong { font-weight: 600; }

.editorial-recs-page .recs-list { max-width: var(--max); margin: 0 auto; padding: 3.5rem 2rem 6rem; }
.editorial-recs-page .recs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 62.5rem) { .editorial-recs-page .recs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 43.75rem) { .editorial-recs-page .recs-grid { grid-template-columns: 1fr; gap: 1.75rem; } }
.editorial-recs-page .rec { display: flex; flex-direction: column; gap: 0.875rem; padding: 1.75rem 0; }
.editorial-recs-page .rec-head { display: flex; gap: 0.875rem; align-items: center; }
.editorial-recs-page .rec-photo { width: 3rem; height: 3rem; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); flex-shrink: 0; background: var(--warm); }
.editorial-recs-page .rec-meta { display: flex; flex-direction: column; gap: 2px; }
.editorial-recs-page .rec-name { font: 400 1.125rem/1.2 Georgia, serif; letter-spacing: -0.005em; }
.editorial-recs-page .rec-role { font: 500 0.6875rem/1.2 system-ui, sans-serif; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
.editorial-recs-page .rec blockquote { margin: 0; font-size: 0.9375rem; line-height: 1.6; }

.editorial-recs-page .recs-footer { max-width: 45rem; margin: 0 auto; padding: 3rem 2rem 6rem; border-top: 1px solid var(--line); }
.editorial-recs-page .recs-footer p { font-size: 0.875rem; line-height: 1.55; color: var(--ink-mute); margin: 0; }

