      :root {
        color-scheme: light;
        --bg: #eaf6ff;
        --ink: #2b2522;
        --muted: #7b6f68;
        --line: rgba(66, 55, 48, 0.14);
        --rose: #c20c62;
        --accent-purple: #883b8c;
        --sage: #72856f;
        --paper: rgba(244, 233, 238, 0.94);;
      }

      * { box-sizing: border-box; }

      body {
        margin: 0;
        height: 100dvh;
        font-family: "Philosopher", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        color: var(--ink);
        background-color: var(--bg);
        background-image: url("background.jpg");
        background-repeat: no-repeat;
        background-position: top center;
        background-attachment: fixed;
        background-size: clamp(1920px, 100vw, 3840px) auto;
      }

      button, input, textarea, select { font: inherit; }

      .access-page {
        width: min(100% - 32px, 480px);
        height: 100dvh;
        margin: 0 auto;
        display: grid;
        place-items: center;
        padding: 16px 0;
        overflow: hidden;
      }

      .access-card.MuiPaper-root {
        width: 100%;
        display: grid;
        gap: 16px;
        padding: 22px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--paper);
      }


      .access-card .MuiButton-root {
        background: var(--accent-purple);
        font-weight: 700;
      }

      .page-shell {
        width: min(1680px, calc(100% - 64px));
        margin: 0 auto;
        padding: 28px 0 56px;
      }

      .topbar {
        display: grid;
        gap: 24px;
        margin-bottom: 24px;
      }

      .topbar h1 {
        margin: 0 0 12px;
        color: #ee9cf2;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.58);
        font-size: clamp(30px, 5vw, 58px);
        line-height: 0.98;
        letter-spacing: 0;
        font-weight: 800;
      }

      .topbar-details {
        display: grid;
        grid-template-columns: minmax(0, 820px) auto;
        gap: 20px;
        align-items: start;
      }

      .brand-copy {
        width: min(820px, 100%);
        padding: 18px;
        border-radius: 8px;
        background: var(--paper);
      }

      .brand-copy p {
        margin: 12px 0 0;
        color: var(--ink);
        font-size: 16px;
        line-height: 1.55;
        text-indent: 24px;
      }

      .brand-copy p:first-child {
        margin-top: 0;
      }

      .stats {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
      }

      .stat-pill {
        border: 1px solid var(--line);
        background: var(--paper);
        backdrop-filter: blur(14px);
        padding: 10px 14px;
        border-radius: 8px;
        min-width: 112px;
      }

      .stat-pill strong {
        display: block;
        color: var(--accent-purple);
        font-size: 20px;
        line-height: 1;
      }

      .stat-pill span {
        display: block;
        margin-top: 5px;
        color: var(--rose);
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
      }

      .section-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin: 64px 0 14px;
        padding-top: 32px;
        border-top: 1px solid rgba(234, 255, 183, 0.46);
      }

      .section-title h2 {
        margin: 0;
        color: #f8ffe8;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.68);
        font-size: clamp(22px, 3vw, 32px);
        line-height: 1.1;
      }

      .section-title span {
        color: #bfffd1;
        font-weight: 600;
      }

      .gallery-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 600px), 1fr));
        align-items: start;
        gap: 32px;
      }

      .item-card {
        display: grid;
        grid-template-columns: 332px 1fr;
        gap: 18px;
        align-items: stretch;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--paper);
        box-shadow: 0 16px 44px rgba(57, 47, 40, 0.08);
        overflow: hidden;
      }

      .item-mobile-heading {
        display: none;
      }

      .cover-button {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 300px;
        height: 400px;
        margin: 16px;
        border-radius: 3px;
        padding: 0;
        border: 0;
        background: #eee8e2;
        cursor: pointer;
        overflow: hidden;
      }

      .cover-button img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
        border-radius: 3px;
      }

      .item-copy {
        position: relative;
        min-width: 0;
        padding: 18px 18px 16px 0;
        display: grid;
        grid-template-rows: minmax(0, 1fr) auto;
        gap: 10px;
      }

      .item-text {
        min-width: 0;
      }

      .item-photos {
        min-width: 0;
        display: grid;
        overflow: hidden;
        gap: 8px;
      }

      .item-meta {
        display: flex;
        gap: 8px;
        align-items: center;
        flex-wrap: wrap;
        min-height: 28px;
      }

      .number-badge {
        position: absolute;
        top: 16px;
        right: 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        color: white;
        background: var(--accent-purple);
        font-weight: 800;
        font-size: 18px;
        line-height: 1;
        text-align: center;
      }

      .image-count {
        color: var(--muted);
        font-size: 13px;
        font-weight: 600;
      }

      .item-copy h3 {
        margin: 0;
        color: var(--accent-purple);
        font-size: clamp(20px, 2.5vw, 28px);
        line-height: 44px;
      }

      .item-copy p {
        margin: 0;
        color: var(--ink);
        font-size: 15px;
        line-height: 1.55;
        text-indent: 24px;
      }

      .item-copy .item-contents {
        margin: 8px 0 12px;
        color: var(--rose);
        line-height: 1.45;
        font-weight: 600;
        font-size: 16px;
        text-indent: 0;
      }

      .strip {
        display: flex;
        min-width: 0;
        max-width: 100%;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: thin;
      }

      .strip img {
        width: auto;
        height: 58px;
        object-fit: contain;
        border-radius: 3px;
        background: #eee8e2;
        flex: 0 0 auto;
      }

      .dialog-root .MuiDialog-paper {
        background: #171513;
        color: #fff;
        margin: 0;
        width: 100vw;
        height: 100dvh;
        max-width: none;
        max-height: none;
        border-radius: 0;
      }

      .modal-layout {
        height: 100dvh;
        display: grid;
        grid-template-rows: auto minmax(0, 1fr) auto;
      }

      .modal-header {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px;
        align-items: center;
        padding: 12px clamp(12px, 3vw, 22px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      }

      .modal-title h3 {
        margin: 0;
        font-size: clamp(18px, 4vw, 25px);
        line-height: 1.2;
      }

      .modal-title span {
        display: block;
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.66);
        font-size: 13px;
      }

      .stage {
        min-height: 0;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 8px;
        align-items: center;
        padding: 10px clamp(8px, 2vw, 20px);
      }

      .stage-image-wrap {
        width: 100%;
        height: 100%;
        min-height: 0;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .stage-image {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: 3px;
        background: #26221f;
        box-shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
      }

      .modal-thumbs {
        display: flex;
        justify-content: center;
        gap: 10px;
        overflow-x: auto;
        padding: 10px clamp(12px, 3vw, 22px) 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
      }

      .modal-thumb {
        flex: 0 0 auto;
        width: auto;
        height: 72px;
        border-radius: 3px;
        padding: 0;
        border: 0;
        overflow: hidden;
        background: #2b2724;
        cursor: pointer;
      }

      .modal-thumb img {
        width: auto;
        height: 100%;
        object-fit: contain;
        display: block;
      }

      .icon-button-dark.MuiIconButton-root {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        font-size: 34px;
        flex: 0 0 64px;
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.16);
      }

      .icon-button-dark.MuiIconButton-root:hover {
        background: rgba(255, 255, 255, 0.18);
      }

      @media (max-width: 760px) {
        .page-shell {
          width: min(100% - 32px, 560px);
          padding-top: 18px;
        }

        .topbar {
          grid-template-columns: 1fr;
          align-items: start;
        }

        .topbar-details {
          grid-template-columns: 1fr;
        }

        .stats {
          flex-direction: column;
          align-items: stretch;
          justify-content: flex-start;
          margin-top: 0;
        }

        .stat-pill {
          width: 100%;
        }

        .item-card {
          grid-template-columns: 1fr;
          gap: 0;
        }

        .item-mobile-heading {
          position: relative;
          display: block;
          min-height: 44px;
          padding: 14px 68px 0 14px;
        }

        .item-mobile-heading h3 {
          margin: 0;
          color: var(--accent-purple);
          font-size: clamp(20px, 2.5vw, 28px);
          line-height: 44px;
        }

        .item-mobile-heading .item-contents {
          margin: 8px 0 0;
          color: var(--rose);
          line-height: 1.45;
          font-weight: 600;
          font-size: 16px;
          text-indent: 0;
        }

        .item-copy > .number-badge,
        .item-text > h3,
        .item-text > .item-contents {
          display: none;
        }

        .cover-button {
          width: min(100%, 300px);
          height: auto;
          aspect-ratio: 3 / 4;
          margin: 16px auto 0;
        }

        .item-copy {
          padding: 14px;
        }

        .number-badge {
          top: 12px;
          right: 14px;
          position: absolute;
          width: 44px;
          height: 44px;
          font-size: 16px;
        }

        .stage {
          grid-template-columns: 1fr;
          grid-template-rows: minmax(0, 1fr) auto;
          padding: 8px 8px 4px;
        }

        .stage > .MuiIconButton-root {
          position: fixed;
          top: 50%;
          transform: translateY(-50%);
          z-index: 3;
        }

        .stage > .MuiIconButton-root:first-child { left: 10px; }
        .stage > .MuiIconButton-root:last-child { right: 10px; }

        .stage-image {
          border-radius: 3px;
        }

        .modal-thumb {
          width: auto;
          height: 64px;
        }

        .item-mobile-heading .item-contents {
          margin: 8px 0 0;
          color: var(--rose);
          line-height: 1.45;
          font-weight: 600;
          font-size: 16px;
          text-indent: 0;
        }
      }
