:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #65717f;
  --paper: #f7f3ec;
  --surface: #ffffff;
  --line: rgba(31, 41, 51, 0.16);
  --accent: #a64235;
  --accent-2: #0d6f7c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(16px);
}

.site-name {
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a,
.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  justify-content: center;
  padding: 2.5rem 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.home-stage {
  background: var(--paper);
  color: var(--ink);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.55fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 4.25rem);
  padding: clamp(2.5rem, 7vw, 7rem) clamp(1rem, 5vw, 6rem);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--paper) 90%, transparent), color-mix(in srgb, var(--paper) 54%, transparent)),
    url("../images/Gallery-17.jpg") center / cover;
}

.hero-copy {
  max-width: 48rem;
}

.eyebrow,
.career-path span:first-child {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3.2rem, 9vw, 8.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.hero-actions a {
  min-height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  font-weight: 850;
  text-decoration: none;
}

.hero-actions a:first-child {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.home-hero figure {
  margin: 0;
}

.home-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
}

.home-hero figcaption {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.career-path {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.25rem, 4vw, 4rem);
  padding: clamp(2.5rem, 6vw, 6rem) clamp(1rem, 5vw, 6rem);
  background: color-mix(in srgb, var(--paper) 92%, #ffffff);
  border-bottom: 1px solid var(--line);
}

.career-path h2 {
  max-width: 34rem;
  margin: 0.7rem 0 0;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.05;
}

.career-path ol {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-path li {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.career-path strong,
.career-path li span {
  display: block;
}

.career-path li span {
  margin-top: 0.35rem;
  color: var(--muted);
}

.image-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1px;
  background: var(--line);
}

.image-strip img {
  width: 100%;
  height: clamp(14rem, 34vw, 30rem);
  object-fit: cover;
}

.content-shell {
  width: min(74rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

.page-intro {
  max-width: 46rem;
  margin-bottom: 2.5rem;
}

.page-intro h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-intro p {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

.prose {
  max-width: 54rem;
  font-size: 1.05rem;
  line-height: 1.72;
}

.prose h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.55rem;
  line-height: 1.2;
}

.prose h3 {
  margin: 1.4rem 0 0.45rem;
  font-size: 1.15rem;
  line-height: 1.25;
}

.prose a {
  color: var(--accent-2);
  font-weight: 750;
}

.prose details {
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 1rem 1.15rem;
}

.prose summary {
  cursor: pointer;
  font-weight: 850;
}

.compact-list {
  padding-left: 1.2rem;
}

.compact-list li + li {
  margin-top: 0.45rem;
}

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

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-grid figcaption {
  padding: 0.75rem 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

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

@media (max-width: 820px) {
  .site-header {
    align-items: stretch;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .home-hero,
  .career-path,
  .image-strip {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding-inline: 1rem;
  }
}

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

/* ==========================================================================
   AlphaBridge showcase (alphabridge.html)
   Product-design showcase style: soft neutral dotted stage, floating window
   cards that bleed off pastel panels, micro-label stat cluster, pastel chips.
   ========================================================================== */

.ab-stage {
  --ab-green: #14735a;
  --ab-green-dark: #0b5443;
  --ab-ink: #1c2622;
  --ab-card: #ffffff;
  --ab-hairline: rgba(28, 38, 34, 0.1);
  --ab-shadow-card: 0 2px 6px rgba(28, 38, 34, 0.05), 0 28px 60px -28px rgba(28, 38, 34, 0.28);
  --ab-radius: 26px;
  overflow-x: clip;
  isolation: isolate;
  color: var(--ab-ink);
  background:
    radial-gradient(42rem 30rem at 90% -4%, rgba(20, 115, 90, 0.06), transparent 70%),
    radial-gradient(36rem 24rem at -6% 38%, rgba(160, 122, 34, 0.05), transparent 70%),
    radial-gradient(rgba(28, 38, 34, 0.055) 1px, transparent 1px) 0 0 / 22px 22px,
    #f5f4f0;
}

.ab-eyebrow {
  margin: 0 0 0.9rem;
  color: var(--ab-green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ab-hero {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  padding: clamp(4rem, 11vh, 8rem) 1.25rem clamp(2rem, 5vh, 3.5rem);
  text-align: center;
}

/* Faint spade watermark — a nod to the AlphaBridge table brand */
.ab-hero::after {
  content: "\2660";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: clamp(-9rem, -12vw, -4rem);
  transform: translateY(-50%) rotate(12deg);
  font-size: clamp(16rem, 32vw, 30rem);
  line-height: 1;
  color: rgba(20, 115, 90, 0.07);
  pointer-events: none;
}

.ab-title {
  margin: 0;
  font-size: clamp(3.2rem, 9.5vw, 7rem);
  font-weight: 850;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.ab-tagline {
  margin: 1.2rem 0 0;
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.ab-lede {
  max-width: 40rem;
  margin: 1.2rem auto 0;
  font-size: clamp(1rem, 1.7vw, 1.13rem);
  line-height: 1.65;
  color: var(--muted);
}

/* Pastel tag chips */
.ab-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.6rem 0 0;
}

.ab-hero .ab-chips {
  justify-content: center;
}

.ab-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.78rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 750;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ab-chip:hover {
  transform: scale(1.07);
}

.ab-chip-green { background: #e2f3e9; color: #176245; }
.ab-chip-gold { background: #faf0d2; color: #8a6a1c; }
.ab-chip-blue { background: #e3edfb; color: #2d5fa8; }
.ab-chip-purple { background: #ece7fa; color: #5b44a8; }
.ab-chip-red { background: #fbe5e0; color: #a03d2d; }

.ab-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 2.1rem;
}

.ab-cta a {
  min-height: 2.9rem;
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.35rem;
  border: 1px solid var(--ab-hairline);
  border-radius: 999px;
  background: var(--ab-card);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(28, 38, 34, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ab-cta a:first-child {
  background: var(--ab-ink);
  border-color: var(--ab-ink);
  color: #ffffff;
}

.ab-cta a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -6px rgba(28, 38, 34, 0.25);
}

/* Floating window card (video + full screenshots) */
.ab-frame {
  margin: 0;
  border: 1px solid var(--ab-hairline);
  border-radius: 18px;
  overflow: hidden;
  background: var(--ab-card);
  box-shadow: var(--ab-shadow-card);
}

.ab-frame-bar {
  display: flex;
  gap: 0.4rem;
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid var(--ab-hairline);
  background: #fafaf8;
}

.ab-frame-bar span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: rgba(28, 38, 34, 0.14);
}

.ab-frame img,
.ab-frame video {
  display: block;
  width: 100%;
  height: auto;
}

.ab-frame figcaption {
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--ab-hairline);
  color: var(--muted);
  font-size: 0.88rem;
}

.ab-demo {
  max-width: 70rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vh, 3rem) 1.25rem;
}

/* Stat cluster card: micro-labels over big numerals */
.ab-stats-wrap {
  max-width: 70rem;
  margin: 0 auto;
  padding: clamp(2rem, 6vh, 4rem) 1.25rem;
}

.ab-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--ab-hairline);
  border-radius: var(--ab-radius);
  background: var(--ab-card);
  box-shadow: var(--ab-shadow-card);
  overflow: hidden;
}

.ab-stat {
  padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1.1rem, 2.5vw, 2rem);
}

.ab-stat + .ab-stat {
  border-left: 1px solid var(--ab-hairline);
}

.ab-stat-label {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ab-stat strong {
  display: block;
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.ab-stat em {
  display: block;
  margin-top: 0.55rem;
  font-style: normal;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

/* Feature rows: copy beside a pastel panel with a bleeding window card */
.ab-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.75rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 76rem;
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 5.5rem) 1.25rem;
}

.ab-feature-flip .ab-feature-copy {
  order: 2;
}

.ab-feature h2,
.ab-band h2,
.ab-under h2,
.ab-try h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.ab-feature .ab-chips {
  margin: 0 0 1.1rem;
}

.ab-feature-copy p {
  margin: 0.9rem 0 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
}

.ab-feature-copy em {
  font-style: normal;
  font-weight: 750;
  color: var(--ab-ink);
}

.ab-shot {
  position: relative;
  aspect-ratio: 5 / 4;
  border: 1px solid var(--ab-hairline);
  border-radius: var(--ab-radius);
  overflow: hidden;
  box-shadow: var(--ab-shadow-card);
}

.ab-shot-mint { background: linear-gradient(135deg, #eaf4ed, #dcede4); }
.ab-shot-blush { background: linear-gradient(135deg, #fbefe9, #f5e2da); }
.ab-shot-sky { background: linear-gradient(135deg, #e9effb, #dfeaf7); }

.ab-shot-window {
  position: absolute;
  top: 8%;
  left: 8%;
  width: 132%;
  border: 1px solid var(--ab-hairline);
  border-radius: 14px;
  overflow: hidden;
  background: var(--ab-card);
  box-shadow: 0 22px 48px -18px rgba(28, 38, 34, 0.38);
}

.ab-feature-flip .ab-shot-window {
  left: auto;
  right: 8%;
}

.ab-shot-window img {
  display: block;
  width: 100%;
  height: auto;
}

/* Band: the discovered system */
.ab-band-wrap {
  max-width: 76rem;
  margin: 0 auto;
  padding: clamp(2rem, 6vh, 4rem) 1.25rem;
}

/* Green felt table top — the AlphaBridge card table, kept from the original design */
.ab-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 4.5rem);
  border: 1px solid rgba(241, 239, 230, 0.16);
  border-radius: 32px;
  background:
    radial-gradient(46rem 28rem at 110% -10%, rgba(217, 184, 106, 0.18), transparent 65%),
    radial-gradient(40rem 26rem at -10% 115%, rgba(127, 214, 179, 0.1), transparent 65%),
    linear-gradient(168deg, #14735a, #0b5443 55%, #083f32);
  box-shadow: 0 3rem 6rem -2.2rem rgba(8, 63, 50, 0.65);
  color: #f1efe6;
  text-align: center;
}

.ab-band::before {
  content: "\2660";
  position: absolute;
  right: -4rem;
  bottom: -7rem;
  transform: rotate(-14deg);
  font-size: clamp(14rem, 26vw, 24rem);
  line-height: 1;
  color: rgba(241, 239, 230, 0.05);
  pointer-events: none;
}

.ab-band > * {
  position: relative;
}

.ab-band .ab-eyebrow {
  color: #d9b86a;
}

.ab-band-lede {
  max-width: 46rem;
  margin: 0 auto;
  font-size: clamp(0.98rem, 1.7vw, 1.1rem);
  line-height: 1.7;
  color: rgba(241, 239, 230, 0.82);
}

/* Segmented capacity meter — fills with a left-to-right wave when revealed */
.ab-meter {
  max-width: 30rem;
  margin: 2rem auto 2.4rem;
}

.ab-meter-bar {
  --ab-seg: 40; /* segment count = rule capacity, baked/refreshed from evolution data */
  position: relative;
  height: 2.1rem;
  border-radius: 10px;
  background: rgba(241, 239, 230, 0.16);
  overflow: hidden;
  -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 calc(100% / var(--ab-seg) - 3px), transparent calc(100% / var(--ab-seg) - 3px) calc(100% / var(--ab-seg)));
  mask-image: repeating-linear-gradient(90deg, #000 0 calc(100% / var(--ab-seg) - 3px), transparent calc(100% / var(--ab-seg) - 3px) calc(100% / var(--ab-seg)));
}

.ab-meter-bar i {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--fill, 0%);
  background: linear-gradient(90deg, #cfa84e, #e5c068);
}

.ab-meter span {
  display: block;
  margin-top: 0.7rem;
  color: rgba(241, 239, 230, 0.72);
  font-size: 0.88rem;
}

.ab-meter b {
  color: #f1efe6;
}

.ab-band .ab-frame {
  margin-top: 2.4rem;
  text-align: left;
}

/* Under the hood */
.ab-under {
  max-width: 76rem;
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 5.5rem) 1.25rem;
  text-align: center;
}

.ab-under-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  text-align: left;
}

.ab-card {
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--ab-hairline);
  border-radius: 18px;
  background: var(--ab-card);
  box-shadow: 0 1px 3px rgba(28, 38, 34, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ab-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -16px rgba(28, 38, 34, 0.25);
}

.ab-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.ab-card span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.ab-card code {
  font-size: 0.88em;
  background: #f3f3ef;
  border: 1px solid var(--ab-hairline);
  border-radius: 5px;
  padding: 0.05rem 0.3rem;
}

/* Try it */
.ab-try {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: center;
  max-width: 70rem;
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 5.5rem) 1.25rem clamp(4rem, 10vh, 7rem);
}

.ab-try-copy p {
  margin: 0.9rem 0 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
}

.ab-try-copy a {
  color: var(--ab-green);
  font-weight: 750;
}

.ab-terminal {
  margin: 0;
  padding: 1.4rem 1.6rem 1.5rem;
  border-radius: 20px;
  background: #15181a;
  color: #dbe5e0;
  font-size: 0.95rem;
  line-height: 1.9;
  overflow-x: auto;
  box-shadow: 0 30px 60px -30px rgba(21, 24, 26, 0.7);
}

.ab-terminal::before {
  content: "Terminal";
  display: block;
  margin-bottom: 0.8rem;
  color: rgba(219, 229, 224, 0.45);
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ab-prompt {
  color: #7fd6b3;
  user-select: none;
}

/* Scroll reveals — armed only when JS adds .ab-js, skipped for reduced motion */
@media (prefers-reduced-motion: no-preference) {
  html.ab-js .ab-reveal {
    opacity: 0;
    transform: translateY(26px) scale(0.99);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  html.ab-js .ab-reveal.ab-in {
    opacity: 1;
    transform: none;
  }

  /* Meter fill sweeps left-to-right once its reveal fires */
  html.ab-js .ab-meter .ab-meter-bar i {
    width: 0;
    transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
  }

  html.ab-js .ab-meter.ab-in .ab-meter-bar i {
    width: var(--fill, 0%);
  }
}

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

  .ab-stat + .ab-stat {
    border-left: 0;
  }

  .ab-stat:nth-child(even) {
    border-left: 1px solid var(--ab-hairline);
  }

  .ab-stat:nth-child(n + 3) {
    border-top: 1px solid var(--ab-hairline);
  }

  .ab-under-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .ab-feature,
  .ab-try {
    grid-template-columns: 1fr;
  }

  .ab-feature-flip .ab-feature-copy {
    order: 0;
  }
}

@media (max-width: 560px) {
  .ab-under-grid {
    grid-template-columns: 1fr;
  }

  .ab-stats {
    grid-template-columns: 1fr;
  }

  .ab-stat:nth-child(even) {
    border-left: 0;
  }

  .ab-stat + .ab-stat {
    border-top: 1px solid var(--ab-hairline);
  }
}

/* Project cards (projects.html) — same product-card language as the showcase */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(26rem, 100%), 1fr));
  gap: 1.5rem;
}

.project-card {
  border: 1px solid rgba(28, 38, 34, 0.1);
  border-radius: 22px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(28, 38, 34, 0.05), 0 24px 50px -28px rgba(28, 38, 34, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(28, 38, 34, 0.06), 0 30px 60px -28px rgba(28, 38, 34, 0.32);
}

.project-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(28, 38, 34, 0.1);
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.project-body {
  padding: 1.4rem 1.6rem 1.6rem;
}

.project-body h2 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
  letter-spacing: -0.015em;
}

.project-body h2 a {
  text-decoration: none;
}

.project-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.project-body .ab-chips {
  margin: 1rem 0 0;
}

.project-links {
  margin-top: 1.1rem !important;
}

.project-links a {
  color: var(--accent-2);
  font-weight: 750;
}
