/* ============================================================
   NATHAN LARA — paper editorial design system
   ============================================================ */
:root {
  --paper:   #f3efe7;
  --paper-2: #ece7db;
  --ink:     #1c1913;
  --ink-2:   #322e27;
  --muted:   #6f695d;
  --line:    rgba(32,29,23,0.14);
  --line-2:  rgba(32,29,23,0.24);
  --accent:  #0a5f34;
  --container: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-width: 320px;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; border: 0; background: transparent; cursor: pointer; }
[hidden] { display: none !important; }

.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }
.mono { font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace; }
.accent { color: var(--accent); }
.lc { text-transform: lowercase; }

/* Kicker / labels */
.kicker {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   TOP NAV
   ============================================================ */
.top {
  position: sticky; top: 0; z-index: 30;
  background: rgba(243,239,231,0.85);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.top-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.wordmark { font-weight: 800; letter-spacing: -0.01em; font-size: 0.95rem; }
.top nav { display: flex; gap: 26px; align-items: center; }
.top nav a {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); transition: color 160ms;
}
.top nav a:hover, .top nav a.active { color: var(--accent); }
.burger { display: none; flex-direction: column; gap: 5px; width: 34px; height: 30px; padding: 6px; }
.burger span { display: block; width: 100%; height: 1.5px; background: var(--ink); transition: transform 200ms, opacity 200ms; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.drawer { display: none; flex-direction: column; border-bottom: 1px solid var(--line); }
.drawer a {
  padding: 14px 0; border-top: 1px solid var(--line);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2);
}

/* ============================================================
   BUTTONS / ARROW LINKS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; font-size: 0.82rem; font-weight: 600;
  border: 1px solid var(--ink); color: var(--ink);
  transition: background 160ms, color 160ms, border-color 160ms;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn-accent { border-color: var(--accent); background: var(--accent); color: #fff; }
.btn-accent:hover { background: #095c31; border-color: #095c31; color: #fff; }
.btn-ghost { border-color: var(--line-2); color: var(--ink-2); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); background: transparent; }

.textlink {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); transition: color 160ms;
}
.textlink:hover { color: var(--accent); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 620ms ease, transform 620ms ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero { padding: 68px 0 72px; border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.4fr 0.85fr; gap: 56px; align-items: stretch; }
.hero .kicker { display: block; margin-bottom: 24px; }
.hero-lead {
  font-family: "Anton", sans-serif; font-weight: 400; color: var(--ink);
  font-size: clamp(3.2rem, 7vw, 5.8rem); line-height: 0.94; letter-spacing: 0.01em;
}
.hero-tagline {
  margin-top: 20px; max-width: 24ch;
  font-size: clamp(1.35rem, 2.6vw, 1.95rem); font-weight: 600; line-height: 1.18;
  letter-spacing: -0.01em; color: var(--ink);
}
.hero-sub {
  max-width: 30ch; margin-top: 18px;
  font-size: 1.06rem; line-height: 1.6; color: var(--ink-2);
}
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

/* right-hand meta panel */
.hero-panel {
  display: flex; flex-direction: column;
  border-left: 1px solid var(--line-2); padding-left: 30px;
}
.prow { padding: 16px 0; border-bottom: 1px solid var(--line); }
.prow:first-child { padding-top: 4px; }
.prow:last-child { border-bottom: 0; }
.prow .label { display: block; margin-bottom: 7px; }
.prow p { font-size: 0.96rem; line-height: 1.5; color: var(--ink); }
.prow a { color: var(--ink); border-bottom: 1px solid var(--line-2); transition: color 160ms, border-color 160ms; }
.prow a:hover { color: var(--accent); border-color: var(--accent); }
.prow .big {
  font-family: "Anton", sans-serif; font-size: 1.15rem; letter-spacing: 0.01em; color: var(--ink);
}

/* Section shell */
.section { padding: 84px 0; border-bottom: 1px solid var(--line); }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 20px; margin-bottom: 8px;
  border-bottom: 1px solid var(--line-2); padding-bottom: 18px;
}
.section-head h2 {
  font-family: "Anton", sans-serif; font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: 0.01em; color: var(--ink);
}

/* ============================================================
   WORK INDEX (numbered editorial list)
   ============================================================ */
.work-list { display: flex; flex-direction: column; }
.work-row {
  display: grid; grid-template-columns: 54px minmax(0,1fr) auto;
  gap: 24px; align-items: center;
  padding: 26px 0; border-bottom: 1px solid var(--line);
  transition: padding-left 200ms ease;
}
.work-row:hover { padding-left: 10px; }
.work-num {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em;
}
.work-title {
  font-family: "Anton", sans-serif; font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.9rem); line-height: 1; letter-spacing: 0.01em;
  color: var(--ink); transition: color 180ms; display: block;
}
.work-row:hover .work-title { color: var(--accent); }
.work-desc { margin-top: 8px; font-size: 0.92rem; color: var(--ink-2); line-height: 1.5; max-width: 60ch; }
.work-meta {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
  text-align: right; white-space: nowrap;
}
.work-arr { display: none; }

/* ============================================================
   ABOUT (asymmetric running text)
   ============================================================ */
.split { display: grid; grid-template-columns: 200px minmax(0,1fr); gap: 40px; }
.split .label { padding-top: 6px; }
.prose p { margin-bottom: 18px; font-size: 1.08rem; line-height: 1.75; color: var(--ink-2); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   STACK
   ============================================================ */
.stack { display: flex; flex-direction: column; }
.stack-row {
  display: grid; grid-template-columns: 200px minmax(0,1fr); gap: 40px;
  padding: 22px 0; border-top: 1px solid var(--line); align-items: start;
}
.stack-row:first-child { border-top: 0; }
/* green section kickers so the accent threads through the whole page */
.stack-row .label { color: var(--accent); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.74rem; letter-spacing: 0.03em; color: var(--ink-2);
  padding: 7px 12px; border: 1px solid var(--line-2); background: var(--paper);
  transition: border-color 160ms, color 160ms, background 160ms;
}
.chip:hover { border-color: var(--accent); color: var(--accent); background: #fff; }
/* logos rest desaturated to keep the palette calm; bloom to full color on hover */
.chip img { width: 17px; height: 17px; object-fit: contain; flex-shrink: 0;
  filter: grayscale(1) contrast(0.95) opacity(0.75); transition: filter 160ms; }
.chip:hover img { filter: none; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact .kicker { display: block; margin-bottom: 18px; }
.contact-h {
  font-family: "Anton", sans-serif; font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.02; color: var(--ink);
  max-width: 18ch;
}
.contact-sub { max-width: 560px; margin-top: 20px; font-size: 1.05rem; line-height: 1.7; color: var(--ink-2); }
.contact-email {
  display: inline-block; margin-top: 28px;
  font-family: "Anton", sans-serif; font-size: clamp(1.4rem, 3.4vw, 2.4rem);
  letter-spacing: 0.01em; color: var(--ink); border-bottom: 2px solid var(--accent);
  padding-bottom: 4px; transition: color 160ms;
}
.contact-email:hover { color: var(--accent); }
.contact-links { display: flex; gap: 24px; margin-top: 30px; }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-head { padding: 84px 0 40px; border-bottom: 1px solid var(--line); }
.page-head .kicker { display: block; margin-bottom: 18px; }
.page-title {
  font-family: "Anton", sans-serif; font-weight: 400; color: var(--ink);
  font-size: clamp(2.6rem, 6.5vw, 5rem); line-height: 0.95; letter-spacing: 0.01em;
}
.page-sub { max-width: 620px; margin-top: 20px; font-size: 1.08rem; line-height: 1.6; color: var(--ink-2); }

/* ============================================================
   EXPERIENCE PAGE
   ============================================================ */
.exp-groups { display: flex; flex-direction: column; gap: 0; }
.edu-item, .exp-item {
  display: grid; grid-template-columns: 180px minmax(0,1fr);
  gap: 40px; padding: 30px 0; border-top: 1px solid var(--line); align-items: start;
}
.edu-item:first-of-type, .exp-item:first-of-type { border-top: 0; }
.exp-when {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); line-height: 1.6;
}
.exp-co { font-size: 0.86rem; color: var(--muted); margin-bottom: 5px; }
.exp-role {
  font-family: "Anton", sans-serif; font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.05; letter-spacing: 0.01em; color: var(--ink);
}
.edu-degree {
  font-family: "Anton", sans-serif; font-weight: 400;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem); line-height: 1.1; letter-spacing: 0.01em; color: var(--ink); margin-top: 2px;
}
/* company/school emphasized as the anchor, job title kept substantial */
.exp-kicker {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.95rem; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.exp-name {
  font-family: "Anton", sans-serif; font-weight: 400;
  font-size: clamp(1.45rem, 2.5vw, 1.95rem); line-height: 1.04; letter-spacing: 0.01em; color: var(--ink);
}
.exp-sub { margin-top: 8px; font-size: 0.98rem; color: var(--ink-2); line-height: 1.5; }
.edu-courses { margin-top: 14px; }
.edu-courses .label { display: block; margin-bottom: 6px; }
.edu-courses p { font-size: 0.86rem; color: var(--ink-2); line-height: 1.65; max-width: 60ch; }
.exp-bullets { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.exp-bullets li { position: relative; padding-left: 24px; font-size: 0.98rem; line-height: 1.6; color: var(--ink-2); }
.exp-bullets li::before {
  content: "→"; position: absolute; left: 0; top: 1px; color: var(--accent);
  font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 0.85rem;
}
.exp-detail { margin-top: 12px; font-size: 0.92rem; line-height: 1.6; color: var(--ink-2); }
.exp-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }

/* Leadership compact list */
.lead-list { display: flex; flex-direction: column; }
.lead-row {
  display: grid; grid-template-columns: 180px minmax(0,1fr) auto; gap: 30px;
  padding: 18px 0; border-top: 1px solid var(--line); align-items: baseline;
}
.lead-row .exp-when { line-height: 1.4; }
.lead-org { font-size: 0.84rem; color: var(--muted); }
.lead-org .lead-loc { display: block; margin-top: 3px; font-size: 0.76rem; color: var(--muted); opacity: 0.85; }
.lead-title { font-size: 1.02rem; font-weight: 600; color: var(--ink); }
.lead-title small { display: block; margin-top: 3px; font-weight: 400; font-size: 0.82rem; color: var(--accent); }

/* ============================================================
   RESUME PAGE
   ============================================================ */
.resume-frame {
  width: 100%; height: 1050px; max-height: 88vh;
  border: 1px solid var(--line-2); background: var(--paper-2);
}
.resume-fallback { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 48px; text-align: center; color: var(--ink-2); }

/* ============================================================
   CASE STUDY
   ============================================================ */
.cs-back { display: inline-block; margin: 44px 0 26px; }
.cs-kicker { display: block; margin-bottom: 22px; }
.cs-title {
  font-family: "Anton", sans-serif; font-weight: 400; color: var(--ink);
  font-size: clamp(3rem, 8.5vw, 6.4rem); line-height: 0.92; letter-spacing: 0.01em;
}
.cs-lede { max-width: 680px; margin-top: 28px; font-size: 1.24rem; line-height: 1.55; color: var(--ink-2); }

.cs-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.cs-links a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border: 1px solid var(--ink); color: var(--ink);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em;
  transition: background 160ms, color 160ms;
}
.cs-links a:hover { background: var(--ink); color: var(--paper); }
.cs-links a svg { width: 16px; height: 16px; fill: currentColor; }

.cs-meta { display: flex; flex-wrap: wrap; margin-top: 50px; border-top: 1px solid var(--line-2); }
.cs-meta div { flex: 1 1 0; min-width: 150px; padding: 22px 26px; border-right: 1px solid var(--line); }
.cs-meta div:first-child { padding-left: 0; }
.cs-meta div:last-child { border-right: 0; padding-right: 0; }
.cs-meta dt {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.cs-meta dd { font-size: 0.96rem; color: var(--ink); line-height: 1.5; }

/* case-study figure (real product screenshots) */
.cs-figure { margin: 0; }
.cs-figure.lead { margin-top: 46px; }
.cs-figure .frame {
  border: 1px solid var(--line-2);
  background: var(--paper-2);
  padding: 12px;
}
.cs-figure.tall .frame { display: flex; justify-content: center; }
.cs-figure img {
  display: block; width: 100%; height: auto;
  border: 1px solid var(--line); background: #fff;
}
.cs-figure.tall img { width: auto; max-height: 580px; }
.cs-figure figcaption {
  margin-top: 11px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.7rem; letter-spacing: 0.06em; color: var(--muted); line-height: 1.5;
}
.cs-figure figcaption b { color: var(--ink-2); font-weight: 500; }
.cs-figs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px; }
.cs-figs .cs-figure { margin: 0; }
@media (max-width: 720px) { .cs-figs { grid-template-columns: 1fr; } }

.cs-body { padding: 20px 0; }
.cs-block {
  display: grid; grid-template-columns: 200px minmax(0,1fr);
  gap: 40px; padding: 50px 0; border-top: 1px solid var(--line);
}
.cs-block:first-child { border-top: 0; }
.cs-index {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
}
.cs-block p { margin-bottom: 16px; font-size: 1.06rem; line-height: 1.72; color: var(--ink-2); }
.cs-block p:last-child { margin-bottom: 0; }
.cs-block p strong, .cs-list strong { color: var(--ink); font-weight: 600; }
.cs-block em { color: var(--ink); font-style: italic; }

.cs-list { list-style: none; margin-top: 4px; display: flex; flex-direction: column; gap: 15px; }
.cs-list li { position: relative; padding-left: 26px; font-size: 1.02rem; line-height: 1.62; color: var(--ink-2); }
.cs-list li::before {
  content: "→"; position: absolute; left: 0; top: 1px; color: var(--accent);
  font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 0.9rem;
}
.cs-list .prlink {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem; letter-spacing: 0.04em; color: var(--accent); white-space: nowrap;
  border-bottom: 1px solid transparent; transition: border-color 140ms;
}
.cs-list .prlink:hover { border-color: var(--accent); }
.cs-block code {
  font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 0.82em;
  background: var(--paper-2); padding: 1px 5px; border: 1px solid var(--line); border-radius: 3px;
}

.cs-flow { margin-top: 8px; padding: 22px; border: 1px solid var(--line-2); background: var(--paper-2); display: flex; flex-wrap: wrap; align-items: stretch; gap: 8px; }
.cs-node { flex: 1 1 0; min-width: 130px; padding: 16px; border: 1px solid var(--line-2); background: var(--paper); }
.cs-node b { display: block; font-size: 0.9rem; color: var(--ink); margin-bottom: 5px; font-weight: 600; }
.cs-node span { font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 0.66rem; line-height: 1.4; color: var(--muted); }
.cs-sep { display: flex; align-items: center; color: var(--accent); font-family: "JetBrains Mono", monospace; }

/* richer architecture diagram (vertical, detailed) */
.arch { margin-top: 8px; border: 1px solid var(--line-2); background: var(--paper-2); padding: 22px; display: flex; flex-direction: column; }
.arch-card { border: 1px solid var(--line-2); background: var(--paper); padding: 14px 16px; }
.arch-card.alt { background: var(--paper-2); border-style: dashed; }
.arch-tag { display: block; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.arch-card b { display: block; font-size: 1rem; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em; }
.arch-card b small { font-weight: 400; font-size: 0.78rem; color: var(--muted); }
.arch-items { display: flex; flex-wrap: wrap; gap: 6px; }
.arch-items span { font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 0.66rem; color: var(--ink-2); background: var(--paper-2); border: 1px solid var(--line); padding: 3px 8px; }
.arch-card.alt .arch-items span { background: var(--paper); }
.arch-down { display: flex; align-items: center; gap: 11px; padding: 9px 0 9px 6px; }
.arch-down .a { color: var(--accent); font-family: "JetBrains Mono", monospace; font-size: 0.95rem; line-height: 1; }
.arch-down .l { font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.arch-note { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line-2); font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 0.64rem; color: var(--muted); line-height: 1.5; }
.arch-note b { color: var(--ink-2); font-weight: 500; }

/* document attachment (full deck / white paper) */
.cs-attach {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  margin-top: 44px; padding: 22px 26px;
  border: 1px solid var(--line-2); background: var(--paper-2);
}
.cs-attach .label { display: block; margin-bottom: 7px; }
.cs-attach-title { font-size: 1.05rem; font-weight: 600; color: var(--ink); line-height: 1.4; }

.cs-next {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  padding: 46px 0; border-top: 1px solid var(--line-2); margin-top: 10px;
}
.cs-next-label { font-family: "JetBrains Mono", monospace; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.cs-next-title { font-family: "Anton", sans-serif; font-weight: 400; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1; margin-top: 8px; transition: color 180ms; }
.cs-next a.arrowlink:hover .cs-next-title { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  padding: 44px 0 60px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.82rem; color: var(--muted);
}
.foot a { color: var(--muted); transition: color 160ms; }
.foot a:hover { color: var(--accent); }
.foot .foot-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .split, .stack-row, .cs-block, .edu-item, .exp-item { grid-template-columns: 1fr; gap: 16px; }
  .lead-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
  .lead-row .exp-when { order: 3; }
  .hero-grid { grid-template-columns: 1fr; gap: 8px; }
  .hero-panel { border-left: 0; padding-left: 0; margin-top: 20px; border-top: 1px solid var(--line-2); }
}
@media (max-width: 720px) {
  .top nav { display: none; }
  .top nav.open { display: flex; }
  .burger { display: flex; }
  .drawer.open { display: flex; }
  .section { padding: 60px 0; }
  .work-row { grid-template-columns: 40px 1fr; gap: 16px; }
  .work-meta { display: none; }
  .cs-flow { flex-direction: column; }
  .cs-sep { transform: rotate(90deg); align-self: center; }
  .cs-meta div { border-right: 0; border-bottom: 1px solid var(--line); flex-basis: 100%; padding: 15px 0; }
}
@media (max-width: 420px) {
  .container { width: calc(100% - 36px); }
  .hero-lead { font-size: clamp(2.4rem, 11vw, 3.2rem); }
}
