:root {
  --bg: #151515;
  --ink: #f0a35a;
  --line: rgba(240, 163, 90, 0.92);
  --paper: #f4f2ee;
  --text: rgba(255, 255, 255, 0.92);
  --panel: rgba(10, 18, 16, 0.62);
  --thin: 1px;
  --blur: 18px;
  --radius: 18px;
  --pad: clamp(16px, 2.8vw, 36px);
  --maxw: 1120px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --grad-from: #d44628;
  --grad-to: #f0a35a;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    radial-gradient(1200px 900px at 18% 22%, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0) 64%),
    radial-gradient(900px 760px at 72% 28%, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0) 62%),
    radial-gradient(1100px 900px at 52% 86%, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0) 60%),
    radial-gradient(700px 620px at 84% 78%, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0) 56%);
  color: var(--ink);
  font-family: ui-serif, Georgia, 'Times New Roman', Times, serif;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

body.theme-light {
  --bg: var(--paper);
  --ink: rgba(20, 20, 20, 0.92);
  --line: rgba(20, 20, 20, 0.55);
  --text: rgba(20, 20, 20, 0.88);
  --panel: rgba(255, 255, 255, 0.52);
  --grad-from: rgba(20, 20, 20, 0.92);
  --grad-to: rgba(20, 20, 20, 0.92);

  background-color: var(--bg);
  background-image:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.018) 0px, rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0) 6px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.012) 0px, rgba(0, 0, 0, 0) 3px, rgba(0, 0, 0, 0) 8px),
    radial-gradient(1200px 900px at 16% 22%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 62%),
    radial-gradient(900px 760px at 76% 30%, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0) 62%),
    radial-gradient(1100px 900px at 52% 86%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0) 62%),
    radial-gradient(700px 620px at 84% 78%, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0) 58%);
  color: var(--ink);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cfilter id='n1'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.55' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n1)' opacity='.9'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n2)' opacity='.7'/%3E%3C/svg%3E");
  background-size: 620px 620px, 260px 260px;
  background-position: 0 0, 120px 80px;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  filter: contrast(120%) brightness(92%);
}

body.theme-light::before {
  opacity: 0.12;
  mix-blend-mode: multiply;
  filter: contrast(105%) brightness(106%);
}

.grad-text {
  background: linear-gradient(135deg, var(--grad-from), var(--grad-to));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (hover: hover) and (pointer: fine) {
  body.has-dot-cursor {
    cursor: none;
  }

  body.has-dot-cursor a,
  body.has-dot-cursor button,
  body.has-dot-cursor [role='button'],
  body.has-dot-cursor .card,
  body.has-dot-cursor .back {
    cursor: none;
  }

  body.has-dot-cursor input,
  body.has-dot-cursor textarea,
  body.has-dot-cursor select,
  body.has-dot-cursor [contenteditable='true'] {
    cursor: text;
  }

  #cursor-dot {
    position: fixed;
    left: 0;
    top: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(212, 70, 40, 0.95);
    box-shadow:
      0 0 0 6px rgba(212, 70, 40, 0.12),
      0 0 18px rgba(212, 70, 40, 0.12);
    transform: translate3d(-50%, -50%, 0);
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
  }

  body.theme-light #cursor-dot {
    background: rgba(20, 20, 20, 0.9);
    box-shadow:
      0 0 0 6px rgba(20, 20, 20, 0.08),
      0 0 18px rgba(20, 20, 20, 0.08);
  }

  #cursor-dot.is-down {
    box-shadow:
      0 0 0 10px rgba(212, 70, 40, 0.14),
      0 0 20px rgba(212, 70, 40, 0.14);
  }

  body.theme-light #cursor-dot.is-down {
    box-shadow:
      0 0 0 10px rgba(20, 20, 20, 0.12),
      0 0 20px rgba(20, 20, 20, 0.12);
  }
}

#stage {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

#glyphs {
  position: absolute;
  inset: -6vh -6vw;
  width: calc(100% + 12vw);
  height: calc(100% + 12vh);
  filter: blur(0px);
  opacity: 0.92;
}

.glyph {
  fill: none;
  stroke: var(--line);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  will-change: stroke-dashoffset;
}

.glyph.branch {
  stroke-width: 1.2;
  opacity: 0.75;
}

.root-dot {
  fill: var(--ink);
  opacity: 1;
}

#grain {
  display: none;
}

.app {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
}

.shell {
  margin: 0 auto;
  width: min(var(--maxw), 100%);
  padding: calc(var(--pad) + 14px) var(--pad) calc(var(--pad) * 2);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 2;
  margin-bottom: 22px;
  padding: 10px 0;
  backdrop-filter: blur(10px);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 0;
  padding: 6px 0;
  background: transparent;
  text-decoration: none;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.86;
  transition:
    transform 300ms var(--ease),
    opacity 300ms var(--ease);
}

.theme-toggle svg,
.lang-toggle svg {
  display: block;
}

.nav-link:hover {
  transform: translate3d(0, -1px, 0);
  opacity: 1;
}

.nav-link.is-active {
  opacity: 1;
  color: var(--text);
}

body.theme-light .nav-link.is-active {
  font-weight: 700;
}

.lang-toggle {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: var(--thin) solid var(--ink);
  border-radius: 999px;
  background: var(--panel);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.86;
  cursor: pointer;
  transition:
    transform 300ms var(--ease),
    opacity 300ms var(--ease);
}

.lang-toggle:hover {
  transform: translate3d(0, -50%, 0) translate3d(0, -1px, 0);
  opacity: 1;
}

.theme-toggle {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translate3d(0, calc(-50% - 64px), 0);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: var(--thin) solid var(--ink);
  border-radius: 999px;
  background: var(--panel);
  color: var(--ink);
  opacity: 0.86;
  cursor: pointer;
  transition:
    transform 300ms var(--ease),
    opacity 300ms var(--ease);
}

.theme-toggle:hover {
  transform: translate3d(0, calc(-50% - 64px), 0) translate3d(0, -1px, 0);
  opacity: 1;
}

@media (max-width: 560px) {
  .nav {
    margin-bottom: 18px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    justify-items: center;
    gap: 12px 18px;
  }

  .nav-link {
    font-size: 11px;
    letter-spacing: 0.14em;
    padding: 6px 0;
    text-align: center;
  }

  .lang-toggle {
    right: 10px;
    width: 46px;
    height: 46px;
  }

  .theme-toggle {
    right: 10px;
    width: 46px;
    height: 46px;
    transform: translate3d(0, calc(-50% - 56px), 0);
  }

  .theme-toggle:hover {
    transform: translate3d(0, calc(-50% - 56px), 0) translate3d(0, -1px, 0);
  }

  .expo-watermark {
    opacity: 0.7;
    font-weight: 700;
  }
}

.mast {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.mast--page {
  margin-top: 6px;
}

.kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  opacity: 0.78;
}

.title {
  font-size: clamp(28px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: 0.01em;
}

.title--page {
  font-size: clamp(22px, 3.6vw, 46px);
}

.sub {
  max-width: 60ch;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.82;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.deck {
  grid-template-columns: 1fr;
  gap: 22px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.card {
  grid-column: span 12;
  border: var(--thin) solid var(--ink);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  background: var(--panel);
  backdrop-filter: blur(2px);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 420ms var(--ease);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.deck .card {
  width: min(420px, 86vw);
  justify-self: start;
  aspect-ratio: 5 / 7;
  display: grid;
  align-content: start;
  gap: 2px;
  padding: 22px 22px 18px;
  transform: translate3d(0, calc(var(--offsetY, 0px) + 42px), 0) rotate(var(--lean, 0deg)) scale(0.98);
  opacity: 0;
  transition:
    transform 880ms var(--ease),
    opacity 880ms var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}

.deck .card[data-side='left'] {
  margin-left: clamp(0px, 2.2vw, 18px);
}

.deck .card[data-side='right'] {
  justify-self: end;
  margin-right: clamp(0px, 2.2vw, 18px);
}

.deck .card.revealed {
  opacity: 1;
  transform: translate3d(0, var(--offsetY, 0px), 0) rotate(var(--lean, 0deg)) scale(1);
}

.card:hover {
  transform: translate3d(0, -4px, 0);
}

.deck .card:hover {
  transform: translate3d(0, calc(var(--offsetY, 0px) - 6px), 0) rotate(var(--lean, 0deg)) scale(1);
}

.card:active {
  transform: translate3d(0, -1px, 0);
}

.card:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

@media (min-width: 760px) {
  .card {
    grid-column: span 6;
  }
}

@media (min-width: 1060px) {
  .card {
    grid-column: span 4;
  }
}

@media (min-width: 760px) {
  .deck {
    gap: 28px;
  }
}

.card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.card-name {
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-years {
  font-size: 12px;
  letter-spacing: 0.16em;
  opacity: 0.74;
  white-space: nowrap;
}

.card-meta {
  display: grid;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.82;
}

.rule {
  height: 1px;
  background: var(--ink);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 620ms var(--ease);
  opacity: 0.85;
}

.card:hover .rule {
  transform: scaleX(1);
}

.card-cta {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

.page {
  display: grid;
  gap: 18px;
  flex: 1;
}

.site-credit {
  margin-top: auto;
  padding-top: 44px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  color: var(--text);
}

body.theme-light .site-credit {
  opacity: 0.5;
}

body.page-practical .info-v a,
body.page-practical .info-v a:visited {
  color: var(--text);
}

.content-card {
  border: var(--thin) solid var(--ink);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--panel);
}

body.page-about .content-card {
  border: 0;
  background: transparent;
  padding: 26px 6px 22px;
}

@media (min-width: 760px) {
  body.page-about .content-card {
    padding-top: 5px;
  }

  body.page-about .curators {
    gap: 72px;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}

@media (min-width: 760px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
  }

  .about-col--curators {
    grid-column: 1;
  }

  .about-col--exhibition {
    grid-column: 2;
  }
}

.curator {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  align-items: start;
}

.curator-meta {
  min-width: 0;
}

.curator-img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 0;
  display: block;
}

.curator-img--julia {
  object-position: 50% 15%;
}

body.page-artists img.card-img[src*="anna-de-castro-barbosa"] {
  object-position: 50% 15%;
}

.curator-name {
  font-size: 15px;
  letter-spacing: 0.08em;
}

.curator-text {
  margin-top: 6px;
}

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

  .curator-img {
    width: min(260px, 100%);
    height: auto;
  }
}

body.page-practical .content-card {
  border: 0;
  background: transparent;
  padding: 26px 6px 22px;
}

.content-card-title {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.76;
}

.home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 760px) {
  .home-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-tile {
  display: block;
  border: var(--thin) solid var(--ink);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--panel);
  text-decoration: none;
  color: var(--ink);
  transition: transform 320ms var(--ease);
}

.home-tile:hover {
  transform: translate3d(0, -3px, 0);
}

.home-tile-title {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-tile-sub {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.78;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  width: fit-content;
  transition: transform 300ms var(--ease);
  color: var(--text);
  text-decoration: none;
}

.back:hover {
  transform: translate3d(-2px, 0, 0);
}

.hline {
  height: 1px;
  background: var(--ink);
  opacity: 0.9;
}

.bio {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  max-width: 980px;
  margin: 0 auto;
}

.bio h1 {
  margin: 0 0 8px;
  font-size: clamp(12px, 1.4vw, 18px);
  line-height: 1.04;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 300;
}

.bio .byline {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  text-align: center;
}

.bio p {
  margin: 14px 0 0;
  line-height: 1.7;
  font-size: 14px;
  max-width: 70ch;
}

.artist-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 16px;
}

@media (min-width: 760px) {
  .artist-media {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.artist-media-img {
  width: 100%;
  height: auto;
  border: var(--thin) solid var(--ink);
  border-radius: calc(var(--radius) - 8px);
  background: rgba(255, 255, 255, 0.65);
}

.artist-website a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.artist-website a:hover {
  border-bottom-color: var(--ink);
}

.assets {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.asset {
  grid-column: span 12;
  border: var(--thin) solid var(--ink);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--panel);
}

@media (min-width: 860px) {
  .asset {
    grid-column: span 6;
  }
}

.asset-title {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.76;
  margin-bottom: 10px;
}

.asset-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}

.asset-actions a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  opacity: 0.82;
}

.info-grid {
  display: grid;
  gap: 10px;
}

.info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  align-items: baseline;
}

.info-k {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.76;
}

.info-v {
  font-size: 14px;
  line-height: 1.6;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.link-row a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.link-row a:hover {
  border-bottom-color: var(--ink);
}

.link-sep {
  opacity: 0.55;
}

.asset-actions a:hover {
  opacity: 1;
}

.pdf-frame {
  border: 1px dashed var(--line);
  border-radius: calc(var(--radius) - 8px);
  overflow: hidden;
  height: min(72vh, 820px);
  background: rgba(255, 255, 255, 0.04);
}

body.theme-light .pdf-frame {
  background: rgba(255, 255, 255, 0.46);
}

.pdf-asset {
  grid-column: 1 / -1;
  width: 100%;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.pdf-actions {
  width: 100%;
  display: flex;
  justify-content: center;
}

.pdf-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--thin) solid var(--ink);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--panel);
  text-decoration: none;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.86;
  transition:
    transform 300ms var(--ease),
    opacity 300ms var(--ease);
}

.pdf-download:hover {
  transform: translate3d(0, -1px, 0);
  opacity: 1;
}

.pdf-preview {
  width: min(980px, 100%);
  height: min(72vh, 860px);
  overflow: hidden;
  background: transparent;
}

.pdf-embed {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.fade-in {
  animation: fade-in 460ms var(--ease) both;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .rule,
  .back,
  .fade-in {
    transition: none;
    animation: none;
  }
}

@media (pointer: coarse) {
  .card:hover {
    transform: none;
  }

  .card:hover .rule {
    transform: scaleX(0.28);
  }
}

.expo-watermark {
  position: fixed;
  bottom: 18px;
  right: 22px;
  z-index: 10;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.45;
  text-decoration: none;
  transition: opacity 300ms var(--ease);
  writing-mode: horizontal-tb;
  pointer-events: auto;
}

.expo-watermark:hover {
  opacity: 0.85;
}

@media (max-width: 560px) {
  body.page-about .expo-watermark,
  body.page-artists .expo-watermark {
    display: none;
  }
}

.hero-img-wrap {
  display: flex;
  justify-content: center;
  margin: 8px 0 28px;
}

.arrow-wheel-wrap {
  display: flex;
  justify-content: center;
  margin: 8px 0 28px;
}

.arrow-wheel-svg {
  width: min(720px, 88vw);
  height: auto;
  color: var(--text);
  display: block;
  margin: 0 auto;
  overflow: visible;
  filter:
    drop-shadow(0 10px 40px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.15));
  animation: none;
}

body.theme-light .arrow-wheel-svg {
  filter:
    drop-shadow(0 10px 28px rgba(0, 0, 0, 0.16))
    drop-shadow(0 0 1px rgba(0, 0, 0, 0.08));
}

.arrow-wheel-rotor {
  transform-box: view-box;
  transform-origin: 50% 50%;
  animation: none;
}

.arrow-wheel-arcs {
  transform-box: view-box;
  transform-origin: 50% 50%;
  animation: none;
}

.arrow-wheel-labels {
  transform-box: view-box;
  transform-origin: 50% 50%;
  animation: none;
}

.arrow-wheel-label {
  transform-box: view-box;
  transform-origin: center;
  animation: none;
}

.arrow-wheel-name {
  font-family: ui-serif, Georgia, 'Times New Roman', Times, serif;
  font-size: 20px;
  letter-spacing: 0.02em;
  fill: currentColor;
}

.arrow-wheel-name--show {
  font-size: 31px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media (max-width: 560px) {
  body.page-home .site-credit {
    display: none;
  }
}

.practical-contrib {
  display: none;
  margin-top: 14px;
  text-align: left;
}

.practical-contrib-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.practical-contrib-text {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.65;
}

@media (max-width: 560px) {
  body.page-practical .practical-contrib {
    display: block;
    margin-top: 34px;
  }
}

.arrow-wheel-arc {
  opacity: 0.9;
}

@keyframes wheel-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes wheel-counter {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .arrow-wheel-svg {
    animation: none;
  }

  .arrow-wheel-rotor,
  .arrow-wheel-arcs,
  .arrow-wheel-labels,
  .arrow-wheel-label {
    animation: none;
  }
}

.hero-img {
  width: min(520px, 80vw);
  height: auto;
  border-radius: 0;
  border: 0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  opacity: 0.92;
  transition: opacity 600ms var(--ease);
}

.hero-img:hover {
  opacity: 1;
}

.home-dates {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: -14px;
  margin-bottom: 22px;
}

.home-show-title {
  text-align: center;
  font-size: clamp(22px, 3.6vw, 46px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-transform: none;
  margin: 4px 0 6px;
}

.home-show-title + .arrow-wheel-wrap {
  margin-top: 4px;
}

.curators {
  display: grid;
  gap: 6px;
}

.curators-media {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.curators-img {
  width: min(170px, 100%);
  height: auto;
  border: none;
  border-radius: 0;
  background: transparent;
}

.curators-names {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-align: center;
}

.bio-birth {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 4px;
}

.card-img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 8px);
  margin-top: 8px;
  opacity: 0.88;
  object-fit: cover;
  max-height: 420px;
}

.card--has-img .card-meta {
  margin-top: auto;
}
