:root {
  --ink: #211c1a;
  --ink-soft: #6e655f;
  --paper: #faf7f2;
  --paper-soft: #f2ece3;
  --accent: #cfe0ee;
  --border: #e6ded2;
  --gradient: radial-gradient(circle at 20% 10%, rgba(255, 210, 210, 0.55), transparent 55%), radial-gradient(circle at 85% 90%, rgba(255, 200, 155, 0.5), transparent 55%), #faf7f2;
  --radius: 20px;
  --max: 1040px;
  --sidebar-w: 240px;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Newsreader", serif;
  --font-script: "Caveat", cursive;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: radial-gradient(ellipse 1400px 550px at 50% 0%, rgba(255, 200, 205, 0.18), transparent 65%), #fefdfc;
  background-attachment: fixed;
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(ellipse 1400px 550px at 50% 0%, rgba(255, 200, 205, 0.18), transparent 65%), #fefdfc;
  background-attachment: fixed;
  line-height: 1.5;
}

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

a { color: inherit; }

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

/* ---------- Sidebar ---------- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar-w);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: transparent;
  z-index: 20;
  overflow-y: auto;
}

.logo {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.3rem;
  text-decoration: none;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.logo span { color: var(--ink-soft); }

.sidebar-icons {
  display: flex;
  gap: 10px;
}

@media (min-width: 861px) {
  .sidebar-icons {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 20;
  }
}

.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: none;
  color: var(--ink);
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.icon-btn:hover { border-color: var(--accent); background: var(--accent); }

.icon-btn svg { width: 16px; height: 16px; }

.icon-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.icon-tooltip::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--ink);
}

.icon-btn:hover .icon-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-nav a {
  position: relative;
  display: block;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-soft);
  padding: 8px 0 8px 16px;
  transition: color 0.15s ease;
}

.sidebar-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  border-radius: 2px;
  background: var(--accent);
  transition: height 0.15s ease;
}

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

.sidebar-nav a:hover::before,
.sidebar-nav a.active::before { height: 20px; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: none;
  color: var(--ink);
  cursor: pointer;
}

.main {
  margin-left: var(--sidebar-w);
}

@media (max-width: 860px) {
  .sidebar {
    position: sticky;
    width: auto;
    inset: auto;
    top: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    gap: 16px;
    flex-wrap: wrap;
  }

  .sidebar-icons { order: 2; }

  .nav-toggle { display: flex; order: 3; }

  .sidebar-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 4;
    padding-top: 8px;
    border-top: 1px solid var(--border);
  }

  .sidebar.open .sidebar-nav { display: flex; }

  .main { margin-left: 0; }
}

/* ---------- Hero ---------- */
.hero { padding: 96px 0 72px; }

.eyebrow-script {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

h1, h2, h3 { font-family: var(--font-display); }

h1 {
  font-size: clamp(2.5rem, 6vw, 5.25rem);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  max-width: 900px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: #5b6472;
  max-width: 900px;
  margin: 0 0 32px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Polaroid ---------- */
.about-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.about-hero-text { max-width: 560px; }

.about-row {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.notepad {
  flex: 0 0 auto;
  width: 460px;
  height: auto;
  margin-top: 24px;
  transition: transform 0.35s cubic-bezier(0.22, 0.8, 0.32, 1);
}

.notepad:hover {
  transform: translateY(-6px) rotate(-1deg) scale(1.015);
}

@media (max-width: 860px) {
  .notepad {
    width: 100%;
    max-width: 380px;
  }
}

/* ---------- Experience ---------- */
.experience-list {
  margin-top: 8px;
}

.experience-row {
  display: grid;
  grid-template-columns: 200px 1fr 140px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.experience-row:last-child {
  border-bottom: none;
}

.experience-company {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}

.experience-details h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin: 0 0 8px;
}

.experience-details p {
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
  color: #5b6472;
  line-height: 1.7;
}

.experience-dates {
  text-align: right;
  color: var(--ink-soft);
  font-size: 0.85rem;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .experience-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }

  .experience-dates {
    text-align: left;
  }
}

.polaroid-stack {
  position: relative;
  flex: 0 0 auto;
  width: 320px;
  height: 430px;
}

.polaroid-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 3px;
  padding: 20px 20px 0;
  box-shadow: 0 20px 48px rgba(33, 28, 26, 0.2), 0 4px 12px rgba(33, 28, 26, 0.08);
  transition: transform 0.5s cubic-bezier(0.22, 0.8, 0.32, 1), opacity 0.5s ease;
}

.polaroid-card[data-pos="0"] { transform: translate(0, 0) rotate(-3deg); z-index: 3; }
.polaroid-card[data-pos="1"] { transform: translate(12px, 10px) rotate(3deg) scale(0.96); z-index: 2; }
.polaroid-card[data-pos="2"] { transform: translate(22px, 20px) rotate(-6deg) scale(0.92); z-index: 1; }

.polaroid-card[data-pos="0"] {
  cursor: pointer;
}

.polaroid-card[data-pos="0"]:hover,
.polaroid-card[data-pos="0"]:focus-visible {
  transform: translate(0, -6px) rotate(0deg) scale(1.02);
}

.polaroid-card.swipe-out {
  animation: polaroid-swipe-to-back 0.6s cubic-bezier(0.22, 0.8, 0.32, 1) forwards;
  pointer-events: none;
}

.polaroid-card-enter {
  opacity: 0;
  transform: translate(40px, 34px) rotate(10deg) scale(0.82) !important;
}

@keyframes polaroid-swipe-to-back {
  0% {
    transform: translate(0, 0) rotate(-3deg) scale(1);
    z-index: 4;
  }
  55% {
    transform: translate(65%, 12px) rotate(14deg) scale(0.97);
    z-index: 4;
  }
  56% {
    z-index: 0;
  }
  100% {
    transform: translate(30px, 26px) rotate(8deg) scale(0.88);
    z-index: 0;
  }
}

.polaroid-photo-wrap {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 2px;
  background: var(--paper-soft);
}

.polaroid-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.polaroid-swipe-tag {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  transform: translate(-50%, -50%) scale(0.9);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(33, 28, 26, 0.82);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.polaroid-swipe-tag.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.polaroid-caption {
  padding: 10px 6px 16px;
  font-family: var(--font-script);
  font-size: 1.3rem;
  line-height: 1.15;
  color: var(--ink);
  text-align: center;
}

@media (max-width: 480px) {
  .polaroid-stack { width: 260px; height: 360px; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn:hover { transform: translateY(-2px); }

/* ---------- Password gate ---------- */
#password-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 1400px 550px at 50% 0%, rgba(255, 200, 205, 0.18), transparent 65%), #fefdfc;
  padding: 24px;
}

.gate-box {
  width: 100%;
  max-width: 480px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: 0 20px 48px rgba(33, 28, 26, 0.1), 0 4px 12px rgba(33, 28, 26, 0.06);
}

.gate-box h1 {
  font-size: 1.6rem;
  margin: 0 0 8px;
}

.gate-box p {
  color: var(--ink-soft);
  margin: 0 0 24px;
}

#gate-form {
  display: flex;
  gap: 10px;
}

#gate-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper);
}

#gate-input:focus {
  outline: none;
  border-color: var(--ink-soft);
}

#gate-form .btn {
  padding: 12px 22px;
  border: none;
  cursor: pointer;
}

#gate-error {
  display: none;
  color: #b3413a;
  font-size: 0.85rem;
  margin: 14px 0 0;
}

/* ---------- Section headings ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--paper-soft); }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0;
}

.section-head p {
  color: var(--ink-soft);
  margin: 0;
  max-width: 420px;
}

/* ---------- Project cards ---------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.project-card {
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(60, 45, 30, 0.12);
}

.project-thumb {
  aspect-ratio: 16 / 11;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(33, 28, 26, 0.55);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.project-body { padding: 22px 24px 26px; }

.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--paper-soft);
  padding: 4px 10px;
  border-radius: 999px;
}

.project-body h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  font-weight: 500;
}

.project-body p {
  color: #5b6472;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.work-feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 8px;
  align-items: center;
  padding: 32px 0;
}

.work-feature--reverse {
  grid-template-columns: 1.1fr 1fr;
}

.work-feature--reverse .work-feature-image { order: 2; }
.work-feature--reverse .work-feature-content { order: 1; }

.work-feature--reverse .work-feature-image img { margin: 0 0 0 auto; max-width: 420px; }

@media (max-width: 720px) {
  .work-feature { grid-template-columns: 1fr; }
}

.work-feature-image img {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  border-radius: var(--radius);
  filter: drop-shadow(0 16px 32px rgba(33, 28, 26, 0.16)) drop-shadow(0 4px 10px rgba(33, 28, 26, 0.08));
}

.work-feature-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.work-feature-brand svg,
.work-feature-brand-logo {
  height: 22px;
  width: auto;
  flex-shrink: 0;
}

.work-feature-brand span {
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--ink);
}

.work-feature h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 20px;
}

.work-feature p {
  color: #5b6472;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  margin: 0 0 16px;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

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

.about-grid p { color: #5b6472; font-weight: 300; line-height: 1.7; }

.skills-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

.skills-list li {
  font-size: 0.95rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

/* ---------- Mentions ---------- */
.mentions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}

.mention-pill {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-soft);
}

/* ---------- Stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 40px 0;
}

@media (max-width: 640px) {
  .stats-row { grid-template-columns: 1fr; }
}

.stat-number {
  font-family: var(--font-body);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- Contact ---------- */
.contact {
  text-align: center;
  padding: 96px 0;
}

.contact h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 16px;
  font-weight: 300;
}

.contact p {
  color: #5b6472;
  font-weight: 300;
  line-height: 1.7;
  margin: 0 0 28px;
}

.contact-email {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
}

footer {
  position: relative;
  border-top: 1px solid var(--border);
  padding: 28px 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

@media (min-width: 861px) {
  footer {
    border-top: none;
  }

  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(-1 * var(--sidebar-w));
    width: 100vw;
    height: 1px;
    background: var(--border);
  }
}

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

.footer-copyright {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.footer-clawd {
  display: inline-block;
  width: 18px;
  height: auto;
  vertical-align: middle;
  margin-left: 2px;
}

@media (min-width: 861px) {
  .footer-copyright {
    position: absolute;
    left: calc(28px - var(--sidebar-w));
    top: 50%;
    transform: translateY(-50%);
  }
}

footer a { text-decoration: none; color: var(--ink-soft); }
footer a:hover { color: var(--ink); }

/* ---------- Case study page ---------- */
.cs-header { background: var(--gradient); }

.cs-header-inner { padding: 56px 0 48px; }

.cs-back {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  margin-bottom: 28px;
}

.cs-back:hover { color: var(--ink); }

.cs-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

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

.cs-meta-item .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 6px;
  font-weight: 600;
}

.cs-meta-item .value { font-weight: 600; }

.cs-hero-image {
  aspect-ratio: 16/8;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  margin: 40px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(33, 28, 26, 0.55);
}

.cs-section { padding: 56px 0; border-bottom: 1px solid var(--border); }
.cs-section:last-of-type { border-bottom: none; }

.cs-section h2 {
  font-size: 1.6rem;
  font-weight: 300;
  margin: 0 0 20px;
}

.cs-section h3 {
  font-weight: 700;
}

.cs-section p {
  color: #5b6472;
  font-weight: 300;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 0 16px;
}

.cs-demo-gif-wrap {
  max-width: 640px;
  width: 100%;
  aspect-ratio: 1568 / 1238;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(33, 28, 26, 0.16), 0 4px 12px rgba(33, 28, 26, 0.08);
  margin-top: 8px;
  margin-bottom: 88px;
}

.cs-demo-gif {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.cs-single-image {
  max-width: 760px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(33, 28, 26, 0.16), 0 4px 12px rgba(33, 28, 26, 0.08);
  margin-top: 24px;
  margin-bottom: 64px;
}

.cs-stack-images {
  position: relative;
  max-width: 760px;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-top: -64px;
}

.cs-stack-back,
.cs-stack-front {
  position: absolute;
  width: 75%;
  border-radius: var(--radius);
  border: 3px solid #fff;
  box-shadow: 0 20px 48px rgba(33, 28, 26, 0.16), 0 4px 12px rgba(33, 28, 26, 0.08);
}

.cs-stack-back {
  left: 0;
  bottom: 0;
  z-index: 1;
}

.cs-stack-front {
  right: 0;
  top: 18%;
  z-index: 2;
}

.cs-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 720px) {
  .cs-two-col { grid-template-columns: 1fr; }
}

.insight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.insight-list li {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  color: var(--ink-soft);
}

.insight-list strong { color: var(--ink); display: block; margin-bottom: 4px; }

.cs-image-placeholder {
  border-radius: var(--radius);
  background: var(--paper-soft);
  border: 1px dashed var(--border);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}

.next-project {
  padding: 64px 0 88px;
  text-align: center;
}

.next-project .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 12px;
}

.next-project a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  text-decoration: none;
}

.next-project a .accent { color: var(--ink-soft); }
