/* ============================================================
   Monkyard — main stylesheet
   ============================================================ */

:root {
  --bg: #14110d;
  --bg-soft: #1a1612;
  --bg-card: #1f1a14;
  --ink: #e8dfd0;
  --ink-muted: #968875;
  --ink-faint: #5a5145;
  --accent: #c4a062;
  --accent-bright: #ddb87a;
  --rule: #443a2e;
  --rule-soft: #2d2620;
  color-scheme: dark;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  background: #14110d !important;
  background-color: #14110d !important;
  color-scheme: dark;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #14110d !important;
  background-color: #14110d !important;
  color: var(--ink);
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 400;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Subtle film grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Subtle vignette */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.4) 100%);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 1;
}

/* ===== Top Nav ===== */
.topnav {
  border-bottom: 1px solid var(--rule);
  padding: 1.25rem 0;
}

.topnav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 14, "SOFT" 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink-muted);
}

.topnav-left { display: flex; gap: 2rem; }
.topnav-right { display: flex; gap: 1.5rem; }

.topnav a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
  position: relative;
}

.topnav a:hover { color: var(--accent-bright); }

.topnav a.active {
  color: var(--ink);
}
.topnav a.active::after {
  content: '';
  position: absolute;
  bottom: -1.3rem;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
}

/* ===== Masthead ===== */
.masthead {
  text-align: center;
  padding: 5rem 0 4rem;
  position: relative;
}

.masthead .eyebrow {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 14, "SOFT" 50;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.masthead h1 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 350;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 2.5rem;
}

.masthead .tagline {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.005em;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 1.5rem 0;
}
.ornament svg {
  width: 14px;
  height: 13px;
  color: var(--accent);
  opacity: 0.85;
}

/* ===== Featured Dispatch ===== */
.featured {
  padding: 0 0 6rem;
  border-bottom: 1px solid var(--rule);
}

/* Full-bleed hero — breaks out of .container */
.featured-hero {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 72vh;
  min-height: 520px;
  max-height: 760px;
  margin-bottom: 5rem;
  overflow: hidden;
  background: var(--bg-soft);
}

.featured-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.08) brightness(0.72);
}

/* Warm sepia tone overlay to harmonize image with site palette */
.featured-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 13, 0.18);
  mix-blend-mode: multiply;
}

.featured-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 17, 13, 0.25) 0%,
    rgba(20, 17, 13, 0.05) 25%,
    rgba(20, 17, 13, 0.45) 65%,
    rgba(20, 17, 13, 0.92) 100%
  );
  display: flex;
  align-items: flex-end;
}

.featured-hero-content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.5rem 4.5rem;
}

.featured-hero-content .featured-meta {
  margin-bottom: 1.75rem;
}

.featured-hero-content h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
  color: var(--ink);
  max-width: 18ch;
}

.featured-hero-content h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.5s ease;
}
.featured-hero-content h2 a:hover { color: var(--accent-bright); }

.featured-hero-content .dek {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(232, 223, 208, 0.85);
  font-weight: 400;
  margin-bottom: 2rem;
  max-width: 38rem;
  letter-spacing: 0.005em;
}

.featured-hero-content .byline {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  color: rgba(232, 223, 208, 0.55);
  letter-spacing: 0.02em;
}

.featured-hero-content .byline strong {
  color: var(--ink);
  font-weight: 700;
}

/* Photo credit — bottom-right corner of the hero */
.featured-hero-credit {
  position: absolute;
  bottom: 1.25rem;
  right: 2.5rem;
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  font-size: 0.7rem;
  color: rgba(232, 223, 208, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Article-opening body — single centered column */
.featured-body {
  max-width: 38rem;
  margin: 0 auto;
}

.featured-body .excerpt {
  font-family: 'EB Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 2.5rem;
}

.featured-body .excerpt p { margin-bottom: 1.4rem; }

.featured-body .excerpt p:first-of-type:first-letter {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: 4.2rem;
  float: left;
  line-height: 0.85;
  padding: 0.3rem 0.8rem 0 0;
  color: var(--accent);
  font-weight: 400;
}

.featured-meta {
  font-family: 'Fraunces', serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 500;
}

.featured-meta span:not(:last-child)::after {
  content: '·';
  margin: 0 0.8rem;
  color: var(--ink-faint);
}

.continue {
  font-family: 'Fraunces', serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  color: var(--ink-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.4rem;
  transition: all 0.4s ease;
  display: inline-block;
}

.continue:hover {
  color: var(--accent-bright);
  border-color: var(--accent);
  letter-spacing: 0.3em;
}

/* ===== Section Header ===== */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-top: 5rem;
}

.section-header h3 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 48, "SOFT" 30;
  font-weight: 350;
  font-size: 2.4rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}

.section-header h3 .accent {
  color: var(--accent);
}

.section-header .view-all {
  font-family: 'Fraunces', serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.4s ease;
}

.section-header .view-all:hover { color: var(--accent-bright); }

/* ===== Recent Pieces ===== */
.recent {
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--rule);
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.piece {
  padding: 0 2rem;
  border-left: 1px solid var(--rule);
  cursor: pointer;
  transition: all 0.5s ease;
}
.piece:first-child { border-left: none; padding-left: 0; }
.piece:last-child { padding-right: 0; }

.piece .label {
  font-family: 'Fraunces', serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  display: block;
  font-weight: 500;
}

.piece h4 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 36, "SOFT" 20;
  font-weight: 400;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
  color: var(--ink);
  transition: color 0.4s ease;
}

.piece:hover h4 { color: var(--accent-bright); }

.piece .piece-dek {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-muted);
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: 0.005em;
}

.piece .date {
  font-family: 'Fraunces', serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--ink-faint);
}

/* ===== Notebook ===== */
.notebook {
  padding: 5rem 0 6rem;
}

.notebook .section-header { padding-top: 0; }

.notebook-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 5rem;
  max-width: 56rem;
}

.fragment {
  position: relative;
  padding-left: 2rem;
}

.fragment::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 10px;
  height: 9px;
  background-color: var(--accent);
  opacity: 0.7;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 22'%3E%3Cg fill='%23000'%3E%3Ccircle cx='12' cy='4' r='2.5'/%3E%3Ccircle cx='4' cy='18' r='2.5'/%3E%3Ccircle cx='20' cy='18' r='2.5'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 22'%3E%3Cg fill='%23000'%3E%3Ccircle cx='12' cy='4' r='2.5'/%3E%3Ccircle cx='4' cy='18' r='2.5'/%3E%3Ccircle cx='20' cy='18' r='2.5'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
}

.fragment p {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: 0.005em;
}

.fragment .fragment-meta {
  margin-top: 1rem;
  font-family: 'Fraunces', serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--ink-faint);
  font-style: normal;
}

/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--rule);
  padding: 3rem 0 4rem;
  color: var(--ink-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.footer-col h5 {
  font-family: 'Fraunces', serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-col p,
.footer-col a {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.005em;
  transition: color 0.4s ease;
}

.footer-col a:hover { color: var(--accent-bright); }

.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 0.5rem;
}
.footer-col li a {
  font-style: normal;
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Fraunces', serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--ink-faint);
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.masthead { animation: fadeUp 1.2s ease 0.1s both; }
.featured-hero-content .featured-meta { animation: fadeUp 1s ease 0.6s both; }
.featured-hero-content h2 { animation: fadeUp 1s ease 0.8s both; }
.featured-hero-content .dek { animation: fadeUp 1s ease 1s both; }
.featured-hero-content .byline { animation: fadeUp 1s ease 1.2s both; }
.featured-body .excerpt, .featured-body .continue { animation: fadeUp 1s ease 1.4s both; }

/* ===== Mobile ===== */
@media (max-width: 900px) {
  .container { padding: 0 1.5rem; }

  .topnav-inner {
    flex-direction: column;
    gap: 1rem;
    font-size: 0.65rem;
  }
  .topnav-left { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
  .topnav a.active::after { display: none; }

  .masthead { padding: 3rem 0 2.5rem; }
  .masthead h1 { font-size: clamp(3.5rem, 18vw, 6rem); }

  .featured { padding: 0 0 4rem; }

  .featured-hero {
    height: 62vh;
    min-height: 420px;
    margin-bottom: 3rem;
  }
  .featured-hero-content {
    padding: 0 1.5rem 2.5rem;
  }
  .featured-hero-content h2 {
    font-size: 2.4rem;
    max-width: 100%;
  }
  .featured-hero-content .dek {
    font-size: 1rem;
  }
  .featured-hero-credit {
    right: 1.5rem;
    bottom: 1rem;
    font-size: 0.62rem;
  }

  .featured-body .excerpt { font-size: 1.05rem; }
  .featured-body .excerpt p:first-of-type:first-letter { font-size: 3.4rem; }

  .section-header { padding-top: 3rem; margin-bottom: 2rem; }

  .recent-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .piece {
    padding: 2rem 0;
    border-left: none;
    border-top: 1px solid var(--rule);
  }
  .piece:first-child {
    border-top: none;
    padding-top: 0;
  }
  .piece:last-child { padding-right: 0; padding-bottom: 0; }

  .notebook-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}


/* ============================================================
   Article page additions
   ============================================================ */

.article-header {
  max-width: 44rem;
  margin: 0 auto;
  padding: 4.5rem 0 3rem;
  text-align: center;
}

.article-header .eyebrow {
  font-family: 'Fraunces', serif;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 1.75rem;
  font-weight: 500;
}

.article-header h1 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-weight: 350;
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
  color: var(--ink);
}

.article-header .dek {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 34rem;
  margin: 0 auto 2.25rem;
}

.article-header .byline {
  font-family: 'Fraunces', serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  color: var(--ink-faint);
}

.article-header .byline strong {
  color: var(--ink-muted);
  font-weight: 500;
}

.article-header .byline span:not(:last-child)::after {
  content: '·';
  margin: 0 0.7rem;
  color: var(--ink-faint);
}

/* ===== Article Hero ===== */

.article-hero {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  height: 58vh;
  min-height: 420px;
  max-height: 620px;
  margin-bottom: 5rem;
  overflow: hidden;
  background: var(--bg-soft);
}

.article-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.08) brightness(0.72);
}

.article-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 13, 0.18);
  mix-blend-mode: multiply;
}

.article-hero-credit {
  position: absolute;
  bottom: 1.25rem;
  right: 2.5rem;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 0.7rem;
  color: rgba(232, 223, 208, 0.42);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== Article Body ===== */

.article-grid {
  max-width: 38rem;
  margin: 0 auto;
  padding-bottom: 6rem;
}

.article-body {
  min-width: 0;
}

.article-body p {
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.7;
}

.article-body > p:first-of-type:first-letter {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: 4.2rem;
  float: left;
  line-height: 0.85;
  padding: 0.3rem 0.8rem 0 0;
  color: var(--accent);
  font-weight: 400;
}

.section-break {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
}

.section-break::before,

.section-break::after {
  content: '';
  flex: 0 0 4rem;
  height: 1px;
  background: var(--rule);
}

.section-break svg {
  flex: 0 0 auto;
  width: 22px;
  height: 20px;
  color: var(--accent);
  opacity: 0.85;
}

/* ===== Pull quote ===== */

.pull-quote {
  margin: 3.5rem -2rem;
  padding: 1.75rem 0;
  text-align: center;
  position: relative;
}

.pull-quote::before,

.pull-quote::after {
  content: '';
  position: absolute;
  left: 30%;
  right: 30%;
  height: 1px;
  background: var(--rule);
}

.pull-quote::before { top: 0; }

.pull-quote::after { bottom: 0; }

.pull-quote p {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 72, "SOFT" 50;
  font-style: italic;
  font-weight: 350;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--accent-bright);
  margin: 0 !important;
  padding: 0;
}

.pull-quote p::first-letter {
  all: unset;
}

/* ===== LISTEN — shared base ===== */

.listen {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  transition: border-color 0.5s ease, background 0.5s ease;
}

.listen.is-loaded { padding: 0; border-color: var(--rule-soft); }

.listen.is-loaded .listen-placeholder { display: none; }

.listen iframe {
  display: block;
  width: 100%;
  border: none;
  animation: fadeIn 0.6s ease both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== LISTEN — inline variant ===== */

.listen-inline {
  margin: 3rem 0;
}

.listen-inline .listen-placeholder {
  padding: 2.25rem 2.25rem 2rem;
  cursor: pointer;
  position: relative;
}

.listen-inline:hover {
  border-color: var(--accent);
  background: #221c15;
}

.listen-inline:hover .listen-cta {
  border-color: var(--accent);
  color: var(--accent-bright);
}

.listen-inline:hover .listen-cta .play-tri {
  border-left-color: var(--accent-bright);
}

.listen-platform {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: 'Fraunces', serif;
  text-transform: lowercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--ink-faint);
}

.listen-eyebrow {
  font-family: 'Fraunces', serif;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.7rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.listen-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 48, "SOFT" 30;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.listen-meta {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 1.75rem;
  letter-spacing: 0.01em;
}

.listen-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.2rem 0.6rem 1.1rem;
  border: 1px solid var(--rule);
  font-family: 'Fraunces', serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  color: var(--ink-muted);
  transition: all 0.4s ease;
}

.play-tri {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--ink-muted);
  transition: border-left-color 0.4s ease;
}

/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--rule);
  padding: 3rem 0 4rem;
  color: var(--ink-muted);
  font-family: 'Fraunces', serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  text-align: center;
}
footer .ornament {
  margin: 0 0.6rem;
  color: var(--accent);
}

/* ===== Mobile ===== */