/* PROTOTYPE v1 — "nature, community, spirit". Dark forest ground so the photographs carry the colour. */
:root {
  --ground: #0e1210; --surface: #161b18; --ink: #ebe6dc; --muted: #939a8e; --faint: #5d655c; --line: #242b26;
  --moss: #a9b88f; --nature: #8fb07a; --community: #d7a867; --spirit: #b69ad6; --architecture: #8fb3c4;
  --display: "EB Garamond", Garamond, "Iowan Old Style", Georgia, serif;
  --caption: "Special Elite", "Courier Prime", "Courier New", monospace;
  --ui: "Karla", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --gutter: clamp(16px, 3vw, 44px);
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--ground); color: var(--ink); font: 15px/1.55 var(--ui); }
a { color: inherit; }
button { font: inherit; color: inherit; }
header.site { position: fixed; inset: 0 0 auto 0; z-index: 20; display: flex; gap: 20px; align-items: baseline;
  justify-content: space-between; padding: 18px var(--gutter);
  background: linear-gradient(rgba(14,18,16,.92), rgba(14,18,16,0)); pointer-events: none; }
header.site > * { pointer-events: auto; }
.brand { font: 400 22px/1 var(--display); letter-spacing: .01em; text-decoration: none; }
.brand em { font-style: italic; color: var(--muted); font-size: 15px; margin-left: 10px; }
nav.main { display: flex; gap: 22px; }
nav.main a { text-decoration: none; color: var(--muted); letter-spacing: .04em; }
nav.main a:hover, nav.main a[aria-current] { color: var(--ink); }
:focus-visible { outline: 2px solid var(--moss); outline-offset: 3px; }

/* ── the Drift ── */
.drift { position: fixed; inset: 0; overflow: hidden; }
.drift .card { position: absolute; top: 0; left: 0; margin: 0; padding: 0; border: 0; background: var(--surface);
  cursor: pointer; will-change: transform; box-shadow: 0 10px 40px rgba(0,0,0,.45); transition: filter .6s, opacity 1.2s; }
.drift .card img { display: block; width: 100%; height: 100%; object-fit: cover; }
.drift .card:hover, .drift .card:focus-visible { filter: brightness(1.12); z-index: 5; }
.rivers { position: fixed; inset: 70px 0 0 0; display: grid; grid-template-rows: repeat(4, 1fr); gap: 10px; padding-bottom: 10px; }
.river { position: relative; overflow: hidden; }
.river .track { position: absolute; top: 0; bottom: 0; left: 0; display: flex; gap: 10px; will-change: transform; }
.river .card { height: 100%; flex: none; border: 0; padding: 0; background: var(--surface); cursor: pointer; }
.river .card img { height: 100%; width: auto; display: block; }
.still { padding: 90px var(--gutter) 60px; columns: 5 220px; column-gap: 10px; }
.still .card { display: block; width: 100%; margin: 0 0 10px; border: 0; padding: 0; background: var(--surface); cursor: pointer; }
.still .card img { width: 100%; display: block; }
.intro { position: fixed; left: var(--gutter); bottom: 26px; z-index: 15; max-width: 34ch; pointer-events: none;
  font: italic 300 clamp(18px, 2vw, 24px)/1.35 var(--display); color: var(--ink); text-shadow: 0 2px 18px rgba(0,0,0,.8); }
.intro span { display: block; font: 400 12px/1.4 var(--ui); font-style: normal; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-top: 10px; }
.motion-switch { position: fixed; right: var(--gutter); bottom: 22px; z-index: 15; display: flex; gap: 2px;
  background: rgba(22,27,24,.85); border: 1px solid var(--line); border-radius: 999px; padding: 3px; backdrop-filter: blur(6px); }
.motion-switch button { background: none; border: 0; padding: 6px 12px; border-radius: 999px; color: var(--muted); cursor: pointer; font-size: 13px; }
.motion-switch button[aria-pressed="true"] { background: var(--ink); color: var(--ground); }
.proto-tag { position: fixed; right: var(--gutter); bottom: 62px; z-index: 15; font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--faint); }

/* ── photo view ── */
.view { position: fixed; inset: 0; z-index: 40; display: none; grid-template-columns: minmax(0, 1fr) 340px;
  background: rgba(8,10,9,.96); }
.view.open { display: grid; }
.view figure { margin: 0; display: grid; place-items: center; padding: 60px 30px; min-height: 0; }
.view figure img { max-width: 100%; max-height: calc(100vh - 120px); object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.view aside { border-left: 1px solid var(--line); padding: 70px 28px 28px; overflow: auto; }
.view .cap { font: 400 16px/1.55 var(--caption); margin: 0 0 22px; }
.view .cap.pending { color: var(--faint); font-style: italic; font-size: 16px; }
.view dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 14px; margin: 0 0 22px; font-size: 14px; }
.view dt { color: var(--faint); text-transform: uppercase; letter-spacing: .1em; font-size: 11px; padding-top: 2px; }
.view dd { margin: 0; }
.view .threads { display: flex; gap: 6px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; letter-spacing: .06em; padding: 3px 10px;
  border-radius: 999px; border: 1px solid var(--line); color: var(--muted); background: none; cursor: pointer; text-decoration: none; }
.chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--dot, var(--muted)); }
.chip[data-t="nature"] { --dot: var(--nature); } .chip[data-t="community"] { --dot: var(--community); }
.chip[data-t="spirit"] { --dot: var(--spirit); } .chip[data-t="architecture"] { --dot: var(--architecture); }
.chip[aria-pressed="true"] { color: var(--ink); border-color: var(--ink); }
.view .close, .view .prev, .view .next { position: absolute; background: none; border: 0; font-size: 26px; padding: 14px 18px; cursor: pointer; color: var(--ink); }
.view .close { top: 8px; right: 8px; } .view .prev { left: 6px; top: 50%; } .view .next { right: 346px; top: 50%; }
@media (max-width: 860px) {
  .view { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .view aside { border: 0; border-top: 1px solid var(--line); padding: 18px; max-height: 42vh; }
  .view .next { right: 6px; }
}

/* ── Library + Stories + text pages ── */
main.page { padding: 96px var(--gutter) 80px; }
h1 { font: 300 clamp(30px, 4vw, 48px)/1.1 var(--display); margin: 0 0 8px; text-wrap: balance; }
.sub { color: var(--muted); margin: 0 0 28px; }
.filters { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; margin-bottom: 22px;
  position: sticky; top: 58px; z-index: 10; background: var(--ground); padding: 12px 0; border-bottom: 1px solid var(--line); }
.filters input, .filters select { background: var(--surface); border: 1px solid var(--line); color: var(--ink); padding: 8px 12px;
  border-radius: 6px; font: inherit; }
.filters input { min-width: 240px; }
.filters .group { display: flex; gap: 6px; flex-wrap: wrap; }
.count { color: var(--faint); font-size: 13px; margin-left: auto; font-variant-numeric: tabular-nums; }
.grid { display: grid; gap: 8px; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.grid .card { aspect-ratio: 1; border: 0; padding: 0; background: var(--surface); cursor: pointer; overflow: hidden; }
.grid .card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.grid .card:hover img { transform: scale(1.04); }
.storylist section { margin-bottom: 44px; }
.storylist h2 { font: 400 12px/1 var(--ui); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; }
.stories { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.story { text-decoration: none; display: block; }
.story .cover { aspect-ratio: 4/3; background: var(--surface); overflow: hidden; }
.story .cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s; }
.story:hover .cover img { transform: scale(1.04); }
.story h3 { font: 400 19px/1.25 var(--display); margin: 10px 0 2px; }
.story p { margin: 0; color: var(--muted); font-size: 13px; }
.essay-intro { max-width: 62ch; font: 400 19px/1.6 var(--display); color: var(--ink); margin: 0 0 34px; white-space: pre-line; }
.masonry { columns: 3 300px; column-gap: 8px; }
.masonry .card { display: block; width: 100%; margin: 0 0 8px; border: 0; padding: 0; background: var(--surface); cursor: pointer; }
.masonry .card img { width: 100%; display: block; }
.prose { max-width: 62ch; font: 400 19px/1.65 var(--display); }
footer.site { padding: 30px var(--gutter); color: var(--faint); font-size: 13px; border-top: 1px solid var(--line); }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

/* ───────── v2: colour from the photographs ───────── */
body { transition: background-color 5s ease; }
.intro p { margin: 0; }
.doors { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 14px; pointer-events: auto;
  font: 400 13px/1.4 var(--ui); font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.doors a { color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(235,230,220,.35); padding-bottom: 2px; }
.doors a:hover, .doors a:focus-visible { border-color: var(--ink); }
.view { background: radial-gradient(ellipse at 38% 50%, color-mix(in srgb, var(--vc, #0e1210) 30%, transparent) 0%, rgba(8,10,9,.97) 62%), rgba(8,10,9,.97); }
.view .cap { border-left: 3px solid var(--vc, var(--moss)); padding-left: 14px; }

/* ───────── v2: story pages as features ───────── */
.feature { background: linear-gradient(var(--mix, var(--ground)), var(--ground) 1400px); }
.opener { position: relative; height: 88vh; min-height: 420px; overflow: hidden; }
.opener img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.opener::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, transparent 30%, transparent 45%, color-mix(in srgb, var(--mix, #000) 70%, #000) 100%); }
.opener-text { position: absolute; left: var(--gutter); right: var(--gutter); bottom: clamp(28px, 7vh, 70px); z-index: 2; max-width: 22ch; }
.opener h1 { font: 300 clamp(40px, 7vw, 92px)/.98 var(--display); margin: 6px 0 10px; text-wrap: balance; text-shadow: 0 4px 30px rgba(0,0,0,.5); }
.kicker { margin: 0; font: 500 12px/1.4 var(--ui); letter-spacing: .18em; text-transform: uppercase; color: var(--c, var(--moss)); }
.opener .count { color: rgba(235,230,220,.75); margin: 0; }
.opener-open { position: absolute; inset: 0; z-index: 1; background: none; border: 0; cursor: zoom-in; }
.feature .body { padding: clamp(40px, 7vh, 80px) 0 40px; }
.chapters { max-width: 62ch; margin: 0 auto 40px; padding: 0 var(--gutter); display: flex; flex-wrap: wrap; gap: 8px; }
.chapters a { font-size: 13px; letter-spacing: .06em; text-decoration: none; padding: 5px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); }
.chapters a:hover { color: var(--ink); border-color: var(--ink); }
.lede-p { max-width: 36em; margin: 0 auto 48px; padding: 0 var(--gutter); font: 400 clamp(19px, 1.5vw, 22px)/1.7 var(--display); }
.lede-p:first-of-type::first-letter { float: left; font-size: 3.6em; line-height: .85; padding: 6px 10px 0 0; color: var(--moss); }
.feature figure { margin: 0 auto 56px; }
.feature figure .shot { display: block; width: 100%; padding: 0; border: 0; background: var(--g, var(--surface)); cursor: zoom-in; }
.feature figure img { display: block; width: 100%; height: auto; }
.feature figure.full { width: 100%; }
.feature figure.solo { max-width: min(980px, calc(100% - 2 * var(--gutter))); }
.feature .pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: min(1400px, calc(100% - 2 * var(--gutter))); margin: 0 auto 56px; align-items: start; }
.feature .pair figure { margin: 0; }
.feature figcaption { max-width: 60ch; margin: 12px auto 0; padding: 0 var(--gutter); font: 400 14px/1.6 var(--caption); color: var(--muted); }
.feature figure.full figcaption { padding-left: var(--gutter); }
.more { display: flex; gap: 22px; justify-content: center; padding: 20px var(--gutter) 60px; }
.more a { color: var(--muted); text-decoration: none; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }
@media (max-width: 700px) { .feature .pair { grid-template-columns: 1fr; } }

/* caption drafts (staging only) */
.view .cap.draft { color: var(--ink); }
.view .cap.draft::before { content: "Draft caption"; display: block; font: 500 10px/1.6 var(--ui); letter-spacing: .16em; text-transform: uppercase; color: var(--community); margin-bottom: 4px; }
.rvgrid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.rv { margin: 0; }
.rv .shot { display: block; width: 100%; aspect-ratio: 3/2; padding: 0; border: 0; background: var(--surface); cursor: zoom-in; overflow: hidden; }
.rv img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rv figcaption { padding-top: 10px; font: 400 14px/1.55 var(--caption); }
.rv small { display: block; margin-top: 6px; font: 400 12px/1.4 var(--ui); color: var(--faint); }
.rid { font: 500 12px/1 ui-monospace, Menlo, monospace; color: var(--muted); }
.rconf { font: 500 10px/1 var(--ui); letter-spacing: .12em; text-transform: uppercase; padding: 2px 6px; border-radius: 3px; background: var(--surface); color: var(--muted); }
.rv[data-conf="low"] .rconf { background: #5a2b25; color: #f3c2b8; } .rv[data-conf="medium"] .rconf { background: #4d3f22; color: #efd9a6; }
.review section { margin: 46px 0 10px; }
.review h2 { font: 400 26px/1.2 var(--display); margin: 0 0 16px; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.review h2 .n { font: 400 13px/1 var(--ui); color: var(--faint); margin-left: 8px; }
.review .toc { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 13px; color: var(--muted); }
.review .toc a { color: var(--muted); }
.facts { margin-top: 40px; max-width: 62ch; }
.facts h2 { font: 400 12px/1 var(--ui); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.facts ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font: 400 18px/1.4 var(--display); }
.facts li span { color: var(--faint); font: 400 14px/1.4 var(--ui); }

/* ───────── phones ───────── */
html, body { overflow-x: clip; max-width: 100%; }        /* nothing may widen the page sideways */
@media (max-width: 640px) {
  header.site { padding: 14px 16px; gap: 10px; align-items: center; flex-wrap: nowrap; }
  .brand { font-size: 19px; white-space: nowrap; }
  .brand em { display: none; }                            /* tagline hidden on phones */
  nav.main { gap: 13px; font-size: 13.5px; white-space: nowrap; }
  nav.main a { letter-spacing: .02em; }
  .motion-switch, .proto-tag { display: none; }           /* phones just drift */
  .intro { right: 16px; left: 16px; bottom: 20px; max-width: none; font-size: 19px; }
  .doors { gap: 6px 14px; font-size: 12px; }
  main.page { padding: 78px 16px 60px; }
  .filters { top: 50px; gap: 8px; }
  .filters input, .filters select, .filters .group { width: 100%; min-width: 0; }
  .count { margin-left: 0; width: 100%; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .opener { height: 78vh; }
  .opener-text { max-width: none; }
  .lede-p { font-size: 18px; }
  .feature figure, .feature .pair { margin-bottom: 36px; }
  .chapters { gap: 6px; }
  .view aside { padding: 16px; }
}
@media (max-width: 360px) { nav.main { gap: 10px; font-size: 12.5px; } .brand { font-size: 17px; } }

/* Contact form */
form.contact { display: grid; gap: 16px; max-width: 560px; margin: 28px 0 40px; }
form.contact label { display: grid; gap: 6px; color: var(--muted); font-size: 13px; letter-spacing: .03em; }
form.contact label span { color: var(--faint); }
form.contact input, form.contact select, form.contact textarea { font: 15px/1.5 var(--ui); color: var(--ink); background: var(--surface);
  border: 1px solid var(--line); border-radius: 6px; padding: 10px 12px; width: 100%; box-sizing: border-box; }
form.contact input:focus, form.contact select:focus, form.contact textarea:focus { outline: 2px solid var(--muted); outline-offset: 1px; }
form.contact button { justify-self: start; font: 500 14px var(--ui); letter-spacing: .04em; background: var(--ink); color: var(--ground);
  border: 0; border-radius: 999px; padding: 10px 22px; cursor: pointer; }
form.contact button:disabled { opacity: .5; cursor: default; }
form.contact .status { color: var(--muted); margin: 0; min-height: 1.5em; }
form.contact .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* Highlighted story (press feature) at the top of Stories */
a.highlight { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); gap: 0; margin: 24px 0 40px; text-decoration: none;
  color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
a.highlight img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; display: block; }
a.highlight div { padding: 28px; align-self: center; }
a.highlight .kicker { color: var(--c); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 10px; }
a.highlight h2 { font: 300 clamp(26px, 3.2vw, 40px)/1.1 var(--display); margin: 0 0 10px; text-wrap: balance; }
a.highlight p { color: var(--muted); margin: 0; }
a.highlight:hover h2 { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }

/* Story credit + press line */
.feature .credit, .feature .press { max-width: 62ch; margin-left: auto; margin-right: auto; padding: 0 var(--gutter); box-sizing: border-box; }
.feature .credit { color: var(--muted); font-size: 13px; letter-spacing: .04em; margin-top: 0; margin-bottom: 6px; }
.feature .press { margin-top: 0; margin-bottom: 28px; }
.feature .press a { color: var(--ink); font-size: 14px; text-underline-offset: 3px; }

/* Film */
section.film { margin: 24px 0 48px; }
section.film video { width: 100%; max-width: 1100px; aspect-ratio: 16 / 9; background: #000; border-radius: 6px; display: block; }
section.film h2 { font: 300 28px/1.2 var(--display); margin: 16px 0 4px; }

@media (max-width: 640px) {
  a.highlight { grid-template-columns: 1fr; }
  a.highlight img { min-height: 200px; max-height: 280px; }
  a.highlight div { padding: 20px; }
}

/* Client catalogs wear their client's colours, quietly: a wash at the top, a three-colour rule, and the accents */
.feature.branded { background:
  radial-gradient(120% 60% at 50% 0, color-mix(in srgb, var(--b2) 16%, transparent), transparent 70%),
  linear-gradient(color-mix(in srgb, var(--mix, var(--ground)) 88%, var(--b3)), var(--ground) 1400px); }
.feature.branded .opener { border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--b1) 0 33.3%, var(--b2) 33.3% 66.6%, var(--b3) 66.6% 100%) 1; }
.feature.branded .kicker { color: color-mix(in srgb, var(--b1) 80%, #fff); }
.feature.branded .lede-p:first-of-type::first-letter { color: color-mix(in srgb, var(--b1) 85%, #fff); }
.feature.branded .chapters a { border-color: color-mix(in srgb, var(--b2) 55%, var(--line)); }
.feature.branded .press a { text-decoration-color: var(--b1); }
.feature.branded figcaption { border-left: 2px solid color-mix(in srgb, var(--b2) 60%, transparent); padding-left: 10px; }

/* About: Now (current role), with the brand's own colour as a quiet accent */
section.now { margin: 40px 0; padding: 28px 0 8px; border-top: 1px solid color-mix(in srgb, var(--accent) 45%, var(--line)); }
section.now h2 { font: 500 12px/1.4 var(--ui); letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin: 0 0 18px; }
.now-logo img { height: 36px; width: auto; display: block; margin-bottom: 16px; }
.yts { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 20px; }
figure.yt { margin: 0; }
figure.yt button, figure.yt iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 6px; background: #000; }
figure.yt button { position: relative; padding: 0; cursor: pointer; overflow: hidden; }
figure.yt button img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: opacity .2s; }
figure.yt button:hover img, figure.yt button:focus-visible img { opacity: 1; }
figure.yt button span { position: absolute; left: 50%; top: 50%; width: 64px; height: 64px; margin: -32px 0 0 -32px; border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 90%, #000); }
figure.yt button span::after { content: ""; position: absolute; left: 26px; top: 20px; border-left: 20px solid #0e1210;
  border-top: 12px solid transparent; border-bottom: 12px solid transparent; }
figure.yt figcaption { color: var(--muted); font-size: 13px; margin-top: 8px; }

/* The Nosey block wears Nosey's own look (from nosey.com's stylesheet): royal blue to navy, green wordmark, orange rule */
section.now.nosey { --nb: #1027a1; --nn: #00325f; --ng: #42b20d; --no: #ff7300; --nc: #f6f1e6;
  background: linear-gradient(135deg, var(--nb) 0%, #0c2a99 45%, var(--nn) 100%); color: var(--nc);
  border: 0; border-top: 4px solid var(--no); border-radius: 10px; padding: 28px clamp(20px, 4vw, 40px) 30px;
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif; }
section.now.nosey h2 { color: var(--no); font: 800 13px/1.2 "Helvetica Neue", Helvetica, Arial, sans-serif; letter-spacing: .2em; }
section.now.nosey .now-logo img { height: 40px; }
section.now.nosey .prose { color: var(--nc); font: 500 17px/1.55 "Helvetica Neue", Helvetica, Arial, sans-serif; max-width: 60ch; }
section.now.nosey section.film { margin: 22px 0 0; }
section.now.nosey section.film video { border-radius: 6px; box-shadow: 0 10px 30px rgba(0, 10, 40, .45); }
section.now.nosey section.film h2 { color: var(--nc); font: 700 16px/1.3 "Helvetica Neue", Helvetica, Arial, sans-serif; letter-spacing: 0; margin-top: 12px; }
section.now.nosey section.film .sub { color: color-mix(in srgb, var(--nc) 70%, var(--nb)); }
section.now.nosey .now-media { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: 20px; margin-top: 22px; align-items: start; }
section.now.nosey .now-media section.film { margin: 0; }
section.now.nosey figure.now-photo { margin: 0; }
section.now.nosey figure.now-photo img { display: block; width: 100%; height: auto; border-radius: 6px; box-shadow: 0 10px 30px rgba(0, 10, 40, .45); }
section.now.nosey figure.now-photo figcaption { color: color-mix(in srgb, var(--nc) 75%, var(--nb)); font: 500 13px/1.4 "Helvetica Neue", Helvetica, Arial, sans-serif; margin-top: 8px; }
@media (max-width: 640px) { section.now.nosey .now-media { grid-template-columns: 1fr; } }
/* Maury (portrait) holds the left column; Karamo and the promo stack on the right */
section.now.nosey .now-media { grid-template-areas: "p1 p2" "p1 film"; }
section.now.nosey figure.now-photo.p1 { grid-area: p1; }
section.now.nosey figure.now-photo.p2 { grid-area: p2; }
section.now.nosey .now-media section.film { grid-area: film; }
@media (max-width: 640px) { section.now.nosey .now-media { grid-template-areas: "p1" "p2" "film"; } }
/* Maury is now cropped near-square: the two photos pair up, the promo runs full width beneath */
section.now.nosey .now-media { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); grid-template-areas: "p1 p2" "film film"; align-items: end; }
section.now.nosey figure.now-photo img { aspect-ratio: 4 / 3; object-fit: cover; }
@media (max-width: 640px) { section.now.nosey .now-media { grid-template-columns: 1fr; grid-template-areas: "p1" "p2" "film"; } }

/* Nosey as a SUBSECTION of About (Tyler 2026-09-27): prose width, tighter padding, one row of three small thumbnails */
section.now.nosey { max-width: 720px; padding: 18px 22px 20px; margin: 28px 0 36px; border-top-width: 3px; }
section.now.nosey h2 { font-size: 11px; margin-bottom: 10px; }
section.now.nosey .now-logo img { height: 26px; margin-bottom: 10px; }
section.now.nosey .prose { font-size: 15px; line-height: 1.5; }
section.now.nosey .now-media { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-areas: "p1 p2 film"; gap: 12px; margin-top: 14px; align-items: start; }
section.now.nosey figure.now-photo img, section.now.nosey section.film video { aspect-ratio: 16 / 9; object-fit: cover; border-radius: 4px; box-shadow: none; }
section.now.nosey figure.now-photo figcaption { font-size: 11px; margin-top: 5px; }
section.now.nosey section.film h2 { font-size: 11px; margin: 5px 0 0; text-transform: none; letter-spacing: 0; font-weight: 500; }
section.now.nosey section.film .sub { display: none; }
@media (max-width: 640px) { section.now.nosey .now-media { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-areas: "p1 p2 film"; gap: 8px; }
  section.now.nosey figure.now-photo figcaption, section.now.nosey section.film h2 { display: none; } }

/* Social icons: footer on every page, and a small pair on the home page's corner */
footer.site { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.socials { display: inline-flex; gap: 14px; align-items: center; }
a.social { color: var(--muted); display: inline-flex; padding: 4px; border-radius: 6px; }
a.social:hover, a.social:focus-visible { color: var(--ink); }
.home-socials { position: fixed; right: var(--gutter); bottom: 74px; z-index: 16; }
.home-socials a.social { color: rgba(235,230,220,.8); background: rgba(14,18,16,.55); backdrop-filter: blur(6px); padding: 7px; }
@media (max-width: 640px) { .home-socials { top: 64px; bottom: auto; right: 12px; } }
nav.main a.search-link { display: inline-flex; align-items: center; color: var(--muted); }
nav.main a.search-link:hover, nav.main a.search-link:focus-visible { color: var(--ink); }
@media (max-width: 640px) { nav.main { gap: 12px !important; } nav.main a.search-link svg { width: 16px; height: 16px; } }
@media (max-width: 380px) { nav.main { gap: 10px !important; } .brand { font-size: 19px; } }

/* The viewer floats ABOVE the stream (Tyler 2026-09-27): a frosted, see-through panel, so the paused drift you plucked
   the photo from stays visible beneath it; closing drops you back exactly where you were. */
.view { background: radial-gradient(ellipse at 38% 50%, color-mix(in srgb, var(--vc, #0e1210) 22%, transparent) 0%, rgba(8,10,9,.5) 65%), rgba(8,10,9,.42);
  -webkit-backdrop-filter: blur(9px) saturate(1.1); backdrop-filter: blur(9px) saturate(1.1); }
.view aside { background: rgba(10,13,11,.62); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.view .close, .view .prev, .view .next { text-shadow: 0 1px 10px rgba(0,0,0,.7); }
@media (prefers-reduced-motion: no-preference) {
  .view.open { animation: view-in .28s ease-out both; }
  .view.open figure img { animation: lift .34s cubic-bezier(.2,.8,.2,1) both; }
  @keyframes view-in { from { opacity: 0; } to { opacity: 1; } }
  @keyframes lift { from { opacity: 0; transform: translateY(14px) scale(.965); } to { opacity: 1; transform: none; } }
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) { .view { background: rgba(8,10,9,.86); } }
.about-cta { margin: 14px 0 0; font: 500 13px/1 var(--ui); letter-spacing: .08em; text-transform: uppercase; }
.about-cta a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--moss); padding-bottom: 3px; }
.about-cta a:hover, .about-cta a:focus-visible { color: var(--moss); }

/* About: headshot beside the bio; two photos of Tyler at work below it */
.about-top { display: grid; grid-template-columns: minmax(0, 62ch) minmax(220px, 300px); gap: 40px; align-items: start; }
.about-head { margin: 6px 0 0; }
.about-head img { display: block; width: 100%; height: auto; border-radius: 4px; }
.about-field { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 14px; max-width: 900px; margin: 34px 0 10px; align-items: start; }
.about-field figure { margin: 0; }
.about-field img { display: block; width: 100%; height: auto; border-radius: 4px; }
.about-field figcaption { margin-top: 8px; font: 400 13px/1.5 var(--caption); color: var(--muted); }
@media (max-width: 860px) {
  .about-top { grid-template-columns: 1fr; gap: 20px; }
  .about-head { order: -1; max-width: 240px; }
  .about-field { grid-template-columns: 1fr; }
}
