/* ═══════════════════════════════════════════════════
   Projects — Bento Grid + Native Dialog
   Portfolio v3 · 2026
   Container queries, subgrid, @starting-style
   ═══════════════════════════════════════════════════ */

.projects {
  background: var(--surface-statement);
  position: relative;
  isolation: isolate;
  padding: clamp(8rem, 16vh, 14rem) 0 clamp(6rem, 12vh, 10rem);
}

/* ═══ Header ═══ */
.projects__header {
  max-width: 1200px;
  margin: 0 auto clamp(4rem, 8vh, 6rem);
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  position: relative;
  z-index: 2;
}

.projects__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-faint);
}

.projects__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin: 0;
}

.projects__title em {
  font-style: italic;
  color: var(--accent);
}

/* Scroll reveals handled by data-reveal + JS */

/* ═══════════════════════════════════════════════════
   BENTO GRID
   ═══════════════════════════════════════════════════ */
.projects__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.75rem);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

/* ═══ Card base — matte paper, no glass, no elevation ═══ */
.projects__card {
  container-type: inline-size;
  container-name: project-card;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: clamp(1.75rem, 2.8cqi, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background: var(--surface-raised);
  border: 1px solid var(--border-faint);
  box-shadow: 0 1px 3px oklch(0% 0 0 / 0.22);

  /* Past chapters are archival — neutral. Only the current chapter carries color. */
  --_chapter-accent: var(--text-muted);

  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.25s ease;
}

/* Chapter 01 — the one you're living in — is alive in rust */
.projects__card[data-project="trust"] {
  --_chapter-accent: var(--accent);
}

/* ── Hover: a small lift, nothing else. No glow, no background shift, no shadow growth. ── */
.projects__card:hover {
  transform: translateY(-3px);
  border-color: var(--border-light);
}

/* Title and watermark number stay in flow; only color transitions on hover. */
.projects__card-title {
  transition: color 0.35s ease;
}

.projects__card-num {
  transition: color 0.5s ease;
}


@media (prefers-reduced-motion: reduce) {
  .projects__card { transition: none; }
}

.projects__card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

/* Stagger handled by data-reveal-delay */

/* ═══ Grid placement ═══ */

/* Featured card: left column, full height. Same tone as siblings —
   geometry + the accent chapter-break hairline carry the importance, not elevation. */
.projects__card--featured {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  min-height: 480px;
}

/* Second card: top-right */
.projects__card:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

/* Third card: bottom-right */
.projects__card:nth-child(3) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* ═══ Card internals ═══ */
.projects__card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* ── Watermark number — tracks chapter accent (rust for current, neutral for past) ── */
.projects__card-num {
  position: absolute;
  top: clamp(0.5rem, 1cqi, 1rem);
  right: clamp(0.5rem, 1cqi, 1rem);
  font-family: var(--font-display);
  font-size: clamp(3rem, 14cqi, 10rem);
  font-weight: 400;
  line-height: 0.8;
  color: color-mix(in oklch, var(--_chapter-accent) 18%, transparent);
  pointer-events: none;
  z-index: 0;
  transition: color 0.5s ease;
}

/* ── Meta line ── */
.projects__card-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.projects__card-company { color: var(--text-muted); }

/* ── Title ── */
.projects__card-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4cqi, 2.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
  transition: color 0.35s ease;
}

.projects__card:hover .projects__card-title {
  color: var(--accent);
}

/* ═══ Zone structure — header (top) / body (grows) / tail (bottom) ═══ */
.projects__card-inner {
  flex: 1;
  gap: 0;
}

.projects__card-zone {
  display: flex;
  flex-direction: column;
}

.projects__card-zone--header {
  flex-shrink: 0;
  gap: 0.55rem;
}

.projects__card-zone--body {
  flex: 1 1 auto;
  gap: 0.6rem;
  min-height: 0;
  padding: 0.9rem 0 0.6rem;
  position: relative;
}

.projects__card-zone--tail {
  flex-shrink: 0;
  gap: 0.7rem;
}

/* Featured: editorial hairline between header and body — a chapter break mark */
.projects__card--featured .projects__card-zone--body::before {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: var(--accent);
  opacity: 0.45;
  margin-bottom: 0.9rem;
}

/* Featured: pullquote anchors to the bottom of the body zone — magazine closing-line feel */
.projects__card--featured .projects__card-pullquote {
  margin-top: auto;
}

/* ═══ Chapter eyebrow — editorial mark above title, single hairline ═══ */
.projects__card-chapter {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--_chapter-accent);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid color-mix(in oklch, var(--_chapter-accent) 35%, transparent);
  align-self: flex-start;
}


/* ═══ Featured card: title dominates top-left, live status ═══ */
.projects__card--featured .projects__card-title {
  font-size: clamp(2.2rem, 6cqi, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

/* Live meta — pulsing accent dot signals "currently shipping" */
.projects__card-meta--live {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.projects__card-live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 oklch(62% 0.18 35 / 0.55);
  animation: card-live-pulse 2.2s ease-in-out infinite;
}

@keyframes card-live-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 oklch(62% 0.18 35 / 0.55);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 6px oklch(62% 0.18 35 / 0);
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .projects__card-live-dot { animation: none; }
}

/* ── Subtitle: one-line framing under the title (featured card only) ── */
.projects__card-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 2.1cqi, 1rem);
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
  max-width: 48ch;
  text-wrap: balance;
}

/* ── Pull-quote: the closing claim. Italic serif alone carries it — no border, editorial not UI ── */
.projects__card-pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 3cqi, 1.65rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 1.2rem 0 0;
  max-width: 34ch;
  text-wrap: balance;
}

.projects__card-pullquote em {
  color: var(--accent);
  font-style: italic;
}

/* ── Teaser: single-line hook for small cards (replaces bullet list) ── */
.projects__card-teaser {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 2.3cqi, 0.95rem);
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
  max-width: 42ch;
  text-wrap: pretty;
}

.projects__card-teaser em {
  font-style: italic;
  color: var(--text-primary);
  font-weight: 500;
}

/* Small-card (non-featured) typographic restraint — read as teasers, not case studies */
.projects__card:not(.projects__card--featured) .projects__card-chapter {
  font-size: 0.5rem;
  margin-bottom: 0.55rem;
  padding-bottom: 0.35rem;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.projects__card:not(.projects__card--featured) .projects__card-title {
  font-size: clamp(1.15rem, 3.4cqi, 1.7rem);
  line-height: 1.1;
}

.projects__card:not(.projects__card--featured) .projects__card-meta {
  font-size: 0.58rem;
}

.projects__card:not(.projects__card--featured) .projects__card-zone--body {
  padding: 1rem 0;
  justify-content: center;
}

/* ── Key points: editorial em-dash list, not UI bullets ── */
.projects__card-points {
  list-style: none;
  padding: 0;
  margin: 0.55rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.projects__card-points li {
  position: relative;
  padding-left: 1.25rem;
  font-size: clamp(0.85rem, 2.3cqi, 1rem);
  line-height: 1.5;
  color: var(--text-secondary);
  text-wrap: pretty;
}

.projects__card-points li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  color: var(--text-faint);
  line-height: 1.5;
}

/* ── Footer: stack line + "case study →" share a row ── */
.projects__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.7rem;
  border-top: 1px solid var(--border-faint);
}

.projects__card-stack {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.projects__card-stack-label {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.projects__card-stack-list {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: lowercase;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* ── Open indicator: organic click affordance ── */
.projects__card-open {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.35s ease;
}

.projects__card-open-arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
  will-change: transform;
}

.projects__card:hover .projects__card-open,
.projects__card:focus-visible .projects__card-open {
  color: var(--accent);
}

.projects__card:hover .projects__card-open-arrow,
.projects__card:focus-visible .projects__card-open-arrow {
  transform: translateX(5px);
}

/* ── Container queries ── */
@container project-card (max-width: 280px) {
  .projects__card-stack-label { display: none; }
  .projects__card-open-label { display: none; }
  .projects__card-title { font-size: 1.2rem; }
  .projects__card-num { font-size: 3.5rem; }
}

@container project-card (min-width: 400px) {
  .projects__card-title { font-size: clamp(1.8rem, 5cqi, 3rem); }
}

/* ═══════════════════════════════════════════════════
   PROJECT DIALOG — Native <dialog>
   ═══════════════════════════════════════════════════ */
.project-dialog {
  border: none;
  background: var(--surface-base);
  color: var(--text-primary);
  max-width: 100vw;
  max-height: 100dvh;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;

  /* Entry/exit animation */
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s var(--ease-out),
    overlay 0.5s allow-discrete,
    display 0.5s allow-discrete;
}

.project-dialog[open] {
  opacity: 1;
  transform: translateY(0);
}

@starting-style {
  .project-dialog[open] {
    opacity: 0;
    transform: translateY(24px);
  }
}

.project-dialog::backdrop {
  background: oklch(0% 0 0 / 0.6);
  opacity: 0;
  transition: opacity 0.4s ease, display 0.4s allow-discrete, overlay 0.4s allow-discrete;
}

.project-dialog[open]::backdrop {
  opacity: 1;
}

@starting-style {
  .project-dialog[open]::backdrop {
    opacity: 0;
  }
}

/* ── Dialog close button ── */
.project-dialog__close {
  position: fixed;
  top: clamp(1.5rem, 3vh, 2.5rem);
  left: clamp(1.5rem, 5vw, 4rem);
  z-index: 10;
  background: none;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 0.6rem 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.project-dialog__close:hover {
  color: var(--accent);
  border-color: oklch(62% 0.18 35 / 0.35);
  background: var(--accent-subtle);
}

.project-dialog__close-arrow {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.project-dialog__close:hover .project-dialog__close-arrow {
  transform: translateX(-3px);
}

/* ── Dialog content ── */
.project-dialog__content {
  min-height: 100vh;
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(8rem, 16vh, 12rem) clamp(1.5rem, 5vw, 5rem) clamp(6rem, 10vh, 8rem);
  position: relative;
}

.project-dialog__num {
  position: absolute;
  top: clamp(3rem, 8vh, 6rem);
  right: clamp(1rem, 4vw, 3rem);
  font-family: var(--font-display);
  font-size: clamp(12rem, 30vw, 22rem);
  font-weight: 400;
  line-height: 0.8;
  color: var(--text-faint);
  opacity: 0.08;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.project-dialog__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.project-dialog__year { color: var(--accent); font-weight: 600; }
.project-dialog__sep { color: var(--text-faint); }

.project-dialog__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin: 0 0 clamp(3rem, 6vh, 5rem);
  max-width: 16ch;
}

.project-dialog__title::after {
  content: '';
  display: block;
  width: clamp(50px, 8vw, 90px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), oklch(62% 0.18 35 / 0.3), transparent);
  margin-top: clamp(1.5rem, 3vh, 2.5rem);
}

.project-dialog__body {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vh, 5rem);
}

.project-dialog__section { max-width: 60ch; }

.project-dialog__section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
  opacity: 0.85;
}

.project-dialog__section-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  letter-spacing: 0;
}

.project-dialog__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.project-dialog__tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border-faint);
  border-radius: 100px;
}

/* ═══ Responsive ═══ */
@media (max-width: 900px) {
  .projects__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .projects__card--featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 300px;
  }
  .projects__card:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: auto;
  }
  .projects__card:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: auto;
  }
}

@media (max-width: 480px) {
  .projects {
    padding: 4rem 0 3rem;
  }
  .projects__header {
    margin-bottom: 2.5rem;
    padding: 0 1.25rem;
  }
  .projects__title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
  .projects__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
  .projects__card--featured,
  .projects__card:nth-child(2),
  .projects__card:nth-child(3) {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .projects__card--featured { min-height: auto; }
  .projects__card {
    padding: 1.5rem;
  }
  .projects__card-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
}

@media (max-width: 768px) {
  .project-dialog__content { padding: 6rem 1.25rem 3rem; }
  .project-dialog__close { top: 1rem; left: 1rem; padding: 0.5rem 1.2rem; }
  .project-dialog__num { font-size: clamp(5rem, 22vw, 10rem); }
  .project-dialog__title { font-size: clamp(2rem, 9vw, 3.5rem); }
}

@media (max-width: 480px) {
  .project-dialog__content { padding: 5rem 1rem 2.5rem; }
  .project-dialog__num { font-size: clamp(3.5rem, 18vw, 7rem); }
  .project-dialog__title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .project-dialog__section-text {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }
}

/* ═══ Light mode: paper edge reads a touch crisper ═══ */
[data-theme="light"] .projects__card {
  border-color: oklch(0% 0 0 / 0.09);
}

[data-theme="light"] .projects__card:hover {
  border-color: oklch(0% 0 0 / 0.16);
}

/* ═══ View Transitions: card → dialog morph ═══ */
::view-transition-old(vt-project-num),
::view-transition-new(vt-project-num),
::view-transition-old(vt-project-title),
::view-transition-new(vt-project-title) {
  animation-duration: 0.55s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══ Reduced motion ═══ */
@media (prefers-reduced-motion: reduce) {
  .project-dialog {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .project-dialog::backdrop {
    transition: none;
  }
  ::view-transition-old(*),
  ::view-transition-new(*) {
    animation-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════
   BELIEF-LED CHAPTERS — replaces bento grid
   ═══════════════════════════════════════════════════ */

.projects__chapters {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.projects__chapter {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-faint);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.22s ease;
}

.projects__chapter:last-child { border-bottom: none; }

.projects__chapter:hover {
  transform: translateX(4px);
}

.projects__chapter:hover .projects__chapter-title {
  color: var(--text-primary);
}

.projects__chapter:hover .projects__chapter-belief-ref {
  opacity: 1;
}

.projects__chapter:hover .projects__chapter-cta {
  opacity: 1;
}

.projects__chapter:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.projects__chapter-belief-ref {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.projects__chapter-rule {
  height: 1px;
  background: var(--border-faint);
  margin-bottom: 1.75rem;
}

.projects__chapter-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.25rem;
}

.projects__chapter-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.12;
  letter-spacing: -0.01em;
  transition: color 0.22s ease;
}

.projects__chapter-meta {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}

.projects__chapter-company {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.projects__chapter-period {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--text-faint);
  letter-spacing: 0.06em;
}

.projects__chapter-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: live-pulse 2.4s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Citation mark — "the meat of the argument" */
.projects__chapter-essence {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 54ch;
  border-left: 1px solid var(--border-secondary);
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.projects__chapter-essence strong {
  color: var(--text-secondary);
  font-weight: 500;
}

.projects__chapter-cta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.22s ease;
}

/* Mobile */
@media (max-width: 600px) {
  .projects__chapter-header { flex-direction: column; gap: 0.6rem; }
  .projects__chapter-meta { text-align: left; align-items: flex-start; }
  .projects__chapter-cta { opacity: 0.6; }
  .projects__chapter-belief-ref { font-size: 0.5rem; letter-spacing: 0.12em; }
  .projects__chapter-essence { font-size: 0.72rem; }
}
