/* ============================================================
   Techmonk Solutions — "Pick a Card" design system
   Clean white background, system fonts, playing-card nav,
   smoke rising from the bottom of the landing page.
   ============================================================ */

:root {
  /* Color */
  --bg:        #ffffff;
  --bg-alt:    #f7f6f2;   /* subtle off-white for panels, never grey/dark */
  --ink:       #17181a;   /* primary text, near-black */
  --muted:     #6b6b6b;   /* secondary text */
  --line:      rgba(23, 24, 26, 0.14);
  --line-soft: rgba(23, 24, 26, 0.08);
  --red:       #b3272d;   /* hearts / diamonds, card red */
  --brass:     #a5772f;   /* accent — links, underlines, ember */
  --navy:      #10192b;   /* business page only — a deliberately heavier, "serious" section */
  --navy-line: rgba(255, 255, 255, 0.14);
  --smoke:     rgba(23, 24, 26, 0.07);

  /* Type — system stack only, no webfonts */
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;

  /* Layout */
  --max-w: 1080px;
  --radius: 6px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink);
}

.brand span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -20px;
  height: 2px;
  background: var(--red);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  padding: 10px;
  margin: -10px;
  color: var(--ink);
  cursor: pointer;
  border-radius: 6px;
  line-height: 0;
}

.nav-toggle:hover { color: var(--brass); }
.nav-toggle:active { background: var(--line-soft); }
.nav-toggle svg { width: 28px; height: 28px; display: block; pointer-events: none; }

.pac-head { fill: currentColor; }
.pac-eye { fill: var(--bg); }
.pac-brow { stroke: var(--bg); fill: none; }

.pac-mouth {
  fill: var(--bg);
  transform-box: view-box;
  transform-origin: 16px 16px;
  transform: scaleY(0);
  transition: transform 0.22s ease;
}

.pac-brow {
  transform-box: view-box;
  transform-origin: 10px 5.5px;
  transition: transform 0.22s ease;
}

/* buzzing for attention while closed — a quick shake, then a pause, on loop */
.nav-toggle .pac-icon { animation: pacBuzz 2.4s ease-in-out infinite; }

@keyframes pacBuzz {
  0%       { transform: rotate(0deg); }
  2%       { transform: rotate(-9deg); }
  4%       { transform: rotate(9deg); }
  6%       { transform: rotate(-8deg); }
  8%       { transform: rotate(8deg); }
  10%      { transform: rotate(-5deg); }
  12%      { transform: rotate(5deg); }
  14%      { transform: rotate(-2deg); }
  16%,100% { transform: rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle .pac-icon { animation: none; }
}

/* open the menu → mouth opens, brow softens, buzzing stops */
.nav-toggle[aria-expanded="true"] .pac-icon { animation: none; }
.nav-toggle[aria-expanded="true"] .pac-mouth { transform: scaleY(1); }
.nav-toggle[aria-expanded="true"] .pac-brow { transform: rotate(8deg) translateY(1px); }

@keyframes navdrop {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
    animation: navdrop 0.18s ease;
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    border-bottom: 1px solid var(--line-soft);
  }

  .nav-links a.active::after { display: none; }
  .nav-links a.active { color: var(--red); }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 16px;
}

.hero h1 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  max-width: 14ch;
}

.cursor-blink {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  margin-left: 4px;
  background: var(--red);
  vertical-align: -0.08em;
  animation: blink 1.1s steps(1) infinite;
}

@keyframes blink {
  0%, 49%  { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-blink { animation: none; opacity: 0.6; }
}

.hero p.lede {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 42ch;
  margin: 0 0 46px;
}

/* ---------- Smoke rising from the bottom ---------- */

.smoke-field {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 340px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.smoke-field .ember {
  position: absolute;
  bottom: 8px; left: 50%;
  width: 6px; height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 8px 2px rgba(165, 119, 47, 0.5);
}

.plume {
  position: absolute;
  bottom: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--smoke) 0%, transparent 70%);
  filter: blur(6px);
  animation: rise 9s ease-in infinite;
  opacity: 0;
}

.plume:nth-child(2) { left: 46%; width: 110px; height: 110px; animation-duration: 7.5s; animation-delay: 0.5s; }
.plume:nth-child(3) { left: 52%; width: 170px; height: 170px; animation-duration: 10.5s; animation-delay: 2.2s; }
.plume:nth-child(4) { left: 41%; width: 90px;  height: 90px;  animation-duration: 6.8s;  animation-delay: 3.6s; }
.plume:nth-child(5) { left: 57%; width: 130px; height: 130px; animation-duration: 9.8s;  animation-delay: 1.3s; }

@keyframes rise {
  0%   { transform: translateY(0) translateX(0) scale(0.7); opacity: 0; }
  12%  { opacity: 0.9; }
  100% { transform: translateY(-320px) translateX(18px) scale(1.6); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .plume { animation: none; opacity: 0.25; bottom: 20px; }
}

/* ---------- Playing cards (the nav) ---------- */

.card-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-bottom: 40px;
}

@media (max-width: 780px) {
  .card-row { grid-template-columns: 1fr; max-width: 260px; margin: 0 auto; }
}

.playing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: var(--ink);
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 16px;
  aspect-ratio: 5 / 7;
  max-width: 230px;
  margin: 0 auto;
  padding: 14px 16px;
  position: relative;
  box-shadow: 0 10px 22px rgba(23, 24, 26, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.playing-card:hover {
  transform: translateY(-10px) rotate(0deg) scale(1.03);
  box-shadow: 0 20px 34px rgba(23, 24, 26, 0.14);
}

.card-row .playing-card:nth-child(1) { transform: rotate(-3deg); }
.card-row .playing-card:nth-child(2) { transform: rotate(1.5deg); }
.card-row .playing-card:nth-child(3) { transform: rotate(-1deg); }
.card-row .playing-card:nth-child(1):hover,
.card-row .playing-card:nth-child(2):hover,
.card-row .playing-card:nth-child(3):hover { transform: translateY(-10px) rotate(0deg) scale(1.03); }

.corner {
  font-family: var(--font-mono);
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  font-size: 0.95rem;
}

.corner.top-left { align-self: flex-start; }
.corner.bottom-right { align-self: flex-end; transform: rotate(180deg); }

.corner .suit { display: block; font-size: 1.05rem; margin-top: 1px; }
.corner.red { color: var(--red); }
.corner.black { color: var(--ink); }

.pip {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.2rem;
  line-height: 1;
}

.pip.red { color: var(--red); }
.pip.black { color: var(--ink); }

.pip svg { width: 64px; height: 64px; }

.card-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.card-caption {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Generic section scaffolding for inner pages ---------- */

.page-hero {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--line);
}

.page-hero .hero-eyebrow { margin-bottom: 14px; }

.page-hero h1 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin: 0 0 16px;
}

.page-hero p.lede { color: var(--muted); max-width: 60ch; font-size: 1.05rem; }

section { padding: 56px 0; }
section + section { border-top: 1px solid var(--line); }

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 12px;
}

h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 20px;
}

/* ---------- Services grid (business page) ---------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 820px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
}

.service-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.service-card p { color: var(--muted); font-size: 0.94rem; margin: 0 0 14px; }

.stack-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.stack-tags span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 4px 10px;
}

/* ---------- Form (chitchat page) ---------- */

.form-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 560px;
}

label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}

.field { margin-bottom: 20px; }

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 12px 14px;
  border-radius: var(--radius);
}

textarea { resize: vertical; min-height: 120px; }

input:focus, textarea:focus, a:focus-visible, button:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  border: none;
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 22px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover { background: var(--red); }

.flash {
  font-family: var(--font-mono);
  font-size: 13.5px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: rgba(165, 119, 47, 0.1);
  border: 1px solid var(--brass);
  color: var(--brass);
  margin-bottom: 24px;
}

/* ---------- Story page ---------- */

.story p {
  font-size: 1.05rem;
  color: var(--ink);
  max-width: 68ch;
  margin: 0 0 22px;
}

.story p.aside {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: var(--muted);
  border-left: 2px solid var(--brass);
  padding-left: 18px;
}

/* ============================================================
   Business page — a deliberately different, heavier template.
   Darker hero, numbered service rows, a real process timeline.
   Nothing here references implementation stack — capability
   language only.
   ============================================================ */

.biz-hero {
  background: var(--navy);
  color: #fff;
  padding: 96px 0 84px;
}

.biz-hero .hero-eyebrow { color: #d7b876; }

.biz-hero h1 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.12;
  max-width: 18ch;
  margin: 0 0 20px;
}

.biz-hero p.lede {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
  max-width: 52ch;
  margin: 0;
}

.biz-service-row {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  padding: 44px 0;
}

.biz-service-row + .biz-service-row { border-top: 1px solid var(--line); }

.biz-num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line);
  text-stroke: 1.5px var(--line);
}

.biz-service-row h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.biz-service-row p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 58ch;
  margin: 0 0 18px;
}

.capability-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.capability-tags span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px 12px;
}

@media (max-width: 640px) {
  .biz-service-row { grid-template-columns: 1fr; gap: 8px; }
  .biz-num { font-size: 2rem; -webkit-text-stroke: 1px var(--line); }
}

/* process timeline — a genuine ordered sequence */

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

@media (max-width: 820px) {
  .process-list { grid-template-columns: 1fr; }
}

.process-list li {
  position: relative;
  padding: 0 22px 0 0;
  border-right: 1px solid var(--line);
}

.process-list li:last-child { border-right: none; }

@media (max-width: 820px) {
  .process-list li { border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 26px 0; margin-bottom: 26px; }
}

.process-list .step-index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brass);
  display: block;
  margin-bottom: 10px;
}

.process-list h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.process-list p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* industries tag cloud */

.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }

.tag-cloud span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 9px 18px;
}

/* closing CTA band, same navy weight as the hero to bookend the page */

.cta-band {
  background: var(--navy);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.66);
  max-width: 46ch;
  margin: 0 auto 26px;
}

.cta-band .btn:hover { background: var(--red); }

/* ---------- Projects ---------- */

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 820px) { .project-grid { grid-template-columns: 1fr; } }

.project-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 26px rgba(23, 24, 26, 0.1);
}

.project-card img,
.project-card-placeholder {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--line-soft), var(--bg-alt));
}

.project-card-body { padding: 18px 20px 22px; }

.project-card-body h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.project-card-body p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-item {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.05); }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(23, 24, 26, 0.92);
  z-index: 50;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
}

.lightbox.open { display: flex; }

.lightbox img { max-width: 90vw; max-height: 80vh; border-radius: 4px; }

.lightbox p {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-mono);
  font-size: 13px;
  margin-top: 16px;
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Blog ---------- */

.blog-list { display: flex; flex-direction: column; }

.blog-item {
  display: block;
  text-decoration: none;
  color: var(--ink);
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.blog-item:first-child { padding-top: 0; }

.blog-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brass);
  display: block;
  margin-bottom: 8px;
}

.blog-item h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 0 8px;
}

.blog-item p { color: var(--muted); margin: 0; }

/* ---------- Footer ---------- */

footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Scribble credit modal ---------- */

.credit-trigger {
  cursor: pointer;
  text-decoration: underline dotted var(--brass);
  text-underline-offset: 3px;
}
.credit-trigger:hover { color: var(--brass); }

.scribble-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(23, 24, 26, 0.55);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.scribble-overlay.is-open { display: flex; }

.scribble-note {
  position: relative;
  max-width: 420px;
  width: 100%;
  background: var(--bg-alt);
  background-image:
    repeating-linear-gradient(0deg, rgba(23,24,26,0.025) 0px, rgba(23,24,26,0.025) 1px, transparent 1px, transparent 3px);
  padding: 34px 30px 26px;
  color: var(--ink);
  font-family: "Segoe Print", "Bradley Hand", "Comic Sans MS", var(--font-body);
  transform: rotate(-2.2deg);
  box-shadow:
    0 2px 0 rgba(23,24,26,0.05),
    2px 6px 18px rgba(23,24,26,0.35),
    inset 0 0 0 1px var(--line-soft);
  clip-path: polygon(
    1% 4%, 8% 0%, 22% 2%, 40% 0%, 58% 1%, 76% 0%, 92% 2%, 100% 5%,
    99% 22%, 100% 40%, 98% 58%, 100% 76%, 99% 93%, 96% 100%,
    80% 98%, 62% 100%, 44% 99%, 26% 100%, 10% 98%, 2% 96%,
    0% 78%, 2% 60%, 0% 42%, 1% 24%
  );
  animation: scribble-in 0.18s ease-out;
}

@keyframes scribble-in {
  from { transform: rotate(-2.2deg) scale(0.92); opacity: 0; }
  to   { transform: rotate(-2.2deg) scale(1); opacity: 1; }
}

.scribble-note::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid var(--ink);
  opacity: 0.35;
  pointer-events: none;
  transform: rotate(0.6deg);
}

.scribble-close {
  position: absolute;
  top: -12px;
  right: -10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg-alt);
  border: none;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  font-family: var(--font-body);
  transform: rotate(6deg);
}

.scribble-title {
  margin: 0 0 6px;
  font-size: 1.6rem;
  letter-spacing: 0.3px;
  color: var(--red);
  text-decoration: underline wavy;
  text-decoration-color: rgba(179, 39, 45, 0.45);
}

.scribble-body {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.85;
}
