/* ==========================================================================
   Celsian Partners — site styles (2026 refresh)
   No framework, no build step. Modern CSS with graceful fallbacks.
   ========================================================================== */

@view-transition { navigation: auto; }

:root {
  /* Brand */
  --navy: #152d45;
  --navy-deep: #0d1e30;
  --navy-soft: #1f3b58;
  --gold: #daa521;          /* logo gold — use on navy */
  --gold-ink: #8a6a12;      /* accessible gold for text on light backgrounds */
  --ivory: #faf5ea;
  --paper: #fffdf8;
  --ink: #1b2430;
  --muted: #5b6270;
  --line: #e7dfcc;
  --line-dark: rgba(250, 245, 234, .14);

  /* Type */
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --step--1: clamp(.83rem, .8rem + .15vw, .92rem);
  --step-0: clamp(1rem, .96rem + .2vw, 1.125rem);
  --step-1: clamp(1.2rem, 1.1rem + .45vw, 1.45rem);
  --step-2: clamp(1.5rem, 1.3rem + .9vw, 2.1rem);
  --step-3: clamp(2rem, 1.6rem + 1.9vw, 3.1rem);
  --step-4: clamp(2.5rem, 1.8rem + 3.4vw, 4.6rem);

  /* Space & shape */
  --gutter: clamp(1rem, .5rem + 2.5vw, 2.5rem);
  --section: clamp(4rem, 3rem + 5vw, 8rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(13,30,48,.06), 0 12px 32px -12px rgba(13,30,48,.18);
  --ease: cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0 0 1em; text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 .5em;
  text-wrap: balance;
  font-variation-settings: "opsz" 96, "SOFT" 0, "WONK" 0;
  letter-spacing: -.01em;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
::selection { background: var(--gold); color: var(--navy); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.skip { position: absolute; left: -999px; top: .5rem; background: var(--gold); color: var(--navy); padding: .6rem 1rem; z-index: 100; border-radius: 8px; }
.skip:focus { left: .5rem; }

.wrap { width: min(1200px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.wrap-narrow { width: min(760px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section-tight { padding-block: calc(var(--section) * .6); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: var(--step--1); font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-ink); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 1.75rem; height: 1px; background: currentColor; }
.lede { font-size: var(--step-1); line-height: 1.55; color: var(--muted); max-width: 62ch; }
.muted { color: var(--muted); }

/* ---------- Dark sections ---------- */
.dark { background: var(--navy); color: rgba(250,245,234,.82); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--ivory); }
.dark .eyebrow { color: var(--gold); }
.dark .lede, .dark .muted { color: rgba(250,245,234,.72); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--navy); --fg: var(--ivory);
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 1.4rem; border-radius: 999px;
  background: var(--bg); color: var(--fg);
  font-weight: 600; font-size: .98rem; text-decoration: none;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(13,30,48,.45); }
.btn svg { width: 1.1em; height: 1.1em; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-gold { --bg: var(--gold); --fg: var(--navy); }
.btn-ghost { --bg: transparent; --fg: currentColor; border-color: currentColor; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--gold-ink); text-decoration: none; }
.dark .link-arrow { color: var(--gold); }
.link-arrow::after { content: "→"; transition: transform .25s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--navy) 92%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-dark);
  view-transition-name: site-header;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 4.5rem; gap: 1rem; }
.brand img { height: 3.4rem; width: auto; }
.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
  color: rgba(250,245,234,.8); text-decoration: none; font-size: .95rem; font-weight: 500;
  padding: .5rem .85rem; border-radius: 999px; transition: color .2s, background .2s;
}
.nav a:hover { color: var(--ivory); background: rgba(250,245,234,.08); }
.nav a[aria-current="page"] { color: var(--gold); }
.nav .btn { margin-left: .5rem; padding: .6rem 1.1rem; }
.nav .btn:hover { background: #e6b534; }
.menu-btn { display: none; background: none; border: 0; color: var(--ivory); padding: .5rem; cursor: pointer; }
.menu-btn svg { width: 28px; height: 28px; }

@media (max-width: 880px) {
  .menu-btn { display: block; }
  .nav {
    position: fixed; inset: 4.5rem 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--navy); padding: 1rem var(--gutter) 1.5rem; gap: .25rem;
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .2s, transform .25s var(--ease), visibility .2s;
  }
  .nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: .85rem 1rem; font-size: 1.05rem; }
  .nav .btn { margin: .5rem 0 0; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(4.5rem, 3rem + 7vw, 9rem) clamp(4rem, 3rem + 5vw, 7rem); }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60rem 30rem at 85% -10%, rgba(218,165,33,.16), transparent 60%),
    radial-gradient(40rem 30rem at -10% 110%, rgba(31,59,88,.9), transparent 70%);
}
.hero .wrap { position: relative; }
.hero .wrap:not(.wrap-stats) { display: grid; grid-template-columns: 1.35fr .9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero h1 { font-size: var(--step-4); font-weight: 400; }
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero .lede { margin-top: 1.25rem; }
.hero-mark { justify-self: end; width: min(100%, 360px); color: var(--gold); opacity: .95; }
.hero-mark .draw { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 2.4s var(--ease) .2s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@media (max-width: 880px) {
  .hero .wrap:not(.wrap-stats) { grid-template-columns: 1fr; }
  .hero-mark { display: none; }
}

.page-hero { padding-block: clamp(3.5rem, 2.5rem + 5vw, 6.5rem) clamp(3rem, 2rem + 4vw, 5rem); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50rem 24rem at 90% -20%, rgba(218,165,33,.14), transparent 60%);
}
.page-hero .wrap { position: relative; }
.page-hero h1 { font-size: var(--step-4); font-weight: 400; max-width: 18ch; }
.crumbs { font-size: var(--step--1); margin-bottom: 1.5rem; color: rgba(250,245,234,.6); }
.crumbs a { color: rgba(250,245,234,.8); text-decoration: none; }
.crumbs a:hover { color: var(--gold); }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); margin-top: clamp(3rem, 6vw, 5rem); }
.stat { padding: 1.5rem 1.25rem 0 0; }
.stat + .stat { padding-left: 1.25rem; border-left: 1px solid var(--line-dark); }
.stat b { display: block; font-family: var(--serif); font-weight: 400; font-size: var(--step-3); color: var(--ivory); line-height: 1.1; }
.stat span { font-size: var(--step--1); color: rgba(250,245,234,.65); }
@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { padding-left: 0; border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line-dark); margin-top: 1.25rem; }
}

/* ---------- Layout helpers ---------- */
.split { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.split-even { grid-template-columns: 1fr 1fr; }
.split-case { grid-template-columns: 1.5fr 1fr; }
@media (max-width: 880px) { .split, .split-even, .split-case { grid-template-columns: 1fr; } }
.sticky-col { position: sticky; top: 7rem; }
@media (max-width: 880px) { .sticky-col { position: static; } }
.section-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }

/* ---------- Cards ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card h3 { font-size: var(--step-1); font-family: var(--serif); }
.card p:last-child { margin-bottom: 0; }
.card-num { font-family: var(--serif); font-size: .95rem; color: var(--gold-ink); margin-bottom: 1.25rem; display: block; }
.card-icon { width: 2.75rem; height: 2.75rem; border-radius: 12px; display: grid; place-items: center; background: rgba(218,165,33,.14); color: var(--gold-ink); margin-bottom: 1.25rem; }
.card-icon svg { width: 1.4rem; height: 1.4rem; }
a.card { text-decoration: none; color: inherit; display: block; }
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d9cba6; }
.dark .card { background: rgba(250,245,234,.04); border-color: var(--line-dark); }
.dark .card-num { color: var(--gold); }

/* ---------- Portfolio cards ---------- */
.venture {
  position: relative; display: grid; grid-template-rows: auto 1fr; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  text-decoration: none; color: inherit;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.venture:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.venture-art {
  aspect-ratio: 16 / 8; position: relative; overflow: hidden; background: var(--navy);
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.venture-art::before { content: ""; position: absolute; inset: 0; background: var(--art); transition: transform .8s var(--ease); }
.venture:hover .venture-art::before { transform: scale(1.04); }
.venture-art .tag { position: relative; }
.venture-body { padding: clamp(1.5rem, 1rem + 1.5vw, 2rem); display: flex; flex-direction: column; }
.venture-body h3 { font-size: var(--step-2); margin-bottom: .35rem; }
.venture-meta { display: flex; flex-wrap: wrap; gap: .4rem 1rem; font-size: var(--step--1); color: var(--muted); margin-bottom: 1rem; }
.venture-body .link-arrow { margin-top: auto; padding-top: .5rem; }
.art-bop { --art: linear-gradient(135deg, rgba(13,30,48,.1), rgba(13,30,48,.65)), repeating-linear-gradient(90deg, #1f3b58 0 46px, #1a3350 46px 48px), linear-gradient(#244466, #152d45); }
.art-wl  { --art: linear-gradient(135deg, rgba(13,30,48,.05), rgba(13,30,48,.6)), repeating-radial-gradient(circle at 80% 30%, #2a4a6c 0 2px, transparent 2px 22px), linear-gradient(160deg, #2c5071, #152d45); }
.tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 999px;
  background: rgba(250,245,234,.12); color: var(--ivory); border: 1px solid rgba(250,245,234,.22);
  backdrop-filter: blur(6px);
}
.tag-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.tag-light { background: rgba(218,165,33,.14); color: var(--gold-ink); border-color: transparent; }

/* ---------- People ---------- */
.people { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 190px), 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.person { text-decoration: none; color: inherit; display: block; }
.avatar {
  aspect-ratio: 4 / 5; border-radius: var(--radius-lg); background: var(--navy);
  display: grid; place-items: center; position: relative; overflow: hidden; margin-bottom: 1rem;
  font-family: var(--serif); font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem); color: var(--ivory); letter-spacing: .04em;
  transition: transform .35s var(--ease);
}
.avatar::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(18rem 12rem at 100% 0%, rgba(218,165,33,.28), transparent 60%);
}
.avatar::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(218,165,33,.35); border-radius: calc(var(--radius-lg) - 8px); }
.avatar span { position: relative; }
.avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.person:hover .avatar { transform: translateY(-4px); }
.person h3 { font-size: var(--step-1); margin-bottom: .15rem; }
.person .role { font-size: var(--step--1); color: var(--muted); }
.person .role b { color: var(--gold-ink); font-weight: 600; display: block; }
.dark .person .role { color: rgba(250,245,234,.65); }
.dark .person .role b { color: var(--gold); }

/* ---------- Checklist ---------- */
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: .9rem; }
.checks li { display: grid; grid-template-columns: 1.5rem 1fr; gap: .75rem; }
.checks li::before {
  content: ""; width: 1.5rem; height: 1.5rem; border-radius: 50%; margin-top: .15rem;
  background: rgba(218,165,33,.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a6a12' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 60% no-repeat;
}
.dark .checks li::before { background-color: rgba(218,165,33,.2); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23daa521' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E"); }

/* ---------- Criteria table ---------- */
.criteria { border-top: 1px solid var(--line); }
.criteria > div { display: grid; grid-template-columns: 14rem 1fr; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.criteria dt { font-family: var(--serif); font-size: var(--step-1); color: var(--navy); }
.criteria dd { margin: 0; color: var(--muted); }
@media (max-width: 640px) { .criteria > div { grid-template-columns: 1fr; gap: .25rem; } }

/* ---------- Steps / process ---------- */
.steps { counter-reset: step; display: grid; gap: 0; border-left: 1px solid var(--line); margin-left: .6rem; }
.steps li { list-style: none; position: relative; padding: 0 0 2rem 2rem; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: -1rem; top: -.1rem; width: 2rem; height: 2rem; border-radius: 50%;
  display: grid; place-items: center; font-size: .85rem; font-weight: 600;
  background: var(--navy); color: var(--gold);
}
.steps h4 { font-size: var(--step-1); margin-bottom: .25rem; }
.steps p { color: var(--muted); margin: 0; }

/* ---------- Case study ---------- */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; margin-top: 2.5rem; }
.facts div { background: var(--navy); padding: 1.1rem 1.25rem; }
.facts dt { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(250,245,234,.55); margin-bottom: .3rem; }
.facts dd { margin: 0; color: var(--ivory); font-weight: 500; }
.prose { font-size: var(--step-0); }
.prose h2 { font-size: var(--step-2); margin-top: 2.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .4rem; }
.quote {
  margin: 2.5rem 0; padding: 2rem clamp(1.5rem, 3vw, 2.5rem); border-radius: var(--radius-lg);
  background: var(--navy); color: var(--ivory); position: relative;
}
.quote p { font-family: var(--serif); font-size: var(--step-1); line-height: 1.45; font-style: italic; }
.quote cite { font-style: normal; font-size: var(--step--1); color: var(--gold); }
.aside-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem; }
.aside-card + .aside-card { margin-top: 1rem; }
.aside-card h4 { font-size: 1.05rem; font-family: var(--sans); font-weight: 600; letter-spacing: .02em; }

/* ---------- Bio ---------- */
.bio-head { display: grid; grid-template-columns: 280px 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: end; }
.bio-head .avatar { margin: 0; }
@media (max-width: 720px) { .bio-head { grid-template-columns: 1fr; } .bio-head .avatar { max-width: 220px; } }
.contact-line { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin-top: 1.5rem; }
.contact-line a { color: var(--gold); text-decoration: none; font-weight: 500; }
.contact-line a:hover { text-decoration: underline; }

/* ---------- Contact ---------- */
.contact-card { display: grid; gap: .35rem; }
.contact-card h3 { font-size: var(--step-1); margin-bottom: .1rem; }
.contact-card .role { font-size: var(--step--1); color: var(--muted); margin-bottom: .75rem; }
.contact-card a { color: var(--gold-ink); text-decoration: none; font-weight: 500; }
.contact-card a:hover { text-decoration: underline; }
.dark .contact-card .role { color: rgba(250,245,234,.6); }
.dark .contact-card a { color: var(--gold); }

/* ---------- CTA band ---------- */
.cta {
  border-radius: calc(var(--radius-lg) + 6px); padding: clamp(2.5rem, 2rem + 4vw, 5rem);
  background: radial-gradient(40rem 20rem at 100% 0%, rgba(218,165,33,.22), transparent 60%), var(--navy);
  color: rgba(250,245,234,.8); display: grid; grid-template-columns: 1.4fr auto; gap: 2rem; align-items: end;
}
.cta h2 { color: var(--ivory); margin-bottom: .75rem; }
.cta p { margin: 0; max-width: 56ch; }
@media (max-width: 800px) { .cta { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(250,245,234,.62); padding-block: 4rem 2rem; font-size: .95rem; margin-top: 0; }
.site-footer .top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer img { height: 3rem; width: auto; margin-bottom: 1rem; }
.site-footer h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.site-footer a { text-decoration: none; color: rgba(250,245,234,.78); }
.site-footer a:hover { color: var(--ivory); }
.site-footer .bottom { border-top: 1px solid var(--line-dark); margin-top: 3rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .85rem; }
@media (max-width: 880px) { .site-footer .top { grid-template-columns: 1fr 1fr; } .site-footer .top > :first-child { grid-column: 1 / -1; } }
.no-gap-top { margin-top: 0; }

/* ---------- Reveal on scroll (progressive enhancement) ---------- */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal { animation: reveal linear both; animation-timeline: view(); animation-range: entry 0% entry 40%; }
    @keyframes reveal { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
  }
}

/* ---------- Draft markers (remove before go-live) ---------- */
.todo { border: 1.5px dashed #c0392b; background: #fff4f2; color: #8e2a1e; border-radius: 10px; padding: .75rem 1rem; font-size: .9rem; margin: 1rem 0; }
.todo::before { content: "DRAFT — "; font-weight: 700; }
.dark .todo { background: rgba(192,57,43,.15); color: #ffd9d3; border-color: #e0786b; }

.aside-card .person { display: grid; grid-template-columns: 72px 1fr; gap: 0 1rem; align-items: center; }
.aside-card .person .avatar { aspect-ratio: 1; margin: 0; font-size: 1.4rem; grid-row: span 2; border-radius: 14px; }
.aside-card .person .avatar::after { inset: 5px; border-radius: 10px; }
.aside-card .person h3 { margin: 0; align-self: end; }
.aside-card .person .role { margin: 0; align-self: start; }
.next-case { max-width: 600px; }
.dark .avatar { background: var(--navy-soft); }
