:root {
    --bg: #000000;
    --bg-soft: #000;
    --panel: #000;
    --text: #f5f5f2;
    --muted: rgba(255, 255, 255, 0.62);
    --line: rgba(255, 255, 255, 0.12);
    --header-bg: rgba(0, 0, 0, 0.18);
    --header-border: rgba(255, 255, 255, 0.08);
    --font-display: "Cormorant Garamond", serif;
    --font-body: "Inter", sans-serif;
    --container: 1400px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    background: var(--bg);
  }
  
  body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  
  img {
    display: block;
    width: 100%;
    height: auto;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  main {
    position: relative;
    z-index: 2;
  }
  
  .eyebrow {
    margin: 0 0 14px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
  }
  
  .intro {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
  }
  
  .intro__image-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  
  .intro__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.16);
  }
  
  .intro__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0.25) 100%);
  }
  
  .intro__title-wrap {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    padding: 0 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  
  .intro__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(54px, 12vw, 180px);
    line-height: 0.9;
    letter-spacing: -0.05em;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    max-width: 10ch;
  }
  
  .intro__title span {
    display: block;
    overflow: hidden;
  }
  
  .intro__subtitle {
    margin: 18px 0 0;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
  }
  
  .intro__scroll {
    position: absolute;
    left: 5vw;
    bottom: 34px;
    z-index: 3;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
  }
  
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 30;
    padding: 18px 28px;
    transition:
      background 0.35s var(--ease),
      backdrop-filter 0.35s var(--ease),
      border-color 0.35s var(--ease),
      transform 0.35s var(--ease),
      opacity 0.35s var(--ease);
    opacity: 0;
    pointer-events: none;
  }
  
  .site-header.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
  
  .site-header.is-scrolled {
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--header-border);
  }
  
  .site-header__inner {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  
  .site-header__brand {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  
  .site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  
  .site-nav a {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.25s ease;
  }
  
  .site-nav a:hover {
    color: #fff;
  }

  .site-nav a[aria-current="page"] {
    color: #fff;
  }
  
  .site-header__toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
  }
  
  .site-header__toggle span {
    position: absolute;
    left: 10px;
    width: 24px;
    height: 1px;
    background: #fff;
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
  }
  
  .site-header__toggle span:first-child {
    top: 18px;
  }
  
  .site-header__toggle span:last-child {
    top: 25px;
  }
  
  .site-header__toggle.is-active span:first-child {
    top: 21px;
    transform: rotate(45deg);
  }
  
  .site-header__toggle.is-active span:last-child {
    top: 21px;
    transform: rotate(-45deg);
  }
  
  .mobile-nav {
    display: none;
  }
  
  .panel {
    position: relative;
    background: #000;
  }
  
  .panel--dark {
    background: #030303;
  }
  
  .panel--fullscreen {
    min-height: 100vh;
  }
  
  .panel__media {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
  }
  
  .panel__media img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    transform: scale(1.06);
  }
  
  .panel__caption {
    position: absolute;
    left: 32px;
    bottom: 30px;
    z-index: 3;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
  }

  .panel__hero-caption {
    position: absolute;
    left: clamp(40px, 6vw, 104px);
    bottom: clamp(40px, 6vh, 64px);
    right: clamp(32px, 5vw, 72px);
    z-index: 3;
    max-width: 18ch;
  }

  .panel__hero-caption .eyebrow {
    margin-bottom: 12px;
  }

  .panel__hero-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 96px);
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.96);
  }

  .panel__hero-status {
    margin: 16px 0 0;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
  }

  .panel__hero-caption--wide {
    max-width: min(44rem, calc(100vw - clamp(40px, 6vw, 104px) - clamp(32px, 5vw, 72px) - 16px));
  }
  
  .museum-block {
    display: grid;
    grid-template-columns: 70% 30%;
    min-height: 100vh;
    background: var(--bg);
  }
  
  .museum-block--reverse {
    grid-template-columns: 30% 70%;
  }
  
  .museum-block--reverse .museum-block__media {
    order: 2;
  }
  
  .museum-block--reverse .museum-block__text {
    order: 1;
  }
  
  .museum-block__media {
    position: relative;
    overflow: hidden;
    background: #000;
  }
  
  .museum-block__image {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
  }

  .museum-block__media--video {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 4vw, 56px);
    min-height: min(100vh, 960px);
  }

  .museum-block__media--video .museum-block__video {
    width: 100%;
    max-width: 100%;
    max-height: min(82vh, 900px);
    height: auto;
    background: #000;
  }

  .description--wide {
    max-width: 52ch;
  }

  .project-prose {
    padding: 12vh 32px 14vh;
    background: #000;
    border-top: 1px solid var(--line);
  }

  .project-prose__inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .project-prose__col--secondary:not(.is-visible) {
    display: none;
  }

  .project-prose__col--secondary.is-visible {
    display: block;
  }

  .project-prose__read-more {
    display: inline-flex;
    margin: 0.5rem 0 0;
    padding: 0 0 6px;
    align-self: flex-start;
    font: inherit;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    background: none;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: opacity 0.25s ease;
  }

  .project-prose__read-more:hover {
    opacity: 0.85;
  }

  @media (min-width: 821px) {
    .project-prose__inner {
      max-width: min(1180px, 100%);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(32px, 4vw, 56px);
      align-items: start;
    }

    .project-prose__read-more {
      display: none !important;
    }

    .project-prose__col--secondary {
      display: block !important;
    }

    .project-prose__col--secondary.is-visible {
      display: block !important;
    }
  }

  .project-prose__col p {
    margin: 0 0 1.25em;
    font-size: clamp(16px, 1.15vw, 18px);
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.88);
  }

  .project-prose__col p:last-child {
    margin-bottom: 0;
  }

  .project-prose__pull {
    margin: 0 0 1.75em;
    padding: 0 0 0 1.25em;
    border-left: 2px solid rgba(255, 255, 255, 0.22);
    font-family: var(--font-display);
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 500;
    line-height: 1.45;
    font-style: normal;
    color: rgba(255, 255, 255, 0.92);
  }

  .project-prose__kicker {
    margin: 0 0 1.25em;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .project-selezione {
    border-top: 1px solid var(--line);
    background: #000;
    padding: 0;
  }

  .project-selezione__mosaic {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0;
  }

  .project-selezione__fig {
    margin: 0;
    grid-column: span 6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(78svh, 960px);
    background: #030303;
    box-sizing: border-box;
  }

  .project-selezione__fig--hero {
    grid-column: 1 / -1;
    min-height: min(100svh, 1240px);
  }

  .project-selezione__fig img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: min(74svh, 900px);
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .project-selezione__fig--hero img {
    max-height: min(96svh, 1180px);
  }

  @media (max-width: 900px) {
    .project-selezione__fig,
    .project-selezione__fig--hero {
      grid-column: 1 / -1;
      min-height: min(72svh, 820px);
    }

    .project-selezione__fig--hero {
      min-height: min(92svh, 1040px);
    }

    .project-selezione__fig img {
      max-height: min(68svh, 760px);
    }

    .project-selezione__fig--hero img {
      max-height: min(88svh, 980px);
    }
  }

  .projects-index {
    background: #000;
  }

  .projects-index__intro {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(120px, 22vh, 200px) clamp(32px, 5vw, 48px) clamp(40px, 7vh, 72px);
    text-align: center;
    border-bottom: 1px solid var(--line);
  }

  .projects-index__title {
    margin: 0.35em 0 0.2em;
    font-family: var(--font-display);
    font-size: clamp(52px, 9vw, 120px);
    line-height: 0.92;
    font-weight: 500;
    letter-spacing: -0.035em;
    color: rgba(255, 255, 255, 0.98);
  }

  .projects-index__lede {
    margin: 0 auto;
    max-width: 36rem;
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
  }

  .project-index-card {
    display: block;
    color: inherit;
    text-decoration: none;
    outline: none;
    transition: opacity 0.35s ease;
  }

  .project-index-card:hover {
    opacity: 0.97;
  }

  .project-index-card:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.55);
    outline-offset: -2px;
  }

  .project-index-card .museum-block__image {
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .project-index-card:hover .museum-block__image,
  .project-index-card:focus-visible .museum-block__image {
    transform: scale(1.045);
  }

  .project-cv {
    padding: 10vh 32px 12vh;
    background: #030303;
    border-top: 1px solid var(--line);
  }

  .project-cv__inner {
    max-width: 820px;
    margin: 0 auto;
  }

  .project-cv__title {
    margin: 0 0 2.5rem;
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    font-weight: 500;
  }

  .project-cv__year {
    margin: 2.25rem 0 0.85rem;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
  }

  .project-cv__year:first-of-type {
    margin-top: 0;
  }

  .project-cv__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .project-cv__list li {
    margin: 0 0 0.65em;
    padding: 0;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
  }

  .project-cv-row {
    border-top: 1px solid var(--line);
    background: #030303;
  }

  .project-cv-row__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: var(--container);
    margin: 0 auto;
    align-items: stretch;
  }

  .project-cv-row .project-cv--split {
    border-top: 0;
    margin: 0;
    padding: 10vh clamp(20px, 2.5vw, 40px) 12vh;
  }

  .project-cv-row .project-cv--split:first-child {
    border-right: 1px solid var(--line);
  }

  .project-cv-row .project-cv--split .project-cv__inner {
    max-width: none;
    margin: 0;
  }

  .project-cv-row .project-cv__title {
    font-size: clamp(28px, 3.2vw, 48px);
  }

  .project-exhibit {
    border-top: 1px solid var(--line);
    background: #030303;
    min-height: 100vh;
  }

  .project-exhibit__grid {
    display: grid;
    grid-template-columns: 30% 70%;
    min-height: 100vh;
    align-items: start;
  }

  .project-exhibit__text {
    padding: clamp(48px, 8vw, 120px) clamp(24px, 3vw, 44px);
    border-right: 1px solid var(--line);
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .project-exhibit__text .project-cv__title {
    margin-bottom: 1.75rem;
  }

  .project-exhibit__slides {
    position: sticky;
    top: max(16px, calc(env(safe-area-inset-top, 0px) + 72px));
    align-self: start;
    width: 100%;
    padding: 0;
    background: #000;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: min(calc(100vh - 80px), 1020px);
    max-height: min(calc(100vh - 64px), 1080px);
    box-sizing: border-box;
  }

  .project-exhibit__slides .dummy-slideshow {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    flex: 1;
    min-height: min(calc(100vh - 88px), 1040px);
    display: flex;
    flex-direction: column;
    justify-content: stretch;
  }

  .project-exhibit__slides .dummy-slideshow__viewport {
    flex: 1 1 auto;
    min-height: min(calc(100vh - 140px), 960px);
    border: 0;
    background: #000;
    width: 100%;
  }

  .project-exhibit__slides .dummy-slideshow__slide {
    padding: 0;
    align-items: center;
    justify-content: center;
  }

  .project-exhibit__slides .dummy-slideshow__slide img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: min(calc(100vh - 140px), 92vh);
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .project-exhibit__slides .dummy-slideshow__arrow {
    border: 0;
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: auto;
  }

  .project-exhibit__slides .dummy-slideshow__arrow:hover {
    border: 0;
    background: rgba(0, 0, 0, 0.45);
  }

  .project-exhibit__slides .dummy-slideshow__footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 0;
    padding: 28px 16px 18px;
    z-index: 3;
    gap: 10px;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.2) 55%,
      transparent 100%
    );
    pointer-events: none;
  }

  .project-exhibit__slides .dummy-slideshow__dots,
  .project-exhibit__slides .dummy-slideshow__count {
    pointer-events: auto;
  }

  .project-exhibit__slides .dummy-slideshow:focus-visible {
    outline: none;
  }

  .project-exhibit__slides .dummy-slideshow:focus-visible .dummy-slideshow__viewport {
    outline: 1px solid rgba(255, 255, 255, 0.2);
    outline-offset: -1px;
  }

  .dummy-meta {
    margin-top: clamp(40px, 5vw, 64px);
    padding-top: clamp(32px, 4vw, 48px);
    border-top: 1px solid var(--line);
    max-width: 52ch;
  }

  .dummy-meta__specs {
    margin: 0.75em 0 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
  }

  .dummy-meta__specs li {
    margin: 0 0 0.35em;
  }

  .dummy-meta__sub {
    margin: 2rem 0 0.75rem;
  }

  .dummy-edit {
    padding: 12vh 0 14vh;
    background: #030303;
    border-top: 1px solid var(--line);
  }

  .dummy-edit__grid {
    display: grid;
    grid-template-columns: 70% 30%;
    max-width: var(--container);
    margin: 0 auto;
    align-items: start;
  }

  .dummy-edit__slides-column {
    position: relative;
    width: 100%;
    padding: 0;
    background: #000;
    min-height: min(78vh, 820px);
  }

  .dummy-edit__slides-column .dummy-slideshow {
    max-width: none;
    margin: 0;
    min-height: min(76vh, 800px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .dummy-edit__slides-column .dummy-slideshow__viewport {
    flex: 1 1 auto;
    min-height: min(68vh, 720px);
    border: 0;
    background: #000;
    width: 100%;
  }

  .dummy-edit__slides-column .dummy-slideshow__slide {
    padding: 0;
  }

  .dummy-edit__slides-column .dummy-slideshow__slide img {
    width: 100%;
    max-width: 100%;
    max-height: min(calc(100vh - 140px), 88vh);
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .dummy-edit__slides-column .dummy-slideshow__arrow {
    border: 0;
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: auto;
  }

  .dummy-edit__slides-column .dummy-slideshow__arrow:hover {
    border: 0;
    background: rgba(0, 0, 0, 0.45);
  }

  .dummy-edit__slides-column .dummy-slideshow__footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 0;
    padding: 28px 16px 18px;
    z-index: 3;
    gap: 10px;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.2) 55%,
      transparent 100%
    );
    pointer-events: none;
  }

  .dummy-edit__slides-column .dummy-slideshow__dots,
  .dummy-edit__slides-column .dummy-slideshow__count {
    pointer-events: auto;
  }

  .dummy-edit__slides-column .dummy-slideshow:focus-visible {
    outline: none;
  }

  .dummy-edit__slides-column .dummy-slideshow:focus-visible .dummy-slideshow__viewport {
    outline: 1px solid rgba(255, 255, 255, 0.2);
    outline-offset: -1px;
  }

  .dummy-edit__head {
    margin: 0;
    max-width: none;
    padding: clamp(40px, 6vw, 100px) clamp(24px, 3vw, 40px) 8vw;
    background: #000;
    border-left: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: min(78vh, 820px);
    box-sizing: border-box;
  }

  .dummy-edit__head .dummy-meta {
    margin-top: clamp(28px, 4vw, 40px);
    padding-top: clamp(24px, 3vw, 32px);
    border-top: 1px solid var(--line);
    max-width: none;
  }

  .dummy-sfoglio {
    border-top: 1px solid var(--line);
    background: #000;
  }

  .dummy-sfoglio__wrap {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
  }

  .dummy-sfoglio__video {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: min(92vh, 1200px);
    height: auto;
    margin: 0;
    background: #000;
  }

  .dummy-slideshow {
    position: relative;
    max-width: min(1180px, 100%);
    margin: 0 auto;
    outline: none;
  }

  .dummy-slideshow:focus-visible {
    outline: 1px solid rgba(255, 255, 255, 0.35);
    outline-offset: 6px;
  }

  .dummy-slideshow__viewport {
    overflow: hidden;
    width: 100%;
    border: 1px solid var(--line);
    background: #080808;
    min-height: min(78vh, 760px);
  }

  .dummy-slideshow__track {
    display: flex;
    transition: transform 0.55s var(--ease);
    will-change: transform;
  }

  .dummy-slideshow__slide {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 3vw, 40px);
    box-sizing: border-box;
  }

  .dummy-slideshow__slide img {
    display: block;
    max-width: 100%;
    max-height: min(72vh, 680px);
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .dummy-slideshow__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.42);
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
      border-color 0.25s ease,
      background 0.25s ease;
  }

  .dummy-slideshow__arrow:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.68);
  }

  .dummy-slideshow__arrow--prev {
    left: clamp(8px, 2vw, 20px);
  }

  .dummy-slideshow__arrow--next {
    right: clamp(8px, 2vw, 20px);
  }

  .dummy-slideshow__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
  }

  .dummy-slideshow__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .dummy-slideshow__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
  }

  .dummy-slideshow__dot.is-active {
    background: rgba(255, 255, 255, 0.92);
    transform: scale(1.25);
  }

  .dummy-slideshow__count {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .dummy-slideshow__sep {
    margin: 0 0.35em;
    opacity: 0.5;
  }

  @media (prefers-reduced-motion: reduce) {
    .dummy-slideshow__track {
      transition-duration: 0.05s;
    }
  }
  
  .museum-block__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8vw 4vw;
    background: #000;
    border-left: 1px solid var(--line);
  }
  
  .museum-block--reverse .museum-block__text {
    border-left: 0;
    border-right: 1px solid var(--line);
  }
  
  .museum-block__text h2 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: clamp(38px, 4vw, 72px);
    line-height: 0.95;
    font-weight: 500;
  }
  
  .meta {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .description {
    margin: 18px 0 0;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    max-width: 34ch;
  }
  
  .text-link {
    display: inline-block;
    margin-top: 28px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    width: fit-content;
  }
  
  .text-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    transform-origin: left center;
    transition: transform 0.3s ease;
  }
  
  .text-link:hover::after {
    transform: scaleX(0.6);
  }
  
  .statement {
    padding: 16vh 32px;
    background: #030303;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  
  .statement__inner {
    max-width: 1180px;
    margin: 0 auto;
  }
  
  .statement__eyebrow {
    margin: 0 0 16px;
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
  }
  
  .statement__title {
    margin: 0;
    max-width: 18ch;
    font-family: var(--font-display);
    font-size: clamp(38px, 4.8vw, 92px);
    line-height: 0.96;
    font-weight: 500;
  }
  
  .about,
  .contact {
    padding: 18vh 32px;
    background: #000;
  }
  
  .about__grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
  }
  
  .about__left h2,
  .contact__inner h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 88px);
    line-height: 0.96;
    font-weight: 500;
  }
  
  .about__right p {
    margin: 0 0 20px;
    max-width: 48ch;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
  }
  
  .contact {
    border-top: 1px solid var(--line);
  }
  
  .contact__inner {
    max-width: var(--container);
    margin: 0 auto;
  }
  
  .contact__mail {
    display: inline-block;
    margin-top: 28px;
    font-size: clamp(20px, 2vw, 32px);
    line-height: 1.2;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    padding-bottom: 6px;
  }

  .contact__tel {
    margin: 1.25rem 0 0;
    font-size: clamp(17px, 1.5vw, 24px);
    line-height: 1.35;
  }

  .contact__tel a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    padding-bottom: 4px;
    transition:
      color 0.2s ease,
      border-color 0.2s ease;
  }

  .contact__tel a:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.45);
  }
  
  .site-footer {
    padding: 24px 32px;
    border-top: 1px solid var(--line);
    background: #000;
  }
  
  .site-footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
  .site-footer__inner p {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.54);
  }

  .project-cross {
    padding: 14vh 32px;
    background: #030303;
    border-top: 1px solid var(--line);
  }

  .project-cross__inner {
    max-width: var(--container);
    margin: 0 auto;
  }

  .project-cross__inner h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 56px);
    line-height: 1;
    font-weight: 500;
  }

  .project-cross__links {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: center;
    margin-top: 28px;
  }
  
  .reveal-up {
    opacity: 0;
    transform: translateY(60px);
  }
  
  @media (max-width: 1100px) {
    .museum-block,
    .museum-block--reverse {
      grid-template-columns: 1fr;
    }
  
    .museum-block--reverse .museum-block__media,
    .museum-block--reverse .museum-block__text {
      order: initial;
    }
  
    .museum-block__text,
    .museum-block--reverse .museum-block__text {
      border-left: 0;
      border-right: 0;
      border-top: 1px solid var(--line);
      padding: 56px 28px;
    }
  
    .museum-block__image {
      min-height: 64vh;
    }

    .museum-block__media--video {
      min-height: auto;
      padding: 24px 20px 32px;
    }

    .museum-block__media--video .museum-block__video {
      max-height: 70vh;
    }

    .project-exhibit__grid {
      grid-template-columns: 1fr;
      min-height: auto;
    }

    .project-cv-row__grid {
      grid-template-columns: 1fr;
    }

    .project-cv-row .project-cv--split:first-child {
      border-right: 0;
      border-bottom: 1px solid var(--line);
    }

    .dummy-edit__grid {
      grid-template-columns: 1fr;
    }

    .dummy-edit__head {
      order: -1;
      border-left: 0;
      border-bottom: 1px solid var(--line);
      min-height: auto;
      padding: 56px 28px;
    }

    .dummy-edit__slides-column {
      min-height: auto;
    }

    .dummy-edit__slides-column .dummy-slideshow {
      min-height: auto;
    }

    .dummy-edit__slides-column .dummy-slideshow__footer {
      position: relative;
      left: auto;
      right: auto;
      bottom: auto;
      margin-top: 16px;
      padding: 12px 0 0;
      background: none;
      pointer-events: auto;
    }

    .project-exhibit__text {
      border-right: 0;
      border-bottom: 1px solid var(--line);
      padding: 56px 28px;
    }

    .project-exhibit__slides .dummy-slideshow__footer {
      position: relative;
      left: auto;
      right: auto;
      bottom: auto;
      margin-top: 16px;
      padding: 12px 0 0;
      background: none;
      pointer-events: auto;
    }

    .project-exhibit__slides {
      position: relative;
      top: auto;
      min-height: auto;
      max-height: none;
      padding: 0 0 40px;
    }

    .project-exhibit__slides .dummy-slideshow__viewport {
      min-height: min(58vh, 520px);
    }

    .project-exhibit__slides .dummy-slideshow__slide img {
      max-height: min(52vh, 480px);
    }

    .dummy-edit {
      padding: 10vh 0 12vh;
    }

    .dummy-edit__slides-column .dummy-slideshow__viewport {
      min-height: min(58vh, 520px);
    }

    .dummy-edit__slides-column .dummy-slideshow__slide img {
      max-height: min(52vh, 480px);
    }

    .dummy-slideshow__viewport {
      min-height: min(64vh, 560px);
    }

    .dummy-slideshow__slide img {
      max-height: min(58vh, 520px);
    }

    .dummy-slideshow__arrow {
      width: 42px;
      height: 42px;
      font-size: 15px;
    }
  
    .about__grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }
  }
  
  @media (max-width: 820px) {
    .site-nav {
      display: none;
    }
  
    .site-header__toggle {
      display: block;
    }
  
    .mobile-nav {
      display: flex;
      flex-direction: column;
      gap: 18px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s var(--ease), padding-top 0.35s var(--ease);
      max-width: var(--container);
      margin: 0 auto;
    }
  
    .mobile-nav.is-open {
      max-height: 260px;
      padding-top: 18px;
    }
  
    .mobile-nav a {
      font-size: 13px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.86);
    }
  
    .intro__title-wrap {
      padding: 0 24px;
    }
  
    .intro__title {
      font-size: clamp(48px, 16vw, 88px);
      max-width: 100%;
    }
  
    .intro__scroll {
      left: 24px;
    }
  
    .statement,
    .about,
    .contact,
    .project-cross,
    .project-prose,
    .project-cv,
    .project-exhibit__text,
    .projects-index__intro {
      padding-left: 24px;
      padding-right: 24px;
    }
  
    .panel__caption {
      left: 24px;
    }

    .panel__hero-caption {
      left: clamp(28px, 6vw, 40px);
      right: clamp(24px, 5vw, 32px);
      bottom: 32px;
    }

    .panel__hero-caption--wide {
      max-width: min(44rem, calc(100vw - clamp(28px, 6vw, 40px) - clamp(24px, 5vw, 32px) - 16px));
    }
  
    .site-header {
      padding: 16px 18px;
    }
  
    .description,
    .about__right p {
      max-width: 100%;
    }
  }

  .about {
    position: relative;
    padding: 18vh 32px 12vh;
    background: #000;
    overflow: hidden;
  }
  
  .about--editorial {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .about-page {
    padding-top: clamp(110px, 18vh, 200px);
  }
  
  .about__grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 2;
  }
  
  .about__left {
    position: sticky;
    top: 120px;
    align-self: start;
  }
  
  .about__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(46px, 6vw, 110px);
    line-height: 0.92;
    font-weight: 500;
    letter-spacing: -0.03em;
  }
  
  .about__right {
    max-width: 720px;
  }
  
  .about__right p {
    margin: 0 0 22px;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.88);
  }
  
  .about__right em {
    font-style: italic;
    color: #ffffff;
  }
  
  .about__links {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-top: 34px;
    flex-wrap: wrap;
  }

  .about-page .about__right > .about-page__block + .about-page__block {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-page__h2 {
    margin: 0 0 1.1rem;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
  }

  .about-page__contact-line {
    margin: 0 0 0.65rem;
  }

  .about-page__contact-line:last-child {
    margin-bottom: 0;
  }

  .about-page__contact-link {
    font-size: clamp(16px, 1.15vw, 18px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    padding-bottom: 2px;
    transition:
      color 0.2s ease,
      border-color 0.2s ease;
  }

  .about-page__contact-link:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.55);
  }

  .about-page__cv-item {
    margin: 1.65rem 0 0;
  }

  .about-page__cv-item:first-of-type {
    margin-top: 0.35rem;
  }

  .about-page__cv-year {
    margin: 0 0 0.4rem;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
  }

  .about-page__cv-item .meta {
    margin-top: 0.35rem;
  }

  .about-page .about__links--page {
    margin-top: 2.75rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-page .about__right .about-page__block p {
    max-width: none;
  }
  
  .about__statement-wrap {
    max-width: var(--container);
    margin: 110px auto 0;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
  }
  
  .about__statement {
    margin: 0;
    max-width: 14ch;
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 120px);
    line-height: 0.92;
    font-weight: 500;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.96);
    text-wrap: balance;
  }
  
  .about::before {
    content: "";
    position: absolute;
    top: 10%;
    right: -10%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.02) 35%,
      rgba(255, 255, 255, 0) 72%
    );
    filter: blur(20px);
    pointer-events: none;
    z-index: 1;
  }
  
  @media (max-width: 1100px) {
    .about__grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  
    .about__left {
      position: relative;
      top: auto;
    }
  
    .about__statement-wrap {
      margin-top: 70px;
    }
  }
  
  @media (max-width: 820px) {
    .about {
      padding: 14vh 24px 10vh;
    }
  
    .about__statement {
      max-width: 100%;
      font-size: clamp(34px, 10vw, 64px);
      line-height: 0.96;
    }
  
    .about__links {
      gap: 22px;
    }
  }