:root {
  --paper: #f5f2ea;
  --paper-deep: #ebe4d7;
  --ink: #222222;
  --muted: #59636a;
  --sage: #7a8b6f;
  --copper: #a36b4e;
  --line: rgba(34, 34, 34, 0.14);
  --line-soft: rgba(34, 34, 34, 0.07);
  --shadow: rgba(40, 32, 24, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.52;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 20%, black 0%, transparent 72%);
}

.terrain {
  position: fixed;
  inset: -20%;
  pointer-events: none;
  opacity: .22;
  background:
    repeating-radial-gradient(ellipse at 20% 24%, transparent 0 18px, rgba(34,34,34,.12) 19px 20px, transparent 21px 38px),
    repeating-radial-gradient(ellipse at 80% 42%, transparent 0 24px, rgba(34,34,34,.11) 25px 26px, transparent 27px 48px),
    repeating-radial-gradient(ellipse at 48% 86%, transparent 0 30px, rgba(34,34,34,.1) 31px 32px, transparent 33px 62px);
  filter: blur(.25px);
}

.cursor-mark {
  position: fixed;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(34,34,34,.18);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 10;
}
.cursor-mark::before, .cursor-mark::after {
  content: "";
  position: absolute;
  background: rgba(34,34,34,.22);
}
.cursor-mark::before { width: 54px; height: 1px; left: -10px; top: 16px; }
.cursor-mark::after { height: 54px; width: 1px; top: -10px; left: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 64px);
  backdrop-filter: blur(18px);
  background: rgba(245, 242, 234, .76);
  border-bottom: 1px solid var(--line-soft);
}

.brand, .nav a, .button, .project-row { color: inherit; text-decoration: none; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand-mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--ink); border-radius: 50%;
  font-family: IBM Plex Mono, monospace; font-size: 13px;
}
.brand-text { letter-spacing: -.02em; }
.nav { display: flex; gap: 24px; font-size: 14px; color: var(--muted); }
.nav a:hover { color: var(--ink); }

main { position: relative; width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section-frame {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(245, 242, 234, .78);
  box-shadow: 0 24px 80px var(--shadow);
  margin: 28px 0;
  padding: clamp(28px, 5vw, 72px);
}
.section-frame::before, .section-frame::after {
  content: "+";
  position: absolute;
  font-family: IBM Plex Mono, monospace;
  color: rgba(34,34,34,.38);
  font-size: 18px;
}
.section-frame::before { top: -12px; left: -7px; }
.section-frame::after { bottom: -13px; right: -7px; }

.hero { min-height: 72vh; display: flex; flex-direction: column; justify-content: center; }
.hero.section-frame {
  padding-top: clamp(40px, 3.7vw, 44px);
  padding-bottom: clamp(40px, 3.7vw, 44px);
}
.coordinate-pill, .eyebrow, .card-meta, .project-row span, .dispatches span, .site-footer, .margin-note {
  font-family: IBM Plex Mono, monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}
.coordinate-pill {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  margin: 0 0 28px;
}
.eyebrow { color: var(--sage); font-weight: 500; margin: 0 0 16px; }
h1, h2, h3 { margin: 0; line-height: .96; letter-spacing: -.045em; }
h1, h2 { font-family: Fraunces, Georgia, serif; font-weight: 650; }
h1 { max-width: 880px; font-size: clamp(52px, 9vw, 112px); }
h2 { font-size: clamp(36px, 5vw, 68px); max-width: 760px; }
h3 { font-size: 23px; letter-spacing: -.025em; line-height: 1.05; }
p { line-height: 1.65; }
.hero-copy { max-width: 620px; color: var(--muted); font-size: 19px; margin: 28px 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 13px 18px; border: 1px solid var(--ink); font-weight: 700; }
.button.primary { background: var(--ink); color: var(--paper); }
.button.secondary { background: transparent; }
.button:hover { transform: translateY(-1px); }

.margin-note {
  position: absolute;
  right: 36px;
  bottom: 36px;
  display: grid;
  gap: 6px;
  max-width: 210px;
  color: var(--muted);
}
.margin-note strong { color: var(--ink); font-family: Inter, sans-serif; letter-spacing: 0; text-transform: none; }

.split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 84px); align-items: start; }
.body-copy { color: var(--muted); font-size: 18px; }
.section-heading { margin-bottom: 34px; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(235, 228, 215, .34);
  min-height: 270px;
}
.card-meta { color: var(--copper); display: block; margin-bottom: 64px; }
.card p { color: var(--muted); }
.card:hover { background: rgba(235, 228, 215, .68); transform: translateY(-2px); transition: .2s ease; }

.project-list { border-top: 1px solid var(--line); }
.project-row {
  display: grid;
  grid-template-columns: 60px 1fr 1.3fr;
  gap: 22px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.project-row span { color: var(--copper); }
.project-row strong { font-size: 24px; }
.project-row em { color: var(--muted); font-style: normal; }
.project-row:hover strong { color: var(--copper); }

.dispatches { display: grid; gap: 28px; }
.dispatches article { padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.dispatches span { color: var(--copper); }
.dispatches h3 { margin: 10px 0; }
.dispatches p { color: var(--muted); margin-bottom: 0; }

.contact { text-align: center; }
.contact h2, .contact p { margin-left: auto; margin-right: auto; }
.contact p { max-width: 540px; color: var(--muted); font-size: 18px; }

.site-footer {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  padding: 14px 0;
}

@media (max-width: 820px) {
  .site-header { align-items: flex-start; gap: 16px; flex-direction: column; }
  .nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .hero { min-height: 65vh; }
  .margin-note { position: static; margin-top: 34px; }
  .split-section, .work-grid, .project-row { grid-template-columns: 1fr; }
  .project-row { gap: 8px; }
  .site-footer { flex-direction: column; gap: 8px; }
}


/* Multi-page refactor additions */
.compact-hero {
  font-size: clamp(34px, 4.15vw, 54px);
  line-height: 1.07;
  letter-spacing: -.038em;
  max-width: 610px;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 610px) 242px;
  gap: clamp(42px, 6vw, 76px);
  align-items: start;
  justify-content: center;
  width: 100%;
}
.hero-text { min-width: 0; }
.page-main { position: relative; width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.page-hero { min-height: 44vh; display: flex; flex-direction: column; justify-content: center; }
.page-main[data-page="about"] .page-hero { min-height: auto; }
.floating-page-title {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.floating-page-title .coordinate-pill { margin: 0 0 8px; flex: 0 0 auto; }
.floating-page-title h1 { margin: 0; }
.about-card-grid {
  display: grid;
  gap: 18px;
  margin: 18px 0 28px;
}
.about-copy-card {
  margin: 0;
  display: block;
}
.about-copy-card h2 {
  font-size: clamp(36px, 5vw, 68px);
  max-width: 760px;
  margin-bottom: 28px;
}
.about-copy-card .body-copy {
  max-width: 820px;
  font-size: 18px;
}
.about-copy-card .body-copy p { margin-bottom: 18px; }
.intro-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(32px, 6vw, 84px); align-items: start; }
.route-grid, .archive-grid, .record-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.route-card, .archive-card, .record-card {
  color: inherit;
  text-decoration: none;
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(235, 228, 215, .34);
  min-height: 220px;
}
.route-card span, .archive-card .card-meta, .record-card .card-meta { color: var(--copper); }
.route-card span {
  font-family: IBM Plex Mono, monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}
.route-card strong, .archive-card h2, .record-card h2 { font-size: clamp(26px, 3.2vw, 42px); line-height: 1; letter-spacing: -.04em; }
.route-card em { color: var(--muted); font-style: normal; line-height: 1.55; }
.route-card:hover, .archive-card:hover, .record-card:hover { background: rgba(235, 228, 215, .68); transform: translateY(-2px); transition: .2s ease; }
.work-carousel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: -2px 0 28px;
}
.page-main[data-page="work"] .floating-page-title { margin-top: 4px; }
.page-main[data-page="work"] .section-frame.carousel-panel {
  margin: 0;
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 24px 26px 28px;
}
.carousel-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 16px;
  align-content: start;
  align-items: start;
}
.carousel-panel-head .card-meta { margin: 0; grid-column: 1; }
.carousel-panel-head h2 {
  font-size: clamp(32px, 3.8vw, 52px);
  margin: 0;
  grid-column: 1;
}
.carousel-panel-head p {
  color: var(--muted);
  margin: 0;
  grid-column: 1 / -1;
  max-width: 46ch;
}
.carousel-controls {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  gap: 6px;
  margin-top: 0;
  justify-self: end;
  align-self: start;
}
.carousel-controls button,
.carousel-see-all {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 242, 234, .72);
  color: var(--copper);
  cursor: pointer;
  font-family: IBM Plex Mono, monospace;
  font-size: 14px;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(245,242,234,.35);
}
.carousel-see-all {
  width: auto;
  padding: 0 12px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
}
.carousel-controls button:hover,
.carousel-controls button:focus-visible,
.carousel-see-all:hover,
.carousel-see-all:focus-visible {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--paper);
  outline: none;
}
.preview-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-top: 4px;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(34,34,34,.28) transparent;
}
.portfolio-preview, .image-preview {
  flex: 0 0 calc((100% - 12px) / 2);
  max-width: calc((100% - 12px) / 2);
  scroll-snap-align: start;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--line);
  background: rgba(245, 242, 234, .74);
}
.portfolio-preview {
  min-height: 250px;
  padding: 18px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
}
.portfolio-preview span, .portfolio-preview em {
  font-family: IBM Plex Mono, monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  color: var(--copper);
  font-style: normal;
}
.portfolio-preview strong {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(23px, 2.45vw, 34px);
  line-height: 1;
  letter-spacing: -.04em;
  align-self: start;
  overflow-wrap: anywhere;
}
.file-preview::before {
  content: "";
  display: block;
  height: 74px;
  border: 1px solid var(--line);
  background:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px),
    rgba(235, 228, 215, .32);
  background-size: 18px 18px;
}
.image-preview img {
  width: 100%;
  height: 250px;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(.86) contrast(.96) sepia(.08);
}
.image-preview img[src*="lincoln-dinner"],
.gallery-all-grid img[src*="lincoln-dinner"] { object-position: 18% 50%; }
.image-preview img[src*="mod-chamber"],
.gallery-all-grid img[src*="mod-chamber"] { object-position: 88% 50%; }
.image-preview img[src*="podium"],
.gallery-all-grid img[src*="podium"] { object-position: 24% 50%; }
.image-preview img[src*="district-staff"],
.gallery-all-grid img[src*="district-staff"] { object-position: 76% 50%; }
.image-preview img[src*="memorial"],
.gallery-all-grid img[src*="memorial"] { object-position: 82% 50%; }
.image-preview img[src*="campaign-team"],
.gallery-all-grid img[src*="campaign-team"] { object-position: 36% 50%; }
.image-preview img[src*="denham-field"],
.gallery-all-grid img[src*="denham-field"] { object-position: 22% 50%; }
.image-preview img[src*="capitol-desk"],
.gallery-all-grid img[src*="capitol-desk"] { object-position: 52% 50%; }
.image-preview img[src*="portrait"],
.gallery-all-grid img[src*="portrait"] { object-position: 50% 38%; }
.portfolio-preview:hover, .image-preview:hover {
  border-color: var(--sage);
  box-shadow: 0 0 0 1px rgba(122, 139, 111, .34);
  transform: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 5vw, 72px);
  background: rgba(34, 34, 34, .72);
}
.lightbox:target,
.lightbox.is-open-by-script { display: flex; }
.lightbox.is-closed-by-escape { display: none !important; }
.lightbox > img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  border: 1px solid rgba(245,242,234,.42);
  box-shadow: 0 24px 80px rgba(0,0,0,.36);
}
.lightbox-document {
  width: min(760px, 94vw);
  min-height: min(760px, 82vh);
  padding: clamp(30px, 5vw, 72px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0,0,0,.36);
}
.lightbox-document h2 { margin: 20px 0; }
.lightbox-close {
  position: fixed;
  right: 28px;
  top: 20px;
  color: var(--paper);
  text-decoration: none;
  font-size: 44px;
  line-height: 1;
}
.lightbox-gallery-panel {
  width: min(1040px, 94vw);
  max-height: 84vh;
  overflow: auto;
  padding: clamp(24px, 4vw, 46px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0,0,0,.36);
}
.gallery-all-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.gallery-all-head .card-meta { margin: 0; }
.gallery-all-head h2 { font-size: clamp(34px, 5vw, 64px); }
.gallery-all-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.gallery-all-grid a {
  display: block;
  border: 1px solid var(--line);
  background: rgba(235, 228, 215, .34);
}
.gallery-all-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  filter: saturate(.86) contrast(.96) sepia(.08);
}
.gallery-all-grid a:hover,
.gallery-all-grid a:focus-visible {
  border-color: var(--sage);
  box-shadow: 0 0 0 1px rgba(122, 139, 111, .34);
}
.print-media-panel { width: min(1180px, 94vw); }
.social-graphics-panel { width: min(980px, 94vw); }
.logos-panel { width: min(1040px, 94vw); }
.flyers-panel { width: min(1120px, 94vw); }
.social-graphics-grid,
.logos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.logos-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.flyer-group {
  --flyer-ratio: 4 / 3;
  --flyer-card-width: 240px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.flyer-group:first-of-type { margin-top: 0; }
.flyer-group h3 {
  margin: 0 0 12px;
  font-family: IBM Plex Mono, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--copper);
}
.flyers-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
}
.flyer-piece-door-hanger {
  --flyer-ratio: 288 / 648;
  --flyer-card-width: 172px;
}
.flyer-piece-palm-card {
  --flyer-ratio: 252 / 612;
  --flyer-card-width: 166px;
}
.flyer-piece-trifold {
  --flyer-ratio: 1224 / 792;
  --flyer-card-width: 340px;
}
.flyer-piece-letter {
  --flyer-ratio: 612 / 792;
  --flyer-card-width: 210px;
}
.social-graphics-grid a,
.logos-grid a {
  display: block;
  border: 1px solid var(--line);
  background: rgba(235, 228, 215, .34);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.logos-grid a {
  aspect-ratio: var(--flyer-ratio, 4 / 3);
}
.flyer-piece {
  position: relative;
  flex: 0 1 var(--flyer-card-width, 240px);
  max-width: 100%;
  height: auto;
  padding: 0;
  display: block;
}
.single-flyer-piece > a,
.flyer-piece .print-card-stage {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: var(--flyer-ratio, 4 / 3);
  border: 1px solid var(--line);
  background: rgba(235, 228, 215, .34);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.social-graphics-grid img,
.logos-grid img,
.flyer-piece img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.logos-grid img,
.flyer-piece img {
  object-fit: contain;
  padding: 0;
  background: var(--paper);
}
.social-graphics-grid a:hover,
.social-graphics-grid a:focus-visible,
.logos-grid a:hover,
.logos-grid a:focus-visible,
.flyer-piece:hover,
.flyer-piece:focus-within {
  border-color: var(--sage);
  box-shadow: 0 0 0 1px rgba(122, 139, 111, .34);
}
@media (max-width: 820px) {
  .social-graphics-grid,
  .logos-grid { grid-template-columns: 1fr; }
  .flyers-grid { display: block; }
  .flyer-piece { width: min(100%, var(--flyer-card-width, 240px)); margin-bottom: 12px; }
}
.print-media-panel {
  max-height: 88vh;
  padding: clamp(22px, 3vw, 40px);
}
.print-media-panel .gallery-all-head {
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.print-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.print-piece {
  position: relative;
  aspect-ratio: 2000 / 1091;
  height: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(235, 228, 215, .28);
  padding: 0;
  display: grid;
  place-items: stretch;
}
.print-card-stage,
.single-print-piece > a {
  position: absolute;
  inset: 0;
  display: block;
  width: auto;
  height: auto;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.print-card-page {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.print-card-page.is-active { display: block; }
.print-card-page img,
.single-print-piece img {
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid var(--line);
  background: var(--paper-deep);
  object-fit: cover;
}
.print-card-page:hover img,
.print-card-page:focus-visible img,
.single-print-piece a:hover img,
.single-print-piece a:focus-visible img {
  border-color: var(--sage);
  box-shadow: 0 0 0 1px rgba(122, 139, 111, .34);
}
.print-page-chip,
.print-page-nav,
.print-expanded-nav {
  font-family: IBM Plex Mono, monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.print-page-chip {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(245, 242, 234, .86);
  color: var(--muted);
  font-size: 11px;
  pointer-events: none;
}
.print-page-nav,
.print-expanded-nav {
  position: absolute;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 242, 234, .86);
  color: var(--copper);
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.print-page-nav.prev { left: 12px; top: 50%; transform: translateY(-50%); }
.print-page-nav.next { right: 12px; top: 50%; transform: translateY(-50%); }
.print-page-nav:hover,
.print-page-nav:focus-visible,
.print-expanded-nav:hover,
.print-expanded-nav:focus-visible {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--paper);
  outline: none;
}
.expanded-chip {
  left: 50%;
  top: 22px;
  transform: translateX(-50%);
  background: rgba(245, 242, 234, .92);
}
.print-expanded-nav {
  position: fixed;
  top: 50%;
  width: 42px;
  height: 42px;
  font-size: 24px;
}
.print-expanded-nav.prev { left: 28px; }
.print-expanded-nav.next { right: 28px; }
@media (max-width: 900px) {
  .print-media-grid { grid-template-columns: 1fr; }
  .print-piece { height: auto; }
}
.social-actions { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  padding: 8px 10px;
  font-family: IBM Plex Mono, monospace;
  font-size: 12px;
  letter-spacing: .04em;
  background: rgba(235, 228, 215, .45);
}
.social-button:hover { border-color: var(--sage); background: var(--sage); color: var(--paper); }
.center-actions { justify-content: center; margin-top: 22px; }
.nav a[aria-current="page"] { color: var(--ink); }
.button:focus-visible, .nav a:focus-visible, .brand:focus-visible, .route-card:focus-visible, .project-row:focus-visible, .social-button:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cursor-mark { display: none; }
  * { transition: none !important; }
}
@media (max-width: 820px) {
  .intro-grid, .route-grid, .archive-grid, .record-list, .about-copy-card, .work-carousel-grid { grid-template-columns: 1fr; }
  .floating-page-title { gap: 14px; }
  .floating-page-title .coordinate-pill { margin: 0 0 6px; }
  .compact-hero { font-size: clamp(40px, 12vw, 76px); }
}


/* Asset integration pass */
.hero-portrait-stack {
  width: 242px;
  display: grid;
  justify-items: stretch;
}
.hero-plate {
  width: 242px;
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(245, 242, 234, .64);
  padding: 9px;
}
.hero-plate img, .archive-plate img, .image-record > img, .photo-strip img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.86) contrast(.96) sepia(.08);
}
.hero-plate img {
  aspect-ratio: 4 / 5;
  object-position: 40% 46%;
}
.hero-plate figcaption, .archive-plate figcaption, .photo-strip figcaption {
  margin-top: 8px;
  font-family: IBM Plex Mono, monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.hero-plate figcaption {
  display: grid;
  gap: 6px;
  text-align: left;
}
.hero-plate figcaption span {
  font-family: IBM Plex Mono, monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  color: var(--muted);
}
.hero-plate figcaption strong {
  color: var(--ink);
  font-family: Inter, sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}
.portrait-socials { justify-content: center; margin-top: 10px; }
.archive-plate {
  margin: 0 0 22px;
  border: 1px solid var(--line);
  padding: 10px;
  background: rgba(235, 228, 215, .36);
}
.side-plate img { aspect-ratio: 16 / 10; }
.image-record { overflow: hidden; }
.image-record > img {
  aspect-ratio: 16 / 10;
  margin: -28px -28px 14px;
  width: calc(100% + 56px);
  max-width: none;
  border-bottom: 1px solid var(--line);
}
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
}
.photo-strip figure { margin: 0; }
.photo-strip img { aspect-ratio: 4 / 3; border: 1px solid var(--line); }
.icon-button { gap: 8px; }
.icon-button img { width: 15px; height: 15px; display: inline-block; }
.social-button.icon-button img { width: 13px; height: 13px; }
.social-button:hover img { filter: brightness(0) invert(1); }
@media (max-width: 1000px) {
  .hero-layout { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-portrait-stack, .hero-plate { width: min(320px, 100%); }
  .hero-plate { margin-top: 28px; }
}
@media (max-width: 820px) {
  .photo-strip { grid-template-columns: 1fr; }
  .hero-portrait-stack, .hero-plate { width: 100%; }
}


/* Launch-plan polish */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}
.gallery-intro {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.flyer-category-nav {
  position: sticky;
  top: -1px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 0;
  background: linear-gradient(180deg, rgba(245,242,234,.98), rgba(245,242,234,.88));
  backdrop-filter: blur(10px);
}
.flyer-category-nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--copper);
  text-decoration: none;
  font-family: IBM Plex Mono, monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(235, 228, 215, .46);
}
.flyer-category-nav a:hover,
.flyer-category-nav a:focus-visible {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.flyer-piece {
  overflow: visible;
}
.flyer-piece .print-card-stage,
.single-flyer-piece > a {
  overflow: hidden;
}
.piece-caption {
  display: grid;
  gap: 3px;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.25;
}
.piece-caption strong {
  font-size: 14px;
  letter-spacing: -.015em;
}
.piece-caption span {
  color: var(--muted);
  font-family: IBM Plex Mono, monospace;
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.content-stack {
  display: grid;
  gap: 20px;
}
.content-stack .body-copy {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}
.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.mini-card {
  border: 1px solid var(--line);
  background: rgba(235, 228, 215, .34);
  padding: 18px;
}
.badge {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 8px;
  margin-bottom: 12px;
  color: var(--copper);
  font-family: IBM Plex Mono, monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.next-step-card {
  margin: 24px 0 72px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}
.next-step-card a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid var(--copper);
}
.next-step-card p { margin: 0; max-width: 640px; }
@media (max-width: 820px) {
  .mini-card-grid { grid-template-columns: 1fr; }
  .next-step-card { align-items: flex-start; flex-direction: column; }
  .flyer-category-nav { position: static; }
  .flyer-piece { margin-bottom: 12px; }
}

.flyers-panel .gallery-all-head {
  align-items: center;
  gap: 24px;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.flyers-panel .gallery-all-head h2 {
  font-size: clamp(38px, 4.2vw, 54px);
  max-width: 560px;
}
.flyer-piece-door-hanger { --flyer-card-width: 132px; }
.flyer-piece-palm-card { --flyer-card-width: 128px; }
.flyer-piece-letter { --flyer-card-width: 150px; }
.flyer-piece-trifold { --flyer-card-width: 280px; }
.flyers-panel { max-height: 90vh; }

/* Publishing readiness */
.notebook-note { margin-top: 6px; padding-top: 18px; border-top: 1px solid var(--line); }
.lightbox img:not([src]) { display: none; }

