@font-face {
  font-family: "Forum";
  src: url("/static/fonts/Forum-Regular.ff57d0d9febd.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("/static/fonts/Onest-Regular.17b0d07dd76f.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("/static/fonts/Onest-Medium.a55753247ef4.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("/static/fonts/Onest-SemiBold.b244873808ba.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f3ede3;
  --bg-soft: #e8dfd1;
  --surface: #fbf7f1;
  --text: #1f1b18;
  --brand: #26382f;
  --accent: #6e3a32;
  --grain: #a2773f;
  --line: #bfb3a1;
  --muted: #5c5a55;
  --shadow: 0 20px 50px rgba(31, 27, 24, 0.08);
  --radius: 20px;
  --font-display: "Forum", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Onest", "Segoe UI", sans-serif;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(162, 119, 63, 0.08), transparent 30%),
    linear-gradient(180deg, var(--bg) 0%, #f8f4ed 100%);
  line-height: 1.6;
}

body {
  padding-bottom: 0;
}

::selection {
  background: rgba(38, 56, 47, 0.18);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.shell {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

a:focus-visible,
button:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(38, 56, 47, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: var(--brand);
  color: white;
  padding: 0.75rem 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 237, 227, 0.88);
  border-bottom: 1px solid rgba(191, 179, 161, 0.7);
}

@supports (backdrop-filter: blur(12px)) {
  .site-header {
    backdrop-filter: blur(12px);
  }
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  min-height: 5.5rem;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.site-brand__mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.site-brand__logo {
  width: 100%;
  height: 100%;
}

.site-brand__text {
  display: grid;
  gap: 0.12rem;
}

.site-brand__name,
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
}

.site-brand__meta,
.eyebrow,
.updated-at,
.status-badge {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand);
}

.mobile-tabbar {
  display: none;
}

.page-intro,
.page-shell {
  padding: 4rem 0 5rem;
}

.page-intro--home {
  padding-bottom: 3rem;
}

.page-shell--with-aside {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}

.page-main {
  min-width: 0;
}

.page-aside {
  align-self: start;
}

.toc-card,
.card,
.document-card,
.metric,
.person-card,
.cta-panel {
  background: rgba(251, 247, 241, 0.85);
  border: 1px solid rgba(191, 179, 161, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-intro h1,
.page-shell h1,
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  margin: 0 0 1rem;
}

.lead,
.hero__subtitle,
.page-summary {
  max-width: 52rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.quick-links,
.hero__actions,
.document-card__actions,
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.filters {
  align-items: center;
  margin-bottom: 1.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  text-decoration: none;
  border: 1px solid var(--brand);
  cursor: pointer;
}

.button--ghost {
  background: transparent;
  color: var(--brand);
}

.hero {
  padding: 3rem 0 1rem;
}

.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero__copy {
  min-width: 0;
}

.hero__image {
  width: 100%;
  border-radius: 2rem 2rem 2rem 0.5rem;
  overflow: hidden;
}

.hero__visual--home {
  position: relative;
}

.hero__visual--home::before {
  content: "";
  position: absolute;
  inset: 1.4rem 1.2rem -1.2rem auto;
  width: 72%;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(38, 56, 47, 0.1), rgba(110, 58, 50, 0.06));
  filter: blur(8px);
  z-index: 0;
}

.hero__image--home {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3.35;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(191, 179, 161, 0.9);
  box-shadow:
    0 26px 54px rgba(31, 27, 24, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  background: rgba(251, 247, 241, 0.85);
}

.section {
  padding: 1rem 0 3rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-heading__action {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(38, 56, 47, 0.12);
  background: rgba(251, 247, 241, 0.88);
  box-shadow: 0 8px 16px rgba(31, 27, 24, 0.06);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.section-title__link {
  text-decoration: none;
}

.section-title__link:hover,
.section-title__link:focus-visible {
  color: var(--brand);
}

.team-showcase__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1.35rem;
}

.team-showcase__copy {
  max-width: 46rem;
}

.team-showcase__copy .section-title {
  margin-bottom: 0.65rem;
}

.team-showcase__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.section-intro,
.metric__description,
.card p,
.document-card p,
.person-card p,
.editorial-section p {
  color: var(--muted);
}

.card-grid,
.metrics-grid,
.gallery-grid,
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card,
.document-card,
.metric,
.person-card,
.cta-panel,
.toc-card {
  padding: 1.25rem;
}

.person-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.person-card--lead {
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
}

.person-card__content {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.card--editorial {
  position: relative;
  min-height: 100%;
  padding-top: 1.7rem;
}

.card--editorial::before {
  content: "";
  position: absolute;
  top: 0.95rem;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), rgba(110, 58, 50, 0.45));
  border-radius: 999px;
  opacity: 0.85;
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.card__source {
  margin-top: 1rem;
}

.person-card__media {
  aspect-ratio: 4 / 5;
  margin-bottom: 0.35rem;
  overflow: hidden;
  border-radius: 1.25rem;
  background:
    linear-gradient(135deg, rgba(38, 56, 47, 0.05), rgba(110, 58, 50, 0.05)),
    var(--surface);
}

.person-card--lead .person-card__media {
  aspect-ratio: 5 / 6;
  margin-bottom: 0;
}

.person-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--person-photo-position, 50% 50%);
}

.person-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(38, 56, 47, 0.12), rgba(110, 58, 50, 0.12)),
    var(--surface);
  color: var(--brand);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  letter-spacing: 0.02em;
}

.person-card h3,
.card h3,
.document-card h3 {
  margin: 0;
}

.people-carousel {
  position: relative;
}

.people-carousel__controls {
  display: flex;
  gap: 0.5rem;
}

.people-carousel__button {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  border: 1px solid rgba(38, 56, 47, 0.14);
  background: rgba(251, 247, 241, 0.92);
  color: var(--brand);
  box-shadow: 0 10px 20px rgba(31, 27, 24, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.people-carousel__button:hover,
.people-carousel__button:focus-visible {
  transform: translateY(-1px);
  background: rgba(38, 56, 47, 0.07);
}

.people-carousel__frame {
  position: relative;
  margin: 0 -0.2rem;
}

.people-carousel__frame::before,
.people-carousel__frame::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0.4rem;
  width: clamp(1.5rem, 4vw, 3.25rem);
  z-index: 2;
  pointer-events: none;
}

.people-carousel__frame::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 20%, rgba(243, 237, 227, 0));
}

.people-carousel__frame::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 20%, rgba(243, 237, 227, 0));
}

.people-carousel__viewport {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.2rem 0.2rem 0.6rem;
  cursor: grab;
}

.people-carousel__viewport:active {
  cursor: grabbing;
}

.people-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.people-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 252px);
  gap: 1rem;
  width: max-content;
}

.person-card--carousel {
  min-height: 100%;
  gap: 0.72rem;
  padding: 1rem;
  border-radius: 1.6rem;
}

.person-card--carousel h3 {
  font-size: 1.06rem;
  line-height: 1.18;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.person-card--carousel .person-card__media {
  aspect-ratio: 1 / 1.08;
  border-radius: 1.1rem;
}

.person-card--carousel .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.person-card__summary {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.person-card--carousel .card__source {
  margin-top: auto;
}

.support-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.support-panel__link {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(38, 56, 47, 0.14);
  background: rgba(38, 56, 47, 0.04);
  text-decoration: none;
  color: var(--brand);
  font-weight: 600;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.metric__value {
  font-family: var(--font-display);
  color: var(--brand);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}

.metric__label {
  margin: 0.25rem 0;
  font-weight: 600;
}

.timeline {
  border-left: 1px solid var(--line);
  padding-left: 1.5rem;
}

.timeline__item {
  position: relative;
  padding-bottom: 1.5rem;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -1.86rem;
  top: 0.55rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: var(--grain);
}

.editorial-section {
  margin-bottom: 2rem;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.status-badge {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.status-badge--actual {
  border-color: var(--brand);
  color: var(--brand);
}

.toc-card {
  position: sticky;
  top: 7rem;
}

.toc-card ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.filters select {
  min-height: 3rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.site-footer {
  margin-top: 4rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(191, 179, 161, 0.8);
  background: rgba(232, 223, 209, 0.6);
}

.support-section {
  padding: 0 0 3rem;
}

.support-section--compact {
  padding-top: 2rem;
}

.support-panel {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  background:
    linear-gradient(135deg, rgba(38, 56, 47, 0.05), rgba(110, 58, 50, 0.04)),
    rgba(251, 247, 241, 0.92);
  border: 1px solid rgba(191, 179, 161, 0.85);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.support-panel__copy h2 {
  margin: 0.15rem 0 0.8rem;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.support-panel__copy > p {
  max-width: 36rem;
}

.support-panel__note,
.support-panel__caption {
  color: var(--muted);
  font-size: 0.95rem;
}

.support-panel__qr-wrap {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  align-content: start;
}

.support-panel__actions {
  display: grid;
  width: min(100%, 320px);
  gap: 0.65rem;
}

.support-panel__action {
  width: 100%;
}

.support-panel__qr-frame {
  width: min(100%, 320px);
  padding: 1rem;
  background: #fffdf8;
  border-radius: 1.5rem;
  border: 1px solid rgba(191, 179, 161, 0.9);
  box-shadow:
    0 20px 40px rgba(31, 27, 24, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.support-panel__qr {
  width: 100%;
  border-radius: 0.75rem;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.support-panel__caption--mobile {
  max-width: 320px;
  text-align: center;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.footer-title {
  margin-top: 0;
  font-size: 1.4rem;
}

.site-footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(191, 179, 161, 0.6);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer__copy,
.site-footer__version {
  margin: 0;
}

@media (min-width: 900px) {
  .hero__grid,
  .page-shell--with-aside {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  }

  .hero__grid--home {
    grid-template-columns: minmax(0, 0.98fr) minmax(440px, 0.92fr);
    gap: 2.6rem;
  }

  .support-panel {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 360px);
    gap: 2.2rem;
    padding: 2rem 2.2rem;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    align-items: end;
  }
}

@media (max-width: 899px) {
  body {
    padding-bottom: calc(5.75rem + env(safe-area-inset-bottom));
  }

  .site-header__inner {
    align-items: center;
    justify-content: flex-start;
    min-height: 4.5rem;
    padding: 0.85rem 0;
  }

  .site-nav {
    display: none;
  }

  .site-brand {
    gap: 0.75rem;
  }

  .site-brand__mark {
    width: 2.75rem;
    height: 2.75rem;
  }

  .site-brand__name {
    font-size: 1.05rem;
  }

  .site-brand__meta {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .shell {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .page-intro,
  .page-shell {
    padding: 2rem 0 3rem;
  }

  .page-intro--home {
    padding-bottom: 1.8rem;
  }

  .hero {
    padding: 1.2rem 0 0.5rem;
  }

  .hero__grid--home {
    gap: 1.4rem;
  }

  .hero__visual--home::before {
    inset: 1rem 0.8rem -0.8rem auto;
    width: 76%;
  }

  .hero__image--home {
    aspect-ratio: 1 / 1;
    border-radius: 1.6rem 1.6rem 1.6rem 0.55rem;
  }

  .section {
    padding: 0.5rem 0 2rem;
  }

  .page-intro h1,
  .page-shell h1,
  .hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
    margin-bottom: 0.75rem;
  }

  .site-footer__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-showcase__header {
    align-items: start;
    flex-direction: column;
  }

  .team-showcase__actions {
    width: 100%;
    justify-content: space-between;
  }

  .people-carousel__frame::before,
  .people-carousel__frame::after {
    width: 1rem;
  }

  .site-footer__version {
    display: none;
  }

  .section-title {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .lead,
  .hero__subtitle,
  .page-summary {
    font-size: 1rem;
  }

  .filters,
  .quick-links,
  .hero__actions,
  .document-card__actions {
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .card-grid,
  .metrics-grid,
  .gallery-grid,
  .people-grid,
  .document-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .card,
  .document-card,
  .metric,
  .person-card,
  .cta-panel,
  .toc-card {
    padding: 1rem;
  }

  .person-card__media {
    aspect-ratio: 1 / 1;
  }

  .person-card--lead {
    grid-template-columns: 1fr;
  }

  .person-card--lead .person-card__media {
    max-width: 16rem;
  }

  .people-carousel__controls {
    display: none;
  }

  .people-carousel__track {
    grid-auto-columns: minmax(238px, 78vw);
  }

  .mobile-tabbar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    padding: 0 0 calc(0.35rem + env(safe-area-inset-bottom));
    background:
      linear-gradient(180deg, rgba(243, 237, 227, 0), rgba(243, 237, 227, 0.92) 25%, rgba(243, 237, 227, 0.98) 100%);
    pointer-events: none;
  }

  .mobile-tabbar__inner {
    width: min(calc(100% - 0.8rem), 38rem);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
    padding: 0.4rem;
    background: rgba(251, 247, 241, 0.96);
    border: 1px solid rgba(191, 179, 161, 0.88);
    border-radius: 1.35rem;
    box-shadow: 0 14px 32px rgba(31, 27, 24, 0.16);
    pointer-events: auto;
    backdrop-filter: blur(12px);
  }

  .mobile-tabbar__item {
    min-height: 3.45rem;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 0.22rem;
    padding: 0.4rem 0.2rem 0.45rem;
    text-align: center;
    text-decoration: none;
    color: var(--muted);
    border-radius: 0.95rem;
    line-height: 1.05;
    border: 1px solid transparent;
  }

  .mobile-tabbar__item--active {
    color: var(--brand);
    background: rgba(38, 56, 47, 0.09);
    border-color: rgba(38, 56, 47, 0.14);
  }

  .mobile-tabbar__icon {
    width: 1.35rem;
    height: 1.35rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(38, 56, 47, 0.08);
    color: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
  }

  .mobile-tabbar__label {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-wrap: balance;
    max-width: 100%;
  }

  .mobile-tabbar__more {
    position: relative;
  }

  .mobile-tabbar__more summary {
    list-style: none;
  }

  .mobile-tabbar__more summary::-webkit-details-marker {
    display: none;
  }

  .mobile-tabbar__more[open] .mobile-tabbar__item--more {
    color: var(--brand);
    background: rgba(38, 56, 47, 0.09);
    border-color: rgba(38, 56, 47, 0.14);
  }

  .mobile-tabbar__sheet {
    position: absolute;
    right: 0;
    bottom: calc(100% + 0.5rem);
    width: min(18rem, calc(100vw - 1rem));
    z-index: 2;
  }

  .mobile-tabbar__sheet-card {
    padding: 0.9rem;
    background: rgba(251, 247, 241, 0.98);
    border: 1px solid rgba(191, 179, 161, 0.92);
    border-radius: 1.1rem;
    box-shadow: 0 20px 36px rgba(31, 27, 24, 0.2);
    backdrop-filter: blur(16px);
  }

  .mobile-tabbar__sheet-title {
    margin: 0 0 0.7rem;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-tabbar__sheet-links {
    display: grid;
    gap: 0.45rem;
  }

  .mobile-tabbar__sheet-link {
    display: block;
    padding: 0.75rem 0.8rem;
    border-radius: 0.85rem;
    text-decoration: none;
    color: var(--text);
    background: rgba(38, 56, 47, 0.03);
  }

  .mobile-tabbar__sheet-link--active {
    color: var(--brand);
    background: rgba(38, 56, 47, 0.08);
  }

  .toc-card {
    position: static;
  }
}

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