:root {
  --bg: #f6f0e7;
  --ink: #1d232c;
  --muted: #687281;
  --muted-soft: #8b95a3;
  --paper: rgba(255, 251, 246, 0.9);
  --paper-strong: rgba(255, 255, 255, 0.96);
  --accent: #c35a3d;
  --accent-deep: #87311f;
  --accent-soft: rgba(195, 90, 61, 0.1);
  --accent-softer: rgba(195, 90, 61, 0.06);
  --line: rgba(29, 35, 44, 0.12);
  --line-strong: rgba(29, 35, 44, 0.18);
  --shadow: 0 24px 80px rgba(77, 57, 36, 0.12);
  --shadow-sm: 0 10px 28px rgba(77, 57, 36, 0.08);
  --radius-sm: 22px;
  --radius-md: 24px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --header-offset: 132px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(195, 90, 61, 0.18), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(235, 198, 123, 0.34), transparent 18%),
    linear-gradient(180deg, #f8f1e8 0%, #eee2d3 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 84%);
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(195, 90, 61, 0.28);
  outline-offset: 4px;
}

.site-frame {
  width: min(1100px, calc(100% - 32px));
  margin: 22px auto 40px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 40;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transition: top 0.18s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 8px;
  z-index: 20;
  display: grid;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(255, 247, 239, 0.76));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transition:
    padding 180ms ease,
    gap 180ms ease,
    border-radius 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-condensed {
  gap: 8px;
  padding: 8px 12px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(255, 248, 241, 0.86));
  box-shadow: 0 12px 26px rgba(77, 57, 36, 0.08);
}

.header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.brand-lockup {
  display: grid;
  gap: 6px;
}

.site-name {
  text-decoration: none;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-role {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  transition: font-size 180ms ease, opacity 180ms ease;
}

.site-header.is-condensed .site-role {
  font-size: 0.82rem;
  opacity: 0.84;
}

.site-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-2);
  transition: gap 180ms ease;
}

.site-header.is-condensed .site-links {
  gap: 6px;
}

.link-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  font-size: 0.89rem;
  font-weight: 500;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    min-height 180ms ease,
    padding 180ms ease,
    font-size 180ms ease;
}

.site-header.is-condensed .link-pill {
  min-height: 31px;
  padding: 0 11px;
  font-size: 0.83rem;
}

.link-pill.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  border-color: transparent;
  color: #fff;
  font-weight: 700;
}

.link-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(195, 90, 61, 0.28);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding-top: 6px;
  border-top: 1px solid rgba(29, 35, 44, 0.08);
  transition: gap 180ms ease, padding-top 180ms ease;
}

.site-header.is-condensed .site-nav {
  gap: 4px;
  padding-top: 4px;
}

.site-nav a {
  position: relative;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.91rem;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    padding 180ms ease,
    font-size 180ms ease;
}

.site-header.is-condensed .site-nav a {
  padding: 6px 9px;
  font-size: 0.86rem;
}

.site-nav a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.site-nav a.active {
  background: var(--accent-soft);
  color: var(--ink);
  box-shadow: inset 0 -2px 0 rgba(135, 49, 31, 0.28), 0 8px 18px rgba(195, 90, 61, 0.08);
}

.site-nav-shell {
  position: relative;
}

.page {
  margin-top: 22px;
  padding: 44px 42px 52px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.9), rgba(255, 248, 241, 0.76));
  box-shadow: var(--shadow);
}

.eyebrow,
.card-label {
  margin: 0 0 12px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin-top: 0;
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 0;
  max-width: 12ch;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(1.28rem, 2.1vw, 1.7rem);
  line-height: 1.08;
}

p {
  margin-top: 0;
}

.page-summary,
.hero-subtitle,
.hero-intro,
.prose p,
.head-note p,
.sidebar-card li,
.timeline-card p,
.feature-card p,
.paper-card p,
.mosaic-card p,
.card-meta {
  color: var(--muted);
  line-height: 1.76;
}

.page-head {
  margin-bottom: var(--space-10);
}

.page-head-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.72fr);
  gap: var(--space-6);
  align-items: end;
}

.page-head-copy {
  min-width: 0;
}

.page-summary {
  max-width: 58ch;
  margin: 14px 0 0;
  font-size: 1.02rem;
}

.head-note {
  align-self: end;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 248, 241, 0.72));
  box-shadow: var(--shadow-sm);
}

.head-note p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

.page-home {
  overflow: hidden;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(220px, 0.6fr);
  gap: 30px;
  align-items: start;
}

.hero-name {
  max-width: none;
  font-size: clamp(4rem, 8vw, 6.5rem);
}

.hero-subtitle {
  max-width: 32ch;
  margin: 16px 0 0;
  font-size: 1.18rem;
}

.hero-intro {
  max-width: 54ch;
  margin: 20px 0 0;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.portrait-panel {
  display: grid;
  gap: 14px;
  justify-items: end;
  align-self: start;
}

.portrait-frame {
  width: min(100%, 288px);
  aspect-ratio: 10 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 244, 235, 0.86)),
    radial-gradient(circle at top, rgba(195, 90, 61, 0.14), transparent 55%);
  box-shadow: var(--shadow-sm);
}

.portrait-frame span {
  color: rgba(135, 49, 31, 0.72);
  font-family: "Source Serif 4", serif;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  letter-spacing: -0.04em;
}

.identity-graphic {
  position: relative;
}

.identity-graphic::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.identity-copy {
  width: min(100%, 320px);
}

.portrait-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.signal-item,
.sidebar-card,
.timeline-card,
.feature-card,
.paper-card,
.mosaic-card,
.coursework-band {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 249, 243, 0.74));
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.signal-item:hover,
.sidebar-card:hover,
.timeline-card:hover,
.feature-card:hover,
.paper-card:hover,
.mosaic-card:hover,
.coursework-band:hover {
  transform: translateY(-2px);
  border-color: rgba(195, 90, 61, 0.24);
  box-shadow: 0 18px 38px rgba(77, 57, 36, 0.12);
}

.signal-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 118px;
  padding: 16px 16px 18px;
}

.signal-label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-item strong {
  font-size: 1rem;
  line-height: 1.45;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.72fr);
  gap: 34px;
  margin-top: 34px;
}

.prose p {
  max-width: 62ch;
  margin-bottom: 18px;
  font-size: 1.03rem;
}

.sidebar-card {
  padding: var(--space-6);
}

.clean-list {
  margin: 0;
  padding-left: 18px;
}

.clean-list li {
  margin-bottom: 12px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.timeline-meta {
  position: relative;
  padding-top: 10px;
  padding-left: 14px;
  color: var(--muted);
}

.timeline-meta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(180deg, rgba(195, 90, 61, 0.4), rgba(195, 90, 61, 0.06));
}

.timeline-date,
.timeline-place {
  display: block;
}

.timeline-date {
  color: var(--ink);
  font-weight: 700;
}

.timeline-place {
  margin-top: 6px;
  font-size: 0.95rem;
}

.timeline-card,
.feature-card,
.paper-card,
.mosaic-card,
.coursework-band {
  padding: 22px;
}

.paper-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.featured-card {
  background:
    linear-gradient(180deg, rgba(255, 248, 241, 0.96), rgba(255, 244, 236, 0.82)),
    linear-gradient(90deg, rgba(195, 90, 61, 0.08), transparent 45%);
  border-color: rgba(195, 90, 61, 0.18);
}

.timeline-card p,
.feature-card p,
.paper-card p {
  margin-bottom: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-softer);
  color: var(--accent-deep);
  font-size: 0.9rem;
}

.tag-row.dense span {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(195, 90, 61, 0.14);
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.card-meta {
  margin-top: -2px;
  font-size: 0.95rem;
}

.coursework-band {
  margin-top: 18px;
}

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

.paper-card.featured {
  grid-column: span 2;
  border-color: rgba(195, 90, 61, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 248, 241, 0.96), rgba(255, 244, 236, 0.84)),
    linear-gradient(90deg, rgba(195, 90, 61, 0.08), transparent 45%);
}

.paper-card.subtle {
  background: linear-gradient(180deg, rgba(255, 248, 241, 0.9), rgba(255, 245, 238, 0.78));
}

.paper-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.paper-venue,
.paper-type {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.84rem;
}

.paper-venue {
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 700;
}

.paper-type {
  border: 1px solid var(--line);
  color: var(--muted);
}

.paper-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(195, 90, 61, 0.18);
  color: var(--accent-deep);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
  margin-top: auto;
  align-self: flex-start;
}

.paper-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(195, 90, 61, 0.36);
  background: rgba(255, 255, 255, 0.96);
}

.text-link {
  color: var(--accent-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(135, 49, 31, 0.26);
}

.text-link:hover {
  border-bottom-color: rgba(135, 49, 31, 0.82);
}

.life-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.95fr);
  gap: 24px;
}

.life-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 0.7fr));
  gap: 14px;
  margin: 0 0 28px;
}

.photo-card {
  position: relative;
  min-height: 180px;
  padding: 22px;
  border: 1px dashed rgba(195, 90, 61, 0.28);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 251, 247, 0.95), rgba(255, 244, 236, 0.78)),
    radial-gradient(circle at top right, rgba(195, 90, 61, 0.1), transparent 45%);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: calc(var(--radius-md) - 8px);
  pointer-events: none;
}

.photo-card h2 {
  max-width: 14ch;
  margin-bottom: 10px;
}

.photo-card p:last-child {
  max-width: 28ch;
  margin-bottom: 0;
}

.photo-card-featured {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.98), rgba(255, 239, 229, 0.84)),
    radial-gradient(circle at top right, rgba(195, 90, 61, 0.16), transparent 46%);
}

.life-story p {
  max-width: 62ch;
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.82;
  font-size: 1.03rem;
}

.life-quote {
  position: relative;
  margin: 34px 0 0;
  padding: 28px 28px 24px;
  border: 1px solid rgba(195, 90, 61, 0.16);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 249, 243, 0.9), rgba(255, 243, 233, 0.72)),
    linear-gradient(90deg, rgba(195, 90, 61, 0.08), transparent 50%);
  color: var(--accent-deep);
  font-family: "Source Serif 4", serif;
  font-size: 1.42rem;
  line-height: 1.32;
  box-shadow: var(--shadow-sm);
}

.life-quote::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 18px;
  color: rgba(195, 90, 61, 0.26);
  font-size: 4rem;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.life-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.mosaic-card.wide {
  grid-column: span 2;
  background: linear-gradient(180deg, rgba(255, 247, 239, 0.96), rgba(255, 241, 232, 0.82));
  min-height: 220px;
}

.mosaic-card {
  min-height: 170px;
}

.life-closing {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(131, 104, 78, 0.14);
}

.life-closing p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.mosaic-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 940px) {
  .header-top,
  .page-head-split,
  .content-split,
  .timeline-item,
  .life-layout,
  .home-hero {
    grid-template-columns: 1fr;
  }

  .header-top {
    display: grid;
  }

  .site-links,
  .portrait-panel {
    justify-content: flex-start;
  }

  .signal-row,
  .education-grid,
  .papers-grid,
  .life-visuals,
  .life-mosaic {
    grid-template-columns: 1fr;
  }

  .paper-card.featured,
  .mosaic-card.wide {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .site-frame {
    width: min(100% - 18px, 1100px);
    margin-top: 8px;
    margin-bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  }

  .site-header,
  .page {
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 22px;
  }

  .site-header {
    position: static;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: none;
  }

  .header-top {
    display: grid;
    gap: 8px;
  }

  .brand-lockup {
    gap: 2px;
  }

  .site-name {
    font-size: 1.08rem;
  }

  .site-role {
    font-size: 0.8rem;
  }

  .site-links {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.92fr));
    gap: 6px;
  }

  .link-pill {
    justify-content: center;
    min-height: 34px;
    padding: 0 8px;
    font-size: 0.78rem;
    box-shadow: none;
  }

  .link-pill.primary {
    min-height: 36px;
    font-size: 0.79rem;
  }

  .site-links .link-pill:not(.primary) {
    background: rgba(255, 255, 255, 0.54);
    font-size: 0.76rem;
  }

  .site-nav {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 6px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    white-space: nowrap;
    padding-top: 4px;
    padding-bottom: 2px;
    padding-right: 18px;
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: 20px;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav-shell {
    overflow: hidden;
    margin-right: -2px;
  }

  .site-nav-shell::before,
  .site-nav-shell::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 22px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 160ms ease;
  }

  .site-nav-shell::before {
    left: 0;
    background: linear-gradient(90deg, rgba(248, 243, 237, 0.96), rgba(248, 243, 237, 0));
  }

  .site-nav-shell::after {
    right: 0;
    background: linear-gradient(270deg, rgba(248, 243, 237, 0.98), rgba(248, 243, 237, 0));
  }

  .site-nav-shell.has-left-fade::before,
  .site-nav-shell.has-right-fade::after {
    opacity: 1;
  }

  .site-nav a {
    flex-shrink: 0;
    padding: 6px 9px;
    font-size: 0.82rem;
  }

  .site-header.is-condensed .site-role,
  .site-header.is-condensed .link-pill,
  .site-header.is-condensed .site-nav a {
    font-size: inherit;
  }

  .page {
    margin-top: 16px;
    padding-top: 20px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }

  .hero-name {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  h1 {
    font-size: clamp(1.9rem, 10vw, 3rem);
    max-width: none;
  }

  .home-hero,
  .content-split,
  .page-head-split,
  .life-layout,
  .timeline-item {
    gap: 14px;
  }

  .page-head {
    margin-bottom: 26px;
  }

  .portrait-panel {
    justify-items: stretch;
    width: 100%;
    gap: 8px;
  }

  .portrait-frame,
  .identity-copy {
    width: 100%;
  }

  .identity-panel {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .portrait-frame {
    max-width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
  }

  .portrait-frame span {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }

  .identity-graphic::after {
    inset: 12px;
    border-radius: 18px;
  }

  .identity-copy {
    max-width: none;
  }

  .portrait-note {
    margin-top: 2px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .hero-subtitle {
    margin-top: 12px;
    font-size: 1.04rem;
  }

  .hero-intro {
    margin-top: 16px;
    font-size: 0.97rem;
    line-height: 1.66;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .button {
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .signal-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .signal-item {
    min-height: 0;
    padding: 16px;
  }

  .signal-item strong {
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .content-split {
    margin-top: 24px;
  }

  .prose p,
  .timeline-card p,
  .feature-card p,
  .paper-card p,
  .mosaic-card p,
  .card-meta,
  .sidebar-card li {
    line-height: 1.64;
  }

  .prose p,
  .life-story p {
    margin-bottom: 14px;
    font-size: 0.97rem;
  }

  .timeline-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 0 4px 14px;
  }

  .timeline-meta::before {
    top: 2px;
    bottom: 2px;
  }

  .timeline-place {
    margin-top: 0;
  }

  .paper-card.featured,
  .mosaic-card.wide {
    min-height: 0;
  }

  .photo-card,
  .photo-card-featured {
    min-height: 0;
  }

  .sidebar-card,
  .timeline-card,
  .feature-card,
  .paper-card,
  .mosaic-card,
  .coursework-band,
  .photo-card {
    padding: 18px;
  }

  .mosaic-card {
    min-height: 150px;
  }
}
